Class: AWSCDK::APIGatewayv2::CfnIntegration::ResponseParameterMapProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::APIGatewayv2::CfnIntegration::ResponseParameterMapProperty
- Defined in:
- api_gatewayv2/cfn_integration.rb
Overview
map of response parameter lists.
Instance Attribute Summary collapse
-
#response_parameters ⇒ AWSCDK::IResolvable, ...
readonly
list of response parameters.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(response_parameters: nil) ⇒ ResponseParameterMapProperty
constructor
A new instance of ResponseParameterMapProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(response_parameters: nil) ⇒ ResponseParameterMapProperty
Returns a new instance of ResponseParameterMapProperty.
753 754 755 756 |
# File 'api_gatewayv2/cfn_integration.rb', line 753 def initialize(response_parameters: nil) @response_parameters = response_parameters Jsii::Type.check_type(@response_parameters, JSON.parse(Base64.strict_decode64("eyJ1bmlvbiI6eyJ0eXBlcyI6W3siZnFuIjoiYXdzLWNkay1saWIuSVJlc29sdmFibGUifSx7ImNvbGxlY3Rpb24iOnsiZWxlbWVudHR5cGUiOnsidW5pb24iOnsidHlwZXMiOlt7ImZxbiI6ImF3cy1jZGstbGliLklSZXNvbHZhYmxlIn0seyJmcW4iOiJhd3MtY2RrLWxpYi5hd3NfYXBpZ2F0ZXdheXYyLkNmbkludGVncmF0aW9uLlJlc3BvbnNlUGFyYW1ldGVyUHJvcGVydHkifV19fSwia2luZCI6ImFycmF5In19XX19")), "responseParameters") unless @response_parameters.nil? end |
Instance Attribute Details
#response_parameters ⇒ AWSCDK::IResolvable, ... (readonly)
list of response parameters.
762 763 764 |
# File 'api_gatewayv2/cfn_integration.rb', line 762 def response_parameters @response_parameters end |
Class Method Details
.jsii_properties ⇒ Object
764 765 766 767 768 |
# File 'api_gatewayv2/cfn_integration.rb', line 764 def self.jsii_properties { :response_parameters => "responseParameters", } end |
Instance Method Details
#to_jsii ⇒ Object
770 771 772 773 774 775 776 |
# File 'api_gatewayv2/cfn_integration.rb', line 770 def to_jsii result = {} result.merge!({ "responseParameters" => @response_parameters, }) result.compact end |