interface ConnectorProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Greengrass.Mixins.CfnConnectorDefinitionPropsMixin.ConnectorProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsgreengrass/mixins#CfnConnectorDefinitionPropsMixin_ConnectorProperty |
Java | software.amazon.awscdk.mixins.preview.services.greengrass.mixins.CfnConnectorDefinitionPropsMixin.ConnectorProperty |
Python | aws_cdk.mixins_preview.aws_greengrass.mixins.CfnConnectorDefinitionPropsMixin.ConnectorProperty |
TypeScript | @aws-cdk/mixins-preview » aws_greengrass » mixins » CfnConnectorDefinitionPropsMixin » ConnectorProperty |
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 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 { mixins as greengrass_mixins } from '@aws-cdk/mixins-preview/aws-greengrass';
declare const parameters: any;
const connectorProperty: greengrass_mixins.CfnConnectorDefinitionPropsMixin.ConnectorProperty = {
connectorArn: 'connectorArn',
id: 'id',
parameters: parameters,
};
Properties
| Name | Type | Description |
|---|---|---|
| connector | string | The Amazon Resource Name (ARN) of the connector. |
| id? | string | A descriptive or arbitrary ID for the connector. |
| parameters? | any | The parameters or configuration used by the connector. |
connectorArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the connector.
For more information about connectors provided by AWS , see Greengrass Connectors Provided by AWS .
id?
Type:
string
(optional)
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:_-]+ .
parameters?
Type:
any
(optional)
The parameters or configuration used by the connector.
For more information about connectors provided by AWS , see Greengrass Connectors Provided by AWS .

.NET
Go
Java
Python
TypeScript