AWS::Greengrass::GroupVersionThe `AWS::Greengrass::GroupVersion` resource represents a group version in AWS IoT Greengrass . A group version references a core definition version, device definition version, subscription definition version, and other version types that contain the components you want to deploy to a Greengrass core device. The group version must reference a core definition version that contains one core. Other version types are optionally included, depending on your business need. > To create a group version, you must specify the ID of the group that you want to associate with the version. For information about creating a group, see [`AWS::Greengrass::Group`](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-group.html) .
import { CfnGroupVersion } from 'aws-cdk-lib/aws-greengrass';Or use the module namespace:
import * as greengrass from 'aws-cdk-lib/aws-greengrass';
// greengrass.CfnGroupVersionConfiguration passed to the constructor as CfnGroupVersionProps.
groupIdRequiredstringThe ID of the group associated with this version. This value is a GUID.
connectorDefinitionVersionArnOptionalstringThe Amazon Resource Name (ARN) of the connector definition version that contains the connectors you want to deploy with the group version.
coreDefinitionVersionArnOptionalstringThe 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.
deviceDefinitionVersionArnOptionalstringThe ARN of the device definition version that contains the devices you want to deploy with the group version.
functionDefinitionVersionArnOptionalstringThe ARN of the function definition version that contains the functions you want to deploy with the group version.
loggerDefinitionVersionArnOptionalstringThe ARN of the logger definition version that contains the loggers you want to deploy with the group version.
resourceDefinitionVersionArnOptionalstringThe ARN of the resource definition version that contains the resources you want to deploy with the group version.
subscriptionDefinitionVersionArnOptionalstringThe ARN of the subscription definition version that contains the subscriptions you want to deploy with the group version.
This L1 construct maps directly to the following CloudFormation resource type.
Our bi-weekly newsletter teaches hands-on AWS fundamentals. No certification fluff - just practical knowledge.
Subscribe to Newsletteraws-greengrassAWS::Greengrass::GroupVersion