Class: Aws::States::Types::StateMachineAliasListItem
- Inherits:
-
Struct
- Object
- Struct
- Aws::States::Types::StateMachineAliasListItem
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-states/types.rb
Overview
Contains details about a specific state machine alias.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#creation_date ⇒ Time
The creation date of a state machine alias.
-
#state_machine_alias_arn ⇒ String
The Amazon Resource Name (ARN) that identifies a state machine alias.
Instance Attribute Details
#creation_date ⇒ Time
The creation date of a state machine alias.
3740 3741 3742 3743 3744 3745 |
# File 'lib/aws-sdk-states/types.rb', line 3740 class StateMachineAliasListItem < Struct.new( :state_machine_alias_arn, :creation_date) SENSITIVE = [] include Aws::Structure end |
#state_machine_alias_arn ⇒ String
The Amazon Resource Name (ARN) that identifies a state machine alias. The alias ARN is a combination of state machine ARN and the alias name separated by a colon (:). For example, ‘stateMachineARN:PROD`.
3740 3741 3742 3743 3744 3745 |
# File 'lib/aws-sdk-states/types.rb', line 3740 class StateMachineAliasListItem < Struct.new( :state_machine_alias_arn, :creation_date) SENSITIVE = [] include Aws::Structure end |