interface CustomActionTypeReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.CodePipeline.CustomActionTypeReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscodepipeline#CustomActionTypeReference |
Java | software.amazon.awscdk.services.codepipeline.CustomActionTypeReference |
Python | aws_cdk.aws_codepipeline.CustomActionTypeReference |
TypeScript | aws-cdk-lib » aws_codepipeline » CustomActionTypeReference |
A reference to a CustomActionType resource.
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 customActionTypeReference: codepipeline.CustomActionTypeReference = {
category: 'category',
provider: 'provider',
version: 'version',
};
Properties
| Name | Type | Description |
|---|---|---|
| category | string | The Category of the CustomActionType resource. |
| provider | string | The Provider of the CustomActionType resource. |
| version | string | The Version of the CustomActionType resource. |
category
Type:
string
The Category of the CustomActionType resource.
provider
Type:
string
The Provider of the CustomActionType resource.
version
Type:
string
The Version of the CustomActionType resource.

.NET
Go
Java
Python
TypeScript