Show / Hide Table of Contents

Interface ICfnResourceDefaultVersionMixinProps

Properties for CfnResourceDefaultVersionPropsMixin.

Namespace: Amazon.CDK.Mixins.Preview.AWS.CloudFormation.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public interface ICfnResourceDefaultVersionMixinProps
Syntax (vb)
Public Interface ICfnResourceDefaultVersionMixinProps
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.Mixins.Preview.AWS.CloudFormation.Mixins;

             var cfnResourceDefaultVersionMixinProps = new CfnResourceDefaultVersionMixinProps {
                 TypeName = "typeName",
                 TypeVersionArn = "typeVersionArn",
                 VersionId = "versionId"
             };

Synopsis

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.

Properties

TypeName

The name of the resource.

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

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

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

Back to top Generated by DocFX