Interface CfnConnectorDefinitionVersion.ConnectorProperty
- All Superinterfaces:
- software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
- CfnConnectorDefinitionVersion.ConnectorProperty.Jsii$Proxy
- Enclosing class:
- CfnConnectorDefinitionVersion
@Stability(Stable)
public static interface CfnConnectorDefinitionVersion.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 AWS::Greengrass::ConnectorDefinitionVersion resource 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();
 - 
Nested Class SummaryNested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnConnectorDefinitionVersion.ConnectorPropertystatic final classAn implementation forCfnConnectorDefinitionVersion.ConnectorProperty
- 
Method SummaryMethods inherited from interface software.amazon.jsii.JsiiSerializable$jsii$toJson
- 
Method Details- 
getConnectorArnThe Amazon Resource Name (ARN) of the connector.For more information about connectors provided by AWS , see Greengrass Connectors Provided by AWS . 
- 
getIdA descriptive or arbitrary ID for the connector.This value must be unique within the connector definition version. Maximum length is 128 characters with pattern [a-zA-Z0-9:_-]+.
- 
getParametersThe parameters or configuration that the connector uses.For more information about connectors provided by AWS , see Greengrass Connectors Provided by AWS . 
- 
builder
 
-