interface CfnHookDefaultVersionMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CloudFormation.Mixins.CfnHookDefaultVersionMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscloudformation/mixins#CfnHookDefaultVersionMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.cloudformation.mixins.CfnHookDefaultVersionMixinProps |
Python | aws_cdk.mixins_preview.aws_cloudformation.mixins.CfnHookDefaultVersionMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_cloudformation » mixins » CfnHookDefaultVersionMixinProps |
Properties for CfnHookDefaultVersionPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as cloudformation_mixins } from '@aws-cdk/mixins-preview/aws-cloudformation';
const cfnHookDefaultVersionMixinProps: cloudformation_mixins.CfnHookDefaultVersionMixinProps = {
typeName: 'typeName',
typeVersionArn: 'typeVersionArn',
versionId: 'versionId',
};
Properties
| Name | Type | Description |
|---|---|---|
| type | string | The name of the Hook. |
| type | string | The version ID of the type configuration. |
| version | string | The version ID of the type specified. |
typeName?
Type:
string
(optional)
The name of the Hook.
You must specify either TypeVersionArn , or TypeName and VersionId .
typeVersionArn?
Type:
string
(optional)
The version ID of the type configuration.
You must specify either TypeVersionArn , or TypeName and VersionId .
versionId?
Type:
string
(optional)
The version ID of the type specified.
You must specify either TypeVersionArn , or TypeName and VersionId .

.NET
Go
Java
Python
TypeScript