Interface CfnTable.TableIdentifierProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTable.TableIdentifierProperty.Jsii$Proxy
- Enclosing class:
- CfnTable
@Stability(Stable)
public static interface CfnTable.TableIdentifierProperty
extends software.amazon.jsii.JsiiSerializable
A structure that describes a target table for resource linking.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.glue.*;
TableIdentifierProperty tableIdentifierProperty = TableIdentifierProperty.builder()
.catalogId("catalogId")
.databaseName("databaseName")
.name("name")
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTable.TableIdentifierPropertystatic final classAn implementation forCfnTable.TableIdentifierProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCatalogId
The ID of the Data Catalog in which the table resides. -
getDatabaseName
The name of the catalog database that contains the target table. -
getName
The name of the target table. -
builder
-