interface DatasetReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.SCN.DatasetReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsscn#DatasetReference |
Java | software.amazon.awscdk.interfaces.scn.DatasetReference |
Python | aws_cdk.interfaces.aws_scn.DatasetReference |
TypeScript | aws-cdk-lib » interfaces » aws_scn » DatasetReference |
A reference to a Dataset resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_scn as interfaces_scn } from 'aws-cdk-lib/interfaces';
const datasetReference: interfaces_scn.DatasetReference = {
datasetArn: 'datasetArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| dataset | string | The Arn of the Dataset resource. |
datasetArn
Type:
string
The Arn of the Dataset resource.

.NET
Go
Java
Python
TypeScript