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();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTagAssociation.LFTagPairPropertystatic final classAn implementation forCfnTagAssociation.LFTagPairProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The identifier for the Data Catalog .The key-name for the LF-tag.A list of possible values of the correspondingTagKeyof an LF-tag key-value pair.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.
- See Also:
-
getTagKey
The key-name for the LF-tag.- See Also:
-
getTagValues
A list of possible values of the correspondingTagKeyof an LF-tag key-value pair.- See Also:
-
builder
-