interface DataSourceReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.aws_datazone.DataSourceReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsdatazone#DataSourceReference |
Java | software.amazon.awscdk.services.datazone.DataSourceReference |
Python | aws_cdk.aws_datazone.DataSourceReference |
TypeScript | aws-cdk-lib » aws_datazone » DataSourceReference |
A reference to a DataSource 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 datazone } from 'aws-cdk-lib';
const dataSourceReference: datazone.DataSourceReference = {
dataSourceId: 'dataSourceId',
domainId: 'domainId',
};
Properties
| Name | Type | Description |
|---|---|---|
| data | string | The Id of the DataSource resource. |
| domain | string | The DomainId of the DataSource resource. |
dataSourceId
Type:
string
The Id of the DataSource resource.
domainId
Type:
string
The DomainId of the DataSource resource.

.NET
Go
Java
Python
TypeScript