Table of Contents

Class CfnHookProps

Namespace
Amazon.CDK
Assembly
Amazon.CDK.dll

Construction properties of {@link CfnHook}.

public class CfnHookProps : ICfnHookProps
Inheritance
CfnHookProps
Implements
Inherited Members

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

Constructors

CfnHookProps()

public CfnHookProps()

Properties

Properties

The properties of the hook.

public IDictionary<string, object>? Properties { get; set; }

Property Value

IDictionary<string, object>

Remarks

Default: - no properties

Type

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

public string Type { get; set; }

Property Value

string