interface CfnGroupVersionMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Greengrass.Mixins.CfnGroupVersionMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsgreengrass/mixins#CfnGroupVersionMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.greengrass.mixins.CfnGroupVersionMixinProps |
Python | aws_cdk.mixins_preview.aws_greengrass.mixins.CfnGroupVersionMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_greengrass » mixins » CfnGroupVersionMixinProps |
Properties for CfnGroupVersionPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as greengrass_mixins } from '@aws-cdk/mixins-preview/aws-greengrass';
const cfnGroupVersionMixinProps: greengrass_mixins.CfnGroupVersionMixinProps = {
connectorDefinitionVersionArn: 'connectorDefinitionVersionArn',
coreDefinitionVersionArn: 'coreDefinitionVersionArn',
deviceDefinitionVersionArn: 'deviceDefinitionVersionArn',
functionDefinitionVersionArn: 'functionDefinitionVersionArn',
groupId: 'groupId',
loggerDefinitionVersionArn: 'loggerDefinitionVersionArn',
resourceDefinitionVersionArn: 'resourceDefinitionVersionArn',
subscriptionDefinitionVersionArn: 'subscriptionDefinitionVersionArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| connector | string | The Amazon Resource Name (ARN) of the connector definition version that contains the connectors you want to deploy with the group version. |
| core | string | The ARN of the core definition version that contains the core you want to deploy with the group version. |
| device | string | The ARN of the device definition version that contains the devices you want to deploy with the group version. |
| function | string | The ARN of the function definition version that contains the functions you want to deploy with the group version. |
| group | string | The ID of the group associated with this version. |
| logger | string | The ARN of the logger definition version that contains the loggers you want to deploy with the group version. |
| resource | string | The ARN of the resource definition version that contains the resources you want to deploy with the group version. |
| subscription | string | The ARN of the subscription definition version that contains the subscriptions you want to deploy with the group version. |
connectorDefinitionVersionArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the connector definition version that contains the connectors you want to deploy with the group version.
coreDefinitionVersionArn?
Type:
string
(optional)
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.
deviceDefinitionVersionArn?
Type:
string
(optional)
The ARN of the device definition version that contains the devices you want to deploy with the group version.
functionDefinitionVersionArn?
Type:
string
(optional)
The ARN of the function definition version that contains the functions you want to deploy with the group version.
groupId?
Type:
string
(optional)
The ID of the group associated with this version.
This value is a GUID.
loggerDefinitionVersionArn?
Type:
string
(optional)
The ARN of the logger definition version that contains the loggers you want to deploy with the group version.
resourceDefinitionVersionArn?
Type:
string
(optional)
The ARN of the resource definition version that contains the resources you want to deploy with the group version.
subscriptionDefinitionVersionArn?
Type:
string
(optional)
The ARN of the subscription definition version that contains the subscriptions you want to deploy with the group version.

.NET
Go
Java
Python
TypeScript