aws-sdk-connect 1.56.0 → 1.60.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-connect/client.rb +558 -17
- data/lib/aws-sdk-connect/client_api.rb +393 -0
- data/lib/aws-sdk-connect/errors.rb +32 -0
- data/lib/aws-sdk-connect/types.rb +886 -12
- data/lib/aws-sdk-connect.rb +1 -1
- metadata +4 -4
@@ -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
|