Show / Hide Table of Contents

Class CfnConnectorDefinitionProps

Properties for defining a CfnConnectorDefinition.

Inheritance
System.Object
CfnConnectorDefinitionProps
Implements
ICfnConnectorDefinitionProps
Namespace: Amazon.CDK.AWS.Greengrass
Assembly: Amazon.CDK.AWS.Greengrass.dll
Syntax (csharp)
public class CfnConnectorDefinitionProps : Object, ICfnConnectorDefinitionProps
Syntax (vb)
Public Class CfnConnectorDefinitionProps
    Inherits Object
    Implements ICfnConnectorDefinitionProps
Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinition.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 tags;

var cfnConnectorDefinitionProps = new CfnConnectorDefinitionProps {
    Name = "name",

    // the properties below are optional
    InitialVersion = new ConnectorDefinitionVersionProperty {
        Connectors = new [] { new ConnectorProperty {
            ConnectorArn = "connectorArn",
            Id = "id",

            // the properties below are optional
            Parameters = parameters
        } }
    },
    Tags = tags
};

Synopsis

Constructors

CfnConnectorDefinitionProps()

Properties

InitialVersion

The connector definition version to include when the connector definition is created.

Name

The name of the connector definition.

Tags

Application-specific metadata to attach to the connector definition.

Constructors

CfnConnectorDefinitionProps()

public CfnConnectorDefinitionProps()

Properties

InitialVersion

The connector definition version to include when the connector definition is created.

public object InitialVersion { get; set; }
Property Value

System.Object

Remarks

A connector definition version contains a list of connector property types.

To associate a connector definition version after the connector definition is created, create an AWS::Greengrass::ConnectorDefinitionVersion resource and specify the ID of this connector definition.

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinition.html#cfn-greengrass-connectordefinition-initialversion

Name

The name of the connector definition.

public string Name { get; set; }
Property Value

System.String

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinition.html#cfn-greengrass-connectordefinition-name

Tags

Application-specific metadata to attach to the connector definition.

public object Tags { get; set; }
Property Value

System.Object

Remarks

You can use tags in IAM policies to control access to AWS IoT Greengrass resources. You can also use tags to categorize your resources. For more information, see Tagging Your AWS IoT Greengrass Resources in the Developer Guide .

This Json property type is processed as a map of key-value pairs. It uses the following format, which is different from most Tags implementations in AWS CloudFormation templates.

"Tags": { "KeyName0": "value", "KeyName1": "value", "KeyName2": "value"
}

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-connectordefinition.html#cfn-greengrass-connectordefinition-tags

Implements

ICfnConnectorDefinitionProps
Back to top Generated by DocFX