interface ConnectorDefinitionReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Greengrass.ConnectorDefinitionReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsgreengrass#ConnectorDefinitionReference |
Java | software.amazon.awscdk.services.greengrass.ConnectorDefinitionReference |
Python | aws_cdk.aws_greengrass.ConnectorDefinitionReference |
TypeScript | aws-cdk-lib » aws_greengrass » ConnectorDefinitionReference |
A reference to a 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';
const connectorDefinitionReference: greengrass.ConnectorDefinitionReference = {
connectorDefinitionArn: 'connectorDefinitionArn',
connectorDefinitionId: 'connectorDefinitionId',
};
Properties
| Name | Type | Description |
|---|---|---|
| connector | string | The ARN of the ConnectorDefinition resource. |
| connector | string | The Id of the ConnectorDefinition resource. |
connectorDefinitionArn
Type:
string
The ARN of the ConnectorDefinition resource.
connectorDefinitionId
Type:
string
The Id of the ConnectorDefinition resource.

.NET
Go
Java
Python
TypeScript