Class: Aws::States::Types::AssignedVariablesDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::States::Types::AssignedVariablesDetails
- Defined in:
- gems/aws-sdk-states/lib/aws-sdk-states/types.rb
Overview
Provides details about assigned variables in an execution history event.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#truncated ⇒ Boolean
Indicates whether assigned variables were truncated in the response.
Instance Attribute Details
#truncated ⇒ Boolean
Indicates whether assigned variables were truncated in the response.
Always false
for API calls. In CloudWatch logs, the value will be
true if the data is truncated due to size limits.
252 253 254 255 256 |
# File 'gems/aws-sdk-states/lib/aws-sdk-states/types.rb', line 252 class AssignedVariablesDetails < Struct.new( :truncated) SENSITIVE = [] include Aws::Structure end |