Show / Hide Table of Contents

Class CfnConnectorDefinition.ConnectorProperty

Connectors are modules that provide built-in integration with local infrastructure, device protocols, AWS , and other cloud services.

Inheritance
object
CfnConnectorDefinition.ConnectorProperty
Implements
CfnConnectorDefinition.IConnectorProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.Greengrass
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnConnectorDefinition.ConnectorProperty : CfnConnectorDefinition.IConnectorProperty
Syntax (vb)
Public Class CfnConnectorDefinition.ConnectorProperty 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.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-connectordefinition-connector.html

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

ConnectorProperty()

Connectors are modules that provide built-in integration with local infrastructure, device protocols, AWS , and other cloud services.

Properties

ConnectorArn

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()

Connectors are modules that provide built-in integration with local infrastructure, device protocols, AWS , and other cloud services.

public ConnectorProperty()
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.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-connectordefinition-connector.html

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
             };

Properties

ConnectorArn

The Amazon Resource Name (ARN) of the connector.

public string ConnectorArn { get; set; }
Property Value

string

Remarks

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-connectordefinition-connector.html#cfn-greengrass-connectordefinition-connector-connectorarn

Id

A descriptive or arbitrary ID for the connector.

public string Id { get; set; }
Property Value

string

Remarks

This value must be unique within the connector definition version. Maximum length is 128 characters with pattern [a-zA-Z0-9:_-]+ .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-connectordefinition-connector.html#cfn-greengrass-connectordefinition-connector-id

Parameters

The parameters or configuration used by the connector.

public object? Parameters { get; set; }
Property Value

object

Remarks

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-connectordefinition-connector.html#cfn-greengrass-connectordefinition-connector-parameters

Implements

CfnConnectorDefinition.IConnectorProperty
Back to top Generated by DocFX