@Stability(value=Stable)
public static interface CfnConnectorDefinition.ConnectorDefinitionVersionProperty
extends software.amazon.jsii.JsiiSerializable
After you create a connector definition version that contains the connectors you want to deploy, you must add it to your group version. For more information, see
AWS::Greengrass::Group.
In an AWS CloudFormation template, ConnectorDefinitionVersion is the property type of the InitialVersion property in the AWS::Greengrass::ConnectorDefinition 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.*;
Object parameters;
ConnectorDefinitionVersionProperty connectorDefinitionVersionProperty = ConnectorDefinitionVersionProperty.builder()
.connectors(List.of(ConnectorProperty.builder()
.connectorArn("connectorArn")
.id("id")
// the properties below are optional
.parameters(parameters)
.build()))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnConnectorDefinition.ConnectorDefinitionVersionProperty.Builder
|
static class |
CfnConnectorDefinition.ConnectorDefinitionVersionProperty.Jsii$Proxy
An implementation for
CfnConnectorDefinition.ConnectorDefinitionVersionProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnConnectorDefinition.ConnectorDefinitionVersionProperty.Builder |
builder() |
Object |
getConnectors()
The connectors in this version.
|
@Stability(value=Stable) @NotNull Object getConnectors()
Only one instance of a given connector can be added to a connector definition version at a time.
@Stability(value=Stable) static CfnConnectorDefinition.ConnectorDefinitionVersionProperty.Builder builder()
Copyright © 2022. All rights reserved.