Class CfnConfiguredTable.GlueTableReferenceProperty
A reference to a table within an AWS Glue data catalog.
Implements
Inherited Members
Namespace: Amazon.CDK.AwsCleanrooms
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnConfiguredTable.GlueTableReferenceProperty : CfnConfiguredTable.IGlueTableReferenceProperty
Syntax (vb)
Public Class CfnConfiguredTable.GlueTableReferenceProperty Implements CfnConfiguredTable.IGlueTableReferenceProperty
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_cleanrooms;
var glueTableReferenceProperty = new GlueTableReferenceProperty {
DatabaseName = "databaseName",
TableName = "tableName"
};
Synopsis
Constructors
GlueTableReferenceProperty() | A reference to a table within an AWS Glue data catalog. |
Properties
DatabaseName | The name of the database the AWS Glue table belongs to. |
TableName | The name of the AWS Glue table. |
Constructors
GlueTableReferenceProperty()
A reference to a table within an AWS Glue data catalog.
public GlueTableReferenceProperty()
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_cleanrooms;
var glueTableReferenceProperty = new GlueTableReferenceProperty {
DatabaseName = "databaseName",
TableName = "tableName"
};
Properties
DatabaseName
The name of the database the AWS Glue table belongs to.
public string DatabaseName { get; set; }
Property Value
Remarks
TableName
The name of the AWS Glue table.
public string TableName { get; set; }