You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::CodePipeline::Types::CreateCustomActionTypeInput

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing CreateCustomActionTypeInput as input to an Aws::Client method, you can use a vanilla Hash:

{
  category: "Source", # required, accepts Source, Build, Deploy, Test, Invoke, Approval
  provider: "ActionProvider", # required
  version: "Version", # required
  settings: {
    third_party_configuration_url: "Url",
    entity_url_template: "UrlTemplate",
    execution_url_template: "UrlTemplate",
    revision_url_template: "UrlTemplate",
  },
  configuration_properties: [
    {
      name: "ActionConfigurationKey", # required
      required: false, # required
      key: false, # required
      secret: false, # required
      queryable: false,
      description: "Description",
      type: "String", # accepts String, Number, Boolean
    },
  ],
  input_artifact_details: { # required
    minimum_count: 1, # required
    maximum_count: 1, # required
  },
  output_artifact_details: { # required
    minimum_count: 1, # required
    maximum_count: 1, # required
  },
  tags: [
    {
      key: "TagKey", # required
      value: "TagValue", # required
    },
  ],
}

Represents the input of a CreateCustomActionType operation.

Instance Attribute Summary collapse

Instance Attribute Details

#categoryString

The category of the custom action, such as a build action or a test action.

Possible values:

  • Source
  • Build
  • Deploy
  • Test
  • Invoke
  • Approval

Returns:

  • (String)

    The category of the custom action, such as a build action or a test action.

#configuration_propertiesArray<Types::ActionConfigurationProperty>

The configuration properties for the custom action.

You can refer to a name in the configuration properties of the custom action within the URL templates by following the format of `Config:name`, as long as the configuration property is both required and not secret. For more information, see Create a Custom Action for a Pipeline.

Returns:

#input_artifact_detailsTypes::ArtifactDetails

The details of the input artifact for the action, such as its commit ID.

Returns:

#output_artifact_detailsTypes::ArtifactDetails

The details of the output artifact of the action, such as its commit ID.

Returns:

#providerString

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

Returns:

  • (String)

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

#settingsTypes::ActionTypeSettings

URLs that provide users information about this custom action.

Returns:

#tagsArray<Types::Tag>

The tags for the custom action.

Returns:

  • (Array<Types::Tag>)

    The tags for the custom action.

#versionString

The version identifier of the custom action.

Returns:

  • (String)

    The version identifier of the custom action.