Interface CfnConnectorDefinition.ConnectorProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnConnectorDefinition.ConnectorProperty.Jsii$Proxy
Enclosing class:
CfnConnectorDefinition

@Stability(Stable) public static interface CfnConnectorDefinition.ConnectorProperty extends software.amazon.jsii.JsiiSerializable
Connectors are modules that provide built-in integration with local infrastructure, device protocols, AWS , and other cloud services.

For more information, see Integrate with Services and Protocols Using Greengrass Connectors in the Developer Guide .

In an AWS CloudFormation template, the Connectors property of the ConnectorDefinitionVersion property type contains a list of Connector property types.

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;
 ConnectorProperty connectorProperty = ConnectorProperty.builder()
         .connectorArn("connectorArn")
         .id("id")
         // the properties below are optional
         .parameters(parameters)
         .build();
 

See Also: