Interface CfnTagProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTagProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.89.0 (build 2f74b3e)",
date="2023-10-26T00:56:09.696Z")
@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();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTagPropsstatic final classAn implementation forCfnTagProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnTagProps.Builderbuilder()default StringCatalog 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.
- See Also:
-
getTagValues
An array of UTF-8 strings, not less than 1 or more than 50 strings.A list of possible values of the corresponding
TagKeyof an LF-tag key-value pair.- See Also:
-
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.
- See Also:
-
builder
- Returns:
- a
CfnTagProps.BuilderofCfnTagProps
-