CfnCoreDefinitionVersionMixinProps
- class aws_cdk.mixins_preview.aws_greengrass.mixins.CfnCoreDefinitionVersionMixinProps(*, core_definition_id=None, cores=None)
Bases:
objectProperties 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, theCoresproperty for a core definition version can contain only one core.
- See:
- 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.
- cores
The Greengrass core in this version.
Currently, the
Coresproperty for a core definition version can contain only one core.