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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnTagProps
static final class
An implementation forCfnTagProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic CfnTagProps.Builder
builder()
default String
Catalog id string, not less than 1 or more than 255 bytes long, matching the single-line string pattern .UTF-8 string, not less than 1 or more than 255 bytes long, matching the single-line string pattern .An array of UTF-8 strings, not less than 1 or more than 50 strings.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
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
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
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
- Returns:
- a
CfnTagProps.Builder
ofCfnTagProps
-