interface CfnConnectorDefinitionMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Greengrass.Mixins.CfnConnectorDefinitionMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsgreengrass/mixins#CfnConnectorDefinitionMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.greengrass.mixins.CfnConnectorDefinitionMixinProps |
Python | aws_cdk.mixins_preview.aws_greengrass.mixins.CfnConnectorDefinitionMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_greengrass » mixins » CfnConnectorDefinitionMixinProps |
Properties for CfnConnectorDefinitionPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as greengrass_mixins } from '@aws-cdk/mixins-preview/aws-greengrass';
declare const parameters: any;
declare const tags: any;
const cfnConnectorDefinitionMixinProps: greengrass_mixins.CfnConnectorDefinitionMixinProps = {
initialVersion: {
connectors: [{
connectorArn: 'connectorArn',
id: 'id',
parameters: parameters,
}],
},
name: 'name',
tags: tags,
};
Properties
| Name | Type | Description |
|---|---|---|
| initial | IResolvable | Connector | The connector definition version to include when the connector definition is created. |
| name? | string | The name of the connector definition. |
| tags? | any | Application-specific metadata to attach to the connector definition. |
initialVersion?
Type:
IResolvable | Connector
(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::ConnectorDefinitionVersionresource and specify the ID of this connector definition.
name?
Type:
string
(optional)
The name of the 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 CloudFormation templates.
"Tags": { "KeyName0": "value", "KeyName1": "value", "KeyName2": "value"
}

.NET
Go
Java
Python
TypeScript