interface CfnCoreDefinitionMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Greengrass.Mixins.CfnCoreDefinitionMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsgreengrass/mixins#CfnCoreDefinitionMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.greengrass.mixins.CfnCoreDefinitionMixinProps |
Python | aws_cdk.mixins_preview.aws_greengrass.mixins.CfnCoreDefinitionMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_greengrass » mixins » CfnCoreDefinitionMixinProps |
Properties for CfnCoreDefinitionPropsMixin.
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';
declare const tags: any;
const cfnCoreDefinitionMixinProps: greengrass_mixins.CfnCoreDefinitionMixinProps = {
initialVersion: {
cores: [{
certificateArn: 'certificateArn',
id: 'id',
syncShadow: false,
thingArn: 'thingArn',
}],
},
name: 'name',
tags: tags,
};
Properties
| Name | Type | Description |
|---|---|---|
| initial | IResolvable | Core | The core definition version to include when the core definition is created. |
| name? | string | The name of the core definition. |
| tags? | any | Application-specific metadata to attach to the core definition. |
initialVersion?
Type:
IResolvable | Core
(optional)
The core definition version to include when the core definition is created.
Currently, a core definition version can contain only one core .
To associate a core definition version after the core definition is created, create an
AWS::Greengrass::CoreDefinitionVersionresource and specify the ID of this core definition.
name?
Type:
string
(optional)
The name of the core definition.
tags?
Type:
any
(optional)
Application-specific metadata to attach to the core definition.
You can use tags in IAM policies to control access to AWS IoT Greengrass resources. You can also use tags to categorize your resources. For more information, see Tagging Your AWS IoT Greengrass Resources in the Developer Guide .
This Json property type is processed as a map of key-value pairs. It uses the following format, which is different from most Tags implementations in CloudFormation templates.
"Tags": { "KeyName0": "value", "KeyName1": "value", "KeyName2": "value"
}

.NET
Go
Java
Python
TypeScript