Show / Hide Table of Contents

Class CfnHookDefaultVersionProps

Properties for defining a CfnHookDefaultVersion.

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-hookdefaultversion.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.AWS.CloudFormation;

             var cfnHookDefaultVersionProps = new CfnHookDefaultVersionProps {
                 TypeName = "typeName",
                 TypeVersionArn = "typeVersionArn",
                 VersionId = "versionId"
             };

Synopsis

Constructors

CfnHookDefaultVersionProps()

Properties for defining a CfnHookDefaultVersion.

Properties

TypeName

The name of the Hook.

TypeVersionArn

The version ID of the type configuration.

VersionId

The version ID of the type specified.

Constructors

CfnHookDefaultVersionProps()

Properties for defining a CfnHookDefaultVersion.

public CfnHookDefaultVersionProps()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-hookdefaultversion.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.AWS.CloudFormation;

             var cfnHookDefaultVersionProps = new CfnHookDefaultVersionProps {
                 TypeName = "typeName",
                 TypeVersionArn = "typeVersionArn",
                 VersionId = "versionId"
             };

Properties

TypeName

The name of the Hook.

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

string

Remarks

You must specify either TypeVersionArn , or TypeName and VersionId .

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

TypeVersionArn

The version ID of the type configuration.

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

string

Remarks

You must specify either TypeVersionArn , or TypeName and VersionId .

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

VersionId

The version ID of the type specified.

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

string

Remarks

You must specify either TypeVersionArn , or TypeName and VersionId .

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

Implements

ICfnHookDefaultVersionProps
Back to top Generated by DocFX