aws-sdk-amplifyuibuilder 1.5.0 → 1.6.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-amplifyuibuilder/client.rb +823 -1
- data/lib/aws-sdk-amplifyuibuilder/client_api.rb +381 -5
- data/lib/aws-sdk-amplifyuibuilder/errors.rb +16 -0
- data/lib/aws-sdk-amplifyuibuilder/types.rb +1784 -78
- data/lib/aws-sdk-amplifyuibuilder.rb +1 -1
- metadata +2 -2
@@ -32,6 +32,7 @@ module Aws::AmplifyUIBuilder
|
|
32
32
|
# * {ResourceConflictException}
|
33
33
|
# * {ResourceNotFoundException}
|
34
34
|
# * {ServiceQuotaExceededException}
|
35
|
+
# * {UnauthorizedException}
|
35
36
|
#
|
36
37
|
# Additionally, error classes are dynamically generated for service errors based on the error code
|
37
38
|
# if they are not defined above.
|
@@ -114,5 +115,20 @@ module Aws::AmplifyUIBuilder
|
|
114
115
|
end
|
115
116
|
end
|
116
117
|
|
118
|
+
class UnauthorizedException < ServiceError
|
119
|
+
|
120
|
+
# @param [Seahorse::Client::RequestContext] context
|
121
|
+
# @param [String] message
|
122
|
+
# @param [Aws::AmplifyUIBuilder::Types::UnauthorizedException] data
|
123
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
124
|
+
super(context, message, data)
|
125
|
+
end
|
126
|
+
|
127
|
+
# @return [String]
|
128
|
+
def message
|
129
|
+
@message || @data[:message]
|
130
|
+
end
|
131
|
+
end
|
132
|
+
|
117
133
|
end
|
118
134
|
end
|