aws-sdk-pipes 1.18.0 → 1.20.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.
@@ -114,11 +114,6 @@ module Aws::Pipes
114
114
  @message || @data[:message]
115
115
  end
116
116
 
117
- # @return [String]
118
- def quota_code
119
- @data[:quota_code]
120
- end
121
-
122
117
  # @return [String]
123
118
  def resource_id
124
119
  @data[:resource_id]
@@ -133,6 +128,11 @@ module Aws::Pipes
133
128
  def service_code
134
129
  @data[:service_code]
135
130
  end
131
+
132
+ # @return [String]
133
+ def quota_code
134
+ @data[:quota_code]
135
+ end
136
136
  end
137
137
 
138
138
  class ThrottlingException < ServiceError
@@ -149,6 +149,11 @@ module Aws::Pipes
149
149
  @message || @data[:message]
150
150
  end
151
151
 
152
+ # @return [String]
153
+ def service_code
154
+ @data[:service_code]
155
+ end
156
+
152
157
  # @return [String]
153
158
  def quota_code
154
159
  @data[:quota_code]
@@ -158,11 +163,6 @@ module Aws::Pipes
158
163
  def retry_after_seconds
159
164
  @data[:retry_after_seconds]
160
165
  end
161
-
162
- # @return [String]
163
- def service_code
164
- @data[:service_code]
165
- end
166
166
  end
167
167
 
168
168
  class ValidationException < ServiceError
@@ -175,13 +175,13 @@ module Aws::Pipes
175
175
  end
176
176
 
177
177
  # @return [String]
178
- def field_list
179
- @data[:field_list]
178
+ def message
179
+ @message || @data[:message]
180
180
  end
181
181
 
182
182
  # @return [String]
183
- def message
184
- @message || @data[:message]
183
+ def field_list
184
+ @data[:field_list]
185
185
  end
186
186
  end
187
187