Class: Aws::Appflow::Types::StartFlowRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Appflow::Types::StartFlowRequest
- Defined in:
- gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb
Overview
Note:
When making an API call, you may pass StartFlowRequest data as a hash:
{
flow_name: "FlowName", # required
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#flow_name ⇒ String
The specified name of the flow.
Instance Attribute Details
#flow_name ⇒ String
The specified name of the flow. Spaces are not allowed. Use underscores (_) or hyphens (-) only.
6474 6475 6476 6477 6478 |
# File 'gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb', line 6474 class StartFlowRequest < Struct.new( :flow_name) SENSITIVE = [] include Aws::Structure end |