aws-sdk-connect 1.56.0 → 1.60.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -32,8 +32,10 @@ module Aws::Connect
32
32
  # * {ContactNotFoundException}
33
33
  # * {DestinationNotAllowedException}
34
34
  # * {DuplicateResourceException}
35
+ # * {IdempotencyException}
35
36
  # * {InternalServiceException}
36
37
  # * {InvalidContactFlowException}
38
+ # * {InvalidContactFlowModuleException}
37
39
  # * {InvalidParameterException}
38
40
  # * {InvalidRequestException}
39
41
  # * {LimitExceededException}
@@ -126,6 +128,21 @@ module Aws::Connect
126
128
  end
127
129
  end
128
130
 
131
+ class IdempotencyException < ServiceError
132
+
133
+ # @param [Seahorse::Client::RequestContext] context
134
+ # @param [String] message
135
+ # @param [Aws::Connect::Types::IdempotencyException] data
136
+ def initialize(context, message, data = Aws::EmptyStructure.new)
137
+ super(context, message, data)
138
+ end
139
+
140
+ # @return [String]
141
+ def message
142
+ @message || @data[:message]
143
+ end
144
+ end
145
+
129
146
  class InternalServiceException < ServiceError
130
147
 
131
148
  # @param [Seahorse::Client::RequestContext] context
@@ -156,6 +173,21 @@ module Aws::Connect
156
173
  end
157
174
  end
158
175
 
176
+ class InvalidContactFlowModuleException < ServiceError
177
+
178
+ # @param [Seahorse::Client::RequestContext] context
179
+ # @param [String] message
180
+ # @param [Aws::Connect::Types::InvalidContactFlowModuleException] data
181
+ def initialize(context, message, data = Aws::EmptyStructure.new)
182
+ super(context, message, data)
183
+ end
184
+
185
+ # @return [String]
186
+ def problems
187
+ @data[:problems]
188
+ end
189
+ end
190
+
159
191
  class InvalidParameterException < ServiceError
160
192
 
161
193
  # @param [Seahorse::Client::RequestContext] context