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::GetPersonalizedRanking; 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 InputList => (is => 'ro', isa => 'ArrayRef[Str|Undef]', traits => ['NameInRequest'], request_name => 'inputList', required => 1); has UserId => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'userId', required => 1); use MooseX::ClassAttribute; class_has _api_call => (isa => 'Str', is => 'ro', default => 'GetPersonalizedRanking'); class_has _api_uri => (isa => 'Str', is => 'ro', default => '/personalize-ranking'); class_has _api_method => (isa => 'Str', is => 'ro', default => 'POST'); class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::PersonalizeRuntime::GetPersonalizedRankingResponse'); 1; ### main pod documentation begin ### =head1 NAME Paws::PersonalizeRuntime::GetPersonalizedRanking - Arguments for method GetPersonalizedRanking on L =head1 DESCRIPTION This class represents the parameters used for calling the method GetPersonalizedRanking on the L service. Use the attributes of this class as arguments to method GetPersonalizedRanking. You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to GetPersonalizedRanking. =head1 SYNOPSIS my $personalize-runtime = Paws->service('PersonalizeRuntime'); my $GetPersonalizedRankingResponse = $personalize -runtime->GetPersonalizedRanking( CampaignArn => 'MyArn', InputList => [ 'MyItemID', ... # max: 256 ], UserId => 'MyUserID', Context => { 'MyAttributeName' => 'MyAttributeValue', # key: max: 150, value: max: 1000 }, # OPTIONAL FilterArn => 'MyArn', # OPTIONAL FilterValues => { 'MyFilterAttributeName' => 'MyFilterAttributeValue', # key: max: 50, value: max: 1000 }, # OPTIONAL ); # Results: my $PersonalizedRanking = $GetPersonalizedRankingResponse->PersonalizedRanking; my $RecommendationId = $GetPersonalizedRankingResponse->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 generating the personalized ranking. =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 Amazon Resource Name (ARN) of a filter you created to include items or exclude items from recommendations for a given user. For more information, see Filtering Recommendations (https://docs.aws.amazon.com/personalize/latest/dg/filter.html). =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 B InputList => ArrayRef[Str|Undef] A list of items (by C) to rank. If an item was not included in the training dataset, the item is appended to the end of the reranked list. The maximum is 500. =head2 B UserId => Str The user for which you want the campaign to provide a personalized ranking. =head1 SEE ALSO This class forms part of L, documenting arguments for method GetPersonalizedRanking in L =head1 BUGS and CONTRIBUTIONS The source code is located here: L Please report bugs to: L =cut