Show / Hide Table of Contents

Interface ICfnModuleDefaultVersionMixinProps

Properties for CfnModuleDefaultVersionPropsMixin.

Namespace: Amazon.CDK.CfnPropertyMixins.AWS.CloudFormation
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public interface ICfnModuleDefaultVersionMixinProps
Syntax (vb)
Public Interface ICfnModuleDefaultVersionMixinProps
Remarks

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

             var cfnModuleDefaultVersionMixinProps = new CfnModuleDefaultVersionMixinProps {
                 Arn = "arn",
                 ModuleName = "moduleName",
                 VersionId = "versionId"
             };

Synopsis

Properties

Arn

The Amazon Resource Name (ARN) of the module version to set as the default version.

ModuleName

The name of the module.

VersionId

The ID for the specific version of the module.

Properties

Arn

The Amazon Resource Name (ARN) of the module version to set as the default version.

object? Arn { get; }
Property Value

object

Remarks

Conditional: You must specify either Arn , or ModuleName and VersionId .

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

Type union: either string or IModuleVersionRef

ModuleName

The name of the module.

string? ModuleName { get; }
Property Value

string

Remarks

Conditional: You must specify either Arn , or ModuleName and VersionId .

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

VersionId

The ID for the specific version of the module.

string? VersionId { get; }
Property Value

string

Remarks

Conditional: You must specify either Arn , or ModuleName and VersionId .

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

Back to top Generated by DocFX