Class: AWSCDK::Wisdom::CfnAIAgent::ToolOverrideConstantInputValueProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::Wisdom::CfnAIAgent::ToolOverrideConstantInputValueProperty
- Defined in:
- wisdom/cfn_ai_agent.rb
Overview
Instance Attribute Summary collapse
- #type ⇒ String readonly
- #value ⇒ String readonly
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(type:, value:) ⇒ ToolOverrideConstantInputValueProperty
constructor
A new instance of ToolOverrideConstantInputValueProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(type:, value:) ⇒ ToolOverrideConstantInputValueProperty
Returns a new instance of ToolOverrideConstantInputValueProperty.
1747 1748 1749 1750 1751 1752 |
# File 'wisdom/cfn_ai_agent.rb', line 1747 def initialize(type:, value:) @type = type Jsii::Type.check_type(@type, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "type") @value = value Jsii::Type.check_type(@value, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "value") end |
Instance Attribute Details
#type ⇒ String (readonly)
1756 1757 1758 |
# File 'wisdom/cfn_ai_agent.rb', line 1756 def type @type end |
#value ⇒ String (readonly)
1759 1760 1761 |
# File 'wisdom/cfn_ai_agent.rb', line 1759 def value @value end |
Class Method Details
.jsii_properties ⇒ Object
1761 1762 1763 1764 1765 1766 |
# File 'wisdom/cfn_ai_agent.rb', line 1761 def self.jsii_properties { :type => "type", :value => "value", } end |
Instance Method Details
#to_jsii ⇒ Object
1768 1769 1770 1771 1772 1773 1774 1775 |
# File 'wisdom/cfn_ai_agent.rb', line 1768 def to_jsii result = {} result.merge!({ "type" => @type, "value" => @value, }) result.compact end |