lib/aws-sdk-lambda/errors.rb in aws-sdk-lambda-1.33.0 vs lib/aws-sdk-lambda/errors.rb in aws-sdk-lambda-1.34.0

- old
+ new

@@ -370,9 +370,30 @@ @message || @data[:message] end end + class ProvisionedConcurrencyConfigNotFoundException < ServiceError + + # @param [Seahorse::Client::RequestContext] context + # @param [String] message + # @param [Aws::Lambda::Types::ProvisionedConcurrencyConfigNotFoundException] data + def initialize(context, message, data = Aws::EmptyStructure.new) + super(context, message, data) + end + + # @return [String] + def type + @data[:type] + end + + # @return [String] + def message + @message || @data[:message] + end + + end + class RequestTooLargeException < ServiceError # @param [Seahorse::Client::RequestContext] context # @param [String] message # @param [Aws::Lambda::Types::RequestTooLargeException] data