interface CfnResourceDefinitionVersionMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Greengrass.Mixins.CfnResourceDefinitionVersionMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsgreengrass/mixins#CfnResourceDefinitionVersionMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.greengrass.mixins.CfnResourceDefinitionVersionMixinProps |
Python | aws_cdk.mixins_preview.aws_greengrass.mixins.CfnResourceDefinitionVersionMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_greengrass » mixins » CfnResourceDefinitionVersionMixinProps |
Properties for CfnResourceDefinitionVersionPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as greengrass_mixins } from '@aws-cdk/mixins-preview/aws-greengrass';
const cfnResourceDefinitionVersionMixinProps: greengrass_mixins.CfnResourceDefinitionVersionMixinProps = {
resourceDefinitionId: 'resourceDefinitionId',
resources: [{
id: 'id',
name: 'name',
resourceDataContainer: {
localDeviceResourceData: {
groupOwnerSetting: {
autoAddGroupOwner: false,
groupOwner: 'groupOwner',
},
sourcePath: 'sourcePath',
},
localVolumeResourceData: {
destinationPath: 'destinationPath',
groupOwnerSetting: {
autoAddGroupOwner: false,
groupOwner: 'groupOwner',
},
sourcePath: 'sourcePath',
},
s3MachineLearningModelResourceData: {
destinationPath: 'destinationPath',
ownerSetting: {
groupOwner: 'groupOwner',
groupPermission: 'groupPermission',
},
s3Uri: 's3Uri',
},
sageMakerMachineLearningModelResourceData: {
destinationPath: 'destinationPath',
ownerSetting: {
groupOwner: 'groupOwner',
groupPermission: 'groupPermission',
},
sageMakerJobArn: 'sageMakerJobArn',
},
secretsManagerSecretResourceData: {
additionalStagingLabelsToDownload: ['additionalStagingLabelsToDownload'],
arn: 'arn',
},
},
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| resource | string | The ID of the resource definition associated with this version. |
| resources? | IResolvable | (IResolvable | Resource)[] | The resources in this version. |
resourceDefinitionId?
Type:
string
(optional)
The ID of the resource definition associated with this version.
This value is a GUID.
resources?
Type:
IResolvable | (IResolvable | Resource)[]
(optional)
The resources in this version.

.NET
Go
Java
Python
TypeScript