Class: Aws::States::Types::DescribeExecutionInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::States::Types::DescribeExecutionInput
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-states/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#execution_arn ⇒ String
The Amazon Resource Name (ARN) of the execution to describe.
-
#included_data ⇒ String
If your state machine definition is encrypted with a KMS key, callers must have ‘kms:Decrypt` permission to decrypt the definition.
Instance Attribute Details
#execution_arn ⇒ String
The Amazon Resource Name (ARN) of the execution to describe.
688 689 690 691 692 693 |
# File 'lib/aws-sdk-states/types.rb', line 688 class DescribeExecutionInput < Struct.new( :execution_arn, :included_data) SENSITIVE = [] include Aws::Structure end |
#included_data ⇒ String
If your state machine definition is encrypted with a KMS key, callers must have ‘kms:Decrypt` permission to decrypt the definition. Alternatively, you can call DescribeStateMachine API with `includedData = METADATA_ONLY` to get a successful response without the encrypted definition.
688 689 690 691 692 693 |
# File 'lib/aws-sdk-states/types.rb', line 688 class DescribeExecutionInput < Struct.new( :execution_arn, :included_data) SENSITIVE = [] include Aws::Structure end |