![]() |
![]()
| ![]() |
![]()
NAMEPaws::SSM::CommandInvocation USAGEThis class represents one of two things: Arguments in a call to a service Use the attributes of this class as arguments to methods. You shouldn't make instances of this class. Each attribute should be used as a named argument in the calls that expect this type of object. As an example, if Att1 is expected to be a Paws::SSM::CommandInvocation object: $service_obj->Method(Att1 => { CloudWatchOutputConfig => $value, ..., TraceOutput => $value }); Results returned from an API call Use accessors for each attribute. If Att1 is expected to be an Paws::SSM::CommandInvocation object: $result = $service_obj->Method(...); $result->Att1->CloudWatchOutputConfig DESCRIPTIONAn invocation is copy of a command sent to a specific instance. A command can apply to one or more instances. A command invocation applies to one instance. For example, if a user runs SendCommand against three instances, then a command invocation is created for each requested instance ID. A command invocation returns status and detail information about a command you ran. ATTRIBUTESCloudWatchOutputConfig => Paws::SSM::CloudWatchOutputConfigCloudWatch Logs information where you want Systems Manager to send the command output. CommandId => StrThe command against which this invocation was requested. CommandPlugins => ArrayRef[Paws::SSM::CommandPlugin]Plugins processed by the command. Comment => StrUser-specified information about the command, such as a brief description of what the command should do. DocumentName => StrThe document name that was requested for execution. DocumentVersion => StrThe SSM document version. InstanceId => StrThe instance ID in which this invocation was requested. InstanceName => StrThe name of the invocation target. For EC2 instances this is the value for the aws:Name tag. For on-premises instances, this is the name of the instance. NotificationConfig => Paws::SSM::NotificationConfigConfigurations for sending notifications about command status changes on a per instance basis. RequestedDateTime => StrThe time and date the request was sent to this instance. ServiceRole => StrThe IAM service role that Run Command uses to act on your behalf when sending notifications about command status changes on a per instance basis. StandardErrorUrl => StrThe URL to the plugin's StdErr file in Amazon S3, if the S3 bucket was defined for the parent command. For an invocation, StandardErrorUrl is populated if there is just one plugin defined for the command, and the S3 bucket was defined for the command. StandardOutputUrl => StrThe URL to the plugin's StdOut file in Amazon S3, if the S3 bucket was defined for the parent command. For an invocation, StandardOutputUrl is populated if there is just one plugin defined for the command, and the S3 bucket was defined for the command. Status => StrWhether or not the invocation succeeded, failed, or is pending. StatusDetails => StrA detailed status of the command execution for each invocation (each instance targeted by the command). StatusDetails includes more information than Status because it includes states resulting from error and concurrency control parameters. StatusDetails can show different results than Status. For more information about these statuses, see Understanding command statuses (https://docs.aws.amazon.com/systems-manager/latest/userguide/monitor-commands.html) in the AWS Systems Manager User Guide. StatusDetails can be one of the following values:
TraceOutput => StrGets the trace output sent by the agent. SEE ALSOThis class forms part of Paws, describing an object used 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>
|