interface ConnectorReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Transfer.ConnectorReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awstransfer#ConnectorReference |
Java | software.amazon.awscdk.services.transfer.ConnectorReference |
Python | aws_cdk.aws_transfer.ConnectorReference |
TypeScript | aws-cdk-lib » aws_transfer » ConnectorReference |
A reference to a Connector resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_transfer as transfer } from 'aws-cdk-lib';
const connectorReference: transfer.ConnectorReference = {
connectorArn: 'connectorArn',
connectorId: 'connectorId',
};
Properties
| Name | Type | Description |
|---|---|---|
| connector | string | The ARN of the Connector resource. |
| connector | string | The ConnectorId of the Connector resource. |
connectorArn
Type:
string
The ARN of the Connector resource.
connectorId
Type:
string
The ConnectorId of the Connector resource.

.NET
Go
Java
Python
TypeScript