Class: AWSCDK::APIGatewayv2::CfnIntegration::ResponseParameterMapProperty

Inherits:
Jsii::Struct
  • Object
show all
Defined in:
api_gatewayv2/cfn_integration.rb

Overview

map of response parameter lists.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(response_parameters: nil) ⇒ ResponseParameterMapProperty

Returns a new instance of ResponseParameterMapProperty.

Parameters:



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_parametersAWSCDK::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_propertiesObject



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_jsiiObject



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