GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
Paws::SageMaker::Search(3) User Contributed Perl Documentation Paws::SageMaker::Search(3)

Paws::SageMaker::Search - Arguments for method Search on Paws::SageMaker

This class represents the parameters used for calling the method Search on the Amazon SageMaker Service service. Use the attributes of this class as arguments to method Search.

You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to Search.

    my $api.sagemaker = Paws->service('SageMaker');
    my $SearchResponse = $api . sagemaker->Search(
      Resource         => 'TrainingJob',
      MaxResults       => 1,                # OPTIONAL
      NextToken        => 'MyNextToken',    # OPTIONAL
      SearchExpression => {
        Filters => [
          {
            Name     => 'MyResourcePropertyName',    # min: 1, max: 255
            Operator => 'Equals'
            , # values: Equals, NotEquals, GreaterThan, GreaterThanOrEqualTo, LessThan, LessThanOrEqualTo, Contains, Exists, NotExists, In; OPTIONAL
            Value => 'MyFilterValue',    # min: 1, max: 1024; OPTIONAL
          },
          ...
        ],    # min: 1, max: 20; OPTIONAL
        NestedFilters => [
          {
            Filters => [
              {
                Name     => 'MyResourcePropertyName',    # min: 1, max: 255
                Operator => 'Equals'
                , # values: Equals, NotEquals, GreaterThan, GreaterThanOrEqualTo, LessThan, LessThanOrEqualTo, Contains, Exists, NotExists, In; OPTIONAL
                Value => 'MyFilterValue',    # min: 1, max: 1024; OPTIONAL
              },
              ...
            ],    # min: 1, max: 20; OPTIONAL
            NestedPropertyName => 'MyResourcePropertyName',   # min: 1, max: 255
          },
          ...
        ],    # min: 1, max: 20; OPTIONAL
        Operator       => 'And',                     # values: And, Or; OPTIONAL
        SubExpressions => [ <SearchExpression>, ... ]
        ,                                            # min: 1, max: 20; OPTIONAL
      },    # OPTIONAL
      SortBy    => 'MyResourcePropertyName',    # OPTIONAL
      SortOrder => 'Ascending',                 # OPTIONAL
    );
    # Results:
    my $NextToken = $SearchResponse->NextToken;
    my $Results   = $SearchResponse->Results;
    # Returns a L<Paws::SageMaker::SearchResponse> object.

Values for attributes that are native types (Int, String, Float, etc) can passed as-is (scalar values). Values for complex Types (objects) can be passed as a HashRef. The keys and values of the hashref will be used to instance the underlying object. For the AWS API documentation, see <https://docs.aws.amazon.com/goto/WebAPI/api.sagemaker/Search>

The maximum number of results to return.

If more than "MaxResults" resources match the specified "SearchExpression", the response includes a "NextToken". The "NextToken" can be passed to the next "SearchRequest" to continue retrieving results.

REQUIRED Resource => Str

The name of the Amazon SageMaker resource to search for.

Valid values are: "TrainingJob", "Experiment", "ExperimentTrial", "ExperimentTrialComponent", "Endpoint", "ModelPackage", "ModelPackageGroup", "Pipeline", "PipelineExecution", "FeatureGroup"

A Boolean conditional statement. Resources must satisfy this condition to be included in search results. You must provide at least one subexpression, filter, or nested filter. The maximum number of recursive "SubExpressions", "NestedFilters", and "Filters" that can be included in a "SearchExpression" object is 50.

The name of the resource property used to sort the "SearchResults". The default is "LastModifiedTime".

How "SearchResults" are ordered. Valid values are "Ascending" or "Descending". The default is "Descending".

Valid values are: "Ascending", "Descending"

This class forms part of Paws, documenting arguments for method Search in Paws::SageMaker

The source code is located here: <https://github.com/pplu/aws-sdk-perl>

Please report bugs to: <https://github.com/pplu/aws-sdk-perl/issues>

2022-06-01 perl v5.40.2

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.