Class DataSourceReference
A reference to a DataSource resource.
Implements
Inherited Members
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
Remarks
ExampleMetadata: fixture=_generated
DataSourceArn
The ARN of the DataSource resource.
public string DataSourceArn { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated
DataSourceId
The DataSourceId of the DataSource resource.
public string DataSourceId { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated