Class CfnTablePropsMixin.TableIdentifierProperty
A structure that describes a target table for resource linking.
Implements
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.Glue.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnTablePropsMixin.TableIdentifierProperty : CfnTablePropsMixin.ITableIdentifierProperty
Syntax (vb)
Public Class CfnTablePropsMixin.TableIdentifierProperty Implements CfnTablePropsMixin.ITableIdentifierProperty
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.Mixins.Preview.AWS.Glue.Mixins;
var tableIdentifierProperty = new TableIdentifierProperty {
CatalogId = "catalogId",
DatabaseName = "databaseName",
Name = "name",
Region = "region"
};
Synopsis
Constructors
| TableIdentifierProperty() | A structure that describes a target table for resource linking. |
Properties
| CatalogId | The ID of the Data Catalog in which the table resides. |
| DatabaseName | The name of the catalog database that contains the target table. |
| Name | The name of the target table. |
| Region | The Region of the table. |
Constructors
TableIdentifierProperty()
A structure that describes a target table for resource linking.
public TableIdentifierProperty()
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.Mixins.Preview.AWS.Glue.Mixins;
var tableIdentifierProperty = new TableIdentifierProperty {
CatalogId = "catalogId",
DatabaseName = "databaseName",
Name = "name",
Region = "region"
};
Properties
CatalogId
The ID of the Data Catalog in which the table resides.
public string? CatalogId { get; set; }
Property Value
Remarks
DatabaseName
The name of the catalog database that contains the target table.
public string? DatabaseName { get; set; }
Property Value
Remarks
Name
The name of the target table.
public string? Name { get; set; }
Property Value
Remarks
Region
The Region of the table.
public string? Region { get; set; }