public static interface CfnConnectorDefinition.ConnectorProperty
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() |
java.lang.String |
getConnectorArn()
The Amazon Resource Name (ARN) of the connector.
|
java.lang.String |
getId()
A descriptive or arbitrary ID for the connector.
|
default java.lang.Object |
getParameters()
The parameters or configuration used by the connector.
|
java.lang.String getConnectorArn()
For more information about connectors provided by AWS , see Greengrass Connectors Provided by AWS .
java.lang.String getId()
This value must be unique within the connector definition version. Maximum length is 128 characters with pattern [a-zA-Z0-9:_-]+
.
default java.lang.Object getParameters()
For more information about connectors provided by AWS , see Greengrass Connectors Provided by AWS .
static CfnConnectorDefinition.ConnectorProperty.Builder builder()