class AspectPriority
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AspectPriority |
Go | github.com/aws/aws-cdk-go/awscdk/v2#AspectPriority |
Java | software.amazon.awscdk.AspectPriority |
Python | aws_cdk.AspectPriority |
TypeScript (source) | aws-cdk-lib » AspectPriority |
Default Priority values for Aspects.
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 aspectPriority = new cdk.AspectPriority();
Initializer
new AspectPriority()
Properties
| Name | Type | Description |
|---|---|---|
| static DEFAULT | number | Default priority for Aspects that are applied without a priority. |
| static MUTATING | number | Suggested priority for Aspects that mutate the construct tree. |
| static READONLY | number | Suggested priority for Aspects that only read the construct tree. |
static DEFAULT
Type:
number
Default priority for Aspects that are applied without a priority.
static MUTATING
Type:
number
Suggested priority for Aspects that mutate the construct tree.
static READONLY
Type:
number
Suggested priority for Aspects that only read the construct tree.

.NET
Go
Java
Python
TypeScript (