Interface CfnConnectorDefinition.ConnectorDefinitionVersionProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnConnectorDefinition.ConnectorDefinitionVersionProperty.Jsii$Proxy
- Enclosing class:
- CfnConnectorDefinition
@Stability(Stable)
public static interface CfnConnectorDefinition.ConnectorDefinitionVersionProperty
extends software.amazon.jsii.JsiiSerializable
A connector definition version contains a list of connectors.
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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnConnectorDefinition.ConnectorDefinitionVersionProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getConnectors
The connectors in this version.Only one instance of a given connector can be added to a connector definition version at a time.
-
builder
@Stability(Stable) static CfnConnectorDefinition.ConnectorDefinitionVersionProperty.Builder builder()
-