CfnGroupVersionMixinProps
- class aws_cdk.mixins_preview.aws_greengrass.mixins.CfnGroupVersionMixinProps(*, connector_definition_version_arn=None, core_definition_version_arn=None, device_definition_version_arn=None, function_definition_version_arn=None, group_id=None, logger_definition_version_arn=None, resource_definition_version_arn=None, subscription_definition_version_arn=None)
Bases:
objectProperties for CfnGroupVersionPropsMixin.
- Parameters:
connector_definition_version_arn (
Optional[str]) – The Amazon Resource Name (ARN) of the connector definition version that contains the connectors you want to deploy with the group version.core_definition_version_arn (
Optional[str]) – The ARN of the core definition version that contains the core you want to deploy with the group version. Currently, the core definition version can contain only one core.device_definition_version_arn (
Optional[str]) – The ARN of the device definition version that contains the devices you want to deploy with the group version.function_definition_version_arn (
Optional[str]) – The ARN of the function definition version that contains the functions you want to deploy with the group version.group_id (
Optional[str]) – The ID of the group associated with this version. This value is a GUID.logger_definition_version_arn (
Optional[str]) – The ARN of the logger definition version that contains the loggers you want to deploy with the group version.resource_definition_version_arn (
Optional[str]) – The ARN of the resource definition version that contains the resources you want to deploy with the group version.subscription_definition_version_arn (
Optional[str]) – The ARN of the subscription definition version that contains the subscriptions you want to deploy with the group version.
- 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_group_version_mixin_props = greengrass_mixins.CfnGroupVersionMixinProps( connector_definition_version_arn="connectorDefinitionVersionArn", core_definition_version_arn="coreDefinitionVersionArn", device_definition_version_arn="deviceDefinitionVersionArn", function_definition_version_arn="functionDefinitionVersionArn", group_id="groupId", logger_definition_version_arn="loggerDefinitionVersionArn", resource_definition_version_arn="resourceDefinitionVersionArn", subscription_definition_version_arn="subscriptionDefinitionVersionArn" )
Attributes
- connector_definition_version_arn
The Amazon Resource Name (ARN) of the connector definition version that contains the connectors you want to deploy with the group version.
- core_definition_version_arn
The ARN of the core definition version that contains the core you want to deploy with the group version.
Currently, the core definition version can contain only one core.
- device_definition_version_arn
The ARN of the device definition version that contains the devices you want to deploy with the group version.
- function_definition_version_arn
The ARN of the function definition version that contains the functions you want to deploy with the group version.
- group_id
The ID of the group associated with this version.
This value is a GUID.
- logger_definition_version_arn
The ARN of the logger definition version that contains the loggers you want to deploy with the group version.
- resource_definition_version_arn
The ARN of the resource definition version that contains the resources you want to deploy with the group version.
- subscription_definition_version_arn
The ARN of the subscription definition version that contains the subscriptions you want to deploy with the group version.