AWS::CloudFormation::HookTypeConfigThe `AWS::CloudFormation::HookTypeConfig` resource specifies the configuration of an activated Hook. For information about the CloudFormation registry, see [Managing extensions with the CloudFormation registry](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/registry.html) in the *CloudFormation User Guide* .
import { CfnHookTypeConfig } from 'aws-cdk-lib/aws-cloudformation';Or use the module namespace:
import * as cloudformation from 'aws-cdk-lib/aws-cloudformation';
// cloudformation.CfnHookTypeConfigConfiguration passed to the constructor as CfnHookTypeConfigProps.
configurationRequiredstringSpecifies the activated Hook type configuration, in this AWS account and AWS Region . You must specify either `TypeName` and `Configuration` or `TypeArn` and `Configuration` .
configurationAliasOptionalstringAn alias by which to refer to this configuration data. Defaults to `default` alias. Hook types currently support default configuration alias.
Default: - "default"
typeArnOptionalstringThe Amazon Resource Number (ARN) for the Hook to set `Configuration` for. You must specify either `TypeName` and `Configuration` or `TypeArn` and `Configuration` .
typeNameOptionalstringThe 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` .
This L1 construct maps directly to the following CloudFormation resource type.
Our bi-weekly newsletter teaches hands-on AWS fundamentals. No certification fluff - just practical knowledge.
Subscribe to Newsletteraws-cloudformationAWS::CloudFormation::HookTypeConfig