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();
 

See Also: