class AspectPriority
Language | Type name |
---|---|
![]() | Amazon.CDK.AspectPriority |
![]() | github.com/aws/aws-cdk-go/awscdk/v2#AspectPriority |
![]() | software.amazon.awscdk.AspectPriority |
![]() | aws_cdk.AspectPriority |
![]() | 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.