Class: AWSCDK::ECS::CfnService::ServiceConnectTestTrafficRulesHeaderValueProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::ECS::CfnService::ServiceConnectTestTrafficRulesHeaderValueProperty
- Defined in:
- ecs/cfn_service.rb
Overview
Instance Attribute Summary collapse
- #exact ⇒ String readonly
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(exact:) ⇒ ServiceConnectTestTrafficRulesHeaderValueProperty
constructor
A new instance of ServiceConnectTestTrafficRulesHeaderValueProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(exact:) ⇒ ServiceConnectTestTrafficRulesHeaderValueProperty
Returns a new instance of ServiceConnectTestTrafficRulesHeaderValueProperty.
2765 2766 2767 2768 |
# File 'ecs/cfn_service.rb', line 2765 def initialize(exact:) @exact = exact Jsii::Type.check_type(@exact, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "exact") end |
Instance Attribute Details
#exact ⇒ String (readonly)
2772 2773 2774 |
# File 'ecs/cfn_service.rb', line 2772 def exact @exact end |
Class Method Details
.jsii_properties ⇒ Object
2774 2775 2776 2777 2778 |
# File 'ecs/cfn_service.rb', line 2774 def self.jsii_properties { :exact => "exact", } end |
Instance Method Details
#to_jsii ⇒ Object
2780 2781 2782 2783 2784 2785 2786 |
# File 'ecs/cfn_service.rb', line 2780 def to_jsii result = {} result.merge!({ "exact" => @exact, }) result.compact end |