Class: Aws::States::Types::ValidateStateMachineDefinitionInput

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

Overview

Constant Summary collapse

SENSITIVE =
[:definition]

Instance Attribute Summary collapse

Instance Attribute Details

#definitionString

The Amazon States Language definition of the state machine. For more information, see [Amazon States Language] (ASL).

[1]: docs.aws.amazon.com/step-functions/latest/dg/concepts-amazon-states-language.html

Returns:

  • (String)


4652
4653
4654
4655
4656
4657
4658
4659
# File 'lib/aws-sdk-states/types.rb', line 4652

class ValidateStateMachineDefinitionInput < Struct.new(
  :definition,
  :type,
  :severity,
  :max_results)
  SENSITIVE = [:definition]
  include Aws::Structure
end

#max_resultsInteger

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

Returns:

  • (Integer)


4652
4653
4654
4655
4656
4657
4658
4659
# File 'lib/aws-sdk-states/types.rb', line 4652

class ValidateStateMachineDefinitionInput < Struct.new(
  :definition,
  :type,
  :severity,
  :max_results)
  SENSITIVE = [:definition]
  include Aws::Structure
end

#severityString

Minimum level of diagnostics to return. ‘ERROR` returns only `ERROR` diagnostics, whereas `WARNING` returns both `WARNING` and `ERROR` diagnostics. The default is `ERROR`.

Returns:

  • (String)


4652
4653
4654
4655
4656
4657
4658
4659
# File 'lib/aws-sdk-states/types.rb', line 4652

class ValidateStateMachineDefinitionInput < Struct.new(
  :definition,
  :type,
  :severity,
  :max_results)
  SENSITIVE = [:definition]
  include Aws::Structure
end

#typeString

The target type of state machine for this definition. The default is ‘STANDARD`.

Returns:

  • (String)


4652
4653
4654
4655
4656
4657
4658
4659
# File 'lib/aws-sdk-states/types.rb', line 4652

class ValidateStateMachineDefinitionInput < Struct.new(
  :definition,
  :type,
  :severity,
  :max_results)
  SENSITIVE = [:definition]
  include Aws::Structure
end