Interface CfnPermissions.ResourceProperty

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

@Stability(Stable) public static interface CfnPermissions.ResourceProperty extends software.amazon.jsii.JsiiSerializable
A structure for the resource.

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.*;
 ResourceProperty resourceProperty = ResourceProperty.builder()
         .databaseResource(DatabaseResourceProperty.builder()
                 .catalogId("catalogId")
                 .name("name")
                 .build())
         .dataLocationResource(DataLocationResourceProperty.builder()
                 .catalogId("catalogId")
                 .s3Resource("s3Resource")
                 .build())
         .tableResource(TableResourceProperty.builder()
                 .catalogId("catalogId")
                 .databaseName("databaseName")
                 .name("name")
                 .tableWildcard(TableWildcardProperty.builder().build())
                 .build())
         .tableWithColumnsResource(TableWithColumnsResourceProperty.builder()
                 .catalogId("catalogId")
                 .columnNames(List.of("columnNames"))
                 .columnWildcard(ColumnWildcardProperty.builder()
                         .excludedColumnNames(List.of("excludedColumnNames"))
                         .build())
                 .databaseName("databaseName")
                 .name("name")
                 .build())
         .build();
 

See Also: