aws-sdk-appstream 1.58.0 → 1.62.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.
@@ -28,6 +28,8 @@ module Aws::AppStream
28
28
  #
29
29
  # ## Error Classes
30
30
  # * {ConcurrentModificationException}
31
+ # * {EntitlementAlreadyExistsException}
32
+ # * {EntitlementNotFoundException}
31
33
  # * {IncompatibleImageException}
32
34
  # * {InvalidAccountStatusException}
33
35
  # * {InvalidParameterCombinationException}
@@ -61,6 +63,36 @@ module Aws::AppStream
61
63
  end
62
64
  end
63
65
 
66
+ class EntitlementAlreadyExistsException < ServiceError
67
+
68
+ # @param [Seahorse::Client::RequestContext] context
69
+ # @param [String] message
70
+ # @param [Aws::AppStream::Types::EntitlementAlreadyExistsException] data
71
+ def initialize(context, message, data = Aws::EmptyStructure.new)
72
+ super(context, message, data)
73
+ end
74
+
75
+ # @return [String]
76
+ def message
77
+ @message || @data[:message]
78
+ end
79
+ end
80
+
81
+ class EntitlementNotFoundException < ServiceError
82
+
83
+ # @param [Seahorse::Client::RequestContext] context
84
+ # @param [String] message
85
+ # @param [Aws::AppStream::Types::EntitlementNotFoundException] data
86
+ def initialize(context, message, data = Aws::EmptyStructure.new)
87
+ super(context, message, data)
88
+ end
89
+
90
+ # @return [String]
91
+ def message
92
+ @message || @data[:message]
93
+ end
94
+ end
95
+
64
96
  class IncompatibleImageException < ServiceError
65
97
 
66
98
  # @param [Seahorse::Client::RequestContext] context