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();
 
  • Method Details

    • getStackConstructPath

      @Stability(Stable) @NotNull String getStackConstructPath()
      The Stack's construct path.
    • getTemplatePath

      @Stability(Stable) @NotNull String getTemplatePath()
      The path to the template file on disk.
    • getAccountId

      @Stability(Stable) @Nullable default String getAccountId()
      The account ID for this stack, if known.

      Default: - the account ID is unknown

    • getRegion

      @Stability(Stable) @Nullable default String getRegion()
      The region for this stack, if known.

      Default: - the region is unknown

    • builder

      @Stability(Stable) static PolicyValidationStack.Builder builder()
      Returns:
      a PolicyValidationStack.Builder of PolicyValidationStack