Show / Hide Table of Contents

Class CfnModuleDefaultVersionProps

Properties for defining a CfnModuleDefaultVersion.

Inheritance
object
CfnModuleDefaultVersionProps
Implements
ICfnModuleDefaultVersionProps
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 CfnModuleDefaultVersionProps : ICfnModuleDefaultVersionProps
Syntax (vb)
Public Class CfnModuleDefaultVersionProps Implements ICfnModuleDefaultVersionProps
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;

             var cfnModuleDefaultVersionProps = new CfnModuleDefaultVersionProps {
                 Arn = "arn",
                 ModuleName = "moduleName",
                 VersionId = "versionId"
             };

Synopsis

Constructors

CfnModuleDefaultVersionProps()

Properties for defining a CfnModuleDefaultVersion.

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.

Constructors

CfnModuleDefaultVersionProps()

Properties for defining a CfnModuleDefaultVersion.

public CfnModuleDefaultVersionProps()
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;

             var cfnModuleDefaultVersionProps = new CfnModuleDefaultVersionProps {
                 Arn = "arn",
                 ModuleName = "moduleName",
                 VersionId = "versionId"
             };

Properties

Arn

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

public object? Arn { get; set; }
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.

public string? ModuleName { get; set; }
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.

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

Implements

ICfnModuleDefaultVersionProps
Back to top Generated by DocFX