Method: Aws::SSM::Types::Command#comment

Defined in:
lib/aws-sdk-ssm/types.rb

#commentString

User-specified information about the command, such as a brief description of what the command should do.

Returns:

  • (String)


2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
# File 'lib/aws-sdk-ssm/types.rb', line 2021

class Command < Struct.new(
  :command_id,
  :document_name,
  :document_version,
  :comment,
  :expires_after,
  :parameters,
  :instance_ids,
  :targets,
  :requested_date_time,
  :status,
  :status_details,
  :output_s3_region,
  :output_s3_bucket_name,
  :output_s3_key_prefix,
  :max_concurrency,
  :max_errors,
  :target_count,
  :completed_count,
  :error_count,
  :delivery_timed_out_count,
  :service_role,
  :notification_config,
  :cloud_watch_output_config,
  :timeout_seconds,
  :alarm_configuration,
  :triggered_alarms)
  SENSITIVE = [:parameters]
  include Aws::Structure
end