interface CfnCoreDefinitionVersionMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Greengrass.Mixins.CfnCoreDefinitionVersionMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsgreengrass/mixins#CfnCoreDefinitionVersionMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.greengrass.mixins.CfnCoreDefinitionVersionMixinProps |
Python | aws_cdk.mixins_preview.aws_greengrass.mixins.CfnCoreDefinitionVersionMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_greengrass » mixins » CfnCoreDefinitionVersionMixinProps |
Properties for CfnCoreDefinitionVersionPropsMixin.
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 cfnCoreDefinitionVersionMixinProps: greengrass_mixins.CfnCoreDefinitionVersionMixinProps = {
coreDefinitionId: 'coreDefinitionId',
cores: [{
certificateArn: 'certificateArn',
id: 'id',
syncShadow: false,
thingArn: 'thingArn',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| core | string | The ID of the core definition associated with this version. |
| cores? | IResolvable | (IResolvable | Core)[] | The Greengrass core in this version. |
coreDefinitionId?
Type:
string
(optional)
The ID of the core definition associated with this version.
This value is a GUID.
cores?
Type:
IResolvable | (IResolvable | Core)[]
(optional)
The Greengrass core in this version.
Currently, the Cores property for a core definition version can contain only one core.

.NET
Go
Java
Python
TypeScript