interface CfnModuleDefaultVersionProps
Language | Type name |
---|---|
.NET | Amazon.CDK.CfnModuleDefaultVersionProps |
Java | software.amazon.awscdk.core.CfnModuleDefaultVersionProps |
Python | aws_cdk.core.CfnModuleDefaultVersionProps |
TypeScript | @aws-cdk/core » CfnModuleDefaultVersionProps |
Properties for defining a CfnModuleDefaultVersion
.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as cdk from '@aws-cdk/core';
const cfnModuleDefaultVersionProps: cdk.CfnModuleDefaultVersionProps = {
arn: 'arn',
moduleName: 'moduleName',
versionId: 'versionId',
};
Properties
Name | Type | Description |
---|---|---|
arn? | string | The Amazon Resource Name (ARN) of the module version to set as the default version. |
module | string | The name of the module. |
version | string | The ID for the specific version of the module. |
arn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the module version to set as the default version.
Conditional: You must specify either Arn
, or ModuleName
and VersionId
.
moduleName?
Type:
string
(optional)
The name of the module.
Conditional: You must specify either Arn
, or ModuleName
and VersionId
.
versionId?
Type:
string
(optional)
The ID for the specific version of the module.
Conditional: You must specify either Arn
, or ModuleName
and VersionId
.