Class: Aws::Appflow::Types::DescribeFlowExecutionRecordsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Appflow::Types::DescribeFlowExecutionRecordsRequest
- Defined in:
- gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb
Overview
Note:
When making an API call, you may pass DescribeFlowExecutionRecordsRequest data as a hash:
{
flow_name: "FlowName", # required
max_results: 1,
next_token: "NextToken",
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#flow_name ⇒ String
The specified name of the flow.
-
#max_results ⇒ Integer
Specifies the maximum number of items that should be returned in the result set.
-
#next_token ⇒ String
The pagination token for the next page of data.
Instance Attribute Details
#flow_name ⇒ String
The specified name of the flow. Spaces are not allowed. Use underscores (_) or hyphens (-) only.
2962 2963 2964 2965 2966 2967 2968 |
# File 'gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb', line 2962 class DescribeFlowExecutionRecordsRequest < Struct.new( :flow_name, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#max_results ⇒ Integer
Specifies the maximum number of items that should be returned in the
result set. The default for maxResults
is 20 (for all paginated
API operations).
2962 2963 2964 2965 2966 2967 2968 |
# File 'gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb', line 2962 class DescribeFlowExecutionRecordsRequest < Struct.new( :flow_name, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
The pagination token for the next page of data.
2962 2963 2964 2965 2966 2967 2968 |
# File 'gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb', line 2962 class DescribeFlowExecutionRecordsRequest < Struct.new( :flow_name, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |