Interface CfnTagProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnTagProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:29:58.441Z") @Stability(Stable) public interface CfnTagProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnTag.

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.*;
 CfnTagProps cfnTagProps = CfnTagProps.builder()
         .tagKey("tagKey")
         .tagValues(List.of("tagValues"))
         // the properties below are optional
         .catalogId("catalogId")
         .build();
 
  • Method Details

    • getTagKey

      @Stability(Stable) @NotNull String getTagKey()
      UTF-8 string, not less than 1 or more than 255 bytes long, matching the single-line string pattern .

      The key-name for the LF-tag.

    • getTagValues

      @Stability(Stable) @NotNull List<String> getTagValues()
      An array of UTF-8 strings, not less than 1 or more than 50 strings.

      A list of possible values of the corresponding TagKey of an LF-tag key-value pair.

    • getCatalogId

      @Stability(Stable) @Nullable default String getCatalogId()
      Catalog id string, not less than 1 or more than 255 bytes long, matching the single-line string pattern .

      The identifier for the Data Catalog . By default, the account ID. The Data Catalog is the persistent metadata store. It contains database definitions, table definitions, and other control information to manage your AWS Lake Formation environment.

    • builder

      @Stability(Stable) static CfnTagProps.Builder builder()
      Returns:
      a CfnTagProps.Builder of CfnTagProps