|
NAMEPaws::SSM::GetMaintenanceWindowExecutionTask - Arguments for method GetMaintenanceWindowExecutionTask on Paws::SSM DESCRIPTIONThis class represents the parameters used for calling the method GetMaintenanceWindowExecutionTask on the Amazon Simple Systems Manager (SSM) service. Use the attributes of this class as arguments to method GetMaintenanceWindowExecutionTask. You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to GetMaintenanceWindowExecutionTask. SYNOPSIS my $ssm = Paws->service('SSM');
my $GetMaintenanceWindowExecutionTaskResult =
$ssm->GetMaintenanceWindowExecutionTask(
TaskId => 'MyMaintenanceWindowExecutionTaskId',
WindowExecutionId => 'MyMaintenanceWindowExecutionId',
);
# Results:
my $EndTime = $GetMaintenanceWindowExecutionTaskResult->EndTime;
my $MaxConcurrency =
$GetMaintenanceWindowExecutionTaskResult->MaxConcurrency;
my $MaxErrors = $GetMaintenanceWindowExecutionTaskResult->MaxErrors;
my $Priority = $GetMaintenanceWindowExecutionTaskResult->Priority;
my $ServiceRole = $GetMaintenanceWindowExecutionTaskResult->ServiceRole;
my $StartTime = $GetMaintenanceWindowExecutionTaskResult->StartTime;
my $Status = $GetMaintenanceWindowExecutionTaskResult->Status;
my $StatusDetails = $GetMaintenanceWindowExecutionTaskResult->StatusDetails;
my $TaskArn = $GetMaintenanceWindowExecutionTaskResult->TaskArn;
my $TaskExecutionId =
$GetMaintenanceWindowExecutionTaskResult->TaskExecutionId;
my $TaskParameters =
$GetMaintenanceWindowExecutionTaskResult->TaskParameters;
my $Type = $GetMaintenanceWindowExecutionTaskResult->Type;
my $WindowExecutionId =
$GetMaintenanceWindowExecutionTaskResult->WindowExecutionId;
# Returns a L<Paws::SSM::GetMaintenanceWindowExecutionTaskResult> 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 <https://docs.aws.amazon.com/goto/WebAPI/ssm/GetMaintenanceWindowExecutionTask> ATTRIBUTESREQUIRED TaskId => StrThe ID of the specific task execution in the maintenance window task that should be retrieved. REQUIRED WindowExecutionId => StrThe ID of the maintenance window execution that includes the task. SEE ALSOThis class forms part of Paws, documenting arguments for method GetMaintenanceWindowExecutionTask in Paws::SSM BUGS and CONTRIBUTIONSThe source code is located here: <https://github.com/pplu/aws-sdk-perl> Please report bugs to: <https://github.com/pplu/aws-sdk-perl/issues>
|