Class: Aws::CodePipeline::Types::ActionTypeIdentifier

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

Overview

Specifies the category, owner, provider, and version of the action type.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#categoryString

Defines what kind of action can be taken in the stage, one of the following:

  • ‘Source`

  • ‘Build`

  • ‘Test`

  • ‘Deploy`

  • ‘Approval`

  • ‘Invoke`

Returns:

  • (String)


901
902
903
904
905
906
907
908
# File 'lib/aws-sdk-codepipeline/types.rb', line 901

class ActionTypeIdentifier < Struct.new(
  :category,
  :owner,
  :provider,
  :version)
  SENSITIVE = []
  include Aws::Structure
end

#ownerString

The creator of the action type being called: ‘AWS` or `ThirdParty`.

Returns:

  • (String)


901
902
903
904
905
906
907
908
# File 'lib/aws-sdk-codepipeline/types.rb', line 901

class ActionTypeIdentifier < Struct.new(
  :category,
  :owner,
  :provider,
  :version)
  SENSITIVE = []
  include Aws::Structure
end

#providerString

The provider of the action type being called. The provider name is supplied when the action type is created.

Returns:

  • (String)


901
902
903
904
905
906
907
908
# File 'lib/aws-sdk-codepipeline/types.rb', line 901

class ActionTypeIdentifier < Struct.new(
  :category,
  :owner,
  :provider,
  :version)
  SENSITIVE = []
  include Aws::Structure
end

#versionString

A string that describes the action type version.

Returns:

  • (String)


901
902
903
904
905
906
907
908
# File 'lib/aws-sdk-codepipeline/types.rb', line 901

class ActionTypeIdentifier < Struct.new(
  :category,
  :owner,
  :provider,
  :version)
  SENSITIVE = []
  include Aws::Structure
end