Class: AWSCDK::AspectPriority
- Inherits:
-
Jsii::Object
- Object
- Jsii::Object
- AWSCDK::AspectPriority
- Defined in:
- aspect_priority.rb
Overview
Default Priority values for Aspects.
Class Method Summary collapse
-
.DEFAULT ⇒ Numeric
Default priority for Aspects that are applied without a priority.
- .jsii_overridable_methods ⇒ Object
-
.MUTATING ⇒ Numeric
Suggested priority for Aspects that mutate the construct tree.
-
.READONLY ⇒ Numeric
Suggested priority for Aspects that only read the construct tree.
Instance Method Summary collapse
-
#initialize ⇒ AspectPriority
constructor
A new instance of AspectPriority.
Constructor Details
#initialize ⇒ AspectPriority
Returns a new instance of AspectPriority.
8 9 10 |
# File 'aspect_priority.rb', line 8 def initialize Jsii::Object.instance_method(:initialize).bind(self).call end |
Class Method Details
.DEFAULT ⇒ Numeric
Default priority for Aspects that are applied without a priority.
20 21 22 |
# File 'aspect_priority.rb', line 20 def self.DEFAULT() Jsii::Kernel.instance.get_static("aws-cdk-lib.AspectPriority", "DEFAULT") end |
.jsii_overridable_methods ⇒ Object
12 13 14 15 |
# File 'aspect_priority.rb', line 12 def self.jsii_overridable_methods { } end |
.MUTATING ⇒ Numeric
Suggested priority for Aspects that mutate the construct tree.
27 28 29 |
# File 'aspect_priority.rb', line 27 def self.MUTATING() Jsii::Kernel.instance.get_static("aws-cdk-lib.AspectPriority", "MUTATING") end |
.READONLY ⇒ Numeric
Suggested priority for Aspects that only read the construct tree.
34 35 36 |
# File 'aspect_priority.rb', line 34 def self.READONLY() Jsii::Kernel.instance.get_static("aws-cdk-lib.AspectPriority", "READONLY") end |