Interface CfnGroupVersionProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnGroupVersionProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.121.0 (build d7af9b9)",
date="2025-12-18T18:20:11.266Z")
@Stability(Stable)
public interface CfnGroupVersionProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnGroupVersion.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.greengrass.*;
CfnGroupVersionProps cfnGroupVersionProps = CfnGroupVersionProps.builder()
.groupId("groupId")
// the properties below are optional
.connectorDefinitionVersionArn("connectorDefinitionVersionArn")
.coreDefinitionVersionArn("coreDefinitionVersionArn")
.deviceDefinitionVersionArn("deviceDefinitionVersionArn")
.functionDefinitionVersionArn("functionDefinitionVersionArn")
.loggerDefinitionVersionArn("loggerDefinitionVersionArn")
.resourceDefinitionVersionArn("resourceDefinitionVersionArn")
.subscriptionDefinitionVersionArn("subscriptionDefinitionVersionArn")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnGroupVersionPropsstatic final classAn implementation forCfnGroupVersionProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnGroupVersionProps.Builderbuilder()default StringThe Amazon Resource Name (ARN) of the connector definition version that contains the connectors you want to deploy with the group version.default StringThe ARN of the core definition version that contains the core you want to deploy with the group version.default StringThe ARN of the device definition version that contains the devices you want to deploy with the group version.default StringThe ARN of the function definition version that contains the functions you want to deploy with the group version.The ID of the group associated with this version.default StringThe ARN of the logger definition version that contains the loggers you want to deploy with the group version.default StringThe ARN of the resource definition version that contains the resources you want to deploy with the group version.default StringThe ARN of the subscription definition version that contains the subscriptions you want to deploy with the group version.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getGroupId
The ID of the group associated with this version.This value is a GUID.
- See Also:
-
getConnectorDefinitionVersionArn
The Amazon Resource Name (ARN) of the connector definition version that contains the connectors you want to deploy with the group version.- See Also:
-
getCoreDefinitionVersionArn
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.
- See Also:
-
getDeviceDefinitionVersionArn
The ARN of the device definition version that contains the devices you want to deploy with the group version.- See Also:
-
getFunctionDefinitionVersionArn
The ARN of the function definition version that contains the functions you want to deploy with the group version.- See Also:
-
getLoggerDefinitionVersionArn
The ARN of the logger definition version that contains the loggers you want to deploy with the group version.- See Also:
-
getResourceDefinitionVersionArn
The ARN of the resource definition version that contains the resources you want to deploy with the group version.- See Also:
-
getSubscriptionDefinitionVersionArn
The ARN of the subscription definition version that contains the subscriptions you want to deploy with the group version.- See Also:
-
builder
- Returns:
- a
CfnGroupVersionProps.BuilderofCfnGroupVersionProps
-