Interface ICfnHookProps
Construction properties of {@link CfnHook}.
public interface ICfnHookProps
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK;
var properties;
var cfnHookProps = new CfnHookProps {
Type = "type",
// the properties below are optional
Properties = new Dictionary<string, object> {
{ "propertiesKey", properties }
}
};
Remarks
ExampleMetadata: fixture=_generated
Properties
Properties
The properties of the hook.
IDictionary<string, object>? Properties { get; }
Property Value
Remarks
Default: - no properties
Type
The type of the hook (for example, "AWS::CodeDeploy::BlueGreen").
string Type { get; }