aws-sdk-groundstation 1.73.0 → 1.75.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.
@@ -13,22 +13,22 @@ module Aws::GroundStation
13
13
  # @!attribute region
14
14
  # The AWS region used to dispatch the request.
15
15
  #
16
- # @return [String]
16
+ # @return [string]
17
17
  #
18
18
  # @!attribute use_dual_stack
19
19
  # When true, use the dual-stack endpoint. If the configured endpoint does not support dual-stack, dispatching the request MAY return an error.
20
20
  #
21
- # @return [Boolean]
21
+ # @return [boolean]
22
22
  #
23
23
  # @!attribute use_fips
24
24
  # When true, send this request to the FIPS-compliant regional endpoint. If the configured endpoint does not have a FIPS compliant endpoint, dispatching the request will return an error.
25
25
  #
26
- # @return [Boolean]
26
+ # @return [boolean]
27
27
  #
28
28
  # @!attribute endpoint
29
29
  # Override the endpoint used to send this request
30
30
  #
31
- # @return [String]
31
+ # @return [string]
32
32
  #
33
33
  EndpointParameters = Struct.new(
34
34
  :region,
@@ -29,8 +29,10 @@ module Aws::GroundStation
29
29
  # ## Error Classes
30
30
  # * {DependencyException}
31
31
  # * {InvalidParameterException}
32
+ # * {ResourceInUseException}
32
33
  # * {ResourceLimitExceededException}
33
34
  # * {ResourceNotFoundException}
35
+ # * {ServiceQuotaExceededException}
34
36
  #
35
37
  # Additionally, error classes are dynamically generated for service errors based on the error code
36
38
  # if they are not defined above.
@@ -78,6 +80,21 @@ module Aws::GroundStation
78
80
  end
79
81
  end
80
82
 
83
+ class ResourceInUseException < ServiceError
84
+
85
+ # @param [Seahorse::Client::RequestContext] context
86
+ # @param [String] message
87
+ # @param [Aws::GroundStation::Types::ResourceInUseException] data
88
+ def initialize(context, message, data = Aws::EmptyStructure.new)
89
+ super(context, message, data)
90
+ end
91
+
92
+ # @return [String]
93
+ def message
94
+ @message || @data[:message]
95
+ end
96
+ end
97
+
81
98
  class ResourceLimitExceededException < ServiceError
82
99
 
83
100
  # @param [Seahorse::Client::RequestContext] context
@@ -113,5 +130,25 @@ module Aws::GroundStation
113
130
  end
114
131
  end
115
132
 
133
+ class ServiceQuotaExceededException < ServiceError
134
+
135
+ # @param [Seahorse::Client::RequestContext] context
136
+ # @param [String] message
137
+ # @param [Aws::GroundStation::Types::ServiceQuotaExceededException] data
138
+ def initialize(context, message, data = Aws::EmptyStructure.new)
139
+ super(context, message, data)
140
+ end
141
+
142
+ # @return [String]
143
+ def message
144
+ @message || @data[:message]
145
+ end
146
+
147
+ # @return [String]
148
+ def parameter_name
149
+ @data[:parameter_name]
150
+ end
151
+ end
152
+
116
153
  end
117
154
  end