CfnCoreDefinitionVersionMixinProps

class aws_cdk.mixins_preview.aws_greengrass.mixins.CfnCoreDefinitionVersionMixinProps(*, core_definition_id=None, cores=None)

Bases: object

Properties for CfnCoreDefinitionVersionPropsMixin.

Parameters:
  • core_definition_id (Optional[str]) – The ID of the core definition associated with this version. This value is a GUID.

  • cores (Union[IResolvable, Sequence[Union[IResolvable, CoreProperty, Dict[str, Any]]], None]) – The Greengrass core in this version. Currently, the Cores property for a core definition version can contain only one core.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinitionversion.html

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk.mixins_preview.aws_greengrass import mixins as greengrass_mixins

cfn_core_definition_version_mixin_props = greengrass_mixins.CfnCoreDefinitionVersionMixinProps(
    core_definition_id="coreDefinitionId",
    cores=[greengrass_mixins.CfnCoreDefinitionVersionPropsMixin.CoreProperty(
        certificate_arn="certificateArn",
        id="id",
        sync_shadow=False,
        thing_arn="thingArn"
    )]
)

Attributes

core_definition_id

The ID of the core definition associated with this version.

This value is a GUID.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinitionversion.html#cfn-greengrass-coredefinitionversion-coredefinitionid

cores

The Greengrass core in this version.

Currently, the Cores property for a core definition version can contain only one core.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinitionversion.html#cfn-greengrass-coredefinitionversion-cores