@Stability(value=Stable)
public static interface CfnGroup.GroupVersionProperty
extends software.amazon.jsii.JsiiSerializable
The group version must reference a core definition version that contains one core. Other version types are optionally included, depending on your business need.
In an AWS CloudFormation template, GroupVersion is the property type of the InitialVersion property in the AWS::Greengrass::Group resource.
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.*;
GroupVersionProperty groupVersionProperty = GroupVersionProperty.builder()
.connectorDefinitionVersionArn("connectorDefinitionVersionArn")
.coreDefinitionVersionArn("coreDefinitionVersionArn")
.deviceDefinitionVersionArn("deviceDefinitionVersionArn")
.functionDefinitionVersionArn("functionDefinitionVersionArn")
.loggerDefinitionVersionArn("loggerDefinitionVersionArn")
.resourceDefinitionVersionArn("resourceDefinitionVersionArn")
.subscriptionDefinitionVersionArn("subscriptionDefinitionVersionArn")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnGroup.GroupVersionProperty.Builder
A builder for
CfnGroup.GroupVersionProperty |
static class |
CfnGroup.GroupVersionProperty.Jsii$Proxy
An implementation for
CfnGroup.GroupVersionProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnGroup.GroupVersionProperty.Builder |
builder() |
default String |
getConnectorDefinitionVersionArn()
The Amazon Resource Name (ARN) of the connector definition version that contains the connectors you want to deploy with the group version.
|
default String |
getCoreDefinitionVersionArn()
The ARN of the core definition version that contains the core you want to deploy with the group version.
|
default String |
getDeviceDefinitionVersionArn()
The ARN of the device definition version that contains the devices you want to deploy with the group version.
|
default String |
getFunctionDefinitionVersionArn()
The ARN of the function definition version that contains the functions you want to deploy with the group version.
|
default String |
getLoggerDefinitionVersionArn()
The ARN of the logger definition version that contains the loggers you want to deploy with the group version.
|
default String |
getResourceDefinitionVersionArn()
The ARN of the resource definition version that contains the resources you want to deploy with the group version.
|
default String |
getSubscriptionDefinitionVersionArn()
The ARN of the subscription definition version that contains the subscriptions you want to deploy with the group version.
|
@Stability(value=Stable) @Nullable default String getConnectorDefinitionVersionArn()
@Stability(value=Stable) @Nullable default String getCoreDefinitionVersionArn()
Currently, the core definition version can contain only one core.
@Stability(value=Stable) @Nullable default String getDeviceDefinitionVersionArn()
@Stability(value=Stable) @Nullable default String getFunctionDefinitionVersionArn()
@Stability(value=Stable) @Nullable default String getLoggerDefinitionVersionArn()
@Stability(value=Stable) @Nullable default String getResourceDefinitionVersionArn()
@Stability(value=Stable) @Nullable default String getSubscriptionDefinitionVersionArn()
@Stability(value=Stable) static CfnGroup.GroupVersionProperty.Builder builder()
Copyright © 2022. All rights reserved.