Interface AWSAPICallViaCloudTrail.TagSpecificationSet

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

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

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.*;
 TagSpecificationSet tagSpecificationSet = TagSpecificationSet.builder()
         .items(List.of(TagSpecificationSetItem.builder()
                 .resourceType(List.of("resourceType"))
                 .tags(List.of(TagSpecificationSetItemItem.builder()
                         .key(List.of("key"))
                         .value(List.of("value"))
                         .build()))
                 .build()))
         .build();