Table of Contents

Interface ICfnHookProps

Namespace
Amazon.CDK
Assembly
Amazon.CDK.dll

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

IDictionary<string, object>

Remarks

Default: - no properties

Type

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

string Type { get; }

Property Value

string