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

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

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

Represents information about an action type.

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 values below.

Returns:

  • (String)


508
509
510
511
512
513
514
# File 'lib/aws-sdk-codepipeline/types.rb', line 508

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

#ownerString

The creator of the action being called.

Returns:

  • (String)


508
509
510
511
512
513
514
# File 'lib/aws-sdk-codepipeline/types.rb', line 508

class ActionTypeId < Struct.new(
  :category,
  :owner,
  :provider,
  :version)
  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 AWS CodeDeploy, which would be specified as CodeDeploy.

Returns:

  • (String)


508
509
510
511
512
513
514
# File 'lib/aws-sdk-codepipeline/types.rb', line 508

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

#versionString

A string that describes the action version.

Returns:

  • (String)


508
509
510
511
512
513
514
# File 'lib/aws-sdk-codepipeline/types.rb', line 508

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