Interface CfnTagAssociation.LFTagPairProperty

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

@Stability(Stable) public static interface CfnTagAssociation.LFTagPairProperty extends software.amazon.jsii.JsiiSerializable
A structure containing the catalog ID, tag key, and tag values of an LF-tag key-value pair.

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.*;
 LFTagPairProperty lFTagPairProperty = LFTagPairProperty.builder()
         .catalogId("catalogId")
         .tagKey("tagKey")
         .tagValues(List.of("tagValues"))
         .build();