Interface CfnPrincipalPermissions.LFTagKeyResourceProperty

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

@Stability(Stable) public static interface CfnPrincipalPermissions.LFTagKeyResourceProperty extends software.amazon.jsii.JsiiSerializable
A structure containing an LF-tag key and values for a 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.*;
 LFTagKeyResourceProperty lFTagKeyResourceProperty = LFTagKeyResourceProperty.builder()
         .catalogId("catalogId")
         .tagKey("tagKey")
         .tagValues(List.of("tagValues"))
         .build();