Interface CfnTagAssociation.TableWithColumnsResourceProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnTagAssociation.TableWithColumnsResourceProperty.Jsii$Proxy
Enclosing class:
CfnTagAssociation

@Stability(Stable) public static interface CfnTagAssociation.TableWithColumnsResourceProperty extends software.amazon.jsii.JsiiSerializable
A structure for a table with columns object. This object is only used when granting a SELECT permission.

This object must take a value for at least one of ColumnsNames , ColumnsIndexes , or ColumnsWildcard .

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.*;
 TableWithColumnsResourceProperty tableWithColumnsResourceProperty = TableWithColumnsResourceProperty.builder()
         .catalogId("catalogId")
         .columnNames(List.of("columnNames"))
         .databaseName("databaseName")
         .name("name")
         .build();
 

See Also: