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
System.Object
CfnConnectorDefinition.ConnectorProperty
Implements
CfnConnectorDefinition.IConnectorProperty
Namespace: Amazon.CDK.AWS.Greengrass
Assembly: Amazon.CDK.AWS.Greengrass.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.

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

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

public ConnectorProperty()

Properties

ConnectorArn

The Amazon Resource Name (ARN) of the connector.

public string ConnectorArn { get; set; }
Property Value

System.String

Remarks

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

Link: 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

System.String

Remarks

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

Link: 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

System.Object

Remarks

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

Link: 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