Class: Aws::States::Types::StateMachineAliasListItem
- Inherits:
-
Struct
- Object
- Struct
- Aws::States::Types::StateMachineAliasListItem
- Defined in:
- gems/aws-sdk-states/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.
3844 3845 3846 3847 3848 3849 |
# File 'gems/aws-sdk-states/lib/aws-sdk-states/types.rb', line 3844 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
.
3844 3845 3846 3847 3848 3849 |
# File 'gems/aws-sdk-states/lib/aws-sdk-states/types.rb', line 3844 class StateMachineAliasListItem < Struct.new( :state_machine_alias_arn, :creation_date) SENSITIVE = [] include Aws::Structure end |