Class: Aws::States::Types::StateMachineListItem
- Inherits:
-
Struct
- Object
- Struct
- Aws::States::Types::StateMachineListItem
- Defined in:
- gems/aws-sdk-states/lib/aws-sdk-states/types.rb
Overview
Contains details about the state machine.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#creation_date ⇒ Time
The date the state machine is created.
-
#name ⇒ String
The name of the state machine.
-
#state_machine_arn ⇒ String
The Amazon Resource Name (ARN) that identifies the state machine.
-
#type ⇒ String
Instance Attribute Details
#creation_date ⇒ Time
The date the state machine is created.
3836 3837 3838 3839 3840 3841 3842 3843 |
# File 'gems/aws-sdk-states/lib/aws-sdk-states/types.rb', line 3836 class StateMachineListItem < Struct.new( :state_machine_arn, :name, :type, :creation_date) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the state machine.
A name must not contain:
white space
brackets
< > \{ \} [ ]
wildcard characters
? *
special characters
" # % \ ^ | ~ ` $ & , ; : /
control characters (
U+0000-001F
,U+007F-009F
)
To enable logging with CloudWatch Logs, the name should only contain 0-9, A-Z, a-z, - and _.
3836 3837 3838 3839 3840 3841 3842 3843 |
# File 'gems/aws-sdk-states/lib/aws-sdk-states/types.rb', line 3836 class StateMachineListItem < Struct.new( :state_machine_arn, :name, :type, :creation_date) SENSITIVE = [] include Aws::Structure end |
#state_machine_arn ⇒ String
The Amazon Resource Name (ARN) that identifies the state machine.
3836 3837 3838 3839 3840 3841 3842 3843 |
# File 'gems/aws-sdk-states/lib/aws-sdk-states/types.rb', line 3836 class StateMachineListItem < Struct.new( :state_machine_arn, :name, :type, :creation_date) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
3836 3837 3838 3839 3840 3841 3842 3843 |
# File 'gems/aws-sdk-states/lib/aws-sdk-states/types.rb', line 3836 class StateMachineListItem < Struct.new( :state_machine_arn, :name, :type, :creation_date) SENSITIVE = [] include Aws::Structure end |