Show / Hide Table of Contents

Interface ICfnHookDefaultVersionProps

Properties for defining a CfnHookDefaultVersion.

Namespace: Amazon.CDK
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ICfnHookDefaultVersionProps
Syntax (vb)
Public Interface 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;

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

Synopsis

Properties

TypeName

The name of the Hook.

TypeVersionArn

The version ID of the type configuration.

VersionId

The version ID of the type specified.

Properties

TypeName

The name of the Hook.

string? TypeName { get; }
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.

string? TypeVersionArn { get; }
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.

string? VersionId { get; }
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

Back to top Generated by DocFX