aws-cdk-lib.aws_greengrass.CfnConnectorDefinitionVersion.ConnectorProperty

interface ConnectorProperty

LanguageType name
.NETAmazon.CDK.AWS.Greengrass.CfnConnectorDefinitionVersion.ConnectorProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsgreengrass#CfnConnectorDefinitionVersion_ConnectorProperty
Javasoftware.amazon.awscdk.services.greengrass.CfnConnectorDefinitionVersion.ConnectorProperty
Pythonaws_cdk.aws_greengrass.CfnConnectorDefinitionVersion.ConnectorProperty
TypeScript aws-cdk-lib » aws_greengrass » CfnConnectorDefinitionVersion » 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 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 { aws_greengrass as greengrass } from 'aws-cdk-lib';

declare const parameters: any;
const connectorProperty: greengrass.CfnConnectorDefinitionVersion.ConnectorProperty = {
  connectorArn: 'connectorArn',
  id: 'id',

  // the properties below are optional
  parameters: parameters,
};

Properties

NameTypeDescription
connectorArnstringThe Amazon Resource Name (ARN) of the connector.
idstringA descriptive or arbitrary ID for the connector.
parameters?anyThe parameters or configuration that the connector uses.

connectorArn

Type: string

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

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 that the connector uses.

For more information about connectors provided by AWS , see Greengrass Connectors Provided by AWS .