@Stability(value=Stable)
public static interface CfnConnectorDefinition.ConnectorProperty
extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnConnectorDefinition.ConnectorProperty.Builder
A builder for
CfnConnectorDefinition.ConnectorProperty |
static class |
CfnConnectorDefinition.ConnectorProperty.Jsii$Proxy
An implementation for
CfnConnectorDefinition.ConnectorProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnConnectorDefinition.ConnectorProperty.Builder |
builder() |
String |
getConnectorArn()
The Amazon Resource Name (ARN) of the connector.
|
String |
getId()
A descriptive or arbitrary ID for the connector.
|
default Object |
getParameters()
The parameters or configuration used by the connector.
|
@Stability(value=Stable) @NotNull String getConnectorArn()
For more information about connectors provided by AWS , see Greengrass Connectors Provided by AWS .
@Stability(value=Stable) @NotNull String getId()
This value must be unique within the connector definition version. Maximum length is 128 characters with pattern [a-zA-Z0-9:_-]+ .
@Stability(value=Stable) @Nullable default Object getParameters()
For more information about connectors provided by AWS , see Greengrass Connectors Provided by AWS .
@Stability(value=Stable) static CfnConnectorDefinition.ConnectorProperty.Builder builder()
Copyright © 2022. All rights reserved.