interface CoreProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Greengrass.CfnCoreDefinitionVersionPropsMixin.CoreProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsgreengrass#CfnCoreDefinitionVersionPropsMixin_CoreProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.greengrass.CfnCoreDefinitionVersionPropsMixin.CoreProperty |
Python | aws_cdk.cfn_property_mixins.aws_greengrass.CfnCoreDefinitionVersionPropsMixin.CoreProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_greengrass » CfnCoreDefinitionVersionPropsMixin » CoreProperty |
A core is an AWS IoT device that runs the AWS IoT Greengrass core software and manages local processes for a Greengrass group.
For more information, see What Is AWS IoT Greengrass ? in the Developer Guide .
In an CloudFormation template, the Cores property of the AWS::Greengrass::CoreDefinitionVersion resource contains a list of Core property types. Currently, the list can contain only one core.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_greengrass as greengrass } from '@aws-cdk/cfn-property-mixins';
const coreProperty: greengrass.CfnCoreDefinitionVersionPropsMixin.CoreProperty = {
certificateArn: 'certificateArn',
id: 'id',
syncShadow: false,
thingArn: 'thingArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| certificate | string | The ARN of the device certificate for the core. |
| id? | string | A descriptive or arbitrary ID for the core. |
| sync | boolean | IResolvable | Indicates whether the core's local shadow is synced with the cloud automatically. |
| thing | string | The Amazon Resource Name (ARN) of the core, which is an AWS IoT device (thing). |
certificateArn?
Type:
string
(optional)
The ARN of the device certificate for the core.
This X.509 certificate is used to authenticate the core with AWS IoT and AWS IoT Greengrass services.
id?
Type:
string
(optional)
A descriptive or arbitrary ID for the core.
This value must be unique within the core definition version. Maximum length is 128 characters with pattern [a-zA-Z0-9:_-]+ .
syncShadow?
Type:
boolean | IResolvable
(optional)
Indicates whether the core's local shadow is synced with the cloud automatically.
The default is false.
thingArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the core, which is an AWS IoT device (thing).

.NET
Go
Java
Python
TypeScript