aws-cdk-lib.aws_cloudformation.CfnHookDefaultVersionProps

interface CfnHookDefaultVersionProps

LanguageType name
.NETAmazon.CDK.AWS.CloudFormation.CfnHookDefaultVersionProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awscloudformation#CfnHookDefaultVersionProps
Javasoftware.amazon.awscdk.services.cloudformation.CfnHookDefaultVersionProps
Pythonaws_cdk.aws_cloudformation.CfnHookDefaultVersionProps
TypeScript aws-cdk-lib » aws_cloudformation » CfnHookDefaultVersionProps

Properties for defining a CfnHookDefaultVersion.

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-lib';
const cfnHookDefaultVersionProps: cloudformation.CfnHookDefaultVersionProps = {
  typeName: 'typeName',
  typeVersionArn: 'typeVersionArn',
  versionId: 'versionId',
};

Properties

NameTypeDescription
typeName?stringThe name of the hook.
typeVersionArn?stringThe version ID of the type configuration.
versionId?stringThe 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 .