Interface AWSAPICallViaCloudTrail.TagSet

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
AWSAPICallViaCloudTrail.TagSet.Jsii$Proxy
Enclosing class:
AWSAPICallViaCloudTrail

@Stability(Experimental) public static interface AWSAPICallViaCloudTrail.TagSet extends software.amazon.jsii.JsiiSerializable
(experimental) Type definition for TagSet.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.mixins.preview.services.ec2.events.*;
 TagSet tagSet = TagSet.builder()
         .items(List.of(TagSpecificationSetItemItem.builder()
                 .key(List.of("key"))
                 .value(List.of("value"))
                 .build()))
         .build();