PNG  IHDR;IDATxܻn0K )(pA 7LeG{ §㻢|ذaÆ 6lذaÆ 6lذaÆ 6lom$^yذag5bÆ 6lذaÆ 6lذa{ 6lذaÆ `}HFkm,mӪôô! x|'ܢ˟;E:9&ᶒ}{v]n&6 h_tڠ͵-ҫZ;Z$.Pkž)!o>}leQfJTu іچ\X=8Rن4`Vwl>nG^is"ms$ui?wbs[m6K4O.4%/bC%t Mז -lG6mrz2s%9s@-k9=)kB5\+͂Zsٲ Rn~GRC wIcIn7jJhۛNCS|j08yiHKֶۛkɈ+;SzL/F*\Ԕ#"5m2[S=gnaPeғL lذaÆ 6l^ḵaÆ 6lذaÆ 6lذa; _ذaÆ 6lذaÆ 6lذaÆ RIENDB` package Paws::PersonalizeRuntime::GetRecommendations; use Moose; has CampaignArn => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'campaignArn', required => 1); has Context => (is => 'ro', isa => 'Paws::PersonalizeRuntime::Context', traits => ['NameInRequest'], request_name => 'context'); has FilterArn => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'filterArn'); has FilterValues => (is => 'ro', isa => 'Paws::PersonalizeRuntime::FilterValues', traits => ['NameInRequest'], request_name => 'filterValues'); has ItemId => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'itemId'); has NumResults => (is => 'ro', isa => 'Int', traits => ['NameInRequest'], request_name => 'numResults'); has UserId => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'userId'); use MooseX::ClassAttribute; class_has _api_call => (isa => 'Str', is => 'ro', default => 'GetRecommendations'); class_has _api_uri => (isa => 'Str', is => 'ro', default => '/recommendations'); class_has _api_method => (isa => 'Str', is => 'ro', default => 'POST'); class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::PersonalizeRuntime::GetRecommendationsResponse'); 1; ### main pod documentation begin ### =head1 NAME Paws::PersonalizeRuntime::GetRecommendations - Arguments for method GetRecommendations on L =head1 DESCRIPTION This class represents the parameters used for calling the method GetRecommendations on the L service. Use the attributes of this class as arguments to method GetRecommendations. You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to GetRecommendations. =head1 SYNOPSIS my $personalize-runtime = Paws->service('PersonalizeRuntime'); my $GetRecommendationsResponse = $personalize -runtime->GetRecommendations( CampaignArn => 'MyArn', Context => { 'MyAttributeName' => 'MyAttributeValue', # key: max: 150, value: max: 1000 }, # OPTIONAL FilterArn => 'MyArn', # OPTIONAL FilterValues => { 'MyFilterAttributeName' => 'MyFilterAttributeValue', # key: max: 50, value: max: 1000 }, # OPTIONAL ItemId => 'MyItemID', # OPTIONAL NumResults => 1, # OPTIONAL UserId => 'MyUserID', # OPTIONAL ); # Results: my $ItemList = $GetRecommendationsResponse->ItemList; my $RecommendationId = $GetRecommendationsResponse->RecommendationId; # Returns a L 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 L =head1 ATTRIBUTES =head2 B CampaignArn => Str The Amazon Resource Name (ARN) of the campaign to use for getting recommendations. =head2 Context => L The contextual metadata to use when getting recommendations. Contextual metadata includes any interaction information that might be relevant when getting a user's recommendations, such as the user's current location or device type. =head2 FilterArn => Str The ARN of the filter to apply to the returned recommendations. For more information, see Filtering Recommendations (https://docs.aws.amazon.com/personalize/latest/dg/filter.html). When using this parameter, be sure the filter resource is C. =head2 FilterValues => L The values to use when filtering recommendations. For each placeholder parameter in your filter expression, provide the parameter name (in matching case) as a key and the filter value(s) as the corresponding value. Separate multiple values for one parameter with a comma. For filter expressions that use an C element to include items, you must provide values for all parameters that are defined in the expression. For filters with expressions that use an C element to exclude items, you can omit the C.In this case, Amazon Personalize doesn't use that portion of the expression to filter recommendations. For more information, see Filtering Recommendations (https://docs.aws.amazon.com/personalize/latest/dg/filter.html). =head2 ItemId => Str The item ID to provide recommendations for. Required for C recipe type. =head2 NumResults => Int The number of results to return. The default is 25. The maximum is 500. =head2 UserId => Str The user ID to provide recommendations for. Required for C recipe type. =head1 SEE ALSO This class forms part of L, documenting arguments for method GetRecommendations in L =head1 BUGS and CONTRIBUTIONS The source code is located here: L Please report bugs to: L =cut