Show / Hide Table of Contents

Class CfnModuleDefaultVersionProps

Properties for defining a CfnModuleDefaultVersion.

Inheritance
System.Object
CfnModuleDefaultVersionProps
Implements
ICfnModuleDefaultVersionProps
Namespace: Amazon.CDK
Assembly: Amazon.CDK.dll
Syntax (csharp)
public class CfnModuleDefaultVersionProps : Object, ICfnModuleDefaultVersionProps
Syntax (vb)
Public Class CfnModuleDefaultVersionProps
    Inherits Object
    Implements ICfnModuleDefaultVersionProps
Remarks

Link: 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

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()

public CfnModuleDefaultVersionProps()

Properties

Arn

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

public string Arn { get; set; }
Property Value

System.String

Remarks

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

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

ModuleName

The name of the module.

public string ModuleName { get; set; }
Property Value

System.String

Remarks

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

Link: 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

System.String

Remarks

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

Link: 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