interface CfnCoreDefinitionVersionMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Greengrass.CfnCoreDefinitionVersionMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsgreengrass#CfnCoreDefinitionVersionMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.greengrass.CfnCoreDefinitionVersionMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_greengrass.CfnCoreDefinitionVersionMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_greengrass » 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 { aws_greengrass as greengrass } from '@aws-cdk/cfn-property-mixins';
const cfnCoreDefinitionVersionMixinProps: greengrass.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