Class: Aws::SSM::Types::CommandPlugin
- Inherits:
-
Struct
- Object
- Struct
- Aws::SSM::Types::CommandPlugin
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-ssm/types.rb
Overview
Describes plugin details.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#name ⇒ String
The name of the plugin.
-
#output ⇒ String
Output of the plugin execution.
-
#output_s3_bucket_name ⇒ String
The S3 bucket where the responses to the command executions should be stored.
-
#output_s3_key_prefix ⇒ String
The S3 directory path inside the bucket where the responses to the command executions should be stored.
-
#output_s3_region ⇒ String
(Deprecated) You can no longer specify this parameter.
-
#response_code ⇒ Integer
A numeric response code generated after running the plugin.
-
#response_finish_date_time ⇒ Time
The time the plugin stopped running.
-
#response_start_date_time ⇒ Time
The time the plugin started running.
-
#standard_error_url ⇒ String
The URL for the complete text written by the plugin to stderr.
-
#standard_output_url ⇒ String
The URL for the complete text written by the plugin to stdout in Amazon S3.
-
#status ⇒ String
The status of this plugin.
-
#status_details ⇒ String
A detailed status of the plugin execution.
Instance Attribute Details
#name ⇒ String
The name of the plugin. Must be one of the following: ‘aws:updateAgent`, `aws:domainjoin`, `aws:applications`, `aws:runPowerShellScript`, `aws:psmodule`, `aws:cloudWatch`, `aws:runShellScript`, or `aws:updateSSMAgent`.
2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 |
# File 'lib/aws-sdk-ssm/types.rb', line 2457 class CommandPlugin < Struct.new( :name, :status, :status_details, :response_code, :response_start_date_time, :response_finish_date_time, :output, :standard_output_url, :standard_error_url, :output_s3_region, :output_s3_bucket_name, :output_s3_key_prefix) SENSITIVE = [] include Aws::Structure end |
#output ⇒ String
Output of the plugin execution.
2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 |
# File 'lib/aws-sdk-ssm/types.rb', line 2457 class CommandPlugin < Struct.new( :name, :status, :status_details, :response_code, :response_start_date_time, :response_finish_date_time, :output, :standard_output_url, :standard_error_url, :output_s3_region, :output_s3_bucket_name, :output_s3_key_prefix) SENSITIVE = [] include Aws::Structure end |
#output_s3_bucket_name ⇒ String
The S3 bucket where the responses to the command executions should be stored. This was requested when issuing the command. For example, in the following response:
‘amzn-s3-demo-bucket/my-prefix/i-02573cafcfEXAMPLE/awsrunShellScript`
‘amzn-s3-demo-bucket` is the name of the S3 bucket;
‘my-prefix` is the name of the S3 prefix;
‘i-02573cafcfEXAMPLE` is the managed node ID;
‘awsrunShellScript` is the name of the plugin.
2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 |
# File 'lib/aws-sdk-ssm/types.rb', line 2457 class CommandPlugin < Struct.new( :name, :status, :status_details, :response_code, :response_start_date_time, :response_finish_date_time, :output, :standard_output_url, :standard_error_url, :output_s3_region, :output_s3_bucket_name, :output_s3_key_prefix) SENSITIVE = [] include Aws::Structure end |
#output_s3_key_prefix ⇒ String
The S3 directory path inside the bucket where the responses to the command executions should be stored. This was requested when issuing the command. For example, in the following response:
‘amzn-s3-demo-bucket/my-prefix/i-02573cafcfEXAMPLE/awsrunShellScript`
‘amzn-s3-demo-bucket` is the name of the S3 bucket;
‘my-prefix` is the name of the S3 prefix;
‘i-02573cafcfEXAMPLE` is the managed node ID;
‘awsrunShellScript` is the name of the plugin.
2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 |
# File 'lib/aws-sdk-ssm/types.rb', line 2457 class CommandPlugin < Struct.new( :name, :status, :status_details, :response_code, :response_start_date_time, :response_finish_date_time, :output, :standard_output_url, :standard_error_url, :output_s3_region, :output_s3_bucket_name, :output_s3_key_prefix) SENSITIVE = [] include Aws::Structure end |
#output_s3_region ⇒ String
(Deprecated) You can no longer specify this parameter. The system ignores it. Instead, Amazon Web Services Systems Manager automatically determines the S3 bucket region.
2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 |
# File 'lib/aws-sdk-ssm/types.rb', line 2457 class CommandPlugin < Struct.new( :name, :status, :status_details, :response_code, :response_start_date_time, :response_finish_date_time, :output, :standard_output_url, :standard_error_url, :output_s3_region, :output_s3_bucket_name, :output_s3_key_prefix) SENSITIVE = [] include Aws::Structure end |
#response_code ⇒ Integer
A numeric response code generated after running the plugin.
2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 |
# File 'lib/aws-sdk-ssm/types.rb', line 2457 class CommandPlugin < Struct.new( :name, :status, :status_details, :response_code, :response_start_date_time, :response_finish_date_time, :output, :standard_output_url, :standard_error_url, :output_s3_region, :output_s3_bucket_name, :output_s3_key_prefix) SENSITIVE = [] include Aws::Structure end |
#response_finish_date_time ⇒ Time
The time the plugin stopped running. Could stop prematurely if, for example, a cancel command was sent.
2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 |
# File 'lib/aws-sdk-ssm/types.rb', line 2457 class CommandPlugin < Struct.new( :name, :status, :status_details, :response_code, :response_start_date_time, :response_finish_date_time, :output, :standard_output_url, :standard_error_url, :output_s3_region, :output_s3_bucket_name, :output_s3_key_prefix) SENSITIVE = [] include Aws::Structure end |
#response_start_date_time ⇒ Time
The time the plugin started running.
2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 |
# File 'lib/aws-sdk-ssm/types.rb', line 2457 class CommandPlugin < Struct.new( :name, :status, :status_details, :response_code, :response_start_date_time, :response_finish_date_time, :output, :standard_output_url, :standard_error_url, :output_s3_region, :output_s3_bucket_name, :output_s3_key_prefix) SENSITIVE = [] include Aws::Structure end |
#standard_error_url ⇒ String
The URL for the complete text written by the plugin to stderr. If execution isn’t yet complete, then this string is empty.
2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 |
# File 'lib/aws-sdk-ssm/types.rb', line 2457 class CommandPlugin < Struct.new( :name, :status, :status_details, :response_code, :response_start_date_time, :response_finish_date_time, :output, :standard_output_url, :standard_error_url, :output_s3_region, :output_s3_bucket_name, :output_s3_key_prefix) SENSITIVE = [] include Aws::Structure end |
#standard_output_url ⇒ String
The URL for the complete text written by the plugin to stdout in Amazon S3. If the S3 bucket for the command wasn’t specified, then this string is empty.
2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 |
# File 'lib/aws-sdk-ssm/types.rb', line 2457 class CommandPlugin < Struct.new( :name, :status, :status_details, :response_code, :response_start_date_time, :response_finish_date_time, :output, :standard_output_url, :standard_error_url, :output_s3_region, :output_s3_bucket_name, :output_s3_key_prefix) SENSITIVE = [] include Aws::Structure end |
#status ⇒ String
The status of this plugin. You can run a document with multiple plugins.
2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 |
# File 'lib/aws-sdk-ssm/types.rb', line 2457 class CommandPlugin < Struct.new( :name, :status, :status_details, :response_code, :response_start_date_time, :response_finish_date_time, :output, :standard_output_url, :standard_error_url, :output_s3_region, :output_s3_bucket_name, :output_s3_key_prefix) SENSITIVE = [] include Aws::Structure end |
#status_details ⇒ String
A detailed status of the plugin execution. ‘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] in the *Amazon Web Services Systems Manager User Guide*. StatusDetails can be one of the following values:
-
Pending: The command hasn’t been sent to the managed node.
-
In Progress: The command has been sent to the managed node but hasn’t reached a terminal state.
-
Success: The execution of the command or plugin was successfully completed. This is a terminal state.
-
Delivery Timed Out: The command wasn’t delivered to the managed node before the delivery timeout expired. Delivery timeouts don’t count against the parent command’s ‘MaxErrors` limit, but they do contribute to whether the parent command status is Success or Incomplete. This is a terminal state.
-
Execution Timed Out: Command execution started on the managed node, but the execution wasn’t complete before the execution timeout expired. Execution timeouts count against the ‘MaxErrors` limit of the parent command. This is a terminal state.
-
Failed: The command wasn’t successful on the managed node. For a plugin, this indicates that the result code wasn’t zero. For a command invocation, this indicates that the result code for one or more plugins wasn’t zero. Invocation failures count against the MaxErrors limit of the parent command. This is a terminal state.
-
Cancelled: The command was terminated before it was completed. This is a terminal state.
-
Undeliverable: The command can’t be delivered to the managed node. The managed node might not exist, or it might not be responding. Undeliverable invocations don’t count against the parent command’s MaxErrors limit, and they don’t contribute to whether the parent command status is Success or Incomplete. This is a terminal state.
-
Terminated: The parent command exceeded its MaxErrors limit and subsequent command invocations were canceled by the system. This is a terminal state.
[1]: docs.aws.amazon.com/systems-manager/latest/userguide/monitor-commands.html
2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 |
# File 'lib/aws-sdk-ssm/types.rb', line 2457 class CommandPlugin < Struct.new( :name, :status, :status_details, :response_code, :response_start_date_time, :response_finish_date_time, :output, :standard_output_url, :standard_error_url, :output_s3_region, :output_s3_bucket_name, :output_s3_key_prefix) SENSITIVE = [] include Aws::Structure end |