Interface DataSetReference
- All Superinterfaces:
- software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
- DataSetReference.Jsii$Proxy
@Generated(value="jsii-pacmak/1.116.0 (build 0eddcff)",
           date="2025-10-29T11:15:46.751Z")
@Stability(Stable)
public interface DataSetReference
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.quicksight.*;
 DataSetReference dataSetReference = DataSetReference.builder()
         .awsAccountId("awsAccountId")
         .dataSetArn("dataSetArn")
         .dataSetId("dataSetId")
         .build();
 - 
Nested Class SummaryNested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forDataSetReferencestatic final classAn implementation forDataSetReference
- 
Method SummaryModifier and TypeMethodDescriptionstatic DataSetReference.Builderbuilder()The AwsAccountId of the DataSet resource.The ARN of the DataSet resource.The DataSetId of the DataSet resource.Methods inherited from interface software.amazon.jsii.JsiiSerializable$jsii$toJson
- 
Method Details- 
getAwsAccountIdThe AwsAccountId of the DataSet resource.
- 
getDataSetArnThe ARN of the DataSet resource.
- 
getDataSetIdThe DataSetId of the DataSet resource.
- 
builder- Returns:
- a DataSetReference.BuilderofDataSetReference
 
 
-