interface PolicyValidationStack
| Language | Type name |
|---|---|
.NET | Amazon.CDK.PolicyValidationStack |
Go | github.com/aws/aws-cdk-go/awscdk/v2#PolicyValidationStack |
Java | software.amazon.awscdk.PolicyValidationStack |
Python | aws_cdk.PolicyValidationStack |
TypeScript (source) | aws-cdk-lib » PolicyValidationStack |
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 * as cdk from 'aws-cdk-lib';
const policyValidationStack: cdk.PolicyValidationStack = {
stackConstructPath: 'stackConstructPath',
templatePath: 'templatePath',
// the properties below are optional
accountId: 'accountId',
region: 'region',
};
Properties
| Name | Type | Description |
|---|---|---|
| stack | string | The Stack's construct path. |
| template | string | The path to the template file on disk. |
| account | string | The account ID for this stack, if known. |
| region? | string | The region for this stack, if known. |
stackConstructPath
Type:
string
The Stack's construct path.
templatePath
Type:
string
The path to the template file on disk.
accountId?
Type:
string
(optional, default: the account ID is unknown)
The account ID for this stack, if known.
region?
Type:
string
(optional, default: the region is unknown)
The region for this stack, if known.

.NET
Go
Java
Python
TypeScript (