Class: Aws::CodePipeline::Types::ActionTypeId

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

Overview

Represents information about an action type.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#categoryString

A category defines what kind of action can be taken in the stage, and constrains the provider type for the action. Valid categories are limited to one of the following values.

  • Source

  • Build

  • Test

  • Deploy

  • Invoke

  • Approval

Returns:

  • (String)


889
890
891
892
893
894
895
896
# File 'lib/aws-sdk-codepipeline/types.rb', line 889

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

#ownerString

The creator of the action being called. There are three valid values for the ‘Owner` field in the action category section within your pipeline structure: `AWS`, `ThirdParty`, and `Custom`. For more information, see [Valid Action Types and Providers in CodePipeline].

[1]: docs.aws.amazon.com/codepipeline/latest/userguide/reference-pipeline-structure.html#actions-valid-providers

Returns:

  • (String)


889
890
891
892
893
894
895
896
# File 'lib/aws-sdk-codepipeline/types.rb', line 889

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

#providerString

The provider of the service being called by the action. Valid providers are determined by the action category. For example, an action in the Deploy category type might have a provider of CodeDeploy, which would be specified as ‘CodeDeploy`. For more information, see [Valid Action Types and Providers in CodePipeline].

[1]: docs.aws.amazon.com/codepipeline/latest/userguide/reference-pipeline-structure.html#actions-valid-providers

Returns:

  • (String)


889
890
891
892
893
894
895
896
# File 'lib/aws-sdk-codepipeline/types.rb', line 889

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

#versionString

A string that describes the action version.

Returns:

  • (String)


889
890
891
892
893
894
895
896
# File 'lib/aws-sdk-codepipeline/types.rb', line 889

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