Table of Contents

Class CfnHookTypeConfigProps

Namespace
Amazon.CDK
Assembly
Amazon.CDK.dll

Properties for defining a CfnHookTypeConfig.

public class CfnHookTypeConfigProps : ICfnHookTypeConfigProps
Inheritance
CfnHookTypeConfigProps
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 cfnHookTypeConfigProps = new CfnHookTypeConfigProps {
                 Configuration = "configuration",

                 // the properties below are optional
                 ConfigurationAlias = "configurationAlias",
                 TypeArn = "typeArn",
                 TypeName = "typeName"
             };

Remarks

Constructors

CfnHookTypeConfigProps()

public CfnHookTypeConfigProps()

Properties

Configuration

Specifies the activated hook type configuration, in this AWS account and AWS Region .

public string Configuration { get; set; }

Property Value

string

Remarks

ConfigurationAlias

Specifies the activated hook type configuration, in this AWS account and AWS Region .

public string? ConfigurationAlias { get; set; }

Property Value

string

Remarks

TypeArn

The Amazon Resource Number (ARN) for the hook to set Configuration for.

public string? TypeArn { get; set; }

Property Value

string

Remarks

TypeName

The unique name for your hook.

public string? TypeName { get; set; }

Property Value

string

Remarks

Specifies a three-part namespace for your hook, with a recommended pattern of Organization::Service::Hook .

You must specify either TypeName and Configuration or TypeARN and Configuration .

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-hooktypeconfig.html#cfn-cloudformation-hooktypeconfig-typename