Method: Aws::SSM::Types::Command#expires_after
- Defined in:
- lib/aws-sdk-ssm/types.rb
#expires_after ⇒ Time
If a command expires, it changes status to ‘DeliveryTimedOut` for all invocations that have the status `InProgress`, `Pending`, or `Delayed`. `ExpiresAfter` is calculated based on the total timeout for the overall command. For more information, see [Understanding command timeout values] in the *Amazon Web Services Systems Manager User Guide*.
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 |