aws-cdk-lib.aws_greengrass.CfnConnectorDefinitionProps

interface CfnConnectorDefinitionProps

LanguageType name
.NETAmazon.CDK.AWS.Greengrass.CfnConnectorDefinitionProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsgreengrass#CfnConnectorDefinitionProps
Javasoftware.amazon.awscdk.services.greengrass.CfnConnectorDefinitionProps
Pythonaws_cdk.aws_greengrass.CfnConnectorDefinitionProps
TypeScript aws-cdk-lib » aws_greengrass » CfnConnectorDefinitionProps

Properties for defining a CfnConnectorDefinition.

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;
declare const tags: any;
const cfnConnectorDefinitionProps: greengrass.CfnConnectorDefinitionProps = {
  name: 'name',

  // the properties below are optional
  initialVersion: {
    connectors: [{
      connectorArn: 'connectorArn',
      id: 'id',

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

Properties

NameTypeDescription
namestringThe name of the connector definition.
initialVersion?IResolvable | ConnectorDefinitionVersionPropertyThe connector definition version to include when the connector definition is created.
tags?anyApplication-specific metadata to attach to the connector definition.

name

Type: string

The name of the connector definition.


initialVersion?

Type: IResolvable | ConnectorDefinitionVersionProperty (optional)

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

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.


tags?

Type: any (optional)

Application-specific metadata to attach to the connector definition.

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