interface CfnCoreDefinitionVersionProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Greengrass.CfnCoreDefinitionVersionProps |
Java | software.amazon.awscdk.services.greengrass.CfnCoreDefinitionVersionProps |
Python | aws_cdk.aws_greengrass.CfnCoreDefinitionVersionProps |
TypeScript | @aws-cdk/aws-greengrass » CfnCoreDefinitionVersionProps |
Properties for defining a CfnCoreDefinitionVersion.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as greengrass from '@aws-cdk/aws-greengrass';
const cfnCoreDefinitionVersionProps: greengrass.CfnCoreDefinitionVersionProps = {
coreDefinitionId: 'coreDefinitionId',
cores: [{
certificateArn: 'certificateArn',
id: 'id',
thingArn: 'thingArn',
// the properties below are optional
syncShadow: false,
}],
};
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
The ID of the core definition associated with this version.
This value is a GUID.
cores
Type:
IResolvable | IResolvable | Core[]
The Greengrass core in this version.
Currently, the Cores property for a core definition version can contain only one core.

.NET
Java
Python
TypeScript