interface DatasetReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.IoTSiteWise.DatasetReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsiotsitewise#DatasetReference |
Java | software.amazon.awscdk.interfaces.iotsitewise.DatasetReference |
Python | aws_cdk.interfaces.aws_iotsitewise.DatasetReference |
TypeScript | aws-cdk-lib » interfaces » aws_iotsitewise » 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_iotsitewise as interfaces_iotsitewise } from 'aws-cdk-lib/interfaces';
const datasetReference: interfaces_iotsitewise.DatasetReference = {
datasetArn: 'datasetArn',
datasetId: 'datasetId',
};
Properties
| Name | Type | Description |
|---|---|---|
| dataset | string | The ARN of the Dataset resource. |
| dataset | string | The DatasetId of the Dataset resource. |
datasetArn
Type:
string
The ARN of the Dataset resource.
datasetId
Type:
string
The DatasetId of the Dataset resource.

.NET
Go
Java
Python
TypeScript