interface CfnModuleDefaultVersionMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.CloudFormation.CfnModuleDefaultVersionMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awscloudformation#CfnModuleDefaultVersionMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.cloudformation.CfnModuleDefaultVersionMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_cloudformation.CfnModuleDefaultVersionMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_cloudformation » 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 { aws_cloudformation as cloudformation } from '@aws-cdk/cfn-property-mixins';
const cfnModuleDefaultVersionMixinProps: cloudformation.CfnModuleDefaultVersionMixinProps = {
arn: 'arn',
moduleName: 'moduleName',
versionId: 'versionId',
};
Properties
| Name | Type | Description |
|---|---|---|
| arn? | string | IModule | 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 | IModule
(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