interface CfnHookTypeConfigMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CloudFormation.Mixins.CfnHookTypeConfigMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscloudformation/mixins#CfnHookTypeConfigMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.cloudformation.mixins.CfnHookTypeConfigMixinProps |
Python | aws_cdk.mixins_preview.aws_cloudformation.mixins.CfnHookTypeConfigMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_cloudformation » mixins » CfnHookTypeConfigMixinProps |
Properties for CfnHookTypeConfigPropsMixin.
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 cfnHookTypeConfigMixinProps: cloudformation_mixins.CfnHookTypeConfigMixinProps = {
configuration: 'configuration',
configurationAlias: 'configurationAlias',
typeArn: 'typeArn',
typeName: 'typeName',
};
Properties
| Name | Type | Description |
|---|---|---|
| configuration? | string | Specifies the activated Hook type configuration, in this AWS account and AWS Region . |
| configuration | string | An alias by which to refer to this configuration data. |
| type | string | The Amazon Resource Number (ARN) for the Hook to set Configuration for. |
| type | string | The unique name for your Hook. |
configuration?
Type:
string
(optional)
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, default: "default")
An alias by which to refer to this configuration data.
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 .

.NET
Go
Java
Python
TypeScript