Show / Hide Table of Contents

Class DataSourceReference

A reference to a DataSource resource.

Inheritance
object
DataSourceReference
Implements
IDataSourceReference
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.Interfaces.QuickSight
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class DataSourceReference : IDataSourceReference
Syntax (vb)
Public Class DataSourceReference Implements IDataSourceReference
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.Interfaces.QuickSight;

            var dataSourceReference = new DataSourceReference {
                AwsAccountId = "awsAccountId",
                DataSourceArn = "dataSourceArn",
                DataSourceId = "dataSourceId"
            };

Synopsis

Constructors

DataSourceReference()

A reference to a DataSource resource.

Properties

AwsAccountId

The AwsAccountId of the DataSource resource.

DataSourceArn

The ARN of the DataSource resource.

DataSourceId

The DataSourceId of the DataSource resource.

Constructors

DataSourceReference()

A reference to a DataSource resource.

public DataSourceReference()
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.Interfaces.QuickSight;

            var dataSourceReference = new DataSourceReference {
                AwsAccountId = "awsAccountId",
                DataSourceArn = "dataSourceArn",
                DataSourceId = "dataSourceId"
            };

Properties

AwsAccountId

The AwsAccountId of the DataSource resource.

public string AwsAccountId { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

DataSourceArn

The ARN of the DataSource resource.

public string DataSourceArn { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

DataSourceId

The DataSourceId of the DataSource resource.

public string DataSourceId { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

Implements

IDataSourceReference
Back to top Generated by DocFX