interface ConnectorDefinitionVersionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Greengrass.CfnConnectorDefinition.ConnectorDefinitionVersionProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsgreengrass#CfnConnectorDefinition_ConnectorDefinitionVersionProperty |
Java | software.amazon.awscdk.services.greengrass.CfnConnectorDefinition.ConnectorDefinitionVersionProperty |
Python | aws_cdk.aws_greengrass.CfnConnectorDefinition.ConnectorDefinitionVersionProperty |
TypeScript | aws-cdk-lib » aws_greengrass » CfnConnectorDefinition » ConnectorDefinitionVersionProperty |
A connector definition version contains a list of connectors.
After you create a connector definition version that contains the connectors you want to deploy, you must add it to your group version. For more information, see
AWS::Greengrass::Group.
In an CloudFormation template, ConnectorDefinitionVersion is the property type of the InitialVersion property in the AWS::Greengrass::ConnectorDefinition resource.
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;
const connectorDefinitionVersionProperty: greengrass.CfnConnectorDefinition.ConnectorDefinitionVersionProperty = {
connectors: [{
connectorArn: 'connectorArn',
id: 'id',
// the properties below are optional
parameters: parameters,
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| connectors | IResolvable | (IResolvable | Connector)[] | The connectors in this version. |
connectors
Type:
IResolvable | (IResolvable | Connector)[]
The connectors in this version.
Only one instance of a given connector can be added to a connector definition version at a time.

.NET
Go
Java
Python
TypeScript