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:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnConnectorDefinition.ConnectorProperty
static final class
An implementation forCfnConnectorDefinition.ConnectorProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getConnectorArn
The Amazon Resource Name (ARN) of the connector.For more information about connectors provided by AWS , see Greengrass Connectors Provided by AWS .
- See Also:
-
getId
A 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:_-]+
.- See Also:
-
getParameters
The parameters or configuration used by the connector.For more information about connectors provided by AWS , see Greengrass Connectors Provided by AWS .
- See Also:
-
builder
-