CfnGroupVersionProps
- class aws_cdk.aws_greengrass.CfnGroupVersionProps(*, group_id, connector_definition_version_arn=None, core_definition_version_arn=None, device_definition_version_arn=None, function_definition_version_arn=None, logger_definition_version_arn=None, resource_definition_version_arn=None, subscription_definition_version_arn=None)
Bases:
object
Properties for defining a
CfnGroupVersion
.- Parameters:
group_id (
str
) – The ID of the group associated with this version. This value is a GUID.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.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.
- Link:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_greengrass as greengrass cfn_group_version_props = greengrass.CfnGroupVersionProps( group_id="groupId", # the properties below are optional connector_definition_version_arn="connectorDefinitionVersionArn", core_definition_version_arn="coreDefinitionVersionArn", device_definition_version_arn="deviceDefinitionVersionArn", function_definition_version_arn="functionDefinitionVersionArn", 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.