Method: Aws::SSM::Types::Command#output_s3_key_prefix
- Defined in:
- lib/aws-sdk-ssm/types.rb
#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.
2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 |
# File 'lib/aws-sdk-ssm/types.rb', line 2119 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 |