aws-cdk-lib.aws_cloudformation.CfnHookTypeConfigProps

interface CfnHookTypeConfigProps

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

Properties for defining a CfnHookTypeConfig.

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 cfnHookTypeConfigProps: cloudformation.CfnHookTypeConfigProps = {
  configuration: 'configuration',

  // the properties below are optional
  configurationAlias: 'configurationAlias',
  typeArn: 'typeArn',
  typeName: 'typeName',
};

Properties

NameTypeDescription
configurationstringSpecifies the activated hook type configuration, in this AWS account and AWS Region .
configurationAlias?stringSpecifies the activated hook type configuration, in this AWS account and AWS Region .
typeArn?stringThe Amazon Resource Number (ARN) for the hook to set Configuration for.
typeName?stringThe unique name for your hook.

configuration

Type: string

Specifies the activated hook type configuration, in this AWS account and AWS Region .

You must specify either TypeName and Configuration or TypeARN and Configuration .


configurationAlias?

Type: string (optional)

Specifies the activated hook type configuration, in this AWS account and AWS Region .

Defaults to default alias. Hook types currently support default configuration alias.


typeArn?

Type: string (optional)

The Amazon Resource Number (ARN) for the hook to set Configuration for.

You must specify either TypeName and Configuration or TypeARN and Configuration .


typeName?

Type: string (optional)

The unique name for your hook.

Specifies a three-part namespace for your hook, with a recommended pattern of Organization::Service::Hook .

You must specify either TypeName and Configuration or TypeARN and Configuration .