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::Synthetics::UpdateCanary; use Moose; has Code => (is => 'ro', isa => 'Paws::Synthetics::CanaryCodeInput'); has ExecutionRoleArn => (is => 'ro', isa => 'Str'); has FailureRetentionPeriodInDays => (is => 'ro', isa => 'Int'); has Name => (is => 'ro', isa => 'Str', traits => ['ParamInURI'], uri_name => 'name', required => 1); has RunConfig => (is => 'ro', isa => 'Paws::Synthetics::CanaryRunConfigInput'); has RuntimeVersion => (is => 'ro', isa => 'Str'); has Schedule => (is => 'ro', isa => 'Paws::Synthetics::CanaryScheduleInput'); has SuccessRetentionPeriodInDays => (is => 'ro', isa => 'Int'); has VpcConfig => (is => 'ro', isa => 'Paws::Synthetics::VpcConfigInput'); use MooseX::ClassAttribute; class_has _api_call => (isa => 'Str', is => 'ro', default => 'UpdateCanary'); class_has _api_uri => (isa => 'Str', is => 'ro', default => '/canary/{name}'); class_has _api_method => (isa => 'Str', is => 'ro', default => 'PATCH'); class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::Synthetics::UpdateCanaryResponse'); 1; ### main pod documentation begin ### =head1 NAME Paws::Synthetics::UpdateCanary - Arguments for method UpdateCanary on L =head1 DESCRIPTION This class represents the parameters used for calling the method UpdateCanary on the L service. Use the attributes of this class as arguments to method UpdateCanary. You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to UpdateCanary. =head1 SYNOPSIS my $synthetics = Paws->service('Synthetics'); my $UpdateCanaryResponse = $synthetics->UpdateCanary( Name => 'MyCanaryName', Code => { Handler => 'MyString', # min: 1, max: 1024 S3Bucket => 'MyString', # min: 1, max: 1024 S3Key => 'MyString', # min: 1, max: 1024 S3Version => 'MyString', # min: 1, max: 1024 ZipFile => 'BlobBlob', # min: 1, max: 10000000; OPTIONAL }, # OPTIONAL ExecutionRoleArn => 'MyRoleArn', # OPTIONAL FailureRetentionPeriodInDays => 1, # OPTIONAL RunConfig => { ActiveTracing => 1, # OPTIONAL EnvironmentVariables => { 'MyEnvironmentVariableName' => 'MyEnvironmentVariableValue', } , # OPTIONAL MemoryInMB => 1, # min: 960, max: 3008; OPTIONAL TimeoutInSeconds => 1, # min: 3, max: 840; OPTIONAL }, # OPTIONAL RuntimeVersion => 'MyString', # OPTIONAL Schedule => { Expression => 'MyString', # min: 1, max: 1024 DurationInSeconds => 1, # max: 31622400; OPTIONAL }, # OPTIONAL SuccessRetentionPeriodInDays => 1, # OPTIONAL VpcConfig => { SecurityGroupIds => [ 'MySecurityGroupId', ... ], # max: 5; OPTIONAL SubnetIds => [ 'MySubnetId', ... ], # max: 16; OPTIONAL }, # OPTIONAL ); 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 Code => L A structure that includes the entry point from which the canary should start running your script. If the script is stored in an S3 bucket, the bucket name, key, and version are also included. =head2 ExecutionRoleArn => Str The ARN of the IAM role to be used to run the canary. This role must already exist, and must include C as a principal in the trust policy. The role must also have the following permissions: =over =item * C =item * C =item * C =item * C =item * C =item * C =item * C =back =head2 FailureRetentionPeriodInDays => Int The number of days to retain data about failed runs of this canary. =head2 B Name => Str The name of the canary that you want to update. To find the names of your canaries, use DescribeCanaries (https://docs.aws.amazon.com/AmazonSynthetics/latest/APIReference/API_DescribeCanaries.html). You cannot change the name of a canary that has already been created. =head2 RunConfig => L A structure that contains the timeout value that is used for each individual run of the canary. =head2 RuntimeVersion => Str Specifies the runtime version to use for the canary. For a list of valid runtime versions and for more information about runtime versions, see Canary Runtime Versions (https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch_Synthetics_Canaries_Library.html). =head2 Schedule => L A structure that contains information about how often the canary is to run, and when these runs are to stop. =head2 SuccessRetentionPeriodInDays => Int The number of days to retain data about successful runs of this canary. =head2 VpcConfig => L If this canary is to test an endpoint in a VPC, this structure contains information about the subnet and security groups of the VPC endpoint. For more information, see Running a Canary in a VPC (https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch_Synthetics_Canaries_VPC.html). =head1 SEE ALSO This class forms part of L, documenting arguments for method UpdateCanary in L =head1 BUGS and CONTRIBUTIONS The source code is located here: L Please report bugs to: L =cut