Class: Aws::States::Types::StateMachineListItem
- Inherits:
-
Struct
- Object
- Struct
- Aws::States::Types::StateMachineListItem
- Includes:
- Aws::Structure
- Defined in:
- 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.
4160 4161 4162 4163 4164 4165 4166 4167 |
# File 'lib/aws-sdk-states/types.rb', line 4160 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,U+FFFE-FFFF) -
surrogates (
U+D800-DFFF) -
invalid characters (
U+10FFFF)
To enable logging with CloudWatch Logs, the name should only contain 0-9, A-Z, a-z, - and _.
4160 4161 4162 4163 4164 4165 4166 4167 |
# File 'lib/aws-sdk-states/types.rb', line 4160 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.
4160 4161 4162 4163 4164 4165 4166 4167 |
# File 'lib/aws-sdk-states/types.rb', line 4160 class StateMachineListItem < Struct.new( :state_machine_arn, :name, :type, :creation_date) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
4160 4161 4162 4163 4164 4165 4166 4167 |
# File 'lib/aws-sdk-states/types.rb', line 4160 class StateMachineListItem < Struct.new( :state_machine_arn, :name, :type, :creation_date) SENSITIVE = [] include Aws::Structure end |