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::SageMaker::UpdateEndpoint; use Moose; has DeploymentConfig => (is => 'ro', isa => 'Paws::SageMaker::DeploymentConfig'); has EndpointConfigName => (is => 'ro', isa => 'Str', required => 1); has EndpointName => (is => 'ro', isa => 'Str', required => 1); has ExcludeRetainedVariantProperties => (is => 'ro', isa => 'ArrayRef[Paws::SageMaker::VariantProperty]'); has RetainAllVariantProperties => (is => 'ro', isa => 'Bool'); use MooseX::ClassAttribute; class_has _api_call => (isa => 'Str', is => 'ro', default => 'UpdateEndpoint'); class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::SageMaker::UpdateEndpointOutput'); class_has _result_key => (isa => 'Str', is => 'ro'); 1; ### main pod documentation begin ### =head1 NAME Paws::SageMaker::UpdateEndpoint - Arguments for method UpdateEndpoint on L =head1 DESCRIPTION This class represents the parameters used for calling the method UpdateEndpoint on the L service. Use the attributes of this class as arguments to method UpdateEndpoint. You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to UpdateEndpoint. =head1 SYNOPSIS my $api.sagemaker = Paws->service('SageMaker'); my $UpdateEndpointOutput = $api . sagemaker->UpdateEndpoint( EndpointConfigName => 'MyEndpointConfigName', EndpointName => 'MyEndpointName', DeploymentConfig => { BlueGreenUpdatePolicy => { TrafficRoutingConfiguration => { Type => 'ALL_AT_ONCE', # values: ALL_AT_ONCE, CANARY WaitIntervalInSeconds => 1, # max: 3600 CanarySize => { Type => 'INSTANCE_COUNT', # values: INSTANCE_COUNT, CAPACITY_PERCENT Value => 1, # min: 1 }, # OPTIONAL }, MaximumExecutionTimeoutInSeconds => 1, # min: 600, max: 14400; OPTIONAL TerminationWaitInSeconds => 1, # max: 3600; OPTIONAL }, AutoRollbackConfiguration => { Alarms => [ { AlarmName => 'MyAlarmName', # min: 1, max: 255; OPTIONAL }, ... ], # min: 1, max: 10; OPTIONAL }, # OPTIONAL }, # OPTIONAL ExcludeRetainedVariantProperties => [ { VariantPropertyType => 'DesiredInstanceCount' , # values: DesiredInstanceCount, DesiredWeight, DataCaptureConfig }, ... ], # OPTIONAL RetainAllVariantProperties => 1, # OPTIONAL ); # Results: my $EndpointArn = $UpdateEndpointOutput->EndpointArn; # 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 DeploymentConfig => L The deployment configuration for the endpoint to be updated. =head2 B EndpointConfigName => Str The name of the new endpoint configuration. =head2 B EndpointName => Str The name of the endpoint whose configuration you want to update. =head2 ExcludeRetainedVariantProperties => ArrayRef[L] When you are updating endpoint resources with UpdateEndpointInput$RetainAllVariantProperties, whose value is set to C, C specifies the list of type VariantProperty to override with the values provided by C. If you don't specify a value for C, no variant properties are overridden. =head2 RetainAllVariantProperties => Bool When updating endpoint resources, enables or disables the retention of variant properties (https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_VariantProperty.html), such as the instance count or the variant weight. To retain the variant properties of an endpoint when updating it, set C to C. To use the variant properties specified in a new C call when updating an endpoint, set C to C. The default is C. =head1 SEE ALSO This class forms part of L, documenting arguments for method UpdateEndpoint in L =head1 BUGS and CONTRIBUTIONS The source code is located here: L Please report bugs to: L =cut