Show / Hide Table of Contents

Class CfnHookTypeConfigProps

Properties for defining a CfnHookTypeConfig.

Inheritance
object
CfnHookTypeConfigProps
Implements
ICfnHookTypeConfigProps
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 CfnHookTypeConfigProps : ICfnHookTypeConfigProps
Syntax (vb)
Public Class CfnHookTypeConfigProps Implements ICfnHookTypeConfigProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-hooktypeconfig.html

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 cfnHookTypeConfigProps = new CfnHookTypeConfigProps {
                 Configuration = "configuration",

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

Synopsis

Constructors

CfnHookTypeConfigProps()

Properties for defining a CfnHookTypeConfig.

Properties

Configuration

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

ConfigurationAlias

An alias by which to refer to this configuration data.

TypeArn

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

TypeName

The unique name for your Hook.

Constructors

CfnHookTypeConfigProps()

Properties for defining a CfnHookTypeConfig.

public CfnHookTypeConfigProps()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-hooktypeconfig.html

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 cfnHookTypeConfigProps = new CfnHookTypeConfigProps {
                 Configuration = "configuration",

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

Properties

Configuration

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

public string Configuration { get; set; }
Property Value

string

Remarks

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

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

ConfigurationAlias

An alias by which to refer to this configuration data.

public string? ConfigurationAlias { get; set; }
Property Value

string

Remarks

Defaults to default alias. Hook types currently support default configuration alias.

Default: - "default"

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

TypeArn

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

public string? TypeArn { get; set; }
Property Value

string

Remarks

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

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

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 .

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

Implements

ICfnHookTypeConfigProps
Back to top Generated by DocFX