Class: Aws::Appflow::Types::DeleteConnectorProfileRequest

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 DeleteConnectorProfileRequest data as a hash:

{
  connector_profile_name: "ConnectorProfileName", # required
  force_delete: false,
}

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#connector_profile_nameString

The name of the connector profile. The name is unique for each ‘ConnectorProfile` in your account.

Returns:

  • (String)


1699
1700
1701
1702
1703
1704
# File 'lib/aws-sdk-appflow/types.rb', line 1699

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

#force_deleteBoolean

Indicates whether Amazon AppFlow should delete the profile, even if it is currently in use in one or more flows.

Returns:

  • (Boolean)


1699
1700
1701
1702
1703
1704
# File 'lib/aws-sdk-appflow/types.rb', line 1699

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