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::SSM::RegisterTaskWithMaintenanceWindow; use Moose; has ClientToken => (is => 'ro', isa => 'Str'); has Description => (is => 'ro', isa => 'Str'); has LoggingInfo => (is => 'ro', isa => 'Paws::SSM::LoggingInfo'); has MaxConcurrency => (is => 'ro', isa => 'Str'); has MaxErrors => (is => 'ro', isa => 'Str'); has Name => (is => 'ro', isa => 'Str'); has Priority => (is => 'ro', isa => 'Int'); has ServiceRoleArn => (is => 'ro', isa => 'Str'); has Targets => (is => 'ro', isa => 'ArrayRef[Paws::SSM::Target]'); has TaskArn => (is => 'ro', isa => 'Str', required => 1); has TaskInvocationParameters => (is => 'ro', isa => 'Paws::SSM::MaintenanceWindowTaskInvocationParameters'); has TaskParameters => (is => 'ro', isa => 'Paws::SSM::MaintenanceWindowTaskParameters'); has TaskType => (is => 'ro', isa => 'Str', required => 1); has WindowId => (is => 'ro', isa => 'Str', required => 1); use MooseX::ClassAttribute; class_has _api_call => (isa => 'Str', is => 'ro', default => 'RegisterTaskWithMaintenanceWindow'); class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::SSM::RegisterTaskWithMaintenanceWindowResult'); class_has _result_key => (isa => 'Str', is => 'ro'); 1; ### main pod documentation begin ### =head1 NAME Paws::SSM::RegisterTaskWithMaintenanceWindow - Arguments for method RegisterTaskWithMaintenanceWindow on L =head1 DESCRIPTION This class represents the parameters used for calling the method RegisterTaskWithMaintenanceWindow on the L service. Use the attributes of this class as arguments to method RegisterTaskWithMaintenanceWindow. You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to RegisterTaskWithMaintenanceWindow. =head1 SYNOPSIS my $ssm = Paws->service('SSM'); my $RegisterTaskWithMaintenanceWindowResult = $ssm->RegisterTaskWithMaintenanceWindow( TaskArn => 'MyMaintenanceWindowTaskArn', TaskType => 'RUN_COMMAND', WindowId => 'MyMaintenanceWindowId', ClientToken => 'MyClientToken', # OPTIONAL Description => 'MyMaintenanceWindowDescription', # OPTIONAL LoggingInfo => { S3BucketName => 'MyS3BucketName', # min: 3, max: 63 S3Region => 'MyS3Region', # min: 3, max: 20 S3KeyPrefix => 'MyS3KeyPrefix', # max: 500; OPTIONAL }, # OPTIONAL MaxConcurrency => 'MyMaxConcurrency', # OPTIONAL MaxErrors => 'MyMaxErrors', # OPTIONAL Name => 'MyMaintenanceWindowName', # OPTIONAL Priority => 1, # OPTIONAL ServiceRoleArn => 'MyServiceRole', # OPTIONAL Targets => [ { Key => 'MyTargetKey', # min: 1, max: 163; OPTIONAL Values => [ 'MyTargetValue', ... ], # max: 50; OPTIONAL }, ... ], # OPTIONAL TaskInvocationParameters => { Automation => { DocumentVersion => 'MyDocumentVersion', # OPTIONAL Parameters => { 'MyAutomationParameterKey' => [ 'MyAutomationParameterValue', ... # min: 1, max: 512 ], # key: min: 1, max: 50, value: max: 50 }, # min: 1, max: 200; OPTIONAL }, # OPTIONAL Lambda => { ClientContext => 'MyMaintenanceWindowLambdaClientContext' , # min: 1, max: 8000; OPTIONAL Payload => 'BlobMaintenanceWindowLambdaPayload', # max: 4096; OPTIONAL Qualifier => 'MyMaintenanceWindowLambdaQualifier', # min: 1, max: 128; OPTIONAL }, # OPTIONAL RunCommand => { CloudWatchOutputConfig => { CloudWatchLogGroupName => 'MyCloudWatchLogGroupName', # min: 1, max: 512; OPTIONAL CloudWatchOutputEnabled => 1, # OPTIONAL }, # OPTIONAL Comment => 'MyComment', # max: 100; OPTIONAL DocumentHash => 'MyDocumentHash', # max: 256; OPTIONAL DocumentHashType => 'Sha256', # values: Sha256, Sha1; OPTIONAL DocumentVersion => 'MyDocumentVersion', # OPTIONAL NotificationConfig => { NotificationArn => 'MyNotificationArn', # OPTIONAL NotificationEvents => [ 'All', ... # values: All, InProgress, Success, TimedOut, Cancelled, Failed ], # OPTIONAL NotificationType => 'Command', # values: Command, Invocation; OPTIONAL }, # OPTIONAL OutputS3BucketName => 'MyS3BucketName', # min: 3, max: 63 OutputS3KeyPrefix => 'MyS3KeyPrefix', # max: 500; OPTIONAL Parameters => { 'MyParameterName' => [ 'MyParameterValue', ... ], } , # OPTIONAL ServiceRoleArn => 'MyServiceRole', TimeoutSeconds => 1, # min: 30, max: 2592000; OPTIONAL }, # OPTIONAL StepFunctions => { Input => 'MyMaintenanceWindowStepFunctionsInput', # max: 4096; OPTIONAL Name => 'MyMaintenanceWindowStepFunctionsName', # min: 1, max: 80; OPTIONAL }, # OPTIONAL }, # OPTIONAL TaskParameters => { 'MyMaintenanceWindowTaskParameterName' => { Values => [ 'MyMaintenanceWindowTaskParameterValue', ... # min: 1, max: 255 ], # OPTIONAL }, # key: min: 1, max: 255 }, # OPTIONAL ); # Results: my $WindowTaskId = $RegisterTaskWithMaintenanceWindowResult->WindowTaskId; # 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 ClientToken => Str User-provided idempotency token. =head2 Description => Str An optional description for the task. =head2 LoggingInfo => L A structure containing information about an S3 bucket to write instance-level logs to. C has been deprecated. To specify an S3 bucket to contain logs, instead use the C and C options in the C structure. For information about how Systems Manager handles these options for the supported maintenance window task types, see MaintenanceWindowTaskInvocationParameters. =head2 MaxConcurrency => Str The maximum number of targets this task can be run for in parallel. For maintenance window tasks without a target specified, you cannot supply a value for this option. Instead, the system inserts a placeholder value of C<1>. This value does not affect the running of your task. =head2 MaxErrors => Str The maximum number of errors allowed before this task stops being scheduled. For maintenance window tasks without a target specified, you cannot supply a value for this option. Instead, the system inserts a placeholder value of C<1>. This value does not affect the running of your task. =head2 Name => Str An optional name for the task. =head2 Priority => Int The priority of the task in the maintenance window, the lower the number the higher the priority. Tasks in a maintenance window are scheduled in priority order with tasks that have the same priority scheduled in parallel. =head2 ServiceRoleArn => Str The ARN of the IAM service role for Systems Manager to assume when running a maintenance window task. If you do not specify a service role ARN, Systems Manager uses your account's service-linked role. If no service-linked role for Systems Manager exists in your account, it is created when you run C. For more information, see the following topics in the in the I: =over =item * Using service-linked roles for Systems Manager (https://docs.aws.amazon.com/systems-manager/latest/userguide/using-service-linked-roles.html#slr-permissions) =item * Should I use a service-linked role or a custom service role to run maintenance window tasks? (https://docs.aws.amazon.com/systems-manager/latest/userguide/sysman-maintenance-permissions.html#maintenance-window-tasks-service-role) =back =head2 Targets => ArrayRef[L] The targets (either instances or maintenance window targets). One or more targets must be specified for maintenance window Run Command-type tasks. Depending on the task, targets are optional for other maintenance window task types (Automation, AWS Lambda, and AWS Step Functions). For more information about running tasks that do not specify targets, see Registering maintenance window tasks without targets (https://docs.aws.amazon.com/systems-manager/latest/userguide/maintenance-windows-targetless-tasks.html) in the I. Specify instances using the following format: Cinstance-id-1E,Einstance-id-2E> Specify maintenance window targets using the following format: Cwindow-target-id-1E,Ewindow-target-id-2E> =head2 B TaskArn => Str The ARN of the task to run. =head2 TaskInvocationParameters => L The parameters that the task should use during execution. Populate only the fields that match the task type. All other fields should be empty. =head2 TaskParameters => L The parameters that should be passed to the task when it is run. C has been deprecated. To specify parameters to pass to a task when it runs, instead use the C option in the C structure. For information about how Systems Manager handles these options for the supported maintenance window task types, see MaintenanceWindowTaskInvocationParameters. =head2 B TaskType => Str The type of task being registered. Valid values are: C<"RUN_COMMAND">, C<"AUTOMATION">, C<"STEP_FUNCTIONS">, C<"LAMBDA"> =head2 B WindowId => Str The ID of the maintenance window the task should be added to. =head1 SEE ALSO This class forms part of L, documenting arguments for method RegisterTaskWithMaintenanceWindow in L =head1 BUGS and CONTRIBUTIONS The source code is located here: L Please report bugs to: L =cut