interface ConnectionReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.DataZone.ConnectionReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsdatazone#ConnectionReference |
Java | software.amazon.awscdk.interfaces.datazone.ConnectionReference |
Python | aws_cdk.interfaces.aws_datazone.ConnectionReference |
TypeScript | aws-cdk-lib » interfaces » aws_datazone » ConnectionReference |
A reference to a Connection resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_datazone as interfaces_aws_datazone } from 'aws-cdk-lib/interfaces';
const connectionReference: interfaces_aws_datazone.ConnectionReference = {
connectionId: 'connectionId',
domainId: 'domainId',
};
Properties
| Name | Type | Description |
|---|---|---|
| connection | string | The ConnectionId of the Connection resource. |
| domain | string | The DomainId of the Connection resource. |
connectionId
Type:
string
The ConnectionId of the Connection resource.
domainId
Type:
string
The DomainId of the Connection resource.

.NET
Go
Java
Python
TypeScript