Package software.amazon.awscdk
Interface PolicyValidationStack
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
PolicyValidationStack.Jsii$Proxy
@Generated(value="jsii-pacmak/1.139.0 (build 26a6b54)",
date="2026-09-10T17:51:37.150Z")
@Stability(Stable)
public interface PolicyValidationStack
extends software.amazon.jsii.JsiiSerializable
Information about a single stack that is being validated.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.*;
PolicyValidationStack policyValidationStack = PolicyValidationStack.builder()
.stackConstructPath("stackConstructPath")
.templatePath("templatePath")
// the properties below are optional
.accountId("accountId")
.region("region")
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forPolicyValidationStackstatic final classAn implementation forPolicyValidationStack -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getStackConstructPath
The Stack's construct path. -
getTemplatePath
The path to the template file on disk. -
getAccountId
The account ID for this stack, if known.Default: - the account ID is unknown
-
getRegion
The region for this stack, if known.Default: - the region is unknown
-
builder
- Returns:
- a
PolicyValidationStack.BuilderofPolicyValidationStack
-