Class: AWSCDK::APIGatewayv2::CfnIntegration::ResponseParameterListProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::APIGatewayv2::CfnIntegration::ResponseParameterListProperty
- Defined in:
- api_gatewayv2/cfn_integration.rb
Overview
Instance Attribute Summary collapse
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(response_parameters: nil) ⇒ ResponseParameterListProperty
constructor
A new instance of ResponseParameterListProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(response_parameters: nil) ⇒ ResponseParameterListProperty
Returns a new instance of ResponseParameterListProperty.
722 723 724 725 |
# File 'api_gatewayv2/cfn_integration.rb', line 722 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)
729 730 731 |
# File 'api_gatewayv2/cfn_integration.rb', line 729 def response_parameters @response_parameters end |
Class Method Details
.jsii_properties ⇒ Object
731 732 733 734 735 |
# File 'api_gatewayv2/cfn_integration.rb', line 731 def self.jsii_properties { :response_parameters => "responseParameters", } end |
Instance Method Details
#to_jsii ⇒ Object
737 738 739 740 741 742 743 |
# File 'api_gatewayv2/cfn_integration.rb', line 737 def to_jsii result = {} result.merge!({ "responseParameters" => @response_parameters, }) result.compact end |