Class CfnConnectorDefinition.ConnectorProperty
Connectors are modules that provide built-in integration with local infrastructure, device protocols, AWS , and other cloud services.
Inheritance
Implements
Namespace: Amazon.CDK.AWS.Greengrass
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class ConnectorProperty : Object, CfnConnectorDefinition.IConnectorProperty
Syntax (vb)
Public Class ConnectorProperty
Inherits Object
Implements CfnConnectorDefinition.IConnectorProperty
Remarks
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.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Greengrass;
var parameters;
var connectorProperty = new ConnectorProperty {
ConnectorArn = "connectorArn",
Id = "id",
// the properties below are optional
Parameters = parameters
};
Synopsis
Constructors
Connector |
Properties
Connector |
The Amazon Resource Name (ARN) of the connector. |
Id | A descriptive or arbitrary ID for the connector. |
Parameters | The parameters or configuration used by the connector. |
Constructors
ConnectorProperty()
public ConnectorProperty()
Properties
ConnectorArn
The Amazon Resource Name (ARN) of the connector.
public string ConnectorArn { get; set; }
Property Value
System.
Remarks
For more information about connectors provided by AWS , see Greengrass Connectors Provided by AWS .
Id
A descriptive or arbitrary ID for the connector.
public string Id { get; set; }
Property Value
System.
Remarks
This value must be unique within the connector definition version. Maximum length is 128 characters with pattern [a-zA-Z0-9:_-]+
.
Parameters
The parameters or configuration used by the connector.
public object Parameters { get; set; }
Property Value
System.
Remarks
For more information about connectors provided by AWS , see Greengrass Connectors Provided by AWS .