Interface ListOptions

All Superinterfaces:
software.amazon.jsii.JsiiSerializable, SharedOptions
All Known Implementing Classes:
ListOptions.Jsii$Proxy

@Generated(value="jsii-pacmak/1.98.0 (build 00b106d)", date="2024-05-08T21:35:15.418Z") @Stability(Experimental) public interface ListOptions extends software.amazon.jsii.JsiiSerializable, SharedOptions
(experimental) Options for cdk list.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.cli.lib.alpha.*;
 ListOptions listOptions = ListOptions.builder()
         .assetMetadata(false)
         .caBundlePath("caBundlePath")
         .color(false)
         .context(Map.of(
                 "contextKey", "context"))
         .debug(false)
         .ec2Creds(false)
         .ignoreErrors(false)
         .json(false)
         .long(false)
         .lookups(false)
         .notices(false)
         .pathMetadata(false)
         .profile("profile")
         .proxy("proxy")
         .roleArn("roleArn")
         .stacks(List.of("stacks"))
         .staging(false)
         .strict(false)
         .trace(false)
         .verbose(false)
         .versionReporting(false)
         .build();
 
  • Method Details