interface DataSourceReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.AppSync.DataSourceReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsappsync#DataSourceReference |
Java | software.amazon.awscdk.services.appsync.DataSourceReference |
Python | aws_cdk.aws_appsync.DataSourceReference |
TypeScript | aws-cdk-lib » aws_appsync » 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_appsync as appsync } from 'aws-cdk-lib';
const dataSourceReference: appsync.DataSourceReference = {
dataSourceArn: 'dataSourceArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| data | string | The DataSourceArn of the DataSource resource. |
dataSourceArn
Type:
string
The DataSourceArn of the DataSource resource.

.NET
Go
Java
Python
TypeScript