Class: Aws::CodePipeline::Types::DeleteCustomActionTypeInput

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

Overview

Note:

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

{
  category: "Source", # required, accepts Source, Build, Deploy, Test, Invoke, Approval
  provider: "ActionProvider", # required
  version: "Version", # required
}

Represents the input of a DeleteCustomActionType operation. The custom action will be marked as deleted.

Instance Attribute Summary collapse

Instance Attribute Details

#categoryString

The category of the custom action that you want to delete, such as source or deploy.

Returns:

  • (String)


1050
1051
1052
1053
1054
1055
# File 'lib/aws-sdk-codepipeline/types.rb', line 1050

class DeleteCustomActionTypeInput < Struct.new(
  :category,
  :provider,
  :version)
  include Aws::Structure
end

#providerString

The provider of the service used in the custom action, such as AWS CodeDeploy.

Returns:

  • (String)


1050
1051
1052
1053
1054
1055
# File 'lib/aws-sdk-codepipeline/types.rb', line 1050

class DeleteCustomActionTypeInput < Struct.new(
  :category,
  :provider,
  :version)
  include Aws::Structure
end

#versionString

The version of the custom action to delete.

Returns:

  • (String)


1050
1051
1052
1053
1054
1055
# File 'lib/aws-sdk-codepipeline/types.rb', line 1050

class DeleteCustomActionTypeInput < Struct.new(
  :category,
  :provider,
  :version)
  include Aws::Structure
end