Class: Aws::Appflow::Types::StopFlowRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Appflow::Types::StopFlowRequest
- Defined in:
- gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb
Overview
Note:
When making an API call, you may pass StopFlowRequest 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.
6518 6519 6520 6521 6522 |
# File 'gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb', line 6518 class StopFlowRequest < Struct.new( :flow_name) SENSITIVE = [] include Aws::Structure end |