Interface DestroyCommand

All Superinterfaces:
CdkCommand, software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
DestroyCommand.Jsii$Proxy

@Generated(value="jsii-pacmak/1.104.0 (build e79254c)", date="2024-11-22T02:24:10.992Z") @Stability(Stable) public interface DestroyCommand extends software.amazon.jsii.JsiiSerializable, CdkCommand
Represents a cdk destroy command.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.cloud_assembly_schema.*;
 DestroyCommand destroyCommand = DestroyCommand.builder()
         .args(DestroyOptions.builder()
                 .all(false)
                 .app("app")
                 .assetMetadata(false)
                 .caBundlePath("caBundlePath")
                 .color(false)
                 .context(Map.of(
                         "contextKey", "context"))
                 .debug(false)
                 .ec2Creds(false)
                 .exclusively(false)
                 .force(false)
                 .ignoreErrors(false)
                 .json(false)
                 .lookups(false)
                 .notices(false)
                 .output("output")
                 .pathMetadata(false)
                 .profile("profile")
                 .proxy("proxy")
                 .roleArn("roleArn")
                 .stacks(List.of("stacks"))
                 .staging(false)
                 .strict(false)
                 .trace(false)
                 .verbose(false)
                 .versionReporting(false)
                 .build())
         .enabled(false)
         .expectedMessage("expectedMessage")
         .expectError(false)
         .build();