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") .region("region") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnTable.TableIdentifierProperty
static final class
An 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.- See Also:
-
getDatabaseName
The name of the catalog database that contains the target table.- See Also:
-
getName
The name of the target table.- See Also:
-
getRegion
The Region of the table.- See Also:
-
builder
-