aws-cdk-lib.CfnHookProps

interface CfnHookProps

LanguageType name
.NETAmazon.CDK.CfnHookProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2#CfnHookProps
Javasoftware.amazon.awscdk.CfnHookProps
Pythonaws_cdk.CfnHookProps
TypeScript (source)aws-cdk-lib » CfnHookProps

Construction properties of CfnHook.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as cdk from 'aws-cdk-lib';

declare const properties: any;
const cfnHookProps: cdk.CfnHookProps = {
  type: 'type',

  // the properties below are optional
  properties: {
    propertiesKey: properties,
  },
};

Properties

NameTypeDescription
typestringThe type of the hook (for example, "AWS::CodeDeploy::BlueGreen").
properties?{ [string]: any }The properties of the hook.

type

Type: string

The type of the hook (for example, "AWS::CodeDeploy::BlueGreen").


properties?

Type: { [string]: any } (optional, default: no properties)

The properties of the hook.