Class: Aws::States::Types::ValidateStateMachineDefinitionOutput

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-states/types.rb

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#diagnosticsArray<Types::ValidateStateMachineDefinitionDiagnostic>

An array of diagnostic errors and warnings found during validation of the state machine definition. Since warnings do not prevent deploying your workflow definition, the result value could be ‘OK` even when warning diagnostics are present in the response.



4976
4977
4978
4979
4980
4981
4982
# File 'lib/aws-sdk-states/types.rb', line 4976

class ValidateStateMachineDefinitionOutput < Struct.new(
  :result,
  :diagnostics,
  :truncated)
  SENSITIVE = []
  include Aws::Structure
end

#resultString

The result value will be ‘OK` when no syntax errors are found, or `FAIL` if the workflow definition does not pass verification.

Returns:

  • (String)


4976
4977
4978
4979
4980
4981
4982
# File 'lib/aws-sdk-states/types.rb', line 4976

class ValidateStateMachineDefinitionOutput < Struct.new(
  :result,
  :diagnostics,
  :truncated)
  SENSITIVE = []
  include Aws::Structure
end

#truncatedBoolean

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`.

Returns:

  • (Boolean)


4976
4977
4978
4979
4980
4981
4982
# File 'lib/aws-sdk-states/types.rb', line 4976

class ValidateStateMachineDefinitionOutput < Struct.new(
  :result,
  :diagnostics,
  :truncated)
  SENSITIVE = []
  include Aws::Structure
end