Show / Hide Table of Contents

Class CfnResourceDefaultVersionProps

Properties for defining a CfnResourceDefaultVersion.

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-resourcedefaultversion.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 cfnResourceDefaultVersionProps = new CfnResourceDefaultVersionProps {
                 TypeName = "typeName",
                 TypeVersionArn = "typeVersionArn",
                 VersionId = "versionId"
             };

Synopsis

Constructors

CfnResourceDefaultVersionProps()

Properties for defining a CfnResourceDefaultVersion.

Properties

TypeName

The name of the resource.

TypeVersionArn

The Amazon Resource Name (ARN) of the resource version.

VersionId

The ID of a specific version of the resource.

Constructors

CfnResourceDefaultVersionProps()

Properties for defining a CfnResourceDefaultVersion.

public CfnResourceDefaultVersionProps()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-resourcedefaultversion.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 cfnResourceDefaultVersionProps = new CfnResourceDefaultVersionProps {
                 TypeName = "typeName",
                 TypeVersionArn = "typeVersionArn",
                 VersionId = "versionId"
             };

Properties

TypeName

The name of the resource.

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

string

Remarks

Conditional: You must specify either TypeVersionArn , or TypeName and VersionId .

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

TypeVersionArn

The Amazon Resource Name (ARN) of the resource version.

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

string

Remarks

Conditional: You must specify either TypeVersionArn , or TypeName and VersionId .

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

VersionId

The ID of a specific version of the resource.

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

string

Remarks

The version ID is the value at the end of the Amazon Resource Name (ARN) assigned to the resource version when it's registered.

Conditional: You must specify either TypeVersionArn , or TypeName and VersionId .

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

Implements

ICfnResourceDefaultVersionProps
Back to top Generated by DocFX