Interface DestroyOptions
- All Superinterfaces:
DefaultCdkOptions
,software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
DestroyOptions.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-22T02:24:10.993Z")
@Stability(Stable)
public interface DestroyOptions
extends software.amazon.jsii.JsiiSerializable, DefaultCdkOptions
Options to use with cdk destroy.
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.*; DestroyOptions destroyOptions = 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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forDestroyOptions
static final class
An implementation forDestroyOptions
-
Method Summary
Modifier and TypeMethodDescriptionstatic DestroyOptions.Builder
builder()
default Boolean
Only destroy the given stack.default Boolean
getForce()
Do not ask for permission before destroying stacks.Methods inherited from interface software.amazon.awscdk.cloud_assembly_schema.DefaultCdkOptions
getAll, getApp, getAssetMetadata, getCaBundlePath, getColor, getContext, getDebug, getEc2Creds, getIgnoreErrors, getJson, getLookups, getNotices, getOutput, getPathMetadata, getProfile, getProxy, getRoleArn, getStacks, getStaging, getStrict, getTrace, getVerbose, getVersionReporting
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getExclusively
Only destroy the given stack.Default: false
-
getForce
Do not ask for permission before destroying stacks.Default: false
-
builder
- Returns:
- a
DestroyOptions.Builder
ofDestroyOptions
-