interface CfnHookDefaultVersionMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.CloudFormation.CfnHookDefaultVersionMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awscloudformation#CfnHookDefaultVersionMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.cloudformation.CfnHookDefaultVersionMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_cloudformation.CfnHookDefaultVersionMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_cloudformation » 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 { aws_cloudformation as cloudformation } from '@aws-cdk/cfn-property-mixins';
const cfnHookDefaultVersionMixinProps: cloudformation.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