interface CfnModuleDefaultVersionMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CloudFormation.Mixins.CfnModuleDefaultVersionMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscloudformation/mixins#CfnModuleDefaultVersionMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.cloudformation.mixins.CfnModuleDefaultVersionMixinProps |
Python | aws_cdk.mixins_preview.aws_cloudformation.mixins.CfnModuleDefaultVersionMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_cloudformation » mixins » CfnModuleDefaultVersionMixinProps |
Properties for CfnModuleDefaultVersionPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as cloudformation_mixins } from '@aws-cdk/mixins-preview/aws-cloudformation';
const cfnModuleDefaultVersionMixinProps: cloudformation_mixins.CfnModuleDefaultVersionMixinProps = {
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 .

.NET
Go
Java
Python
TypeScript