Class: AWSCDK::RTBFabric::CfnLink::HeaderTagActionProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::RTBFabric::CfnLink::HeaderTagActionProperty
- Defined in:
- rtb_fabric/cfn_link.rb
Overview
Describes the header tag for a bid action.
Instance Attribute Summary collapse
-
#name ⇒ String
readonly
The name of the bid action.
-
#value ⇒ String
readonly
The value of the bid action.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(name:, value:) ⇒ HeaderTagActionProperty
constructor
A new instance of HeaderTagActionProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(name:, value:) ⇒ HeaderTagActionProperty
Returns a new instance of HeaderTagActionProperty.
780 781 782 783 784 785 |
# File 'rtb_fabric/cfn_link.rb', line 780 def initialize(name:, value:) @name = name Jsii::Type.check_type(@name, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "name") @value = value Jsii::Type.check_type(@value, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "value") end |
Instance Attribute Details
#name ⇒ String (readonly)
The name of the bid action.
791 792 793 |
# File 'rtb_fabric/cfn_link.rb', line 791 def name @name end |
#value ⇒ String (readonly)
The value of the bid action.
796 797 798 |
# File 'rtb_fabric/cfn_link.rb', line 796 def value @value end |
Class Method Details
.jsii_properties ⇒ Object
798 799 800 801 802 803 |
# File 'rtb_fabric/cfn_link.rb', line 798 def self.jsii_properties { :name => "name", :value => "value", } end |
Instance Method Details
#to_jsii ⇒ Object
805 806 807 808 809 810 811 812 |
# File 'rtb_fabric/cfn_link.rb', line 805 def to_jsii result = {} result.merge!({ "name" => @name, "value" => @value, }) result.compact end |