Class: Aws::Appflow::Types::DeleteFlowRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-appflow/types.rb

Overview

Note:

When making an API call, you may pass DeleteFlowRequest data as a hash:

{
  flow_name: "FlowName", # required
  force_delete: false,
}

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#flow_nameString

The specified name of the flow. Spaces are not allowed. Use underscores (_) or hyphens (-) only.

Returns:

  • (String)


1730
1731
1732
1733
1734
1735
# File 'lib/aws-sdk-appflow/types.rb', line 1730

class DeleteFlowRequest < Struct.new(
  :flow_name,
  :force_delete)
  SENSITIVE = []
  include Aws::Structure
end

#force_deleteBoolean

Indicates whether Amazon AppFlow should delete the flow, even if it is currently in use.

Returns:

  • (Boolean)


1730
1731
1732
1733
1734
1735
# File 'lib/aws-sdk-appflow/types.rb', line 1730

class DeleteFlowRequest < Struct.new(
  :flow_name,
  :force_delete)
  SENSITIVE = []
  include Aws::Structure
end