Method: Aws::CloudFormation::Types::StackEvent#client_request_token
- Defined in:
- lib/aws-sdk-cloudformation/types.rb
#client_request_token ⇒ String
The token passed to the operation that generated this event.
All events triggered by a given stack operation are assigned the same client request token, which you can use to track operations. For example, if you execute a ‘CreateStack` operation with the token `token1`, then all the `StackEvents` generated by that operation will have `ClientRequestToken` set as `token1`.
In the console, stack operations display the client request token on the Events tab. Stack operations that are initiated from the console use the token format Console-StackOperation-ID, which helps you easily identify the stack operation . For example, if you create a stack using the console, each stack event would be assigned the same token in the following format: ‘Console-CreateStack-7f59c3cf-00d2-40c7-b2ff-e75db0987002`.
9033 9034 9035 9036 9037 9038 9039 9040 9041 9042 9043 9044 9045 9046 9047 9048 9049 9050 9051 9052 9053 9054 9055 |
# File 'lib/aws-sdk-cloudformation/types.rb', line 9033 class StackEvent < Struct.new( :stack_id, :event_id, :stack_name, :operation_id, :logical_resource_id, :physical_resource_id, :resource_type, :timestamp, :resource_status, :resource_status_reason, :resource_properties, :client_request_token, :hook_type, :hook_status, :hook_status_reason, :hook_invocation_point, :hook_invocation_id, :hook_failure_mode, :detailed_status) SENSITIVE = [] include Aws::Structure end |