interface CustomActionTypeReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.CodePipeline.CustomActionTypeReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awscodepipeline#CustomActionTypeReference |
Java | software.amazon.awscdk.interfaces.codepipeline.CustomActionTypeReference |
Python | aws_cdk.interfaces.aws_codepipeline.CustomActionTypeReference |
TypeScript | aws-cdk-lib » interfaces » 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 interfaces_aws_codepipeline } from 'aws-cdk-lib/interfaces';
const customActionTypeReference: interfaces_aws_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