Class: Aws::States::Types::ValidateStateMachineDefinitionInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::States::Types::ValidateStateMachineDefinitionInput
- Defined in:
- gems/aws-sdk-states/lib/aws-sdk-states/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[:definition]
Instance Attribute Summary collapse
-
#definition ⇒ String
The Amazon States Language definition of the state machine.
-
#max_results ⇒ Integer
The maximum number of diagnostics that are returned per call.
-
#severity ⇒ String
Minimum level of diagnostics to return.
-
#type ⇒ String
The target type of state machine for this definition.
Instance Attribute Details
#definition ⇒ String
The Amazon States Language definition of the state machine. For more information, see Amazon States Language (ASL).
5141 5142 5143 5144 5145 5146 5147 5148 |
# File 'gems/aws-sdk-states/lib/aws-sdk-states/types.rb', line 5141 class ValidateStateMachineDefinitionInput < Struct.new( :definition, :type, :severity, :max_results) SENSITIVE = [:definition] include Aws::Structure end |
#max_results ⇒ Integer
The maximum number of diagnostics that are returned per call. The default and maximum value is 100. Setting the value to 0 will also use the default of 100.
If the number of diagnostics returned in the response exceeds
maxResults, the value of the truncated field in the response
will be set to true.
5141 5142 5143 5144 5145 5146 5147 5148 |
# File 'gems/aws-sdk-states/lib/aws-sdk-states/types.rb', line 5141 class ValidateStateMachineDefinitionInput < Struct.new( :definition, :type, :severity, :max_results) SENSITIVE = [:definition] include Aws::Structure end |
#severity ⇒ String
Minimum level of diagnostics to return. ERROR returns only ERROR
diagnostics, whereas WARNING returns both WARNING and ERROR
diagnostics. The default is ERROR.
5141 5142 5143 5144 5145 5146 5147 5148 |
# File 'gems/aws-sdk-states/lib/aws-sdk-states/types.rb', line 5141 class ValidateStateMachineDefinitionInput < Struct.new( :definition, :type, :severity, :max_results) SENSITIVE = [:definition] include Aws::Structure end |
#type ⇒ String
The target type of state machine for this definition. The default is
STANDARD.
5141 5142 5143 5144 5145 5146 5147 5148 |
# File 'gems/aws-sdk-states/lib/aws-sdk-states/types.rb', line 5141 class ValidateStateMachineDefinitionInput < Struct.new( :definition, :type, :severity, :max_results) SENSITIVE = [:definition] include Aws::Structure end |