Class: Aws::IoTThingsGraph::Types::ListFlowExecutionMessagesRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTThingsGraph::Types::ListFlowExecutionMessagesRequest
- Defined in:
- gems/aws-sdk-iotthingsgraph/lib/aws-sdk-iotthingsgraph/types.rb
Overview
Note:
When making an API call, you may pass ListFlowExecutionMessagesRequest data as a hash:
{
flow_execution_id: "FlowExecutionId", # required
next_token: "NextToken",
max_results: 1,
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#flow_execution_id ⇒ String
The ID of the flow execution.
-
#max_results ⇒ Integer
The maximum number of results to return in the response.
-
#next_token ⇒ String
The string that specifies the next page of results.
Instance Attribute Details
#flow_execution_id ⇒ String
The ID of the flow execution.
1094 1095 1096 1097 1098 1099 1100 |
# File 'gems/aws-sdk-iotthingsgraph/lib/aws-sdk-iotthingsgraph/types.rb', line 1094 class ListFlowExecutionMessagesRequest < Struct.new( :flow_execution_id, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#max_results ⇒ Integer
The maximum number of results to return in the response.
1094 1095 1096 1097 1098 1099 1100 |
# File 'gems/aws-sdk-iotthingsgraph/lib/aws-sdk-iotthingsgraph/types.rb', line 1094 class ListFlowExecutionMessagesRequest < Struct.new( :flow_execution_id, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
The string that specifies the next page of results. Use this when you're paginating results.
1094 1095 1096 1097 1098 1099 1100 |
# File 'gems/aws-sdk-iotthingsgraph/lib/aws-sdk-iotthingsgraph/types.rb', line 1094 class ListFlowExecutionMessagesRequest < Struct.new( :flow_execution_id, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |