Interface CfnTagAssociation.TableResourceProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTagAssociation.TableResourceProperty.Jsii$Proxy
- Enclosing class:
CfnTagAssociation
@Stability(Stable)
public static interface CfnTagAssociation.TableResourceProperty
extends software.amazon.jsii.JsiiSerializable
A structure for the table object.
A table is a metadata definition that represents your data. You can Grant and Revoke table privileges to a principal.
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.lakeformation.*; Object tableWildcard; TableResourceProperty tableResourceProperty = TableResourceProperty.builder() .catalogId("catalogId") .databaseName("databaseName") // the properties below are optional .name("name") .tableWildcard(tableWildcard) .build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnTagAssociation.TableResourceProperty
static final class
An implementation forCfnTagAssociation.TableResourceProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
The identifier for the Data Catalog .The name of the database for the table.default String
getName()
The name of the table.default Object
A wildcard object representing every table under a database.This is an object with no properties that effectively behaves as a true or false depending on whether not it is passed as a parameter.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCatalogId
The identifier for the Data Catalog .By default, it is the account ID of the caller.
-
getDatabaseName
The name of the database for the table.Unique to a Data Catalog. A database is a set of associated table definitions organized into a logical group. You can Grant and Revoke database privileges to a principal.
-
getName
The name of the table. -
getTableWildcard
A wildcard object representing every table under a database.This is an object with no properties that effectively behaves as a true or false depending on whether not it is passed as a parameter. The valid inputs for a property with this type in either yaml or json is null or {}.At least one of
TableResource$Name
orTableResource$TableWildcard
is required. -
builder
-