Show / Hide Table of Contents

Class CfnHookProps

Construction properties of CfnHook.

Inheritance
object
CfnHookProps
Implements
ICfnHookProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnHookProps : ICfnHookProps
Syntax (vb)
Public Class CfnHookProps Implements ICfnHookProps
Remarks

ExampleMetadata: fixture=_generated

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 }
                }
            };

Synopsis

Constructors

CfnHookProps()

Construction properties of CfnHook.

Properties

Properties

The properties of the hook.

Type

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

Constructors

CfnHookProps()

Construction properties of CfnHook.

public CfnHookProps()
Remarks

ExampleMetadata: fixture=_generated

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 }
                }
            };

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

Remarks

ExampleMetadata: fixture=_generated

Implements

ICfnHookProps
Back to top Generated by DocFX