interface CfnResourceDefaultVersionMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.CloudFormation.CfnResourceDefaultVersionMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awscloudformation#CfnResourceDefaultVersionMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.cloudformation.CfnResourceDefaultVersionMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_cloudformation.CfnResourceDefaultVersionMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_cloudformation » CfnResourceDefaultVersionMixinProps |
Properties for CfnResourceDefaultVersionPropsMixin.
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 cfnResourceDefaultVersionMixinProps: cloudformation.CfnResourceDefaultVersionMixinProps = {
typeName: 'typeName',
typeVersionArn: 'typeVersionArn',
versionId: 'versionId',
};
Properties
| Name | Type | Description |
|---|---|---|
| type | string | The name of the resource. |
| type | string | IResource | The Amazon Resource Name (ARN) of the resource version. |
| version | string | The ID of a specific version of the resource. |
typeName?
Type:
string
(optional)
The name of the resource.
Conditional: You must specify either TypeVersionArn , or TypeName and VersionId .
typeVersionArn?
Type:
string | IResource
(optional)
The Amazon Resource Name (ARN) of the resource version.
Conditional: You must specify either TypeVersionArn , or TypeName and VersionId .
versionId?
Type:
string
(optional)
The ID of a specific version of the resource.
The version ID is the value at the end of the Amazon Resource Name (ARN) assigned to the resource version when it's registered.
Conditional: You must specify either TypeVersionArn , or TypeName and VersionId .

.NET
Go
Java
Python
TypeScript