Class DataSetReference
A reference to a DataSet resource.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class DataSetReference : IDataSetReference
Syntax (vb)
Public Class DataSetReference Implements IDataSetReference
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.QuickSight;
var dataSetReference = new DataSetReference {
AwsAccountId = "awsAccountId",
DataSetArn = "dataSetArn",
DataSetId = "dataSetId"
};
Synopsis
Constructors
DataSetReference() | A reference to a DataSet resource. |
Properties
AwsAccountId | The AwsAccountId of the DataSet resource. |
DataSetArn | The ARN of the DataSet resource. |
DataSetId | The DataSetId of the DataSet resource. |
Constructors
DataSetReference()
A reference to a DataSet resource.
public DataSetReference()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.QuickSight;
var dataSetReference = new DataSetReference {
AwsAccountId = "awsAccountId",
DataSetArn = "dataSetArn",
DataSetId = "dataSetId"
};
Properties
AwsAccountId
The AwsAccountId of the DataSet resource.
public string AwsAccountId { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated
DataSetArn
The ARN of the DataSet resource.
public string DataSetArn { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated
DataSetId
The DataSetId of the DataSet resource.
public string DataSetId { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated