aws-cdk-lib.aws_codepipeline.CfnCustomActionTypeProps

interface CfnCustomActionTypeProps

LanguageType name
.NETAmazon.CDK.AWS.CodePipeline.CfnCustomActionTypeProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awscodepipeline#CfnCustomActionTypeProps
Javasoftware.amazon.awscdk.services.codepipeline.CfnCustomActionTypeProps
Pythonaws_cdk.aws_codepipeline.CfnCustomActionTypeProps
TypeScript aws-cdk-lib » aws_codepipeline » CfnCustomActionTypeProps

Properties for defining a CfnCustomActionType.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_codepipeline as codepipeline } from 'aws-cdk-lib';
const cfnCustomActionTypeProps: codepipeline.CfnCustomActionTypeProps = {
  category: 'category',
  inputArtifactDetails: {
    maximumCount: 123,
    minimumCount: 123,
  },
  outputArtifactDetails: {
    maximumCount: 123,
    minimumCount: 123,
  },
  provider: 'provider',
  version: 'version',

  // the properties below are optional
  configurationProperties: [{
    key: false,
    name: 'name',
    required: false,
    secret: false,

    // the properties below are optional
    description: 'description',
    queryable: false,
    type: 'type',
  }],
  settings: {
    entityUrlTemplate: 'entityUrlTemplate',
    executionUrlTemplate: 'executionUrlTemplate',
    revisionUrlTemplate: 'revisionUrlTemplate',
    thirdPartyConfigurationUrl: 'thirdPartyConfigurationUrl',
  },
  tags: [{
    key: 'key',
    value: 'value',
  }],
};

Properties

NameTypeDescription
categorystringThe category of the custom action, such as a build action or a test action.
inputArtifactDetailsIResolvable | ArtifactDetailsPropertyThe details of the input artifact for the action, such as its commit ID.
outputArtifactDetailsIResolvable | ArtifactDetailsPropertyThe details of the output artifact of the action, such as its commit ID.
providerstringThe provider of the service used in the custom action, such as CodeDeploy.
versionstringThe version identifier of the custom action.
configurationProperties?IResolvable | IResolvable | ConfigurationPropertiesProperty[]The configuration properties for the custom action.
settings?IResolvable | SettingsPropertyURLs that provide users information about this custom action.
tags?CfnTag[]The tags for the custom action.

category

Type: string

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


inputArtifactDetails

Type: IResolvable | ArtifactDetailsProperty

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


outputArtifactDetails

Type: IResolvable | ArtifactDetailsProperty

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


provider

Type: string

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


version

Type: string

The version identifier of the custom action.


configurationProperties?

Type: IResolvable | IResolvable | ConfigurationPropertiesProperty[] (optional)

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 .


settings?

Type: IResolvable | SettingsProperty (optional)

URLs that provide users information about this custom action.


tags?

Type: CfnTag[] (optional)

The tags for the custom action.