interface CfnHookProps
Language | Type name |
---|---|
.NET | Amazon.CDK.CfnHookProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2#CfnHookProps |
Java | software.amazon.awscdk.CfnHookProps |
Python | aws_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
Name | Type | Description |
---|---|---|
type | string | The 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.