Class: Aws::States::Types::ValidateStateMachineDefinitionOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::States::Types::ValidateStateMachineDefinitionOutput
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-states/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#diagnostics ⇒ Array<Types::ValidateStateMachineDefinitionDiagnostic>
If the result is ‘OK`, this field will be empty.
-
#result ⇒ String
The result value will be ‘OK` when no syntax errors are found, or `FAIL` if the workflow definition does not pass verification.
-
#truncated ⇒ Boolean
The result value will be ‘true` if the number of diagnostics found in the workflow definition exceeds `maxResults`.
Instance Attribute Details
#diagnostics ⇒ Array<Types::ValidateStateMachineDefinitionDiagnostic>
If the result is ‘OK`, this field will be empty. When there are errors, this field will contain an array of Diagnostic objects to help you troubleshoot.
4680 4681 4682 4683 4684 4685 4686 |
# File 'lib/aws-sdk-states/types.rb', line 4680 class ValidateStateMachineDefinitionOutput < Struct.new( :result, :diagnostics, :truncated) SENSITIVE = [] include Aws::Structure end |
#result ⇒ String
The result value will be ‘OK` when no syntax errors are found, or `FAIL` if the workflow definition does not pass verification.
4680 4681 4682 4683 4684 4685 4686 |
# File 'lib/aws-sdk-states/types.rb', line 4680 class ValidateStateMachineDefinitionOutput < Struct.new( :result, :diagnostics, :truncated) SENSITIVE = [] include Aws::Structure end |
#truncated ⇒ Boolean
The result value will be ‘true` if the number of diagnostics found in the workflow definition exceeds `maxResults`. When all diagnostics results are returned, the value will be `false`.
4680 4681 4682 4683 4684 4685 4686 |
# File 'lib/aws-sdk-states/types.rb', line 4680 class ValidateStateMachineDefinitionOutput < Struct.new( :result, :diagnostics, :truncated) SENSITIVE = [] include Aws::Structure end |