Show / Hide Table of Contents

Class DataSetReference

A reference to a DataSet resource.

Inheritance
object
DataSetReference
Implements
IDataSetReference
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

string

Remarks

ExampleMetadata: fixture=_generated

DataSetArn

The ARN of the DataSet resource.

public string DataSetArn { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

DataSetId

The DataSetId of the DataSet resource.

public string DataSetId { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

Implements

IDataSetReference
Back to top Generated by DocFX