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: