aws-sdk-lightsail 1.26.0 → 1.31.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -6,6 +6,35 @@
6
6
  # WARNING ABOUT GENERATED CODE
7
7
 
8
8
  module Aws::Lightsail
9
+
10
+ # When Lightsail returns an error response, the Ruby SDK constructs and raises an error.
11
+ # These errors all extend Aws::Lightsail::Errors::ServiceError < {Aws::Errors::ServiceError}
12
+ #
13
+ # You can rescue all Lightsail errors using ServiceError:
14
+ #
15
+ # begin
16
+ # # do stuff
17
+ # rescue Aws::Lightsail::Errors::ServiceError
18
+ # # rescues all Lightsail API errors
19
+ # end
20
+ #
21
+ #
22
+ # ## Request Context
23
+ # ServiceError objects have a {Aws::Errors::ServiceError#context #context} method that returns
24
+ # information about the request that generated the error.
25
+ # See {Seahorse::Client::RequestContext} for more information.
26
+ #
27
+ # ## Error Classes
28
+ # * {AccessDeniedException}
29
+ # * {AccountSetupInProgressException}
30
+ # * {InvalidInputException}
31
+ # * {NotFoundException}
32
+ # * {OperationFailureException}
33
+ # * {ServiceException}
34
+ # * {UnauthenticatedException}
35
+ #
36
+ # Additionally, error classes are dynamically generated for service errors based on the error code
37
+ # if they are not defined above.
9
38
  module Errors
10
39
 
11
40
  extend Aws::Errors::DynamicErrors
@@ -38,7 +67,6 @@ module Aws::Lightsail
38
67
  def tip
39
68
  @data[:tip]
40
69
  end
41
-
42
70
  end
43
71
 
44
72
  class AccountSetupInProgressException < ServiceError
@@ -69,7 +97,6 @@ module Aws::Lightsail
69
97
  def tip
70
98
  @data[:tip]
71
99
  end
72
-
73
100
  end
74
101
 
75
102
  class InvalidInputException < ServiceError
@@ -100,7 +127,6 @@ module Aws::Lightsail
100
127
  def tip
101
128
  @data[:tip]
102
129
  end
103
-
104
130
  end
105
131
 
106
132
  class NotFoundException < ServiceError
@@ -131,7 +157,6 @@ module Aws::Lightsail
131
157
  def tip
132
158
  @data[:tip]
133
159
  end
134
-
135
160
  end
136
161
 
137
162
  class OperationFailureException < ServiceError
@@ -162,7 +187,6 @@ module Aws::Lightsail
162
187
  def tip
163
188
  @data[:tip]
164
189
  end
165
-
166
190
  end
167
191
 
168
192
  class ServiceException < ServiceError
@@ -193,7 +217,6 @@ module Aws::Lightsail
193
217
  def tip
194
218
  @data[:tip]
195
219
  end
196
-
197
220
  end
198
221
 
199
222
  class UnauthenticatedException < ServiceError
@@ -224,7 +247,6 @@ module Aws::Lightsail
224
247
  def tip
225
248
  @data[:tip]
226
249
  end
227
-
228
250
  end
229
251
 
230
252
  end
@@ -6,6 +6,7 @@
6
6
  # WARNING ABOUT GENERATED CODE
7
7
 
8
8
  module Aws::Lightsail
9
+
9
10
  class Resource
10
11
 
11
12
  # @param options ({})
@@ -137,6 +137,177 @@ module Aws::Lightsail
137
137
  include Aws::Structure
138
138
  end
139
139
 
140
+ # Describes an alarm.
141
+ #
142
+ # An alarm is a way to monitor your Amazon Lightsail resource metrics.
143
+ # For more information, see [Alarms in Amazon Lightsail][1].
144
+ #
145
+ #
146
+ #
147
+ # [1]: https://lightsail.aws.amazon.com/ls/docs/en_us/articles/amazon-lightsail-alarms
148
+ #
149
+ # @!attribute [rw] name
150
+ # The name of the alarm.
151
+ # @return [String]
152
+ #
153
+ # @!attribute [rw] arn
154
+ # The Amazon Resource Name (ARN) of the alarm.
155
+ # @return [String]
156
+ #
157
+ # @!attribute [rw] created_at
158
+ # The timestamp when the alarm was created.
159
+ # @return [Time]
160
+ #
161
+ # @!attribute [rw] location
162
+ # An object that lists information about the location of the alarm.
163
+ # @return [Types::ResourceLocation]
164
+ #
165
+ # @!attribute [rw] resource_type
166
+ # The Lightsail resource type (e.g., `Alarm`).
167
+ # @return [String]
168
+ #
169
+ # @!attribute [rw] support_code
170
+ # The support code. Include this code in your email to support when
171
+ # you have questions about your Lightsail alarm. This code enables our
172
+ # support team to look up your Lightsail information more easily.
173
+ # @return [String]
174
+ #
175
+ # @!attribute [rw] monitored_resource_info
176
+ # An object that lists information about the resource monitored by the
177
+ # alarm.
178
+ # @return [Types::MonitoredResourceInfo]
179
+ #
180
+ # @!attribute [rw] comparison_operator
181
+ # The arithmetic operation used when comparing the specified statistic
182
+ # and threshold.
183
+ # @return [String]
184
+ #
185
+ # @!attribute [rw] evaluation_periods
186
+ # The number of periods over which data is compared to the specified
187
+ # threshold.
188
+ # @return [Integer]
189
+ #
190
+ # @!attribute [rw] period
191
+ # The period, in seconds, over which the statistic is applied.
192
+ # @return [Integer]
193
+ #
194
+ # @!attribute [rw] threshold
195
+ # The value against which the specified statistic is compared.
196
+ # @return [Float]
197
+ #
198
+ # @!attribute [rw] datapoints_to_alarm
199
+ # The number of data points that must not within the specified
200
+ # threshold to trigger the alarm.
201
+ # @return [Integer]
202
+ #
203
+ # @!attribute [rw] treat_missing_data
204
+ # Specifies how the alarm handles missing data points.
205
+ #
206
+ # An alarm can treat missing data in the following ways:
207
+ #
208
+ # * `breaching` - Assume the missing data is not within the threshold.
209
+ # Missing data counts towards the number of times the metric is not
210
+ # within the threshold.
211
+ #
212
+ # * `notBreaching` - Assume the missing data is within the threshold.
213
+ # Missing data does not count towards the number of times the metric
214
+ # is not within the threshold.
215
+ #
216
+ # * `ignore` - Ignore the missing data. Maintains the current alarm
217
+ # state.
218
+ #
219
+ # * `missing` - Missing data is treated as missing.
220
+ # @return [String]
221
+ #
222
+ # @!attribute [rw] statistic
223
+ # The statistic for the metric associated with the alarm.
224
+ #
225
+ # The following statistics are available:
226
+ #
227
+ # * `Minimum` - The lowest value observed during the specified period.
228
+ # Use this value to determine low volumes of activity for your
229
+ # application.
230
+ #
231
+ # * `Maximum` - The highest value observed during the specified
232
+ # period. Use this value to determine high volumes of activity for
233
+ # your application.
234
+ #
235
+ # * `Sum` - All values submitted for the matching metric added
236
+ # together. You can use this statistic to determine the total volume
237
+ # of a metric.
238
+ #
239
+ # * `Average` - The value of Sum / SampleCount during the specified
240
+ # period. By comparing this statistic with the Minimum and Maximum
241
+ # values, you can determine the full scope of a metric and how close
242
+ # the average use is to the Minimum and Maximum values. This
243
+ # comparison helps you to know when to increase or decrease your
244
+ # resources.
245
+ #
246
+ # * `SampleCount` - The count, or number, of data points used for the
247
+ # statistical calculation.
248
+ # @return [String]
249
+ #
250
+ # @!attribute [rw] metric_name
251
+ # The name of the metric associated with the alarm.
252
+ # @return [String]
253
+ #
254
+ # @!attribute [rw] state
255
+ # The current state of the alarm.
256
+ #
257
+ # An alarm has the following possible states:
258
+ #
259
+ # * `ALARM` - The metric is outside of the defined threshold.
260
+ #
261
+ # * `INSUFFICIENT_DATA` - The alarm has just started, the metric is
262
+ # not available, or not enough data is available for the metric to
263
+ # determine the alarm state.
264
+ #
265
+ # * `OK` - The metric is within the defined threshold.
266
+ # @return [String]
267
+ #
268
+ # @!attribute [rw] unit
269
+ # The unit of the metric associated with the alarm.
270
+ # @return [String]
271
+ #
272
+ # @!attribute [rw] contact_protocols
273
+ # The contact protocols for the alarm, such as `Email`, `SMS` (text
274
+ # messaging), or both.
275
+ # @return [Array<String>]
276
+ #
277
+ # @!attribute [rw] notification_triggers
278
+ # The alarm states that trigger a notification.
279
+ # @return [Array<String>]
280
+ #
281
+ # @!attribute [rw] notification_enabled
282
+ # Indicates whether the alarm is enabled.
283
+ # @return [Boolean]
284
+ #
285
+ # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/Alarm AWS API Documentation
286
+ #
287
+ class Alarm < Struct.new(
288
+ :name,
289
+ :arn,
290
+ :created_at,
291
+ :location,
292
+ :resource_type,
293
+ :support_code,
294
+ :monitored_resource_info,
295
+ :comparison_operator,
296
+ :evaluation_periods,
297
+ :period,
298
+ :threshold,
299
+ :datapoints_to_alarm,
300
+ :treat_missing_data,
301
+ :statistic,
302
+ :metric_name,
303
+ :state,
304
+ :unit,
305
+ :contact_protocols,
306
+ :notification_triggers,
307
+ :notification_enabled)
308
+ include Aws::Structure
309
+ end
310
+
140
311
  # @note When making an API call, you may pass AllocateStaticIpRequest
141
312
  # data as a hash:
142
313
  #
@@ -156,8 +327,9 @@ module Aws::Lightsail
156
327
  end
157
328
 
158
329
  # @!attribute [rw] operations
159
- # An array of key-value pairs containing information about the static
160
- # IP address you allocated.
330
+ # An array of objects that describe the result of the action, such as
331
+ # the status of the request, the timestamp of the request, and the
332
+ # resources affected by the request.
161
333
  # @return [Array<Types::Operation>]
162
334
  #
163
335
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/AllocateStaticIpResult AWS API Documentation
@@ -199,7 +371,9 @@ module Aws::Lightsail
199
371
  end
200
372
 
201
373
  # @!attribute [rw] operations
202
- # An object describing the API operations.
374
+ # An array of objects that describe the result of the action, such as
375
+ # the status of the request, the timestamp of the request, and the
376
+ # resources affected by the request.
203
377
  # @return [Array<Types::Operation>]
204
378
  #
205
379
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/AttachDiskResult AWS API Documentation
@@ -242,7 +416,9 @@ module Aws::Lightsail
242
416
  end
243
417
 
244
418
  # @!attribute [rw] operations
245
- # An object representing the API operations.
419
+ # An array of objects that describe the result of the action, such as
420
+ # the status of the request, the timestamp of the request, and the
421
+ # resources affected by the request.
246
422
  # @return [Array<Types::Operation>]
247
423
  #
248
424
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/AttachInstancesToLoadBalancerResult AWS API Documentation
@@ -278,7 +454,9 @@ module Aws::Lightsail
278
454
  end
279
455
 
280
456
  # @!attribute [rw] operations
281
- # An object representing the API operations.
457
+ # An array of objects that describe the result of the action, such as
458
+ # the status of the request, the timestamp of the request, and the
459
+ # resources affected by the request.
282
460
  #
283
461
  # These SSL/TLS certificates are only usable by Lightsail load
284
462
  # balancers. You can't get the certificate and use it for another
@@ -317,8 +495,9 @@ module Aws::Lightsail
317
495
  end
318
496
 
319
497
  # @!attribute [rw] operations
320
- # An array of key-value pairs containing information about your API
321
- # operations.
498
+ # An array of objects that describe the result of the action, such as
499
+ # the status of the request, the timestamp of the request, and the
500
+ # resources affected by the request.
322
501
  # @return [Array<Types::Operation>]
323
502
  #
324
503
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/AttachStaticIpResult AWS API Documentation
@@ -614,18 +793,19 @@ module Aws::Lightsail
614
793
  # port_info: { # required
615
794
  # from_port: 1,
616
795
  # to_port: 1,
617
- # protocol: "tcp", # accepts tcp, all, udp
796
+ # protocol: "tcp", # accepts tcp, all, udp, icmp
797
+ # cidrs: ["string"],
798
+ # cidr_list_aliases: ["string"],
618
799
  # },
619
800
  # instance_name: "ResourceName", # required
620
801
  # }
621
802
  #
622
803
  # @!attribute [rw] port_info
623
- # Information about the public port you are trying to close.
804
+ # An object to describe the ports to close for the specified instance.
624
805
  # @return [Types::PortInfo]
625
806
  #
626
807
  # @!attribute [rw] instance_name
627
- # The name of the instance on which you're attempting to close the
628
- # public ports.
808
+ # The name of the instance for which to close ports.
629
809
  # @return [String]
630
810
  #
631
811
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/CloseInstancePublicPortsRequest AWS API Documentation
@@ -637,8 +817,9 @@ module Aws::Lightsail
637
817
  end
638
818
 
639
819
  # @!attribute [rw] operation
640
- # An array of key-value pairs that contains information about the
641
- # operation.
820
+ # An object that describes the result of the action, such as the
821
+ # status of the request, the timestamp of the request, and the
822
+ # resources affected by the request.
642
823
  # @return [Types::Operation]
643
824
  #
644
825
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/CloseInstancePublicPortsResult AWS API Documentation
@@ -730,6 +911,81 @@ module Aws::Lightsail
730
911
  include Aws::Structure
731
912
  end
732
913
 
914
+ # Describes a contact method.
915
+ #
916
+ # A contact method is a way to send you notifications. For more
917
+ # information, see [Notifications in Amazon Lightsail][1].
918
+ #
919
+ #
920
+ #
921
+ # [1]: https://lightsail.aws.amazon.com/ls/docs/en_us/articles/amazon-lightsail-notifications
922
+ #
923
+ # @!attribute [rw] contact_endpoint
924
+ # The destination of the contact method, such as an email address or a
925
+ # mobile phone number.
926
+ # @return [String]
927
+ #
928
+ # @!attribute [rw] status
929
+ # The current status of the contact method.
930
+ #
931
+ # A contact method has the following possible status:
932
+ #
933
+ # * `PendingVerification` - The contact method has not yet been
934
+ # verified, and the verification has not yet expired.
935
+ #
936
+ # * `Valid` - The contact method has been verified.
937
+ #
938
+ # * `InValid` - An attempt was made to verify the contact method, but
939
+ # the verification has expired.
940
+ # @return [String]
941
+ #
942
+ # @!attribute [rw] protocol
943
+ # The protocol of the contact method, such as email or SMS (text
944
+ # messaging).
945
+ # @return [String]
946
+ #
947
+ # @!attribute [rw] name
948
+ # The name of the contact method.
949
+ # @return [String]
950
+ #
951
+ # @!attribute [rw] arn
952
+ # The Amazon Resource Name (ARN) of the contact method.
953
+ # @return [String]
954
+ #
955
+ # @!attribute [rw] created_at
956
+ # The timestamp when the contact method was created.
957
+ # @return [Time]
958
+ #
959
+ # @!attribute [rw] location
960
+ # Describes the resource location.
961
+ # @return [Types::ResourceLocation]
962
+ #
963
+ # @!attribute [rw] resource_type
964
+ # The Lightsail resource type (e.g., `ContactMethod`).
965
+ # @return [String]
966
+ #
967
+ # @!attribute [rw] support_code
968
+ # The support code. Include this code in your email to support when
969
+ # you have questions about your Lightsail contact method. This code
970
+ # enables our support team to look up your Lightsail information more
971
+ # easily.
972
+ # @return [String]
973
+ #
974
+ # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/ContactMethod AWS API Documentation
975
+ #
976
+ class ContactMethod < Struct.new(
977
+ :contact_endpoint,
978
+ :status,
979
+ :protocol,
980
+ :name,
981
+ :arn,
982
+ :created_at,
983
+ :location,
984
+ :resource_type,
985
+ :support_code)
986
+ include Aws::Structure
987
+ end
988
+
733
989
  # @note When making an API call, you may pass CopySnapshotRequest
734
990
  # data as a hash:
735
991
  #
@@ -743,35 +999,37 @@ module Aws::Lightsail
743
999
  # }
744
1000
  #
745
1001
  # @!attribute [rw] source_snapshot_name
746
- # The name of the source instance or disk snapshot to be copied.
1002
+ # The name of the source manual snapshot to copy.
747
1003
  #
748
- # <note markdown="1"> Define this parameter only when copying a manual snapshot as another
749
- # manual snapshot.
1004
+ # Constraint:
750
1005
  #
751
- # </note>
1006
+ # * Define this parameter only when copying a manual snapshot as
1007
+ # another manual snapshot.
1008
+ #
1009
+ # ^
752
1010
  # @return [String]
753
1011
  #
754
1012
  # @!attribute [rw] source_resource_name
755
- # The name of the source resource from which the automatic snapshot
756
- # was created.
1013
+ # The name of the source instance or disk from which the source
1014
+ # automatic snapshot was created.
757
1015
  #
758
- # <note markdown="1"> Define this parameter only when copying an automatic snapshot as a
759
- # manual snapshot. For more information, see the [Lightsail Dev
760
- # Guide][1].
1016
+ # Constraint:
761
1017
  #
762
- # </note>
1018
+ # * Define this parameter only when copying an automatic snapshot as a
1019
+ # manual snapshot. For more information, see the [Lightsail Dev
1020
+ # Guide][1].
763
1021
  #
1022
+ # ^
764
1023
  #
765
1024
  #
766
- # [1]: https://lightsail.aws.amazon.com/ls/docs/en_us/articles/amazon-lightsail-configuring-automatic-snapshots
1025
+ #
1026
+ # [1]: https://lightsail.aws.amazon.com/ls/docs/en_us/articles/amazon-lightsail-keeping-automatic-snapshots
767
1027
  # @return [String]
768
1028
  #
769
1029
  # @!attribute [rw] restore_date
770
- # The date of the automatic snapshot to copy for the new manual
771
- # snapshot.
772
- #
773
- # Use the `get auto snapshots` operation to identify the dates of the
774
- # available automatic snapshots.
1030
+ # The date of the source automatic snapshot to copy. Use the `get auto
1031
+ # snapshots` operation to identify the dates of the available
1032
+ # automatic snapshots.
775
1033
  #
776
1034
  # Constraints:
777
1035
  #
@@ -782,39 +1040,36 @@ module Aws::Lightsail
782
1040
  # latest restorable auto snapshot` parameters are mutually
783
1041
  # exclusive.
784
1042
  #
785
- # <note markdown="1"> Define this parameter only when copying an automatic snapshot as a
786
- # manual snapshot. For more information, see the [Lightsail Dev
787
- # Guide][1].
1043
+ # * Define this parameter only when copying an automatic snapshot as a
1044
+ # manual snapshot. For more information, see the [Lightsail Dev
1045
+ # Guide][1].
788
1046
  #
789
- # </note>
790
1047
  #
791
1048
  #
792
- #
793
- # [1]: https://lightsail.aws.amazon.com/ls/docs/en_us/articles/amazon-lightsail-configuring-automatic-snapshots
1049
+ # [1]: https://lightsail.aws.amazon.com/ls/docs/en_us/articles/amazon-lightsail-keeping-automatic-snapshots
794
1050
  # @return [String]
795
1051
  #
796
1052
  # @!attribute [rw] use_latest_restorable_auto_snapshot
797
1053
  # A Boolean value to indicate whether to use the latest available
798
- # automatic snapshot.
1054
+ # automatic snapshot of the specified source instance or disk.
799
1055
  #
800
- # This parameter cannot be defined together with the `restore date`
801
- # parameter. The `use latest restorable auto snapshot` and `restore
802
- # date` parameters are mutually exclusive.
1056
+ # Constraints:
803
1057
  #
804
- # <note markdown="1"> Define this parameter only when copying an automatic snapshot as a
805
- # manual snapshot. For more information, see the [Lightsail Dev
806
- # Guide][1].
1058
+ # * This parameter cannot be defined together with the `restore date`
1059
+ # parameter. The `use latest restorable auto snapshot` and `restore
1060
+ # date` parameters are mutually exclusive.
807
1061
  #
808
- # </note>
1062
+ # * Define this parameter only when copying an automatic snapshot as a
1063
+ # manual snapshot. For more information, see the [Lightsail Dev
1064
+ # Guide][1].
809
1065
  #
810
1066
  #
811
1067
  #
812
- # [1]: https://lightsail.aws.amazon.com/ls/docs/en_us/articles/amazon-lightsail-configuring-automatic-snapshots
1068
+ # [1]: https://lightsail.aws.amazon.com/ls/docs/en_us/articles/amazon-lightsail-keeping-automatic-snapshots
813
1069
  # @return [Boolean]
814
1070
  #
815
1071
  # @!attribute [rw] target_snapshot_name
816
- # The name of the new instance or disk snapshot to be created as a
817
- # copy.
1072
+ # The name of the new manual snapshot to be created as a copy.
818
1073
  # @return [String]
819
1074
  #
820
1075
  # @!attribute [rw] source_region
@@ -835,7 +1090,9 @@ module Aws::Lightsail
835
1090
  end
836
1091
 
837
1092
  # @!attribute [rw] operations
838
- # A list of objects describing the API operation.
1093
+ # An array of objects that describe the result of the action, such as
1094
+ # the status of the request, the timestamp of the request, and the
1095
+ # resources affected by the request.
839
1096
  # @return [Array<Types::Operation>]
840
1097
  #
841
1098
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/CopySnapshotResult AWS API Documentation
@@ -875,7 +1132,9 @@ module Aws::Lightsail
875
1132
  end
876
1133
 
877
1134
  # @!attribute [rw] operations
878
- # A list of objects describing the API operation.
1135
+ # An array of objects that describe the result of the action, such as
1136
+ # the status of the request, the timestamp of the request, and the
1137
+ # resources affected by the request.
879
1138
  # @return [Array<Types::Operation>]
880
1139
  #
881
1140
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/CreateCloudFormationStackResult AWS API Documentation
@@ -885,6 +1144,84 @@ module Aws::Lightsail
885
1144
  include Aws::Structure
886
1145
  end
887
1146
 
1147
+ # @note When making an API call, you may pass CreateContactMethodRequest
1148
+ # data as a hash:
1149
+ #
1150
+ # {
1151
+ # protocol: "Email", # required, accepts Email, SMS
1152
+ # contact_endpoint: "StringMax256", # required
1153
+ # }
1154
+ #
1155
+ # @!attribute [rw] protocol
1156
+ # The protocol of the contact method, such as `Email` or `SMS` (text
1157
+ # messaging).
1158
+ #
1159
+ # The `SMS` protocol is supported only in the following AWS Regions.
1160
+ #
1161
+ # * US East (N. Virginia) (`us-east-1`)
1162
+ #
1163
+ # * US West (Oregon) (`us-west-2`)
1164
+ #
1165
+ # * Europe (Ireland) (`eu-west-1`)
1166
+ #
1167
+ # * Asia Pacific (Tokyo) (`ap-northeast-1`)
1168
+ #
1169
+ # * Asia Pacific (Singapore) (`ap-southeast-1`)
1170
+ #
1171
+ # * Asia Pacific (Sydney) (`ap-southeast-2`)
1172
+ #
1173
+ # For a list of countries/regions where SMS text messages can be sent,
1174
+ # and the latest AWS Regions where SMS text messaging is supported,
1175
+ # see [Supported Regions and Countries][1] in the *Amazon SNS
1176
+ # Developer Guide*.
1177
+ #
1178
+ # For more information about notifications in Amazon Lightsail, see
1179
+ # [Notifications in Amazon Lightsail][2].
1180
+ #
1181
+ #
1182
+ #
1183
+ # [1]: https://docs.aws.amazon.com/sns/latest/dg/sns-supported-regions-countries.html
1184
+ # [2]: https://lightsail.aws.amazon.com/ls/docs/en_us/articles/amazon-lightsail-notifications
1185
+ # @return [String]
1186
+ #
1187
+ # @!attribute [rw] contact_endpoint
1188
+ # The destination of the contact method, such as an email address or a
1189
+ # mobile phone number.
1190
+ #
1191
+ # Use the E.164 format when specifying a mobile phone number. E.164 is
1192
+ # a standard for the phone number structure used for international
1193
+ # telecommunication. Phone numbers that follow this format can have a
1194
+ # maximum of 15 digits, and they are prefixed with the plus character
1195
+ # (+) and the country code. For example, a U.S. phone number in E.164
1196
+ # format would be specified as +1XXX5550100. For more information, see
1197
+ # [E.164][1] on *Wikipedia*.
1198
+ #
1199
+ #
1200
+ #
1201
+ # [1]: https://en.wikipedia.org/wiki/E.164
1202
+ # @return [String]
1203
+ #
1204
+ # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/CreateContactMethodRequest AWS API Documentation
1205
+ #
1206
+ class CreateContactMethodRequest < Struct.new(
1207
+ :protocol,
1208
+ :contact_endpoint)
1209
+ include Aws::Structure
1210
+ end
1211
+
1212
+ # @!attribute [rw] operations
1213
+ # An array of objects that describe the result of the action, such as
1214
+ # the status of the request, the timestamp of the request, and the
1215
+ # resources affected by the request.
1216
+ # @return [Array<Types::Operation>]
1217
+ #
1218
+ # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/CreateContactMethodResult AWS API Documentation
1219
+ #
1220
+ class CreateContactMethodResult < Struct.new(
1221
+ :operations)
1222
+ include Aws::Structure
1223
+ end
1224
+
888
1225
  # @note When making an API call, you may pass CreateDiskFromSnapshotRequest
889
1226
  # data as a hash:
890
1227
  #
@@ -920,9 +1257,13 @@ module Aws::Lightsail
920
1257
  # The name of the disk snapshot (e.g., `my-snapshot`) from which to
921
1258
  # create the new storage disk.
922
1259
  #
923
- # This parameter cannot be defined together with the `source disk
924
- # name` parameter. The `disk snapshot name` and `source disk name`
925
- # parameters are mutually exclusive.
1260
+ # Constraint:
1261
+ #
1262
+ # * This parameter cannot be defined together with the `source disk
1263
+ # name` parameter. The `disk snapshot name` and `source disk name`
1264
+ # parameters are mutually exclusive.
1265
+ #
1266
+ # ^
926
1267
  # @return [String]
927
1268
  #
928
1269
  # @!attribute [rw] availability_zone
@@ -955,15 +1296,15 @@ module Aws::Lightsail
955
1296
  # The name of the source disk from which the source automatic snapshot
956
1297
  # was created.
957
1298
  #
958
- # This parameter cannot be defined together with the `disk snapshot
959
- # name` parameter. The `source disk name` and `disk snapshot name`
960
- # parameters are mutually exclusive.
1299
+ # Constraints:
961
1300
  #
962
- # <note markdown="1"> Define this parameter only when creating a new disk from an
963
- # automatic snapshot. For more information, see the [Lightsail Dev
964
- # Guide][1].
1301
+ # * This parameter cannot be defined together with the `disk snapshot
1302
+ # name` parameter. The `source disk name` and `disk snapshot name`
1303
+ # parameters are mutually exclusive.
965
1304
  #
966
- # </note>
1305
+ # * Define this parameter only when creating a new disk from an
1306
+ # automatic snapshot. For more information, see the [Lightsail Dev
1307
+ # Guide][1].
967
1308
  #
968
1309
  #
969
1310
  #
@@ -971,9 +1312,8 @@ module Aws::Lightsail
971
1312
  # @return [String]
972
1313
  #
973
1314
  # @!attribute [rw] restore_date
974
- # The date of the automatic snapshot to use for the new disk.
975
- #
976
- # Use the `get auto snapshots` operation to identify the dates of the
1315
+ # The date of the automatic snapshot to use for the new disk. Use the
1316
+ # `get auto snapshots` operation to identify the dates of the
977
1317
  # available automatic snapshots.
978
1318
  #
979
1319
  # Constraints:
@@ -985,11 +1325,9 @@ module Aws::Lightsail
985
1325
  # latest restorable auto snapshot` parameters are mutually
986
1326
  # exclusive.
987
1327
  #
988
- # <note markdown="1"> Define this parameter only when creating a new disk from an
989
- # automatic snapshot. For more information, see the [Lightsail Dev
990
- # Guide][1].
991
- #
992
- # </note>
1328
+ # * Define this parameter only when creating a new disk from an
1329
+ # automatic snapshot. For more information, see the [Lightsail Dev
1330
+ # Guide][1].
993
1331
  #
994
1332
  #
995
1333
  #
@@ -1000,15 +1338,15 @@ module Aws::Lightsail
1000
1338
  # A Boolean value to indicate whether to use the latest available
1001
1339
  # automatic snapshot.
1002
1340
  #
1003
- # This parameter cannot be defined together with the `restore date`
1004
- # parameter. The `use latest restorable auto snapshot` and `restore
1005
- # date` parameters are mutually exclusive.
1341
+ # Constraints:
1006
1342
  #
1007
- # <note markdown="1"> Define this parameter only when creating a new disk from an
1008
- # automatic snapshot. For more information, see the [Lightsail Dev
1009
- # Guide][1].
1343
+ # * This parameter cannot be defined together with the `restore date`
1344
+ # parameter. The `use latest restorable auto snapshot` and `restore
1345
+ # date` parameters are mutually exclusive.
1010
1346
  #
1011
- # </note>
1347
+ # * Define this parameter only when creating a new disk from an
1348
+ # automatic snapshot. For more information, see the [Lightsail Dev
1349
+ # Guide][1].
1012
1350
  #
1013
1351
  #
1014
1352
  #
@@ -1031,7 +1369,9 @@ module Aws::Lightsail
1031
1369
  end
1032
1370
 
1033
1371
  # @!attribute [rw] operations
1034
- # An object describing the API operations.
1372
+ # An array of objects that describe the result of the action, such as
1373
+ # the status of the request, the timestamp of the request, and the
1374
+ # resources affected by the request.
1035
1375
  # @return [Array<Types::Operation>]
1036
1376
  #
1037
1377
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/CreateDiskFromSnapshotResult AWS API Documentation
@@ -1106,7 +1446,9 @@ module Aws::Lightsail
1106
1446
  end
1107
1447
 
1108
1448
  # @!attribute [rw] operations
1109
- # An object describing the API operations.
1449
+ # An array of objects that describe the result of the action, such as
1450
+ # the status of the request, the timestamp of the request, and the
1451
+ # resources affected by the request.
1110
1452
  # @return [Array<Types::Operation>]
1111
1453
  #
1112
1454
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/CreateDiskResult AWS API Documentation
@@ -1177,7 +1519,9 @@ module Aws::Lightsail
1177
1519
  end
1178
1520
 
1179
1521
  # @!attribute [rw] operations
1180
- # An object describing the API operations.
1522
+ # An array of objects that describe the result of the action, such as
1523
+ # the status of the request, the timestamp of the request, and the
1524
+ # resources affected by the request.
1181
1525
  # @return [Array<Types::Operation>]
1182
1526
  #
1183
1527
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/CreateDiskSnapshotResult AWS API Documentation
@@ -1223,8 +1567,9 @@ module Aws::Lightsail
1223
1567
  end
1224
1568
 
1225
1569
  # @!attribute [rw] operation
1226
- # An array of key-value pairs containing information about the
1227
- # operation.
1570
+ # An array of objects that describe the result of the action, such as
1571
+ # the status of the request, the timestamp of the request, and the
1572
+ # resources affected by the request.
1228
1573
  # @return [Types::Operation]
1229
1574
  #
1230
1575
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/CreateDomainEntryResult AWS API Documentation
@@ -1276,8 +1621,9 @@ module Aws::Lightsail
1276
1621
  end
1277
1622
 
1278
1623
  # @!attribute [rw] operation
1279
- # An array of key-value pairs containing information about the domain
1280
- # resource you created.
1624
+ # An array of objects that describe the result of the action, such as
1625
+ # the status of the request, the timestamp of the request, and the
1626
+ # resources affected by the request.
1281
1627
  # @return [Types::Operation]
1282
1628
  #
1283
1629
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/CreateDomainResult AWS API Documentation
@@ -1327,8 +1673,9 @@ module Aws::Lightsail
1327
1673
  end
1328
1674
 
1329
1675
  # @!attribute [rw] operations
1330
- # An array of key-value pairs containing information about the results
1331
- # of your create instances snapshot request.
1676
+ # An array of objects that describe the result of the action, such as
1677
+ # the status of the request, the timestamp of the request, and the
1678
+ # resources affected by the request.
1332
1679
  # @return [Array<Types::Operation>]
1333
1680
  #
1334
1681
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/CreateInstanceSnapshotResult AWS API Documentation
@@ -1400,9 +1747,13 @@ module Aws::Lightsail
1400
1747
  # instances. Use the get instance snapshots operation to return
1401
1748
  # information about your existing snapshots.
1402
1749
  #
1403
- # This parameter cannot be defined together with the `source instance
1404
- # name` parameter. The `instance snapshot name` and `source instance
1405
- # name` parameters are mutually exclusive.
1750
+ # Constraint:
1751
+ #
1752
+ # * This parameter cannot be defined together with the `source
1753
+ # instance name` parameter. The `instance snapshot name` and `source
1754
+ # instance name` parameters are mutually exclusive.
1755
+ #
1756
+ # ^
1406
1757
  # @return [String]
1407
1758
  #
1408
1759
  # @!attribute [rw] bundle_id
@@ -1448,15 +1799,15 @@ module Aws::Lightsail
1448
1799
  # The name of the source instance from which the source automatic
1449
1800
  # snapshot was created.
1450
1801
  #
1451
- # This parameter cannot be defined together with the `instance
1452
- # snapshot name` parameter. The `source instance name` and `instance
1453
- # snapshot name` parameters are mutually exclusive.
1802
+ # Constraints:
1454
1803
  #
1455
- # <note markdown="1"> Define this parameter only when creating a new instance from an
1456
- # automatic snapshot. For more information, see the [Lightsail Dev
1457
- # Guide][1].
1804
+ # * This parameter cannot be defined together with the `instance
1805
+ # snapshot name` parameter. The `source instance name` and `instance
1806
+ # snapshot name` parameters are mutually exclusive.
1458
1807
  #
1459
- # </note>
1808
+ # * Define this parameter only when creating a new instance from an
1809
+ # automatic snapshot. For more information, see the [Lightsail Dev
1810
+ # Guide][1].
1460
1811
  #
1461
1812
  #
1462
1813
  #
@@ -1464,9 +1815,8 @@ module Aws::Lightsail
1464
1815
  # @return [String]
1465
1816
  #
1466
1817
  # @!attribute [rw] restore_date
1467
- # The date of the automatic snapshot to use for the new instance.
1468
- #
1469
- # Use the `get auto snapshots` operation to identify the dates of the
1818
+ # The date of the automatic snapshot to use for the new instance. Use
1819
+ # the `get auto snapshots` operation to identify the dates of the
1470
1820
  # available automatic snapshots.
1471
1821
  #
1472
1822
  # Constraints:
@@ -1478,11 +1828,9 @@ module Aws::Lightsail
1478
1828
  # latest restorable auto snapshot` parameters are mutually
1479
1829
  # exclusive.
1480
1830
  #
1481
- # <note markdown="1"> Define this parameter only when creating a new instance from an
1482
- # automatic snapshot. For more information, see the [Lightsail Dev
1483
- # Guide][1].
1484
- #
1485
- # </note>
1831
+ # * Define this parameter only when creating a new instance from an
1832
+ # automatic snapshot. For more information, see the [Lightsail Dev
1833
+ # Guide][1].
1486
1834
  #
1487
1835
  #
1488
1836
  #
@@ -1493,15 +1841,15 @@ module Aws::Lightsail
1493
1841
  # A Boolean value to indicate whether to use the latest available
1494
1842
  # automatic snapshot.
1495
1843
  #
1496
- # This parameter cannot be defined together with the `restore date`
1497
- # parameter. The `use latest restorable auto snapshot` and `restore
1498
- # date` parameters are mutually exclusive.
1844
+ # Constraints:
1499
1845
  #
1500
- # <note markdown="1"> Define this parameter only when creating a new instance from an
1501
- # automatic snapshot. For more information, see the [Lightsail Dev
1502
- # Guide][1].
1846
+ # * This parameter cannot be defined together with the `restore date`
1847
+ # parameter. The `use latest restorable auto snapshot` and `restore
1848
+ # date` parameters are mutually exclusive.
1503
1849
  #
1504
- # </note>
1850
+ # * Define this parameter only when creating a new instance from an
1851
+ # automatic snapshot. For more information, see the [Lightsail Dev
1852
+ # Guide][1].
1505
1853
  #
1506
1854
  #
1507
1855
  #
@@ -1527,8 +1875,9 @@ module Aws::Lightsail
1527
1875
  end
1528
1876
 
1529
1877
  # @!attribute [rw] operations
1530
- # An array of key-value pairs containing information about the results
1531
- # of your create instances from snapshot request.
1878
+ # An array of objects that describe the result of the action, such as
1879
+ # the status of the request, the timestamp of the request, and the
1880
+ # resources affected by the request.
1532
1881
  # @return [Array<Types::Operation>]
1533
1882
  #
1534
1883
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/CreateInstancesFromSnapshotResult AWS API Documentation
@@ -1662,8 +2011,9 @@ module Aws::Lightsail
1662
2011
  end
1663
2012
 
1664
2013
  # @!attribute [rw] operations
1665
- # An array of key-value pairs containing information about the results
1666
- # of your create instances request.
2014
+ # An array of objects that describe the result of the action, such as
2015
+ # the status of the request, the timestamp of the request, and the
2016
+ # resources affected by the request.
1667
2017
  # @return [Array<Types::Operation>]
1668
2018
  #
1669
2019
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/CreateInstancesResult AWS API Documentation
@@ -1720,8 +2070,9 @@ module Aws::Lightsail
1720
2070
  # @return [String]
1721
2071
  #
1722
2072
  # @!attribute [rw] operation
1723
- # An array of key-value pairs containing information about the results
1724
- # of your create key pair request.
2073
+ # An array of objects that describe the result of the action, such as
2074
+ # the status of the request, the timestamp of the request, and the
2075
+ # resources affected by the request.
1725
2076
  # @return [Types::Operation]
1726
2077
  #
1727
2078
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/CreateKeyPairResult AWS API Documentation
@@ -1813,7 +2164,9 @@ module Aws::Lightsail
1813
2164
  end
1814
2165
 
1815
2166
  # @!attribute [rw] operations
1816
- # An object containing information about the API operations.
2167
+ # An array of objects that describe the result of the action, such as
2168
+ # the status of the request, the timestamp of the request, and the
2169
+ # resources affected by the request.
1817
2170
  # @return [Array<Types::Operation>]
1818
2171
  #
1819
2172
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/CreateLoadBalancerResult AWS API Documentation
@@ -1890,7 +2243,9 @@ module Aws::Lightsail
1890
2243
  end
1891
2244
 
1892
2245
  # @!attribute [rw] operations
1893
- # An object containing information about the API operations.
2246
+ # An array of objects that describe the result of the action, such as
2247
+ # the status of the request, the timestamp of the request, and the
2248
+ # resources affected by the request.
1894
2249
  # @return [Array<Types::Operation>]
1895
2250
  #
1896
2251
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/CreateLoadBalancerTlsCertificateResult AWS API Documentation
@@ -2019,8 +2374,9 @@ module Aws::Lightsail
2019
2374
  end
2020
2375
 
2021
2376
  # @!attribute [rw] operations
2022
- # An object describing the result of your create relational database
2023
- # from snapshot request.
2377
+ # An array of objects that describe the result of the action, such as
2378
+ # the status of the request, the timestamp of the request, and the
2379
+ # resources affected by the request.
2024
2380
  # @return [Array<Types::Operation>]
2025
2381
  #
2026
2382
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/CreateRelationalDatabaseFromSnapshotResult AWS API Documentation
@@ -2211,8 +2567,9 @@ module Aws::Lightsail
2211
2567
  end
2212
2568
 
2213
2569
  # @!attribute [rw] operations
2214
- # An object describing the result of your create relational database
2215
- # request.
2570
+ # An array of objects that describe the result of the action, such as
2571
+ # the status of the request, the timestamp of the request, and the
2572
+ # resources affected by the request.
2216
2573
  # @return [Array<Types::Operation>]
2217
2574
  #
2218
2575
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/CreateRelationalDatabaseResult AWS API Documentation
@@ -2268,8 +2625,9 @@ module Aws::Lightsail
2268
2625
  end
2269
2626
 
2270
2627
  # @!attribute [rw] operations
2271
- # An object describing the result of your create relational database
2272
- # snapshot request.
2628
+ # An array of objects that describe the result of the action, such as
2629
+ # the status of the request, the timestamp of the request, and the
2630
+ # resources affected by the request.
2273
2631
  # @return [Array<Types::Operation>]
2274
2632
  #
2275
2633
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/CreateRelationalDatabaseSnapshotResult AWS API Documentation
@@ -2279,6 +2637,37 @@ module Aws::Lightsail
2279
2637
  include Aws::Structure
2280
2638
  end
2281
2639
 
2640
+ # @note When making an API call, you may pass DeleteAlarmRequest
2641
+ # data as a hash:
2642
+ #
2643
+ # {
2644
+ # alarm_name: "ResourceName", # required
2645
+ # }
2646
+ #
2647
+ # @!attribute [rw] alarm_name
2648
+ # The name of the alarm to delete.
2649
+ # @return [String]
2650
+ #
2651
+ # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/DeleteAlarmRequest AWS API Documentation
2652
+ #
2653
+ class DeleteAlarmRequest < Struct.new(
2654
+ :alarm_name)
2655
+ include Aws::Structure
2656
+ end
2657
+
2658
+ # @!attribute [rw] operations
2659
+ # An array of objects that describe the result of the action, such as
2660
+ # the status of the request, the timestamp of the request, and the
2661
+ # resources affected by the request.
2662
+ # @return [Array<Types::Operation>]
2663
+ #
2664
+ # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/DeleteAlarmResult AWS API Documentation
2665
+ #
2666
+ class DeleteAlarmResult < Struct.new(
2667
+ :operations)
2668
+ include Aws::Structure
2669
+ end
2670
+
2282
2671
  # @note When making an API call, you may pass DeleteAutoSnapshotRequest
2283
2672
  # data as a hash:
2284
2673
  #
@@ -2288,13 +2677,12 @@ module Aws::Lightsail
2288
2677
  # }
2289
2678
  #
2290
2679
  # @!attribute [rw] resource_name
2291
- # The name of the source resource from which to delete the automatic
2292
- # snapshot.
2680
+ # The name of the source instance or disk from which to delete the
2681
+ # automatic snapshot.
2293
2682
  # @return [String]
2294
2683
  #
2295
2684
  # @!attribute [rw] date
2296
2685
  # The date of the automatic snapshot to delete in `YYYY-MM-DD` format.
2297
- #
2298
2686
  # Use the `get auto snapshots` operation to get the available
2299
2687
  # automatic snapshots for a resource.
2300
2688
  # @return [String]
@@ -2308,7 +2696,9 @@ module Aws::Lightsail
2308
2696
  end
2309
2697
 
2310
2698
  # @!attribute [rw] operations
2311
- # An array of objects that describe the result of your request.
2699
+ # An array of objects that describe the result of the action, such as
2700
+ # the status of the request, the timestamp of the request, and the
2701
+ # resources affected by the request.
2312
2702
  # @return [Array<Types::Operation>]
2313
2703
  #
2314
2704
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/DeleteAutoSnapshotResult AWS API Documentation
@@ -2318,6 +2708,44 @@ module Aws::Lightsail
2318
2708
  include Aws::Structure
2319
2709
  end
2320
2710
 
2711
+ # @note When making an API call, you may pass DeleteContactMethodRequest
2712
+ # data as a hash:
2713
+ #
2714
+ # {
2715
+ # protocol: "Email", # required, accepts Email, SMS
2716
+ # }
2717
+ #
2718
+ # @!attribute [rw] protocol
2719
+ # The protocol that will be deleted, such as `Email` or `SMS` (text
2720
+ # messaging).
2721
+ #
2722
+ # <note markdown="1"> To delete an `Email` and an `SMS` contact method if you added both,
2723
+ # you must run separate `DeleteContactMethod` actions to delete each
2724
+ # protocol.
2725
+ #
2726
+ # </note>
2727
+ # @return [String]
2728
+ #
2729
+ # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/DeleteContactMethodRequest AWS API Documentation
2730
+ #
2731
+ class DeleteContactMethodRequest < Struct.new(
2732
+ :protocol)
2733
+ include Aws::Structure
2734
+ end
2735
+
2736
+ # @!attribute [rw] operations
2737
+ # An array of objects that describe the result of the action, such as
2738
+ # the status of the request, the timestamp of the request, and the
2739
+ # resources affected by the request.
2740
+ # @return [Array<Types::Operation>]
2741
+ #
2742
+ # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/DeleteContactMethodResult AWS API Documentation
2743
+ #
2744
+ class DeleteContactMethodResult < Struct.new(
2745
+ :operations)
2746
+ include Aws::Structure
2747
+ end
2748
+
2321
2749
  # @note When making an API call, you may pass DeleteDiskRequest
2322
2750
  # data as a hash:
2323
2751
  #
@@ -2344,7 +2772,9 @@ module Aws::Lightsail
2344
2772
  end
2345
2773
 
2346
2774
  # @!attribute [rw] operations
2347
- # An array of objects that describe the result of your request.
2775
+ # An array of objects that describe the result of the action, such as
2776
+ # the status of the request, the timestamp of the request, and the
2777
+ # resources affected by the request.
2348
2778
  # @return [Array<Types::Operation>]
2349
2779
  #
2350
2780
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/DeleteDiskResult AWS API Documentation
@@ -2374,7 +2804,9 @@ module Aws::Lightsail
2374
2804
  end
2375
2805
 
2376
2806
  # @!attribute [rw] operations
2377
- # An object describing the API operations.
2807
+ # An array of objects that describe the result of the action, such as
2808
+ # the status of the request, the timestamp of the request, and the
2809
+ # resources affected by the request.
2378
2810
  # @return [Array<Types::Operation>]
2379
2811
  #
2380
2812
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/DeleteDiskSnapshotResult AWS API Documentation
@@ -2419,8 +2851,9 @@ module Aws::Lightsail
2419
2851
  end
2420
2852
 
2421
2853
  # @!attribute [rw] operation
2422
- # An array of key-value pairs containing information about the results
2423
- # of your delete domain entry request.
2854
+ # An array of objects that describe the result of the action, such as
2855
+ # the status of the request, the timestamp of the request, and the
2856
+ # resources affected by the request.
2424
2857
  # @return [Types::Operation]
2425
2858
  #
2426
2859
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/DeleteDomainEntryResult AWS API Documentation
@@ -2449,8 +2882,9 @@ module Aws::Lightsail
2449
2882
  end
2450
2883
 
2451
2884
  # @!attribute [rw] operation
2452
- # An array of key-value pairs containing information about the results
2453
- # of your delete domain request.
2885
+ # An array of objects that describe the result of the action, such as
2886
+ # the status of the request, the timestamp of the request, and the
2887
+ # resources affected by the request.
2454
2888
  # @return [Types::Operation]
2455
2889
  #
2456
2890
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/DeleteDomainResult AWS API Documentation
@@ -2486,8 +2920,9 @@ module Aws::Lightsail
2486
2920
  end
2487
2921
 
2488
2922
  # @!attribute [rw] operations
2489
- # An array of key-value pairs containing information about the results
2490
- # of your delete instance request.
2923
+ # An array of objects that describe the result of the action, such as
2924
+ # the status of the request, the timestamp of the request, and the
2925
+ # resources affected by the request.
2491
2926
  # @return [Array<Types::Operation>]
2492
2927
  #
2493
2928
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/DeleteInstanceResult AWS API Documentation
@@ -2516,8 +2951,9 @@ module Aws::Lightsail
2516
2951
  end
2517
2952
 
2518
2953
  # @!attribute [rw] operations
2519
- # An array of key-value pairs containing information about the results
2520
- # of your delete instance snapshot request.
2954
+ # An array of objects that describe the result of the action, such as
2955
+ # the status of the request, the timestamp of the request, and the
2956
+ # resources affected by the request.
2521
2957
  # @return [Array<Types::Operation>]
2522
2958
  #
2523
2959
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/DeleteInstanceSnapshotResult AWS API Documentation
@@ -2546,8 +2982,9 @@ module Aws::Lightsail
2546
2982
  end
2547
2983
 
2548
2984
  # @!attribute [rw] operation
2549
- # An array of key-value pairs containing information about the results
2550
- # of your delete key pair request.
2985
+ # An array of objects that describe the result of the action, such as
2986
+ # the status of the request, the timestamp of the request, and the
2987
+ # resources affected by the request.
2551
2988
  # @return [Types::Operation]
2552
2989
  #
2553
2990
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/DeleteKeyPairResult AWS API Documentation
@@ -2577,7 +3014,9 @@ module Aws::Lightsail
2577
3014
  end
2578
3015
 
2579
3016
  # @!attribute [rw] operations
2580
- # A list of objects describing the API operation.
3017
+ # An array of objects that describe the result of the action, such as
3018
+ # the status of the request, the timestamp of the request, and the
3019
+ # resources affected by the request.
2581
3020
  # @return [Array<Types::Operation>]
2582
3021
  #
2583
3022
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/DeleteKnownHostKeysResult AWS API Documentation
@@ -2606,7 +3045,9 @@ module Aws::Lightsail
2606
3045
  end
2607
3046
 
2608
3047
  # @!attribute [rw] operations
2609
- # An object describing the API operations.
3048
+ # An array of objects that describe the result of the action, such as
3049
+ # the status of the request, the timestamp of the request, and the
3050
+ # resources affected by the request.
2610
3051
  # @return [Array<Types::Operation>]
2611
3052
  #
2612
3053
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/DeleteLoadBalancerResult AWS API Documentation
@@ -2652,7 +3093,9 @@ module Aws::Lightsail
2652
3093
  end
2653
3094
 
2654
3095
  # @!attribute [rw] operations
2655
- # An object describing the API operations.
3096
+ # An array of objects that describe the result of the action, such as
3097
+ # the status of the request, the timestamp of the request, and the
3098
+ # resources affected by the request.
2656
3099
  # @return [Array<Types::Operation>]
2657
3100
  #
2658
3101
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/DeleteLoadBalancerTlsCertificateResult AWS API Documentation
@@ -2713,8 +3156,9 @@ module Aws::Lightsail
2713
3156
  end
2714
3157
 
2715
3158
  # @!attribute [rw] operations
2716
- # An object describing the result of your delete relational database
2717
- # request.
3159
+ # An array of objects that describe the result of the action, such as
3160
+ # the status of the request, the timestamp of the request, and the
3161
+ # resources affected by the request.
2718
3162
  # @return [Array<Types::Operation>]
2719
3163
  #
2720
3164
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/DeleteRelationalDatabaseResult AWS API Documentation
@@ -2743,8 +3187,9 @@ module Aws::Lightsail
2743
3187
  end
2744
3188
 
2745
3189
  # @!attribute [rw] operations
2746
- # An object describing the result of your delete relational database
2747
- # snapshot request.
3190
+ # An array of objects that describe the result of the action, such as
3191
+ # the status of the request, the timestamp of the request, and the
3192
+ # resources affected by the request.
2748
3193
  # @return [Array<Types::Operation>]
2749
3194
  #
2750
3195
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/DeleteRelationalDatabaseSnapshotResult AWS API Documentation
@@ -2792,7 +3237,9 @@ module Aws::Lightsail
2792
3237
  end
2793
3238
 
2794
3239
  # @!attribute [rw] operations
2795
- # An object describing the API operations.
3240
+ # An array of objects that describe the result of the action, such as
3241
+ # the status of the request, the timestamp of the request, and the
3242
+ # resources affected by the request.
2796
3243
  # @return [Array<Types::Operation>]
2797
3244
  #
2798
3245
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/DetachDiskResult AWS API Documentation
@@ -2828,7 +3275,9 @@ module Aws::Lightsail
2828
3275
  end
2829
3276
 
2830
3277
  # @!attribute [rw] operations
2831
- # An object describing the API operations.
3278
+ # An array of objects that describe the result of the action, such as
3279
+ # the status of the request, the timestamp of the request, and the
3280
+ # resources affected by the request.
2832
3281
  # @return [Array<Types::Operation>]
2833
3282
  #
2834
3283
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/DetachInstancesFromLoadBalancerResult AWS API Documentation
@@ -2857,8 +3306,9 @@ module Aws::Lightsail
2857
3306
  end
2858
3307
 
2859
3308
  # @!attribute [rw] operations
2860
- # An array of key-value pairs containing information about the results
2861
- # of your detach static IP request.
3309
+ # An array of objects that describe the result of the action, such as
3310
+ # the status of the request, the timestamp of the request, and the
3311
+ # resources affected by the request.
2862
3312
  # @return [Array<Types::Operation>]
2863
3313
  #
2864
3314
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/DetachStaticIpResult AWS API Documentation
@@ -2881,7 +3331,7 @@ module Aws::Lightsail
2881
3331
  # @return [String]
2882
3332
  #
2883
3333
  # @!attribute [rw] resource_name
2884
- # The name of the source resource from which to disable the add-on.
3334
+ # The name of the source resource for which to disable the add-on.
2885
3335
  # @return [String]
2886
3336
  #
2887
3337
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/DisableAddOnRequest AWS API Documentation
@@ -2893,7 +3343,9 @@ module Aws::Lightsail
2893
3343
  end
2894
3344
 
2895
3345
  # @!attribute [rw] operations
2896
- # An array of objects that describe the result of your request.
3346
+ # An array of objects that describe the result of the action, such as
3347
+ # the status of the request, the timestamp of the request, and the
3348
+ # resources affected by the request.
2897
3349
  # @return [Array<Types::Operation>]
2898
3350
  #
2899
3351
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/DisableAddOnResult AWS API Documentation
@@ -3381,7 +3833,9 @@ module Aws::Lightsail
3381
3833
  end
3382
3834
 
3383
3835
  # @!attribute [rw] operations
3384
- # An array of objects that describe the result of your request.
3836
+ # An array of objects that describe the result of the action, such as
3837
+ # the status of the request, the timestamp of the request, and the
3838
+ # resources affected by the request.
3385
3839
  # @return [Array<Types::Operation>]
3386
3840
  #
3387
3841
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/EnableAddOnResult AWS API Documentation
@@ -3513,7 +3967,9 @@ module Aws::Lightsail
3513
3967
  end
3514
3968
 
3515
3969
  # @!attribute [rw] operations
3516
- # A list of objects describing the API operation.
3970
+ # An array of objects that describe the result of the action, such as
3971
+ # the status of the request, the timestamp of the request, and the
3972
+ # resources affected by the request.
3517
3973
  # @return [Array<Types::Operation>]
3518
3974
  #
3519
3975
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/ExportSnapshotResult AWS API Documentation
@@ -3531,7 +3987,11 @@ module Aws::Lightsail
3531
3987
  # }
3532
3988
  #
3533
3989
  # @!attribute [rw] page_token
3534
- # A token used for paginating results from your get active names
3990
+ # The token to advance to the next page of results from your request.
3991
+ #
3992
+ # To get a page token, perform an initial `GetActiveNames` request. If
3993
+ # your results are paginated, the response will return a next page
3994
+ # token that you can specify as the page token in a subsequent
3535
3995
  # request.
3536
3996
  # @return [String]
3537
3997
  #
@@ -3547,8 +4007,14 @@ module Aws::Lightsail
3547
4007
  # @return [Array<String>]
3548
4008
  #
3549
4009
  # @!attribute [rw] next_page_token
3550
- # A token used for advancing to the next page of results from your get
3551
- # active names request.
4010
+ # The token to advance to the next page of resutls from your request.
4011
+ #
4012
+ # A next page token is not returned if there are no more results to
4013
+ # display.
4014
+ #
4015
+ # To get the next page of results, perform another `GetActiveNames`
4016
+ # request and specify the next page token using the `pageToken`
4017
+ # parameter.
3552
4018
  # @return [String]
3553
4019
  #
3554
4020
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/GetActiveNamesResult AWS API Documentation
@@ -3559,6 +4025,67 @@ module Aws::Lightsail
3559
4025
  include Aws::Structure
3560
4026
  end
3561
4027
 
4028
+ # @note When making an API call, you may pass GetAlarmsRequest
4029
+ # data as a hash:
4030
+ #
4031
+ # {
4032
+ # alarm_name: "ResourceName",
4033
+ # page_token: "string",
4034
+ # monitored_resource_name: "ResourceName",
4035
+ # }
4036
+ #
4037
+ # @!attribute [rw] alarm_name
4038
+ # The name of the alarm.
4039
+ #
4040
+ # Specify an alarm name to return information about a specific alarm.
4041
+ # @return [String]
4042
+ #
4043
+ # @!attribute [rw] page_token
4044
+ # The token to advance to the next page of results from your request.
4045
+ #
4046
+ # To get a page token, perform an initial `GetAlarms` request. If your
4047
+ # results are paginated, the response will return a next page token
4048
+ # that you can specify as the page token in a subsequent request.
4049
+ # @return [String]
4050
+ #
4051
+ # @!attribute [rw] monitored_resource_name
4052
+ # The name of the Lightsail resource being monitored by the alarm.
4053
+ #
4054
+ # Specify a monitored resource name to return information about all
4055
+ # alarms for a specific resource.
4056
+ # @return [String]
4057
+ #
4058
+ # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/GetAlarmsRequest AWS API Documentation
4059
+ #
4060
+ class GetAlarmsRequest < Struct.new(
4061
+ :alarm_name,
4062
+ :page_token,
4063
+ :monitored_resource_name)
4064
+ include Aws::Structure
4065
+ end
4066
+
4067
+ # @!attribute [rw] alarms
4068
+ # An array of objects that describe the alarms.
4069
+ # @return [Array<Types::Alarm>]
4070
+ #
4071
+ # @!attribute [rw] next_page_token
4072
+ # The token to advance to the next page of resutls from your request.
4073
+ #
4074
+ # A next page token is not returned if there are no more results to
4075
+ # display.
4076
+ #
4077
+ # To get the next page of results, perform another `GetAlarms` request
4078
+ # and specify the next page token using the `pageToken` parameter.
4079
+ # @return [String]
4080
+ #
4081
+ # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/GetAlarmsResult AWS API Documentation
4082
+ #
4083
+ class GetAlarmsResult < Struct.new(
4084
+ :alarms,
4085
+ :next_page_token)
4086
+ include Aws::Structure
4087
+ end
4088
+
3562
4089
  # @note When making an API call, you may pass GetAutoSnapshotsRequest
3563
4090
  # data as a hash:
3564
4091
  #
@@ -3567,8 +4094,8 @@ module Aws::Lightsail
3567
4094
  # }
3568
4095
  #
3569
4096
  # @!attribute [rw] resource_name
3570
- # The name of the source resource from which to get automatic snapshot
3571
- # information.
4097
+ # The name of the source instance or disk from which to get automatic
4098
+ # snapshot information.
3572
4099
  # @return [String]
3573
4100
  #
3574
4101
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/GetAutoSnapshotsRequest AWS API Documentation
@@ -3579,7 +4106,7 @@ module Aws::Lightsail
3579
4106
  end
3580
4107
 
3581
4108
  # @!attribute [rw] resource_name
3582
- # The name of the source resource for the automatic snapshots.
4109
+ # The name of the source instance or disk for the automatic snapshots.
3583
4110
  # @return [String]
3584
4111
  #
3585
4112
  # @!attribute [rw] resource_type
@@ -3588,7 +4115,7 @@ module Aws::Lightsail
3588
4115
  #
3589
4116
  # @!attribute [rw] auto_snapshots
3590
4117
  # An array of objects that describe the automatic snapshots that are
3591
- # available for the specified source resource.asdf
4118
+ # available for the specified source instance or disk.
3592
4119
  # @return [Array<Types::AutoSnapshotDetails>]
3593
4120
  #
3594
4121
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/GetAutoSnapshotsResult AWS API Documentation
@@ -3614,8 +4141,12 @@ module Aws::Lightsail
3614
4141
  # @return [Boolean]
3615
4142
  #
3616
4143
  # @!attribute [rw] page_token
3617
- # A token used for advancing to the next page of results from your get
3618
- # blueprints request.
4144
+ # The token to advance to the next page of results from your request.
4145
+ #
4146
+ # To get a page token, perform an initial `GetBlueprints` request. If
4147
+ # your results are paginated, the response will return a next page
4148
+ # token that you can specify as the page token in a subsequent
4149
+ # request.
3619
4150
  # @return [String]
3620
4151
  #
3621
4152
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/GetBlueprintsRequest AWS API Documentation
@@ -3632,8 +4163,14 @@ module Aws::Lightsail
3632
4163
  # @return [Array<Types::Blueprint>]
3633
4164
  #
3634
4165
  # @!attribute [rw] next_page_token
3635
- # A token used for advancing to the next page of results from your get
3636
- # blueprints request.
4166
+ # The token to advance to the next page of resutls from your request.
4167
+ #
4168
+ # A next page token is not returned if there are no more results to
4169
+ # display.
4170
+ #
4171
+ # To get the next page of results, perform another `GetBlueprints`
4172
+ # request and specify the next page token using the `pageToken`
4173
+ # parameter.
3637
4174
  # @return [String]
3638
4175
  #
3639
4176
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/GetBlueprintsResult AWS API Documentation
@@ -3658,8 +4195,12 @@ module Aws::Lightsail
3658
4195
  # @return [Boolean]
3659
4196
  #
3660
4197
  # @!attribute [rw] page_token
3661
- # A token used for advancing to the next page of results from your get
3662
- # bundles request.
4198
+ # The token to advance to the next page of results from your request.
4199
+ #
4200
+ # To get a page token, perform an initial `GetBundles` request. If
4201
+ # your results are paginated, the response will return a next page
4202
+ # token that you can specify as the page token in a subsequent
4203
+ # request.
3663
4204
  # @return [String]
3664
4205
  #
3665
4206
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/GetBundlesRequest AWS API Documentation
@@ -3676,8 +4217,14 @@ module Aws::Lightsail
3676
4217
  # @return [Array<Types::Bundle>]
3677
4218
  #
3678
4219
  # @!attribute [rw] next_page_token
3679
- # A token used for advancing to the next page of results from your get
3680
- # active names request.
4220
+ # The token to advance to the next page of resutls from your request.
4221
+ #
4222
+ # A next page token is not returned if there are no more results to
4223
+ # display.
4224
+ #
4225
+ # To get the next page of results, perform another `GetBundles`
4226
+ # request and specify the next page token using the `pageToken`
4227
+ # parameter.
3681
4228
  # @return [String]
3682
4229
  #
3683
4230
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/GetBundlesResult AWS API Documentation
@@ -3696,8 +4243,12 @@ module Aws::Lightsail
3696
4243
  # }
3697
4244
  #
3698
4245
  # @!attribute [rw] page_token
3699
- # A token used for advancing to a specific page of results for your
3700
- # `get cloud formation stack records` request.
4246
+ # The token to advance to the next page of results from your request.
4247
+ #
4248
+ # To get a page token, perform an initial
4249
+ # `GetClouFormationStackRecords` request. If your results are
4250
+ # paginated, the response will return a next page token that you can
4251
+ # specify as the page token in a subsequent request.
3701
4252
  # @return [String]
3702
4253
  #
3703
4254
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/GetCloudFormationStackRecordsRequest AWS API Documentation
@@ -3712,8 +4263,14 @@ module Aws::Lightsail
3712
4263
  # @return [Array<Types::CloudFormationStackRecord>]
3713
4264
  #
3714
4265
  # @!attribute [rw] next_page_token
3715
- # A token used for advancing to the next page of results of your get
3716
- # relational database bundles request.
4266
+ # The token to advance to the next page of resutls from your request.
4267
+ #
4268
+ # A next page token is not returned if there are no more results to
4269
+ # display.
4270
+ #
4271
+ # To get the next page of results, perform another
4272
+ # `GetCloudFormationStackRecords` request and specify the next page
4273
+ # token using the `pageToken` parameter.
3717
4274
  # @return [String]
3718
4275
  #
3719
4276
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/GetCloudFormationStackRecordsResult AWS API Documentation
@@ -3724,6 +4281,39 @@ module Aws::Lightsail
3724
4281
  include Aws::Structure
3725
4282
  end
3726
4283
 
4284
+ # @note When making an API call, you may pass GetContactMethodsRequest
4285
+ # data as a hash:
4286
+ #
4287
+ # {
4288
+ # protocols: ["Email"], # accepts Email, SMS
4289
+ # }
4290
+ #
4291
+ # @!attribute [rw] protocols
4292
+ # The protocols used to send notifications, such as `Email`, or `SMS`
4293
+ # (text messaging).
4294
+ #
4295
+ # Specify a protocol in your request to return information about a
4296
+ # specific contact method protocol.
4297
+ # @return [Array<String>]
4298
+ #
4299
+ # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/GetContactMethodsRequest AWS API Documentation
4300
+ #
4301
+ class GetContactMethodsRequest < Struct.new(
4302
+ :protocols)
4303
+ include Aws::Structure
4304
+ end
4305
+
4306
+ # @!attribute [rw] contact_methods
4307
+ # An array of objects that describe the contact methods.
4308
+ # @return [Array<Types::ContactMethod>]
4309
+ #
4310
+ # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/GetContactMethodsResult AWS API Documentation
4311
+ #
4312
+ class GetContactMethodsResult < Struct.new(
4313
+ :contact_methods)
4314
+ include Aws::Structure
4315
+ end
4316
+
3727
4317
  # @note When making an API call, you may pass GetDiskRequest
3728
4318
  # data as a hash:
3729
4319
  #
@@ -3790,8 +4380,12 @@ module Aws::Lightsail
3790
4380
  # }
3791
4381
  #
3792
4382
  # @!attribute [rw] page_token
3793
- # A token used for advancing to the next page of results from your
3794
- # GetDiskSnapshots request.
4383
+ # The token to advance to the next page of results from your request.
4384
+ #
4385
+ # To get a page token, perform an initial `GetDiskSnapshots` request.
4386
+ # If your results are paginated, the response will return a next page
4387
+ # token that you can specify as the page token in a subsequent
4388
+ # request.
3795
4389
  # @return [String]
3796
4390
  #
3797
4391
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/GetDiskSnapshotsRequest AWS API Documentation
@@ -3807,8 +4401,14 @@ module Aws::Lightsail
3807
4401
  # @return [Array<Types::DiskSnapshot>]
3808
4402
  #
3809
4403
  # @!attribute [rw] next_page_token
3810
- # A token used for advancing to the next page of results from your
3811
- # GetDiskSnapshots request.
4404
+ # The token to advance to the next page of resutls from your request.
4405
+ #
4406
+ # A next page token is not returned if there are no more results to
4407
+ # display.
4408
+ #
4409
+ # To get the next page of results, perform another `GetDiskSnapshots`
4410
+ # request and specify the next page token using the `pageToken`
4411
+ # parameter.
3812
4412
  # @return [String]
3813
4413
  #
3814
4414
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/GetDiskSnapshotsResult AWS API Documentation
@@ -3827,8 +4427,11 @@ module Aws::Lightsail
3827
4427
  # }
3828
4428
  #
3829
4429
  # @!attribute [rw] page_token
3830
- # A token used for advancing to the next page of results from your
3831
- # GetDisks request.
4430
+ # The token to advance to the next page of results from your request.
4431
+ #
4432
+ # To get a page token, perform an initial `GetDisks` request. If your
4433
+ # results are paginated, the response will return a next page token
4434
+ # that you can specify as the page token in a subsequent request.
3832
4435
  # @return [String]
3833
4436
  #
3834
4437
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/GetDisksRequest AWS API Documentation
@@ -3844,8 +4447,13 @@ module Aws::Lightsail
3844
4447
  # @return [Array<Types::Disk>]
3845
4448
  #
3846
4449
  # @!attribute [rw] next_page_token
3847
- # A token used for advancing to the next page of results from your
3848
- # GetDisks request.
4450
+ # The token to advance to the next page of resutls from your request.
4451
+ #
4452
+ # A next page token is not returned if there are no more results to
4453
+ # display.
4454
+ #
4455
+ # To get the next page of results, perform another `GetDisks` request
4456
+ # and specify the next page token using the `pageToken` parameter.
3849
4457
  # @return [String]
3850
4458
  #
3851
4459
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/GetDisksResult AWS API Documentation
@@ -3894,8 +4502,12 @@ module Aws::Lightsail
3894
4502
  # }
3895
4503
  #
3896
4504
  # @!attribute [rw] page_token
3897
- # A token used for advancing to the next page of results from your get
3898
- # domains request.
4505
+ # The token to advance to the next page of results from your request.
4506
+ #
4507
+ # To get a page token, perform an initial `GetDomains` request. If
4508
+ # your results are paginated, the response will return a next page
4509
+ # token that you can specify as the page token in a subsequent
4510
+ # request.
3899
4511
  # @return [String]
3900
4512
  #
3901
4513
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/GetDomainsRequest AWS API Documentation
@@ -3911,8 +4523,14 @@ module Aws::Lightsail
3911
4523
  # @return [Array<Types::Domain>]
3912
4524
  #
3913
4525
  # @!attribute [rw] next_page_token
3914
- # A token used for advancing to the next page of results from your get
3915
- # active names request.
4526
+ # The token to advance to the next page of resutls from your request.
4527
+ #
4528
+ # A next page token is not returned if there are no more results to
4529
+ # display.
4530
+ #
4531
+ # To get the next page of results, perform another `GetDomains`
4532
+ # request and specify the next page token using the `pageToken`
4533
+ # parameter.
3916
4534
  # @return [String]
3917
4535
  #
3918
4536
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/GetDomainsResult AWS API Documentation
@@ -3931,8 +4549,12 @@ module Aws::Lightsail
3931
4549
  # }
3932
4550
  #
3933
4551
  # @!attribute [rw] page_token
3934
- # A token used for advancing to a specific page of results for your
3935
- # `get export snapshot records` request.
4552
+ # The token to advance to the next page of results from your request.
4553
+ #
4554
+ # To get a page token, perform an initial `GetExportSnapshotRecords`
4555
+ # request. If your results are paginated, the response will return a
4556
+ # next page token that you can specify as the page token in a
4557
+ # subsequent request.
3936
4558
  # @return [String]
3937
4559
  #
3938
4560
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/GetExportSnapshotRecordsRequest AWS API Documentation
@@ -3947,8 +4569,14 @@ module Aws::Lightsail
3947
4569
  # @return [Array<Types::ExportSnapshotRecord>]
3948
4570
  #
3949
4571
  # @!attribute [rw] next_page_token
3950
- # A token used for advancing to the next page of results of your get
3951
- # relational database bundles request.
4572
+ # The token to advance to the next page of resutls from your request.
4573
+ #
4574
+ # A next page token is not returned if there are no more results to
4575
+ # display.
4576
+ #
4577
+ # To get the next page of results, perform another
4578
+ # `GetExportSnapshotRecords` request and specify the next page token
4579
+ # using the `pageToken` parameter.
3952
4580
  # @return [String]
3953
4581
  #
3954
4582
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/GetExportSnapshotRecordsResult AWS API Documentation
@@ -4013,11 +4641,82 @@ module Aws::Lightsail
4013
4641
  # @return [String]
4014
4642
  #
4015
4643
  # @!attribute [rw] metric_name
4016
- # The metric name to get data about.
4644
+ # The metric for which you want to return information.
4645
+ #
4646
+ # Valid instance metric names are listed below, along with the most
4647
+ # useful `statistics` to include in your request, and the published
4648
+ # `unit` value.
4649
+ #
4650
+ # * <b> <code>CPUUtilization</code> </b> - The percentage of allocated
4651
+ # compute units that are currently in use on the instance. This
4652
+ # metric identifies the processing power to run the applications on
4653
+ # the instance. Tools in your operating system can show a lower
4654
+ # percentage than Lightsail when the instance is not allocated a
4655
+ # full processor core.
4656
+ #
4657
+ # `Statistics`\: The most useful statistics are `Maximum` and
4658
+ # `Average`.
4659
+ #
4660
+ # `Unit`\: The published unit is `Percent`.
4661
+ #
4662
+ # * <b> <code>NetworkIn</code> </b> - The number of bytes received on
4663
+ # all network interfaces by the instance. This metric identifies the
4664
+ # volume of incoming network traffic to the instance. The number
4665
+ # reported is the number of bytes received during the period.
4666
+ # Because this metric is reported in 5-minute intervals, divide the
4667
+ # reported number by 300 to find Bytes/second.
4668
+ #
4669
+ # `Statistics`\: The most useful statistic is `Sum`.
4670
+ #
4671
+ # `Unit`\: The published unit is `Bytes`.
4672
+ #
4673
+ # * <b> <code>NetworkOut</code> </b> - The number of bytes sent out on
4674
+ # all network interfaces by the instance. This metric identifies the
4675
+ # volume of outgoing network traffic from the instance. The number
4676
+ # reported is the number of bytes sent during the period. Because
4677
+ # this metric is reported in 5-minute intervals, divide the reported
4678
+ # number by 300 to find Bytes/second.
4679
+ #
4680
+ # `Statistics`\: The most useful statistic is `Sum`.
4681
+ #
4682
+ # `Unit`\: The published unit is `Bytes`.
4683
+ #
4684
+ # * <b> <code>StatusCheckFailed</code> </b> - Reports whether the
4685
+ # instance passed or failed both the instance status check and the
4686
+ # system status check. This metric can be either 0 (passed) or 1
4687
+ # (failed). This metric data is available in 1-minute (60 seconds)
4688
+ # granularity.
4689
+ #
4690
+ # `Statistics`\: The most useful statistic is `Sum`.
4691
+ #
4692
+ # `Unit`\: The published unit is `Count`.
4693
+ #
4694
+ # * <b> <code>StatusCheckFailed_Instance</code> </b> - Reports whether
4695
+ # the instance passed or failed the instance status check. This
4696
+ # metric can be either 0 (passed) or 1 (failed). This metric data is
4697
+ # available in 1-minute (60 seconds) granularity.
4698
+ #
4699
+ # `Statistics`\: The most useful statistic is `Sum`.
4700
+ #
4701
+ # `Unit`\: The published unit is `Count`.
4702
+ #
4703
+ # * <b> <code>StatusCheckFailed_System</code> </b> - Reports whether
4704
+ # the instance passed or failed the system status check. This metric
4705
+ # can be either 0 (passed) or 1 (failed). This metric data is
4706
+ # available in 1-minute (60 seconds) granularity.
4707
+ #
4708
+ # `Statistics`\: The most useful statistic is `Sum`.
4709
+ #
4710
+ # `Unit`\: The published unit is `Count`.
4017
4711
  # @return [String]
4018
4712
  #
4019
4713
  # @!attribute [rw] period
4020
4714
  # The granularity, in seconds, of the returned data points.
4715
+ #
4716
+ # The `StatusCheckFailed`, `StatusCheckFailed_Instance`, and
4717
+ # `StatusCheckFailed_System` instance metric data is available in
4718
+ # 1-minute (60 seconds) granularity. All other instance metric data is
4719
+ # available in 5-minute (300 seconds) granularity.
4021
4720
  # @return [Integer]
4022
4721
  #
4023
4722
  # @!attribute [rw] start_time
@@ -4029,11 +4728,37 @@ module Aws::Lightsail
4029
4728
  # @return [Time]
4030
4729
  #
4031
4730
  # @!attribute [rw] unit
4032
- # The unit. The list of valid values is below.
4731
+ # The unit for the metric data request. Valid units depend on the
4732
+ # metric data being requested. For the valid units to specify with
4733
+ # each available metric, see the `metricName` parameter.
4033
4734
  # @return [String]
4034
4735
  #
4035
4736
  # @!attribute [rw] statistics
4036
- # The instance statistics.
4737
+ # The statistic for the metric.
4738
+ #
4739
+ # The following statistics are available:
4740
+ #
4741
+ # * `Minimum` - The lowest value observed during the specified period.
4742
+ # Use this value to determine low volumes of activity for your
4743
+ # application.
4744
+ #
4745
+ # * `Maximum` - The highest value observed during the specified
4746
+ # period. Use this value to determine high volumes of activity for
4747
+ # your application.
4748
+ #
4749
+ # * `Sum` - All values submitted for the matching metric added
4750
+ # together. You can use this statistic to determine the total volume
4751
+ # of a metric.
4752
+ #
4753
+ # * `Average` - The value of Sum / SampleCount during the specified
4754
+ # period. By comparing this statistic with the Minimum and Maximum
4755
+ # values, you can determine the full scope of a metric and how close
4756
+ # the average use is to the Minimum and Maximum values. This
4757
+ # comparison helps you to know when to increase or decrease your
4758
+ # resources.
4759
+ #
4760
+ # * `SampleCount` - The count, or number, of data points used for the
4761
+ # statistical calculation.
4037
4762
  # @return [Array<String>]
4038
4763
  #
4039
4764
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/GetInstanceMetricDataRequest AWS API Documentation
@@ -4074,7 +4799,7 @@ module Aws::Lightsail
4074
4799
  # }
4075
4800
  #
4076
4801
  # @!attribute [rw] instance_name
4077
- # The name of the instance.
4802
+ # The name of the instance for which to return firewall port states.
4078
4803
  # @return [String]
4079
4804
  #
4080
4805
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/GetInstancePortStatesRequest AWS API Documentation
@@ -4085,7 +4810,8 @@ module Aws::Lightsail
4085
4810
  end
4086
4811
 
4087
4812
  # @!attribute [rw] port_states
4088
- # Information about the port states resulting from your request.
4813
+ # An array of objects that describe the firewall port states for the
4814
+ # specified instance.
4089
4815
  # @return [Array<Types::InstancePortState>]
4090
4816
  #
4091
4817
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/GetInstancePortStatesResult AWS API Documentation
@@ -4163,8 +4889,12 @@ module Aws::Lightsail
4163
4889
  # }
4164
4890
  #
4165
4891
  # @!attribute [rw] page_token
4166
- # A token used for advancing to the next page of results from your get
4167
- # instance snapshots request.
4892
+ # The token to advance to the next page of results from your request.
4893
+ #
4894
+ # To get a page token, perform an initial `GetInstanceSnapshots`
4895
+ # request. If your results are paginated, the response will return a
4896
+ # next page token that you can specify as the page token in a
4897
+ # subsequent request.
4168
4898
  # @return [String]
4169
4899
  #
4170
4900
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/GetInstanceSnapshotsRequest AWS API Documentation
@@ -4180,8 +4910,14 @@ module Aws::Lightsail
4180
4910
  # @return [Array<Types::InstanceSnapshot>]
4181
4911
  #
4182
4912
  # @!attribute [rw] next_page_token
4183
- # A token used for advancing to the next page of results from your get
4184
- # instance snapshots request.
4913
+ # The token to advance to the next page of resutls from your request.
4914
+ #
4915
+ # A next page token is not returned if there are no more results to
4916
+ # display.
4917
+ #
4918
+ # To get the next page of results, perform another
4919
+ # `GetInstanceSnapshots` request and specify the next page token using
4920
+ # the `pageToken` parameter.
4185
4921
  # @return [String]
4186
4922
  #
4187
4923
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/GetInstanceSnapshotsResult AWS API Documentation
@@ -4229,8 +4965,12 @@ module Aws::Lightsail
4229
4965
  # }
4230
4966
  #
4231
4967
  # @!attribute [rw] page_token
4232
- # A token used for advancing to the next page of results from your get
4233
- # instances request.
4968
+ # The token to advance to the next page of results from your request.
4969
+ #
4970
+ # To get a page token, perform an initial `GetInstances` request. If
4971
+ # your results are paginated, the response will return a next page
4972
+ # token that you can specify as the page token in a subsequent
4973
+ # request.
4234
4974
  # @return [String]
4235
4975
  #
4236
4976
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/GetInstancesRequest AWS API Documentation
@@ -4246,8 +4986,14 @@ module Aws::Lightsail
4246
4986
  # @return [Array<Types::Instance>]
4247
4987
  #
4248
4988
  # @!attribute [rw] next_page_token
4249
- # A token used for advancing to the next page of results from your get
4250
- # instances request.
4989
+ # The token to advance to the next page of resutls from your request.
4990
+ #
4991
+ # A next page token is not returned if there are no more results to
4992
+ # display.
4993
+ #
4994
+ # To get the next page of results, perform another `GetInstances`
4995
+ # request and specify the next page token using the `pageToken`
4996
+ # parameter.
4251
4997
  # @return [String]
4252
4998
  #
4253
4999
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/GetInstancesResult AWS API Documentation
@@ -4296,8 +5042,12 @@ module Aws::Lightsail
4296
5042
  # }
4297
5043
  #
4298
5044
  # @!attribute [rw] page_token
4299
- # A token used for advancing to the next page of results from your get
4300
- # key pairs request.
5045
+ # The token to advance to the next page of results from your request.
5046
+ #
5047
+ # To get a page token, perform an initial `GetKeyPairs` request. If
5048
+ # your results are paginated, the response will return a next page
5049
+ # token that you can specify as the page token in a subsequent
5050
+ # request.
4301
5051
  # @return [String]
4302
5052
  #
4303
5053
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/GetKeyPairsRequest AWS API Documentation
@@ -4313,8 +5063,14 @@ module Aws::Lightsail
4313
5063
  # @return [Array<Types::KeyPair>]
4314
5064
  #
4315
5065
  # @!attribute [rw] next_page_token
4316
- # A token used for advancing to the next page of results from your get
4317
- # key pairs request.
5066
+ # The token to advance to the next page of resutls from your request.
5067
+ #
5068
+ # A next page token is not returned if there are no more results to
5069
+ # display.
5070
+ #
5071
+ # To get the next page of results, perform another `GetKeyPairs`
5072
+ # request and specify the next page token using the `pageToken`
5073
+ # parameter.
4318
5074
  # @return [String]
4319
5075
  #
4320
5076
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/GetKeyPairsResult AWS API Documentation
@@ -4343,94 +5099,127 @@ module Aws::Lightsail
4343
5099
  # @return [String]
4344
5100
  #
4345
5101
  # @!attribute [rw] metric_name
4346
- # The metric about which you want to return information. Valid values
4347
- # are listed below, along with the most useful `statistics` to include
4348
- # in your request.
5102
+ # The metric for which you want to return information.
5103
+ #
5104
+ # Valid load balancer metric names are listed below, along with the
5105
+ # most useful `statistics` to include in your request, and the
5106
+ # published `unit` value.
4349
5107
  #
4350
5108
  # * <b> <code>ClientTLSNegotiationErrorCount</code> </b> - The number
4351
5109
  # of TLS connections initiated by the client that did not establish
4352
- # a session with the load balancer. Possible causes include a
4353
- # mismatch of ciphers or protocols.
5110
+ # a session with the load balancer due to a TLS error generated by
5111
+ # the load balancer. Possible causes include a mismatch of ciphers
5112
+ # or protocols.
4354
5113
  #
4355
5114
  # `Statistics`\: The most useful statistic is `Sum`.
4356
5115
  #
5116
+ # `Unit`\: The published unit is `Count`.
5117
+ #
4357
5118
  # * <b> <code>HealthyHostCount</code> </b> - The number of target
4358
5119
  # instances that are considered healthy.
4359
5120
  #
4360
5121
  # `Statistics`\: The most useful statistic are `Average`, `Minimum`,
4361
5122
  # and `Maximum`.
4362
5123
  #
4363
- # * <b> <code>UnhealthyHostCount</code> </b> - The number of target
4364
- # instances that are considered unhealthy.
4365
- #
4366
- # `Statistics`\: The most useful statistic are `Average`, `Minimum`,
4367
- # and `Maximum`.
5124
+ # `Unit`\: The published unit is `Count`.
4368
5125
  #
4369
- # * <b> <code>HTTPCode_LB_4XX_Count</code> </b> - The number of HTTP
4370
- # 4XX client error codes that originate from the load balancer.
4371
- # Client errors are generated when requests are malformed or
4372
- # incomplete. These requests have not been received by the target
4373
- # instance. This count does not include any response codes generated
4374
- # by the target instances.
5126
+ # * <b> <code>HTTPCode_Instance_2XX_Count</code> </b> - The number of
5127
+ # HTTP 2XX response codes generated by the target instances. This
5128
+ # does not include any response codes generated by the load
5129
+ # balancer.
4375
5130
  #
4376
5131
  # `Statistics`\: The most useful statistic is `Sum`. Note that
4377
5132
  # `Minimum`, `Maximum`, and `Average` all return `1`.
4378
5133
  #
4379
- # * <b> <code>HTTPCode_LB_5XX_Count</code> </b> - The number of HTTP
4380
- # 5XX server error codes that originate from the load balancer. This
4381
- # count does not include any response codes generated by the target
4382
- # instances.
5134
+ # `Unit`\: The published unit is `Count`.
5135
+ #
5136
+ # * <b> <code>HTTPCode_Instance_3XX_Count</code> </b> - The number of
5137
+ # HTTP 3XX response codes generated by the target instances. This
5138
+ # does not include any response codes generated by the load
5139
+ # balancer.
4383
5140
  #
4384
5141
  # `Statistics`\: The most useful statistic is `Sum`. Note that
4385
- # `Minimum`, `Maximum`, and `Average` all return `1`. Note that
4386
5142
  # `Minimum`, `Maximum`, and `Average` all return `1`.
4387
5143
  #
4388
- # * <b> <code>HTTPCode_Instance_2XX_Count</code> </b> - The number of
4389
- # HTTP response codes generated by the target instances. This does
4390
- # not include any response codes generated by the load balancer.
5144
+ # `Unit`\: The published unit is `Count`.
5145
+ #
5146
+ # * <b> <code>HTTPCode_Instance_4XX_Count</code> </b> - The number of
5147
+ # HTTP 4XX response codes generated by the target instances. This
5148
+ # does not include any response codes generated by the load
5149
+ # balancer.
4391
5150
  #
4392
5151
  # `Statistics`\: The most useful statistic is `Sum`. Note that
4393
5152
  # `Minimum`, `Maximum`, and `Average` all return `1`.
4394
5153
  #
4395
- # * <b> <code>HTTPCode_Instance_3XX_Count</code> </b> - The number of
4396
- # HTTP response codes generated by the target instances. This does
4397
- # not include any response codes generated by the load balancer.
5154
+ # `Unit`\: The published unit is `Count`.
5155
+ #
5156
+ # * <b> <code>HTTPCode_Instance_5XX_Count</code> </b> - The number of
5157
+ # HTTP 5XX response codes generated by the target instances. This
5158
+ # does not include any response codes generated by the load
5159
+ # balancer.
4398
5160
  #
4399
5161
  # `Statistics`\: The most useful statistic is `Sum`. Note that
4400
5162
  # `Minimum`, `Maximum`, and `Average` all return `1`.
4401
5163
  #
4402
- # * <b> <code>HTTPCode_Instance_4XX_Count</code> </b> - The number of
4403
- # HTTP response codes generated by the target instances. This does
4404
- # not include any response codes generated by the load balancer.
5164
+ # `Unit`\: The published unit is `Count`.
5165
+ #
5166
+ # * <b> <code>HTTPCode_LB_4XX_Count</code> </b> - The number of HTTP
5167
+ # 4XX client error codes that originated from the load balancer.
5168
+ # Client errors are generated when requests are malformed or
5169
+ # incomplete. These requests were not received by the target
5170
+ # instance. This count does not include response codes generated by
5171
+ # the target instances.
4405
5172
  #
4406
5173
  # `Statistics`\: The most useful statistic is `Sum`. Note that
4407
5174
  # `Minimum`, `Maximum`, and `Average` all return `1`.
4408
5175
  #
4409
- # * <b> <code>HTTPCode_Instance_5XX_Count</code> </b> - The number of
4410
- # HTTP response codes generated by the target instances. This does
4411
- # not include any response codes generated by the load balancer.
5176
+ # `Unit`\: The published unit is `Count`.
5177
+ #
5178
+ # * <b> <code>HTTPCode_LB_5XX_Count</code> </b> - The number of HTTP
5179
+ # 5XX server error codes that originated from the load balancer.
5180
+ # This does not include any response codes generated by the target
5181
+ # instance. This metric is reported if there are no healthy
5182
+ # instances attached to the load balancer, or if the request rate
5183
+ # exceeds the capacity of the instances (spillover) or the load
5184
+ # balancer.
4412
5185
  #
4413
5186
  # `Statistics`\: The most useful statistic is `Sum`. Note that
4414
5187
  # `Minimum`, `Maximum`, and `Average` all return `1`.
4415
5188
  #
5189
+ # `Unit`\: The published unit is `Count`.
5190
+ #
4416
5191
  # * <b> <code>InstanceResponseTime</code> </b> - The time elapsed, in
4417
5192
  # seconds, after the request leaves the load balancer until a
4418
5193
  # response from the target instance is received.
4419
5194
  #
4420
5195
  # `Statistics`\: The most useful statistic is `Average`.
4421
5196
  #
5197
+ # `Unit`\: The published unit is `Seconds`.
5198
+ #
4422
5199
  # * <b> <code>RejectedConnectionCount</code> </b> - The number of
4423
5200
  # connections that were rejected because the load balancer had
4424
5201
  # reached its maximum number of connections.
4425
5202
  #
4426
5203
  # `Statistics`\: The most useful statistic is `Sum`.
4427
5204
  #
5205
+ # `Unit`\: The published unit is `Count`.
5206
+ #
4428
5207
  # * <b> <code>RequestCount</code> </b> - The number of requests
4429
5208
  # processed over IPv4. This count includes only the requests with a
4430
5209
  # response generated by a target instance of the load balancer.
4431
5210
  #
4432
5211
  # `Statistics`\: The most useful statistic is `Sum`. Note that
4433
5212
  # `Minimum`, `Maximum`, and `Average` all return `1`.
5213
+ #
5214
+ # `Unit`\: The published unit is `Count`.
5215
+ #
5216
+ # * <b> <code>UnhealthyHostCount</code> </b> - The number of target
5217
+ # instances that are considered unhealthy.
5218
+ #
5219
+ # `Statistics`\: The most useful statistic are `Average`, `Minimum`,
5220
+ # and `Maximum`.
5221
+ #
5222
+ # `Unit`\: The published unit is `Count`.
4434
5223
  # @return [String]
4435
5224
  #
4436
5225
  # @!attribute [rw] period
@@ -4446,34 +5235,37 @@ module Aws::Lightsail
4446
5235
  # @return [Time]
4447
5236
  #
4448
5237
  # @!attribute [rw] unit
4449
- # The unit for the time period request. Valid values are listed below.
5238
+ # The unit for the metric data request. Valid units depend on the
5239
+ # metric data being required. For the valid units with each available
5240
+ # metric, see the `metricName` parameter.
4450
5241
  # @return [String]
4451
5242
  #
4452
5243
  # @!attribute [rw] statistics
4453
- # An array of statistics that you want to request metrics for. Valid
4454
- # values are listed below.
5244
+ # The statistic for the metric.
4455
5245
  #
4456
- # * <b> <code>SampleCount</code> </b> - The count (number) of data
4457
- # points used for the statistical calculation.
5246
+ # The following statistics are available:
4458
5247
  #
4459
- # * <b> <code>Average</code> </b> - The value of Sum / SampleCount
4460
- # during the specified period. By comparing this statistic with the
4461
- # Minimum and Maximum, you can determine the full scope of a metric
4462
- # and how close the average use is to the Minimum and Maximum. This
4463
- # comparison helps you to know when to increase or decrease your
4464
- # resources as needed.
5248
+ # * `Minimum` - The lowest value observed during the specified period.
5249
+ # Use this value to determine low volumes of activity for your
5250
+ # application.
4465
5251
  #
4466
- # * <b> <code>Sum</code> </b> - All values submitted for the matching
4467
- # metric added together. This statistic can be useful for
4468
- # determining the total volume of a metric.
5252
+ # * `Maximum` - The highest value observed during the specified
5253
+ # period. Use this value to determine high volumes of activity for
5254
+ # your application.
4469
5255
  #
4470
- # * <b> <code>Minimum</code> </b> - The lowest value observed during
4471
- # the specified period. You can use this value to determine low
4472
- # volumes of activity for your application.
5256
+ # * `Sum` - All values submitted for the matching metric added
5257
+ # together. You can use this statistic to determine the total volume
5258
+ # of a metric.
5259
+ #
5260
+ # * `Average` - The value of Sum / SampleCount during the specified
5261
+ # period. By comparing this statistic with the Minimum and Maximum
5262
+ # values, you can determine the full scope of a metric and how close
5263
+ # the average use is to the Minimum and Maximum values. This
5264
+ # comparison helps you to know when to increase or decrease your
5265
+ # resources.
4473
5266
  #
4474
- # * <b> <code>Maximum</code> </b> - The highest value observed during
4475
- # the specified period. You can use this value to determine high
4476
- # volumes of activity for your application.
5267
+ # * `SampleCount` - The count, or number, of data points used for the
5268
+ # statistical calculation.
4477
5269
  # @return [Array<String>]
4478
5270
  #
4479
5271
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/GetLoadBalancerMetricDataRequest AWS API Documentation
@@ -4660,7 +5452,11 @@ module Aws::Lightsail
4660
5452
  # }
4661
5453
  #
4662
5454
  # @!attribute [rw] page_token
4663
- # A token used for paginating the results from your GetLoadBalancers
5455
+ # The token to advance to the next page of results from your request.
5456
+ #
5457
+ # To get a page token, perform an initial `GetLoadBalancers` request.
5458
+ # If your results are paginated, the response will return a next page
5459
+ # token that you can specify as the page token in a subsequent
4664
5460
  # request.
4665
5461
  # @return [String]
4666
5462
  #
@@ -4676,8 +5472,14 @@ module Aws::Lightsail
4676
5472
  # @return [Array<Types::LoadBalancer>]
4677
5473
  #
4678
5474
  # @!attribute [rw] next_page_token
4679
- # A token used for advancing to the next page of results from your
4680
- # GetLoadBalancers request.
5475
+ # The token to advance to the next page of resutls from your request.
5476
+ #
5477
+ # A next page token is not returned if there are no more results to
5478
+ # display.
5479
+ #
5480
+ # To get the next page of results, perform another `GetLoadBalancers`
5481
+ # request and specify the next page token using the `pageToken`
5482
+ # parameter.
4681
5483
  # @return [String]
4682
5484
  #
4683
5485
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/GetLoadBalancersResult AWS API Documentation
@@ -4707,8 +5509,9 @@ module Aws::Lightsail
4707
5509
  end
4708
5510
 
4709
5511
  # @!attribute [rw] operation
4710
- # An array of key-value pairs containing information about the results
4711
- # of your get operation request.
5512
+ # An array of objects that describe the result of the action, such as
5513
+ # the status of the request, the timestamp of the request, and the
5514
+ # resources affected by the request.
4712
5515
  # @return [Types::Operation]
4713
5516
  #
4714
5517
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/GetOperationResult AWS API Documentation
@@ -4731,8 +5534,12 @@ module Aws::Lightsail
4731
5534
  # @return [String]
4732
5535
  #
4733
5536
  # @!attribute [rw] page_token
4734
- # A token used for advancing to the next page of results from your get
4735
- # operations for resource request.
5537
+ # The token to advance to the next page of results from your request.
5538
+ #
5539
+ # To get a page token, perform an initial `GetOperationsForResource`
5540
+ # request. If your results are paginated, the response will return a
5541
+ # next page token that you can specify as the page token in a
5542
+ # subsequent request.
4736
5543
  # @return [String]
4737
5544
  #
4738
5545
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/GetOperationsForResourceRequest AWS API Documentation
@@ -4744,8 +5551,9 @@ module Aws::Lightsail
4744
5551
  end
4745
5552
 
4746
5553
  # @!attribute [rw] operations
4747
- # An array of key-value pairs containing information about the results
4748
- # of your get operations for resource request.
5554
+ # An array of objects that describe the result of the action, such as
5555
+ # the status of the request, the timestamp of the request, and the
5556
+ # resources affected by the request.
4749
5557
  # @return [Array<Types::Operation>]
4750
5558
  #
4751
5559
  # @!attribute [rw] next_page_count
@@ -4759,9 +5567,14 @@ module Aws::Lightsail
4759
5567
  # @return [String]
4760
5568
  #
4761
5569
  # @!attribute [rw] next_page_token
4762
- # An identifier that was returned from the previous call to this
4763
- # operation, which can be used to return the next set of items in the
4764
- # list.
5570
+ # The token to advance to the next page of resutls from your request.
5571
+ #
5572
+ # A next page token is not returned if there are no more results to
5573
+ # display.
5574
+ #
5575
+ # To get the next page of results, perform another
5576
+ # `GetOperationsForResource` request and specify the next page token
5577
+ # using the `pageToken` parameter.
4765
5578
  # @return [String]
4766
5579
  #
4767
5580
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/GetOperationsForResourceResult AWS API Documentation
@@ -4781,8 +5594,12 @@ module Aws::Lightsail
4781
5594
  # }
4782
5595
  #
4783
5596
  # @!attribute [rw] page_token
4784
- # A token used for advancing to the next page of results from your get
4785
- # operations request.
5597
+ # The token to advance to the next page of results from your request.
5598
+ #
5599
+ # To get a page token, perform an initial `GetOperations` request. If
5600
+ # your results are paginated, the response will return a next page
5601
+ # token that you can specify as the page token in a subsequent
5602
+ # request.
4786
5603
  # @return [String]
4787
5604
  #
4788
5605
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/GetOperationsRequest AWS API Documentation
@@ -4793,13 +5610,20 @@ module Aws::Lightsail
4793
5610
  end
4794
5611
 
4795
5612
  # @!attribute [rw] operations
4796
- # An array of key-value pairs containing information about the results
4797
- # of your get operations request.
5613
+ # An array of objects that describe the result of the action, such as
5614
+ # the status of the request, the timestamp of the request, and the
5615
+ # resources affected by the request.
4798
5616
  # @return [Array<Types::Operation>]
4799
5617
  #
4800
5618
  # @!attribute [rw] next_page_token
4801
- # A token used for advancing to the next page of results from your get
4802
- # operations request.
5619
+ # The token to advance to the next page of resutls from your request.
5620
+ #
5621
+ # A next page token is not returned if there are no more results to
5622
+ # display.
5623
+ #
5624
+ # To get the next page of results, perform another `GetOperations`
5625
+ # request and specify the next page token using the `pageToken`
5626
+ # parameter.
4803
5627
  # @return [String]
4804
5628
  #
4805
5629
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/GetOperationsResult AWS API Documentation
@@ -4858,8 +5682,12 @@ module Aws::Lightsail
4858
5682
  # }
4859
5683
  #
4860
5684
  # @!attribute [rw] page_token
4861
- # A token used for advancing to a specific page of results for your
4862
- # `get relational database blueprints` request.
5685
+ # The token to advance to the next page of results from your request.
5686
+ #
5687
+ # To get a page token, perform an initial
5688
+ # `GetRelationalDatabaseBlueprints` request. If your results are
5689
+ # paginated, the response will return a next page token that you can
5690
+ # specify as the page token in a subsequent request.
4863
5691
  # @return [String]
4864
5692
  #
4865
5693
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/GetRelationalDatabaseBlueprintsRequest AWS API Documentation
@@ -4875,8 +5703,14 @@ module Aws::Lightsail
4875
5703
  # @return [Array<Types::RelationalDatabaseBlueprint>]
4876
5704
  #
4877
5705
  # @!attribute [rw] next_page_token
4878
- # A token used for advancing to the next page of results of your get
4879
- # relational database blueprints request.
5706
+ # The token to advance to the next page of resutls from your request.
5707
+ #
5708
+ # A next page token is not returned if there are no more results to
5709
+ # display.
5710
+ #
5711
+ # To get the next page of results, perform another
5712
+ # `GetRelationalDatabaseBlueprints` request and specify the next page
5713
+ # token using the `pageToken` parameter.
4880
5714
  # @return [String]
4881
5715
  #
4882
5716
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/GetRelationalDatabaseBlueprintsResult AWS API Documentation
@@ -4895,8 +5729,12 @@ module Aws::Lightsail
4895
5729
  # }
4896
5730
  #
4897
5731
  # @!attribute [rw] page_token
4898
- # A token used for advancing to a specific page of results for your
4899
- # `get relational database bundles` request.
5732
+ # The token to advance to the next page of results from your request.
5733
+ #
5734
+ # To get a page token, perform an initial
5735
+ # `GetRelationalDatabaseBundles` request. If your results are
5736
+ # paginated, the response will return a next page token that you can
5737
+ # specify as the page token in a subsequent request.
4900
5738
  # @return [String]
4901
5739
  #
4902
5740
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/GetRelationalDatabaseBundlesRequest AWS API Documentation
@@ -4912,8 +5750,14 @@ module Aws::Lightsail
4912
5750
  # @return [Array<Types::RelationalDatabaseBundle>]
4913
5751
  #
4914
5752
  # @!attribute [rw] next_page_token
4915
- # A token used for advancing to the next page of results of your get
4916
- # relational database bundles request.
5753
+ # The token to advance to the next page of resutls from your request.
5754
+ #
5755
+ # A next page token is not returned if there are no more results to
5756
+ # display.
5757
+ #
5758
+ # To get the next page of results, perform another
5759
+ # `GetRelationalDatabaseBundles` request and specify the next page
5760
+ # token using the `pageToken` parameter.
4917
5761
  # @return [String]
4918
5762
  #
4919
5763
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/GetRelationalDatabaseBundlesResult AWS API Documentation
@@ -4947,8 +5791,12 @@ module Aws::Lightsail
4947
5791
  # @return [Integer]
4948
5792
  #
4949
5793
  # @!attribute [rw] page_token
4950
- # A token used for advancing to a specific page of results from for
4951
- # get relational database events request.
5794
+ # The token to advance to the next page of results from your request.
5795
+ #
5796
+ # To get a page token, perform an initial
5797
+ # `GetRelationalDatabaseEvents` request. If your results are
5798
+ # paginated, the response will return a next page token that you can
5799
+ # specify as the page token in a subsequent request.
4952
5800
  # @return [String]
4953
5801
  #
4954
5802
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/GetRelationalDatabaseEventsRequest AWS API Documentation
@@ -4966,8 +5814,14 @@ module Aws::Lightsail
4966
5814
  # @return [Array<Types::RelationalDatabaseEvent>]
4967
5815
  #
4968
5816
  # @!attribute [rw] next_page_token
4969
- # A token used for advancing to the next page of results from your get
4970
- # relational database events request.
5817
+ # The token to advance to the next page of resutls from your request.
5818
+ #
5819
+ # A next page token is not returned if there are no more results to
5820
+ # display.
5821
+ #
5822
+ # To get the next page of results, perform another
5823
+ # `GetRelationalDatabaseEvents` request and specify the next page
5824
+ # token using the `pageToken` parameter.
4971
5825
  # @return [String]
4972
5826
  #
4973
5827
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/GetRelationalDatabaseEventsResult AWS API Documentation
@@ -5040,8 +5894,14 @@ module Aws::Lightsail
5040
5894
  # @return [Boolean]
5041
5895
  #
5042
5896
  # @!attribute [rw] page_token
5043
- # A token used for advancing to a specific page of results for your
5044
- # `get relational database log events` request.
5897
+ # The token to advance to the next or previous page of results from
5898
+ # your request.
5899
+ #
5900
+ # To get a page token, perform an initial
5901
+ # `GetRelationalDatabaseLogEvents` request. If your results are
5902
+ # paginated, the response will return a next forward token and/or next
5903
+ # backward token that you can specify as the page token in a
5904
+ # subsequent request.
5045
5905
  # @return [String]
5046
5906
  #
5047
5907
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/GetRelationalDatabaseLogEventsRequest AWS API Documentation
@@ -5177,11 +6037,66 @@ module Aws::Lightsail
5177
6037
  # @return [String]
5178
6038
  #
5179
6039
  # @!attribute [rw] metric_name
5180
- # The name of the metric data to return.
6040
+ # The metric for which you want to return information.
6041
+ #
6042
+ # Valid relational database metric names are listed below, along with
6043
+ # the most useful `statistics` to include in your request, and the
6044
+ # published `unit` value. All relational database metric data is
6045
+ # available in 1-minute (60 seconds) granularity.
6046
+ #
6047
+ # * <b> <code>CPUUtilization</code> </b> - The percentage of CPU
6048
+ # utilization currently in use on the database.
6049
+ #
6050
+ # `Statistics`\: The most useful statistics are `Maximum` and
6051
+ # `Average`.
6052
+ #
6053
+ # `Unit`\: The published unit is `Percent`.
6054
+ #
6055
+ # * <b> <code>DatabaseConnections</code> </b> - The number of database
6056
+ # connections in use.
6057
+ #
6058
+ # `Statistics`\: The most useful statistics are `Maximum` and `Sum`.
6059
+ #
6060
+ # `Unit`\: The published unit is `Count`.
6061
+ #
6062
+ # * <b> <code>DiskQueueDepth</code> </b> - The number of outstanding
6063
+ # IOs (read/write requests) that are waiting to access the disk.
6064
+ #
6065
+ # `Statistics`\: The most useful statistic is `Sum`.
6066
+ #
6067
+ # `Unit`\: The published unit is `Count`.
6068
+ #
6069
+ # * <b> <code>FreeStorageSpace</code> </b> - The amount of available
6070
+ # storage space.
6071
+ #
6072
+ # `Statistics`\: The most useful statistic is `Sum`.
6073
+ #
6074
+ # `Unit`\: The published unit is `Bytes`.
6075
+ #
6076
+ # * <b> <code>NetworkReceiveThroughput</code> </b> - The incoming
6077
+ # (Receive) network traffic on the database, including both customer
6078
+ # database traffic and AWS traffic used for monitoring and
6079
+ # replication.
6080
+ #
6081
+ # `Statistics`\: The most useful statistic is `Average`.
6082
+ #
6083
+ # `Unit`\: The published unit is `Bytes/Second`.
6084
+ #
6085
+ # * <b> <code>NetworkTransmitThroughput</code> </b> - The outgoing
6086
+ # (Transmit) network traffic on the database, including both
6087
+ # customer database traffic and AWS traffic used for monitoring and
6088
+ # replication.
6089
+ #
6090
+ # `Statistics`\: The most useful statistic is `Average`.
6091
+ #
6092
+ # `Unit`\: The published unit is `Bytes/Second`.
5181
6093
  # @return [String]
5182
6094
  #
5183
6095
  # @!attribute [rw] period
5184
6096
  # The granularity, in seconds, of the returned data points.
6097
+ #
6098
+ # All relational database metric data is available in 1-minute (60
6099
+ # seconds) granularity.
5185
6100
  # @return [Integer]
5186
6101
  #
5187
6102
  # @!attribute [rw] start_time
@@ -5211,11 +6126,37 @@ module Aws::Lightsail
5211
6126
  # @return [Time]
5212
6127
  #
5213
6128
  # @!attribute [rw] unit
5214
- # The unit for the metric data request.
6129
+ # The unit for the metric data request. Valid units depend on the
6130
+ # metric data being required. For the valid units with each available
6131
+ # metric, see the `metricName` parameter.
5215
6132
  # @return [String]
5216
6133
  #
5217
6134
  # @!attribute [rw] statistics
5218
- # The array of statistics for your metric data request.
6135
+ # The statistic for the metric.
6136
+ #
6137
+ # The following statistics are available:
6138
+ #
6139
+ # * `Minimum` - The lowest value observed during the specified period.
6140
+ # Use this value to determine low volumes of activity for your
6141
+ # application.
6142
+ #
6143
+ # * `Maximum` - The highest value observed during the specified
6144
+ # period. Use this value to determine high volumes of activity for
6145
+ # your application.
6146
+ #
6147
+ # * `Sum` - All values submitted for the matching metric added
6148
+ # together. You can use this statistic to determine the total volume
6149
+ # of a metric.
6150
+ #
6151
+ # * `Average` - The value of Sum / SampleCount during the specified
6152
+ # period. By comparing this statistic with the Minimum and Maximum
6153
+ # values, you can determine the full scope of a metric and how close
6154
+ # the average use is to the Minimum and Maximum values. This
6155
+ # comparison helps you to know when to increase or decrease your
6156
+ # resources.
6157
+ #
6158
+ # * `SampleCount` - The count, or number, of data points used for the
6159
+ # statistical calculation.
5219
6160
  # @return [Array<String>]
5220
6161
  #
5221
6162
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/GetRelationalDatabaseMetricDataRequest AWS API Documentation
@@ -5261,8 +6202,12 @@ module Aws::Lightsail
5261
6202
  # @return [String]
5262
6203
  #
5263
6204
  # @!attribute [rw] page_token
5264
- # A token used for advancing to a specific page of results for your
5265
- # `get relational database parameters` request.
6205
+ # The token to advance to the next page of results from your request.
6206
+ #
6207
+ # To get a page token, perform an initial
6208
+ # `GetRelationalDatabaseParameters` request. If your results are
6209
+ # paginated, the response will return a next page token that you can
6210
+ # specify as the page token in a subsequent request.
5266
6211
  # @return [String]
5267
6212
  #
5268
6213
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/GetRelationalDatabaseParametersRequest AWS API Documentation
@@ -5279,8 +6224,14 @@ module Aws::Lightsail
5279
6224
  # @return [Array<Types::RelationalDatabaseParameter>]
5280
6225
  #
5281
6226
  # @!attribute [rw] next_page_token
5282
- # A token used for advancing to the next page of results from your get
5283
- # static IPs request.
6227
+ # The token to advance to the next page of resutls from your request.
6228
+ #
6229
+ # A next page token is not returned if there are no more results to
6230
+ # display.
6231
+ #
6232
+ # To get the next page of results, perform another
6233
+ # `GetRelationalDatabaseParameters` request and specify the next page
6234
+ # token using the `pageToken` parameter.
5284
6235
  # @return [String]
5285
6236
  #
5286
6237
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/GetRelationalDatabaseParametersResult AWS API Documentation
@@ -5357,8 +6308,12 @@ module Aws::Lightsail
5357
6308
  # }
5358
6309
  #
5359
6310
  # @!attribute [rw] page_token
5360
- # A token used for advancing to a specific page of results for your
5361
- # `get relational database snapshots` request.
6311
+ # The token to advance to the next page of results from your request.
6312
+ #
6313
+ # To get a page token, perform an initial
6314
+ # `GetRelationalDatabaseSnapshots` request. If your results are
6315
+ # paginated, the response will return a next page token that you can
6316
+ # specify as the page token in a subsequent request.
5362
6317
  # @return [String]
5363
6318
  #
5364
6319
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/GetRelationalDatabaseSnapshotsRequest AWS API Documentation
@@ -5374,8 +6329,14 @@ module Aws::Lightsail
5374
6329
  # @return [Array<Types::RelationalDatabaseSnapshot>]
5375
6330
  #
5376
6331
  # @!attribute [rw] next_page_token
5377
- # A token used for advancing to the next page of results from your get
5378
- # relational database snapshots request.
6332
+ # The token to advance to the next page of resutls from your request.
6333
+ #
6334
+ # A next page token is not returned if there are no more results to
6335
+ # display.
6336
+ #
6337
+ # To get the next page of results, perform another
6338
+ # `GetRelationalDatabaseSnapshots` request and specify the next page
6339
+ # token using the `pageToken` parameter.
5379
6340
  # @return [String]
5380
6341
  #
5381
6342
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/GetRelationalDatabaseSnapshotsResult AWS API Documentation
@@ -5394,8 +6355,12 @@ module Aws::Lightsail
5394
6355
  # }
5395
6356
  #
5396
6357
  # @!attribute [rw] page_token
5397
- # A token used for advancing to a specific page of results for your
5398
- # `get relational database` request.
6358
+ # The token to advance to the next page of results from your request.
6359
+ #
6360
+ # To get a page token, perform an initial `GetRelationalDatabases`
6361
+ # request. If your results are paginated, the response will return a
6362
+ # next page token that you can specify as the page token in a
6363
+ # subsequent request.
5399
6364
  # @return [String]
5400
6365
  #
5401
6366
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/GetRelationalDatabasesRequest AWS API Documentation
@@ -5411,8 +6376,14 @@ module Aws::Lightsail
5411
6376
  # @return [Array<Types::RelationalDatabase>]
5412
6377
  #
5413
6378
  # @!attribute [rw] next_page_token
5414
- # A token used for advancing to the next page of results from your get
5415
- # relational databases request.
6379
+ # The token to advance to the next page of resutls from your request.
6380
+ #
6381
+ # A next page token is not returned if there are no more results to
6382
+ # display.
6383
+ #
6384
+ # To get the next page of results, perform another
6385
+ # `GetRelationalDatabases` request and specify the next page token
6386
+ # using the `pageToken` parameter.
5416
6387
  # @return [String]
5417
6388
  #
5418
6389
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/GetRelationalDatabasesResult AWS API Documentation
@@ -5461,8 +6432,12 @@ module Aws::Lightsail
5461
6432
  # }
5462
6433
  #
5463
6434
  # @!attribute [rw] page_token
5464
- # A token used for advancing to the next page of results from your get
5465
- # static IPs request.
6435
+ # The token to advance to the next page of results from your request.
6436
+ #
6437
+ # To get a page token, perform an initial `GetStaticIps` request. If
6438
+ # your results are paginated, the response will return a next page
6439
+ # token that you can specify as the page token in a subsequent
6440
+ # request.
5466
6441
  # @return [String]
5467
6442
  #
5468
6443
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/GetStaticIpsRequest AWS API Documentation
@@ -5478,8 +6453,14 @@ module Aws::Lightsail
5478
6453
  # @return [Array<Types::StaticIp>]
5479
6454
  #
5480
6455
  # @!attribute [rw] next_page_token
5481
- # A token used for advancing to the next page of results from your get
5482
- # static IPs request.
6456
+ # The token to advance to the next page of resutls from your request.
6457
+ #
6458
+ # A next page token is not returned if there are no more results to
6459
+ # display.
6460
+ #
6461
+ # To get the next page of results, perform another `GetStaticIps`
6462
+ # request and specify the next page token using the `pageToken`
6463
+ # parameter.
5483
6464
  # @return [String]
5484
6465
  #
5485
6466
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/GetStaticIpsResult AWS API Documentation
@@ -5586,8 +6567,9 @@ module Aws::Lightsail
5586
6567
  end
5587
6568
 
5588
6569
  # @!attribute [rw] operation
5589
- # An array of key-value pairs containing information about the request
5590
- # operation.
6570
+ # An array of objects that describe the result of the action, such as
6571
+ # the status of the request, the timestamp of the request, and the
6572
+ # resources affected by the request.
5591
6573
  # @return [Types::Operation]
5592
6574
  #
5593
6575
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/ImportKeyPairResult AWS API Documentation
@@ -5836,14 +6818,22 @@ module Aws::Lightsail
5836
6818
  #
5837
6819
  # The following configuration options are available:
5838
6820
  #
5839
- # * DEFAULT Use the default firewall settings from the image.
6821
+ # * `DEFAULT` - Use the default firewall settings from the Lightsail
6822
+ # instance blueprint.
6823
+ #
6824
+ # * `INSTANCE` - Use the configured firewall settings from the source
6825
+ # Lightsail instance.
5840
6826
  #
5841
- # * INSTANCE Use the firewall settings from the source Lightsail
5842
- # instance.
6827
+ # * `NONE` - Use the default Amazon EC2 security group.
5843
6828
  #
5844
- # * NONE Default to Amazon EC2.
6829
+ # * `CLOSED` - All ports closed.
5845
6830
  #
5846
- # * CLOSED All ports closed.
6831
+ # <note markdown="1"> If you configured `lightsail-connect` as a `cidrListAliases` on your
6832
+ # instance, or if you chose to allow the Lightsail browser-based SSH
6833
+ # or RDP clients to connect to your instance, that configuration is
6834
+ # not carried over to your new Amazon EC2 instance.
6835
+ #
6836
+ # </note>
5847
6837
  # @return [String]
5848
6838
  #
5849
6839
  # @!attribute [rw] user_data
@@ -5998,18 +6988,44 @@ module Aws::Lightsail
5998
6988
  include Aws::Structure
5999
6989
  end
6000
6990
 
6001
- # Describes information about the instance ports.
6991
+ # Describes information about ports for an Amazon Lightsail instance.
6992
+ #
6993
+ # @!attribute [rw] from_port
6994
+ # The first port in a range of open ports on an instance.
6995
+ #
6996
+ # Allowed ports:
6997
+ #
6998
+ # * TCP and UDP - `0` to `65535`
6002
6999
  #
6003
- # @!attribute [rw] from_port
6004
- # The first port in the range.
7000
+ # * ICMP - `8` (to configure Ping)
7001
+ #
7002
+ # <note markdown="1"> Ping is the only communication supported through the ICMP protocol
7003
+ # in Lightsail. To configure ping, specify the `fromPort` parameter
7004
+ # as `8`, and the `toPort` parameter as `-1`.
7005
+ #
7006
+ # </note>
6005
7007
  # @return [Integer]
6006
7008
  #
6007
7009
  # @!attribute [rw] to_port
6008
- # The last port in the range.
7010
+ # The last port in a range of open ports on an instance.
7011
+ #
7012
+ # Allowed ports:
7013
+ #
7014
+ # * TCP and UDP - `0` to `65535`
7015
+ #
7016
+ # * ICMP - `-1` (to configure Ping)
7017
+ #
7018
+ # <note markdown="1"> Ping is the only communication supported through the ICMP protocol
7019
+ # in Lightsail. To configure ping, specify the `fromPort` parameter
7020
+ # as `8`, and the `toPort` parameter as `-1`.
7021
+ #
7022
+ # </note>
6009
7023
  # @return [Integer]
6010
7024
  #
6011
7025
  # @!attribute [rw] protocol
6012
- # The protocol being used. Can be one of the following.
7026
+ # The IP protocol name.
7027
+ #
7028
+ # The name can be one of the following:
6013
7029
  #
6014
7030
  # * `tcp` - Transmission Control Protocol (TCP) provides reliable,
6015
7031
  # ordered, and error-checked delivery of streamed data between
@@ -6018,7 +7034,7 @@ module Aws::Lightsail
6018
7034
  # service, use UDP instead.
6019
7035
  #
6020
7036
  # * `all` - All transport layer protocol types. For more general
6021
- # information, see [Transport layer][1] on Wikipedia.
7037
+ # information, see [Transport layer][1] on *Wikipedia*.
6022
7038
  #
6023
7039
  # * `udp` - With User Datagram Protocol (UDP), computer applications
6024
7040
  # can send messages (or datagrams) to other hosts on an Internet
@@ -6029,14 +7045,26 @@ module Aws::Lightsail
6029
7045
  # latency over reliability. If you do require reliable data stream
6030
7046
  # service, use TCP instead.
6031
7047
  #
7048
+ # * `icmp` - Internet Control Message Protocol (ICMP) is used to send
7049
+ # error messages and operational information indicating success or
7050
+ # failure when communicating with an instance. For example, an error
7051
+ # is indicated when an instance could not be reached.
7052
+ #
7053
+ # <note markdown="1"> Ping is the only communication supported through the ICMP protocol
7054
+ # in Lightsail. To configure ping, specify the `fromPort` parameter
7055
+ # as `8`, and the `toPort` parameter as `-1`.
7056
+ #
7057
+ # </note>
7058
+ #
6032
7059
  #
6033
7060
  #
6034
7061
  # [1]: https://en.wikipedia.org/wiki/Transport_layer
6035
7062
  # @return [String]
6036
7063
  #
6037
7064
  # @!attribute [rw] access_from
6038
- # The location from which access is allowed (e.g., `Anywhere
6039
- # (0.0.0.0/0)`).
7065
+ # The location from which access is allowed. For example, `Anywhere
7066
+ # (0.0.0.0/0)`, or `Custom` if a specific IP address or range of IP
7067
+ # addresses is allowed.
6040
7068
  # @return [String]
6041
7069
  #
6042
7070
  # @!attribute [rw] access_type
@@ -6044,13 +7072,39 @@ module Aws::Lightsail
6044
7072
  # @return [String]
6045
7073
  #
6046
7074
  # @!attribute [rw] common_name
6047
- # The common name.
7075
+ # The common name of the port information.
6048
7076
  # @return [String]
6049
7077
  #
6050
7078
  # @!attribute [rw] access_direction
6051
7079
  # The access direction (`inbound` or `outbound`).
7080
+ #
7081
+ # <note markdown="1"> Lightsail currently supports only `inbound` access direction.
7082
+ #
7083
+ # </note>
6052
7084
  # @return [String]
6053
7085
  #
7086
+ # @!attribute [rw] cidrs
7087
+ # The IP address, or range of IP addresses in CIDR notation, that are
7088
+ # allowed to connect to an instance through the ports, and the
7089
+ # protocol. Lightsail supports IPv4 addresses.
7090
+ #
7091
+ # For more information about CIDR block notation, see [Classless
7092
+ # Inter-Domain Routing][1] on *Wikipedia*.
7093
+ #
7094
+ #
7095
+ #
7096
+ # [1]: https://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing#CIDR_notation
7097
+ # @return [Array<String>]
7098
+ #
7099
+ # @!attribute [rw] cidr_list_aliases
7100
+ # An alias that defines access for a preconfigured range of IP
7101
+ # addresses.
7102
+ #
7103
+ # The only alias currently supported is `lightsail-connect`, which
7104
+ # allows IP addresses of the browser-based RDP/SSH client in the
7105
+ # Lightsail console to connect to your instance.
7106
+ # @return [Array<String>]
7107
+ #
6054
7108
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/InstancePortInfo AWS API Documentation
6055
7109
  #
6056
7110
  class InstancePortInfo < Struct.new(
@@ -6060,22 +7114,51 @@ module Aws::Lightsail
6060
7114
  :access_from,
6061
7115
  :access_type,
6062
7116
  :common_name,
6063
- :access_direction)
7117
+ :access_direction,
7118
+ :cidrs,
7119
+ :cidr_list_aliases)
6064
7120
  include Aws::Structure
6065
7121
  end
6066
7122
 
6067
- # Describes the port state.
7123
+ # Describes open ports on an instance, the IP addresses allowed to
7124
+ # connect to the instance through the ports, and the protocol.
6068
7125
  #
6069
7126
  # @!attribute [rw] from_port
6070
- # The first port in the range.
7127
+ # The first port in a range of open ports on an instance.
7128
+ #
7129
+ # Allowed ports:
7130
+ #
7131
+ # * TCP and UDP - `0` to `65535`
7132
+ #
7133
+ # * ICMP - `8` (to configure Ping)
7134
+ #
7135
+ # <note markdown="1"> Ping is the only communication supported through the ICMP protocol
7136
+ # in Lightsail. To configure ping, specify the `fromPort` parameter
7137
+ # as `8`, and the `toPort` parameter as `-1`.
7138
+ #
7139
+ # </note>
6071
7140
  # @return [Integer]
6072
7141
  #
6073
7142
  # @!attribute [rw] to_port
6074
- # The last port in the range.
7143
+ # The last port in a range of open ports on an instance.
7144
+ #
7145
+ # Allowed ports:
7146
+ #
7147
+ # * TCP and UDP - `0` to `65535`
7148
+ #
7149
+ # * ICMP - `-1` (to configure Ping)
7150
+ #
7151
+ # <note markdown="1"> Ping is the only communication supported through the ICMP protocol
7152
+ # in Lightsail. To configure ping, specify the `fromPort` parameter
7153
+ # as `8`, and the `toPort` parameter as `-1`.
7154
+ #
7155
+ # </note>
6075
7156
  # @return [Integer]
6076
7157
  #
6077
7158
  # @!attribute [rw] protocol
6078
- # The protocol being used. Can be one of the following.
7159
+ # The IP protocol name.
7160
+ #
7161
+ # The name can be one of the following:
6079
7162
  #
6080
7163
  # * `tcp` - Transmission Control Protocol (TCP) provides reliable,
6081
7164
  # ordered, and error-checked delivery of streamed data between
@@ -6084,7 +7167,7 @@ module Aws::Lightsail
6084
7167
  # service, use UDP instead.
6085
7168
  #
6086
7169
  # * `all` - All transport layer protocol types. For more general
6087
- # information, see [Transport layer][1] on Wikipedia.
7170
+ # information, see [Transport layer][1] on *Wikipedia*.
6088
7171
  #
6089
7172
  # * `udp` - With User Datagram Protocol (UDP), computer applications
6090
7173
  # can send messages (or datagrams) to other hosts on an Internet
@@ -6095,6 +7178,17 @@ module Aws::Lightsail
6095
7178
  # latency over reliability. If you do require reliable data stream
6096
7179
  # service, use TCP instead.
6097
7180
  #
7181
+ # * `icmp` - Internet Control Message Protocol (ICMP) is used to send
7182
+ # error messages and operational information indicating success or
7183
+ # failure when communicating with an instance. For example, an error
7184
+ # is indicated when an instance could not be reached.
7185
+ #
7186
+ # <note markdown="1"> Ping is the only communication supported through the ICMP protocol
7187
+ # in Lightsail. To configure ping, specify the `fromPort` parameter
7188
+ # as `8`, and the `toPort` parameter as `-1`.
7189
+ #
7190
+ # </note>
7191
+ #
6098
7192
  #
6099
7193
  #
6100
7194
  # [1]: https://en.wikipedia.org/wiki/Transport_layer
@@ -6102,15 +7196,43 @@ module Aws::Lightsail
6102
7196
  #
6103
7197
  # @!attribute [rw] state
6104
7198
  # Specifies whether the instance port is `open` or `closed`.
7199
+ #
7200
+ # <note markdown="1"> The port state for Lightsail instances is always `open`.
7201
+ #
7202
+ # </note>
6105
7203
  # @return [String]
6106
7204
  #
7205
+ # @!attribute [rw] cidrs
7206
+ # The IP address, or range of IP addresses in CIDR notation, that are
7207
+ # allowed to connect to an instance through the ports, and the
7208
+ # protocol. Lightsail supports IPv4 addresses.
7209
+ #
7210
+ # For more information about CIDR block notation, see [Classless
7211
+ # Inter-Domain Routing][1] on *Wikipedia*.
7212
+ #
7213
+ #
7214
+ #
7215
+ # [1]: https://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing#CIDR_notation
7216
+ # @return [Array<String>]
7217
+ #
7218
+ # @!attribute [rw] cidr_list_aliases
7219
+ # An alias that defines access for a preconfigured range of IP
7220
+ # addresses.
7221
+ #
7222
+ # The only alias currently supported is `lightsail-connect`, which
7223
+ # allows IP addresses of the browser-based RDP/SSH client in the
7224
+ # Lightsail console to connect to your instance.
7225
+ # @return [Array<String>]
7226
+ #
6107
7227
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/InstancePortState AWS API Documentation
6108
7228
  #
6109
7229
  class InstancePortState < Struct.new(
6110
7230
  :from_port,
6111
7231
  :to_port,
6112
7232
  :protocol,
6113
- :state)
7233
+ :state,
7234
+ :cidrs,
7235
+ :cidr_list_aliases)
6114
7236
  include Aws::Structure
6115
7237
  end
6116
7238
 
@@ -6823,6 +7945,39 @@ module Aws::Lightsail
6823
7945
  include Aws::Structure
6824
7946
  end
6825
7947
 
7948
+ # Describes resource being monitored by an alarm.
7949
+ #
7950
+ # An alarm is a way to monitor your Amazon Lightsail resource metrics.
7951
+ # For more information, see [Alarms in Amazon Lightsail][1].
7952
+ #
7953
+ #
7954
+ #
7955
+ # [1]: https://lightsail.aws.amazon.com/ls/docs/en_us/articles/amazon-lightsail-alarms
7956
+ #
7957
+ # @!attribute [rw] arn
7958
+ # The Amazon Resource Name (ARN) of the resource being monitored.
7959
+ # @return [String]
7960
+ #
7961
+ # @!attribute [rw] name
7962
+ # The name of the Lightsail resource being monitored.
7963
+ # @return [String]
7964
+ #
7965
+ # @!attribute [rw] resource_type
7966
+ # The Lightsail resource type of the resource being monitored.
7967
+ #
7968
+ # Instances, load balancers, and relational databases are the only
7969
+ # Lightsail resources that can currently be monitored by alarms.
7970
+ # @return [String]
7971
+ #
7972
+ # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/MonitoredResourceInfo AWS API Documentation
7973
+ #
7974
+ class MonitoredResourceInfo < Struct.new(
7975
+ :arn,
7976
+ :name,
7977
+ :resource_type)
7978
+ include Aws::Structure
7979
+ end
7980
+
6826
7981
  # Describes the monthly data transfer in and out of your virtual private
6827
7982
  # server (or *instance*).
6828
7983
  #
@@ -6868,19 +8023,19 @@ module Aws::Lightsail
6868
8023
  # port_info: { # required
6869
8024
  # from_port: 1,
6870
8025
  # to_port: 1,
6871
- # protocol: "tcp", # accepts tcp, all, udp
8026
+ # protocol: "tcp", # accepts tcp, all, udp, icmp
8027
+ # cidrs: ["string"],
8028
+ # cidr_list_aliases: ["string"],
6872
8029
  # },
6873
8030
  # instance_name: "ResourceName", # required
6874
8031
  # }
6875
8032
  #
6876
8033
  # @!attribute [rw] port_info
6877
- # An array of key-value pairs containing information about the port
6878
- # mappings.
8034
+ # An object to describe the ports to open for the specified instance.
6879
8035
  # @return [Types::PortInfo]
6880
8036
  #
6881
8037
  # @!attribute [rw] instance_name
6882
- # The name of the instance for which you want to open the public
6883
- # ports.
8038
+ # The name of the instance for which to open ports.
6884
8039
  # @return [String]
6885
8040
  #
6886
8041
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/OpenInstancePublicPortsRequest AWS API Documentation
@@ -6892,8 +8047,9 @@ module Aws::Lightsail
6892
8047
  end
6893
8048
 
6894
8049
  # @!attribute [rw] operation
6895
- # An array of key-value pairs containing information about the request
6896
- # operation.
8050
+ # An array of objects that describe the result of the action, such as
8051
+ # the status of the request, the timestamp of the request, and the
8052
+ # resources affected by the request.
6897
8053
  # @return [Types::Operation]
6898
8054
  #
6899
8055
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/OpenInstancePublicPortsResult AWS API Documentation
@@ -7044,8 +8200,9 @@ module Aws::Lightsail
7044
8200
  class PeerVpcRequest < Aws::EmptyStructure; end
7045
8201
 
7046
8202
  # @!attribute [rw] operation
7047
- # An array of key-value pairs containing information about the request
7048
- # operation.
8203
+ # An array of objects that describe the result of the action, such as
8204
+ # the status of the request, the timestamp of the request, and the
8205
+ # resources affected by the request.
7049
8206
  # @return [Types::Operation]
7050
8207
  #
7051
8208
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/PeerVpcResult AWS API Documentation
@@ -7102,8 +8259,8 @@ module Aws::Lightsail
7102
8259
  include Aws::Structure
7103
8260
  end
7104
8261
 
7105
- # Describes information about the ports on your virtual private server
7106
- # (or *instance*).
8262
+ # Describes ports to open on an instance, the IP addresses allowed to
8263
+ # connect to the instance through the ports, and the protocol.
7107
8264
  #
7108
8265
  # @note When making an API call, you may pass PortInfo
7109
8266
  # data as a hash:
@@ -7111,27 +8268,312 @@ module Aws::Lightsail
7111
8268
  # {
7112
8269
  # from_port: 1,
7113
8270
  # to_port: 1,
7114
- # protocol: "tcp", # accepts tcp, all, udp
8271
+ # protocol: "tcp", # accepts tcp, all, udp, icmp
8272
+ # cidrs: ["string"],
8273
+ # cidr_list_aliases: ["string"],
7115
8274
  # }
7116
8275
  #
7117
8276
  # @!attribute [rw] from_port
7118
- # The first port in the range.
8277
+ # The first port in a range of open ports on an instance.
8278
+ #
8279
+ # Allowed ports:
8280
+ #
8281
+ # * TCP and UDP - `0` to `65535`
8282
+ #
8283
+ # * ICMP - `8` (to configure Ping)
8284
+ #
8285
+ # <note markdown="1"> Ping is the only communication supported through the ICMP protocol
8286
+ # in Lightsail. To configure ping, specify the `fromPort` parameter
8287
+ # as `8`, and the `toPort` parameter as `-1`.
8288
+ #
8289
+ # </note>
7119
8290
  # @return [Integer]
7120
8291
  #
7121
8292
  # @!attribute [rw] to_port
7122
- # The last port in the range.
8293
+ # The last port in a range of open ports on an instance.
8294
+ #
8295
+ # Allowed ports:
8296
+ #
8297
+ # * TCP and UDP - `0` to `65535`
8298
+ #
8299
+ # * ICMP - `-1` (to configure Ping)
8300
+ #
8301
+ # <note markdown="1"> Ping is the only communication supported through the ICMP protocol
8302
+ # in Lightsail. To configure ping, specify the `fromPort` parameter
8303
+ # as `8`, and the `toPort` parameter as `-1`.
8304
+ #
8305
+ # </note>
7123
8306
  # @return [Integer]
7124
8307
  #
7125
8308
  # @!attribute [rw] protocol
7126
- # The protocol.
8309
+ # The IP protocol name.
8310
+ #
8311
+ # The name can be one of the following:
8312
+ #
8313
+ # * `tcp` - Transmission Control Protocol (TCP) provides reliable,
8314
+ # ordered, and error-checked delivery of streamed data between
8315
+ # applications running on hosts communicating by an IP network. If
8316
+ # you have an application that doesn't require reliable data stream
8317
+ # service, use UDP instead.
8318
+ #
8319
+ # * `all` - All transport layer protocol types. For more general
8320
+ # information, see [Transport layer][1] on *Wikipedia*.
8321
+ #
8322
+ # * `udp` - With User Datagram Protocol (UDP), computer applications
8323
+ # can send messages (or datagrams) to other hosts on an Internet
8324
+ # Protocol (IP) network. Prior communications are not required to
8325
+ # set up transmission channels or data paths. Applications that
8326
+ # don't require reliable data stream service can use UDP, which
8327
+ # provides a connectionless datagram service that emphasizes reduced
8328
+ # latency over reliability. If you do require reliable data stream
8329
+ # service, use TCP instead.
8330
+ #
8331
+ # * `icmp` - Internet Control Message Protocol (ICMP) is used to send
8332
+ # error messages and operational information indicating success or
8333
+ # failure when communicating with an instance. For example, an error
8334
+ # is indicated when an instance could not be reached.
8335
+ #
8336
+ # <note markdown="1"> Ping is the only communication supported through the ICMP protocol
8337
+ # in Lightsail. To configure ping, specify the `fromPort` parameter
8338
+ # as `8`, and the `toPort` parameter as `-1`.
8339
+ #
8340
+ # </note>
8341
+ #
8342
+ #
8343
+ #
8344
+ # [1]: https://en.wikipedia.org/wiki/Transport_layer
7127
8345
  # @return [String]
7128
8346
  #
8347
+ # @!attribute [rw] cidrs
8348
+ # The IP address, or range of IP addresses in CIDR notation, that are
8349
+ # allowed to connect to an instance through the ports, and the
8350
+ # protocol. Lightsail supports IPv4 addresses.
8351
+ #
8352
+ # Examples:
8353
+ #
8354
+ # * To allow the IP address `192.0.2.44`, specify `192.0.2.44` or
8355
+ # `192.0.2.44/32`.
8356
+ #
8357
+ # * To allow the IP addresses `192.0.2.0` to `192.0.2.255`, specify
8358
+ # `192.0.2.0/24`.
8359
+ #
8360
+ # For more information about CIDR block notation, see [Classless
8361
+ # Inter-Domain Routing][1] on *Wikipedia*.
8362
+ #
8363
+ #
8364
+ #
8365
+ # [1]: https://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing#CIDR_notation
8366
+ # @return [Array<String>]
8367
+ #
8368
+ # @!attribute [rw] cidr_list_aliases
8369
+ # An alias that defines access for a preconfigured range of IP
8370
+ # addresses.
8371
+ #
8372
+ # The only alias currently supported is `lightsail-connect`, which
8373
+ # allows IP addresses of the browser-based RDP/SSH client in the
8374
+ # Lightsail console to connect to your instance.
8375
+ # @return [Array<String>]
8376
+ #
7129
8377
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/PortInfo AWS API Documentation
7130
8378
  #
7131
8379
  class PortInfo < Struct.new(
7132
8380
  :from_port,
7133
8381
  :to_port,
7134
- :protocol)
8382
+ :protocol,
8383
+ :cidrs,
8384
+ :cidr_list_aliases)
8385
+ include Aws::Structure
8386
+ end
8387
+
8388
+ # @note When making an API call, you may pass PutAlarmRequest
8389
+ # data as a hash:
8390
+ #
8391
+ # {
8392
+ # alarm_name: "ResourceName", # required
8393
+ # metric_name: "CPUUtilization", # required, accepts CPUUtilization, NetworkIn, NetworkOut, StatusCheckFailed, StatusCheckFailed_Instance, StatusCheckFailed_System, ClientTLSNegotiationErrorCount, HealthyHostCount, UnhealthyHostCount, HTTPCode_LB_4XX_Count, HTTPCode_LB_5XX_Count, HTTPCode_Instance_2XX_Count, HTTPCode_Instance_3XX_Count, HTTPCode_Instance_4XX_Count, HTTPCode_Instance_5XX_Count, InstanceResponseTime, RejectedConnectionCount, RequestCount, DatabaseConnections, DiskQueueDepth, FreeStorageSpace, NetworkReceiveThroughput, NetworkTransmitThroughput
8394
+ # monitored_resource_name: "ResourceName", # required
8395
+ # comparison_operator: "GreaterThanOrEqualToThreshold", # required, accepts GreaterThanOrEqualToThreshold, GreaterThanThreshold, LessThanThreshold, LessThanOrEqualToThreshold
8396
+ # threshold: 1.0, # required
8397
+ # evaluation_periods: 1, # required
8398
+ # datapoints_to_alarm: 1,
8399
+ # treat_missing_data: "breaching", # accepts breaching, notBreaching, ignore, missing
8400
+ # contact_protocols: ["Email"], # accepts Email, SMS
8401
+ # notification_triggers: ["OK"], # accepts OK, ALARM, INSUFFICIENT_DATA
8402
+ # notification_enabled: false,
8403
+ # }
8404
+ #
8405
+ # @!attribute [rw] alarm_name
8406
+ # The name for the alarm. Specify the name of an existing alarm to
8407
+ # update, and overwrite the previous configuration of the alarm.
8408
+ # @return [String]
8409
+ #
8410
+ # @!attribute [rw] metric_name
8411
+ # The name of the metric to associate with the alarm.
8412
+ #
8413
+ # You can configure up to two alarms per metric.
8414
+ #
8415
+ # The following metrics are available for each resource type:
8416
+ #
8417
+ # * **Instances**\: `CPUUtilization`, `NetworkIn`, `NetworkOut`,
8418
+ # `StatusCheckFailed`, `StatusCheckFailed_Instance`, and
8419
+ # `StatusCheckFailed_System`.
8420
+ #
8421
+ # * **Load balancers**\: `ClientTLSNegotiationErrorCount`,
8422
+ # `HealthyHostCount`, `UnhealthyHostCount`, `HTTPCode_LB_4XX_Count`,
8423
+ # `HTTPCode_LB_5XX_Count`, `HTTPCode_Instance_2XX_Count`,
8424
+ # `HTTPCode_Instance_3XX_Count`, `HTTPCode_Instance_4XX_Count`,
8425
+ # `HTTPCode_Instance_5XX_Count`, `InstanceResponseTime`,
8426
+ # `RejectedConnectionCount`, and `RequestCount`.
8427
+ #
8428
+ # * **Relational databases**\: `CPUUtilization`,
8429
+ # `DatabaseConnections`, `DiskQueueDepth`, `FreeStorageSpace`,
8430
+ # `NetworkReceiveThroughput`, and `NetworkTransmitThroughput`.
8431
+ # @return [String]
8432
+ #
8433
+ # @!attribute [rw] monitored_resource_name
8434
+ # The name of the Lightsail resource that will be monitored.
8435
+ #
8436
+ # Instances, load balancers, and relational databases are the only
8437
+ # Lightsail resources that can currently be monitored by alarms.
8438
+ # @return [String]
8439
+ #
8440
+ # @!attribute [rw] comparison_operator
8441
+ # The arithmetic operation to use when comparing the specified
8442
+ # statistic to the threshold. The specified statistic value is used as
8443
+ # the first operand.
8444
+ # @return [String]
8445
+ #
8446
+ # @!attribute [rw] threshold
8447
+ # The value against which the specified statistic is compared.
8448
+ # @return [Float]
8449
+ #
8450
+ # @!attribute [rw] evaluation_periods
8451
+ # The number of most recent periods over which data is compared to the
8452
+ # specified threshold. If you are setting an "M out of N" alarm,
8453
+ # this value (`evaluationPeriods`) is the N.
8454
+ #
8455
+ # If you are setting an alarm that requires that a number of
8456
+ # consecutive data points be breaching to trigger the alarm, this
8457
+ # value specifies the rolling period of time in which data points are
8458
+ # evaluated.
8459
+ #
8460
+ # Each evaluation period is five minutes long. For example, specify an
8461
+ # evaluation period of 24 to evaluate a metric over a rolling period
8462
+ # of two hours.
8463
+ #
8464
+ # You can specify a minimum valuation period of 1 (5 minutes), and a
8465
+ # maximum evaluation period of 288 (24 hours).
8466
+ # @return [Integer]
8467
+ #
8468
+ # @!attribute [rw] datapoints_to_alarm
8469
+ # The number of data points that must be not within the specified
8470
+ # threshold to trigger the alarm. If you are setting an "M out of N"
8471
+ # alarm, this value (`datapointsToAlarm`) is the M.
8472
+ # @return [Integer]
8473
+ #
8474
+ # @!attribute [rw] treat_missing_data
8475
+ # Sets how this alarm will handle missing data points.
8476
+ #
8477
+ # An alarm can treat missing data in the following ways:
8478
+ #
8479
+ # * `breaching` - Assume the missing data is not within the threshold.
8480
+ # Missing data counts towards the number of times the metric is not
8481
+ # within the threshold.
8482
+ #
8483
+ # * `notBreaching` - Assume the missing data is within the threshold.
8484
+ # Missing data does not count towards the number of times the metric
8485
+ # is not within the threshold.
8486
+ #
8487
+ # * `ignore` - Ignore the missing data. Maintains the current alarm
8488
+ # state.
8489
+ #
8490
+ # * `missing` - Missing data is treated as missing.
8491
+ #
8492
+ # If `treatMissingData` is not specified, the default behavior of
8493
+ # `missing` is used.
8494
+ # @return [String]
8495
+ #
8496
+ # @!attribute [rw] contact_protocols
8497
+ # The contact protocols to use for the alarm, such as `Email`, `SMS`
8498
+ # (text messaging), or both.
8499
+ #
8500
+ # A notification is sent via the specified contact protocol if
8501
+ # notifications are enabled for the alarm, and when the alarm is
8502
+ # triggered.
8503
+ #
8504
+ # A notification is not sent if a contact protocol is not specified,
8505
+ # if the specified contact protocol is not configured in the AWS
8506
+ # Region, or if notifications are not enabled for the alarm using the
8507
+ # `notificationEnabled` paramater.
8508
+ #
8509
+ # Use the `CreateContactMethod` action to configure a contact protocol
8510
+ # in an AWS Region.
8511
+ # @return [Array<String>]
8512
+ #
8513
+ # @!attribute [rw] notification_triggers
8514
+ # The alarm states that trigger a notification.
8515
+ #
8516
+ # An alarm has the following possible states:
8517
+ #
8518
+ # * `ALARM` - The metric is outside of the defined threshold.
8519
+ #
8520
+ # * `INSUFFICIENT_DATA` - The alarm has just started, the metric is
8521
+ # not available, or not enough data is available for the metric to
8522
+ # determine the alarm state.
8523
+ #
8524
+ # * `OK` - The metric is within the defined threshold.
8525
+ #
8526
+ # When you specify a notification trigger, the `ALARM` state must be
8527
+ # specified. The `INSUFFICIENT_DATA` and `OK` states can be specified
8528
+ # in addition to the `ALARM` state.
8529
+ #
8530
+ # * If you specify `OK` as an alarm trigger, a notification is sent
8531
+ # when the alarm switches from an `ALARM` or `INSUFFICIENT_DATA`
8532
+ # alarm state to an `OK` state. This can be thought of as an *all
8533
+ # clear* alarm notification.
8534
+ #
8535
+ # * If you specify `INSUFFICIENT_DATA` as the alarm trigger, a
8536
+ # notification is sent when the alarm switches from an `OK` or
8537
+ # `ALARM` alarm state to an `INSUFFICIENT_DATA` state.
8538
+ #
8539
+ # The notification trigger defaults to `ALARM` if you don't specify
8540
+ # this parameter.
8541
+ # @return [Array<String>]
8542
+ #
8543
+ # @!attribute [rw] notification_enabled
8544
+ # Indicates whether the alarm is enabled.
8545
+ #
8546
+ # Notifications are enabled by default if you don't specify this
8547
+ # parameter.
8548
+ # @return [Boolean]
8549
+ #
8550
+ # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/PutAlarmRequest AWS API Documentation
8551
+ #
8552
+ class PutAlarmRequest < Struct.new(
8553
+ :alarm_name,
8554
+ :metric_name,
8555
+ :monitored_resource_name,
8556
+ :comparison_operator,
8557
+ :threshold,
8558
+ :evaluation_periods,
8559
+ :datapoints_to_alarm,
8560
+ :treat_missing_data,
8561
+ :contact_protocols,
8562
+ :notification_triggers,
8563
+ :notification_enabled)
8564
+ include Aws::Structure
8565
+ end
8566
+
8567
+ # @!attribute [rw] operations
8568
+ # An array of objects that describe the result of the action, such as
8569
+ # the status of the request, the timestamp of the request, and the
8570
+ # resources affected by the request.
8571
+ # @return [Array<Types::Operation>]
8572
+ #
8573
+ # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/PutAlarmResult AWS API Documentation
8574
+ #
8575
+ class PutAlarmResult < Struct.new(
8576
+ :operations)
7135
8577
  include Aws::Structure
7136
8578
  end
7137
8579
 
@@ -7143,18 +8585,21 @@ module Aws::Lightsail
7143
8585
  # {
7144
8586
  # from_port: 1,
7145
8587
  # to_port: 1,
7146
- # protocol: "tcp", # accepts tcp, all, udp
8588
+ # protocol: "tcp", # accepts tcp, all, udp, icmp
8589
+ # cidrs: ["string"],
8590
+ # cidr_list_aliases: ["string"],
7147
8591
  # },
7148
8592
  # ],
7149
8593
  # instance_name: "ResourceName", # required
7150
8594
  # }
7151
8595
  #
7152
8596
  # @!attribute [rw] port_infos
7153
- # Specifies information about the public port(s).
8597
+ # An array of objects to describe the ports to open for the specified
8598
+ # instance.
7154
8599
  # @return [Array<Types::PortInfo>]
7155
8600
  #
7156
8601
  # @!attribute [rw] instance_name
7157
- # The Lightsail instance name of the public port(s) you are setting.
8602
+ # The name of the instance for which to open ports.
7158
8603
  # @return [String]
7159
8604
  #
7160
8605
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/PutInstancePublicPortsRequest AWS API Documentation
@@ -7166,7 +8611,9 @@ module Aws::Lightsail
7166
8611
  end
7167
8612
 
7168
8613
  # @!attribute [rw] operation
7169
- # Describes metadata about the operation you just executed.
8614
+ # An array of objects that describe the result of the action, such as
8615
+ # the status of the request, the timestamp of the request, and the
8616
+ # resources affected by the request.
7170
8617
  # @return [Types::Operation]
7171
8618
  #
7172
8619
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/PutInstancePublicPortsResult AWS API Documentation
@@ -7195,8 +8642,9 @@ module Aws::Lightsail
7195
8642
  end
7196
8643
 
7197
8644
  # @!attribute [rw] operations
7198
- # An array of key-value pairs containing information about the request
7199
- # operations.
8645
+ # An array of objects that describe the result of the action, such as
8646
+ # the status of the request, the timestamp of the request, and the
8647
+ # resources affected by the request.
7200
8648
  # @return [Array<Types::Operation>]
7201
8649
  #
7202
8650
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/RebootInstanceResult AWS API Documentation
@@ -7225,8 +8673,9 @@ module Aws::Lightsail
7225
8673
  end
7226
8674
 
7227
8675
  # @!attribute [rw] operations
7228
- # An object describing the result of your reboot relational database
7229
- # request.
8676
+ # An array of objects that describe the result of the action, such as
8677
+ # the status of the request, the timestamp of the request, and the
8678
+ # resources affected by the request.
7230
8679
  # @return [Array<Types::Operation>]
7231
8680
  #
7232
8681
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/RebootRelationalDatabaseResult AWS API Documentation
@@ -7404,6 +8853,10 @@ module Aws::Lightsail
7404
8853
  # Describes the pending maintenance actions for the database.
7405
8854
  # @return [Array<Types::PendingMaintenanceAction>]
7406
8855
  #
8856
+ # @!attribute [rw] ca_certificate_identifier
8857
+ # The certificate associated with the database.
8858
+ # @return [String]
8859
+ #
7407
8860
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/RelationalDatabase AWS API Documentation
7408
8861
  #
7409
8862
  class RelationalDatabase < Struct.new(
@@ -7431,7 +8884,8 @@ module Aws::Lightsail
7431
8884
  :preferred_maintenance_window,
7432
8885
  :publicly_accessible,
7433
8886
  :master_endpoint,
7434
- :pending_maintenance_actions)
8887
+ :pending_maintenance_actions,
8888
+ :ca_certificate_identifier)
7435
8889
  include Aws::Structure
7436
8890
  end
7437
8891
 
@@ -7785,8 +9239,9 @@ module Aws::Lightsail
7785
9239
  end
7786
9240
 
7787
9241
  # @!attribute [rw] operations
7788
- # An array of key-value pairs containing information about the request
7789
- # operation.
9242
+ # An array of objects that describe the result of the action, such as
9243
+ # the status of the request, the timestamp of the request, and the
9244
+ # resources affected by the request.
7790
9245
  # @return [Array<Types::Operation>]
7791
9246
  #
7792
9247
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/ReleaseStaticIpResult AWS API Documentation
@@ -7815,6 +9270,37 @@ module Aws::Lightsail
7815
9270
  include Aws::Structure
7816
9271
  end
7817
9272
 
9273
+ # @note When making an API call, you may pass SendContactMethodVerificationRequest
9274
+ # data as a hash:
9275
+ #
9276
+ # {
9277
+ # protocol: "Email", # required, accepts Email
9278
+ # }
9279
+ #
9280
+ # @!attribute [rw] protocol
9281
+ # The protocol to verify, such as `Email` or `SMS` (text messaging).
9282
+ # @return [String]
9283
+ #
9284
+ # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/SendContactMethodVerificationRequest AWS API Documentation
9285
+ #
9286
+ class SendContactMethodVerificationRequest < Struct.new(
9287
+ :protocol)
9288
+ include Aws::Structure
9289
+ end
9290
+
9291
+ # @!attribute [rw] operations
9292
+ # An array of objects that describe the result of the action, such as
9293
+ # the status of the request, the timestamp of the request, and the
9294
+ # resources affected by the request.
9295
+ # @return [Array<Types::Operation>]
9296
+ #
9297
+ # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/SendContactMethodVerificationResult AWS API Documentation
9298
+ #
9299
+ class SendContactMethodVerificationResult < Struct.new(
9300
+ :operations)
9301
+ include Aws::Structure
9302
+ end
9303
+
7818
9304
  # A general service exception.
7819
9305
  #
7820
9306
  # @!attribute [rw] code
@@ -7858,8 +9344,9 @@ module Aws::Lightsail
7858
9344
  end
7859
9345
 
7860
9346
  # @!attribute [rw] operations
7861
- # An array of key-value pairs containing information about the request
7862
- # operation.
9347
+ # An array of objects that describe the result of the action, such as
9348
+ # the status of the request, the timestamp of the request, and the
9349
+ # resources affected by the request.
7863
9350
  # @return [Array<Types::Operation>]
7864
9351
  #
7865
9352
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/StartInstanceResult AWS API Documentation
@@ -7888,8 +9375,9 @@ module Aws::Lightsail
7888
9375
  end
7889
9376
 
7890
9377
  # @!attribute [rw] operations
7891
- # An object describing the result of your start relational database
7892
- # request.
9378
+ # An array of objects that describe the result of the action, such as
9379
+ # the status of the request, the timestamp of the request, and the
9380
+ # resources affected by the request.
7893
9381
  # @return [Array<Types::Operation>]
7894
9382
  #
7895
9383
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/StartRelationalDatabaseResult AWS API Documentation
@@ -7988,8 +9476,9 @@ module Aws::Lightsail
7988
9476
  end
7989
9477
 
7990
9478
  # @!attribute [rw] operations
7991
- # An array of key-value pairs containing information about the request
7992
- # operation.
9479
+ # An array of objects that describe the result of the action, such as
9480
+ # the status of the request, the timestamp of the request, and the
9481
+ # resources affected by the request.
7993
9482
  # @return [Array<Types::Operation>]
7994
9483
  #
7995
9484
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/StopInstanceResult AWS API Documentation
@@ -8025,8 +9514,9 @@ module Aws::Lightsail
8025
9514
  end
8026
9515
 
8027
9516
  # @!attribute [rw] operations
8028
- # An object describing the result of your stop relational database
8029
- # request.
9517
+ # An array of objects that describe the result of the action, such as
9518
+ # the status of the request, the timestamp of the request, and the
9519
+ # resources affected by the request.
8030
9520
  # @return [Array<Types::Operation>]
8031
9521
  #
8032
9522
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/StopRelationalDatabaseResult AWS API Documentation
@@ -8113,7 +9603,9 @@ module Aws::Lightsail
8113
9603
  end
8114
9604
 
8115
9605
  # @!attribute [rw] operations
8116
- # A list of objects describing the API operation.
9606
+ # An array of objects that describe the result of the action, such as
9607
+ # the status of the request, the timestamp of the request, and the
9608
+ # resources affected by the request.
8117
9609
  # @return [Array<Types::Operation>]
8118
9610
  #
8119
9611
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/TagResourceResult AWS API Documentation
@@ -8123,6 +9615,53 @@ module Aws::Lightsail
8123
9615
  include Aws::Structure
8124
9616
  end
8125
9617
 
9618
+ # @note When making an API call, you may pass TestAlarmRequest
9619
+ # data as a hash:
9620
+ #
9621
+ # {
9622
+ # alarm_name: "ResourceName", # required
9623
+ # state: "OK", # required, accepts OK, ALARM, INSUFFICIENT_DATA
9624
+ # }
9625
+ #
9626
+ # @!attribute [rw] alarm_name
9627
+ # The name of the alarm to test.
9628
+ # @return [String]
9629
+ #
9630
+ # @!attribute [rw] state
9631
+ # The alarm state to test.
9632
+ #
9633
+ # An alarm has the following possible states that can be tested:
9634
+ #
9635
+ # * `ALARM` - The metric is outside of the defined threshold.
9636
+ #
9637
+ # * `INSUFFICIENT_DATA` - The alarm has just started, the metric is
9638
+ # not available, or not enough data is available for the metric to
9639
+ # determine the alarm state.
9640
+ #
9641
+ # * `OK` - The metric is within the defined threshold.
9642
+ # @return [String]
9643
+ #
9644
+ # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/TestAlarmRequest AWS API Documentation
9645
+ #
9646
+ class TestAlarmRequest < Struct.new(
9647
+ :alarm_name,
9648
+ :state)
9649
+ include Aws::Structure
9650
+ end
9651
+
9652
+ # @!attribute [rw] operations
9653
+ # An array of objects that describe the result of the action, such as
9654
+ # the status of the request, the timestamp of the request, and the
9655
+ # resources affected by the request.
9656
+ # @return [Array<Types::Operation>]
9657
+ #
9658
+ # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/TestAlarmResult AWS API Documentation
9659
+ #
9660
+ class TestAlarmResult < Struct.new(
9661
+ :operations)
9662
+ include Aws::Structure
9663
+ end
9664
+
8126
9665
  # Lightsail throws this exception when the user has not been
8127
9666
  # authenticated.
8128
9667
  #
@@ -8155,8 +9694,9 @@ module Aws::Lightsail
8155
9694
  class UnpeerVpcRequest < Aws::EmptyStructure; end
8156
9695
 
8157
9696
  # @!attribute [rw] operation
8158
- # An array of key-value pairs containing information about the request
8159
- # operation.
9697
+ # An array of objects that describe the result of the action, such as
9698
+ # the status of the request, the timestamp of the request, and the
9699
+ # resources affected by the request.
8160
9700
  # @return [Types::Operation]
8161
9701
  #
8162
9702
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/UnpeerVpcResult AWS API Documentation
@@ -8198,7 +9738,9 @@ module Aws::Lightsail
8198
9738
  end
8199
9739
 
8200
9740
  # @!attribute [rw] operations
8201
- # A list of objects describing the API operation.
9741
+ # An array of objects that describe the result of the action, such as
9742
+ # the status of the request, the timestamp of the request, and the
9743
+ # resources affected by the request.
8202
9744
  # @return [Array<Types::Operation>]
8203
9745
  #
8204
9746
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/UntagResourceResult AWS API Documentation
@@ -8243,8 +9785,9 @@ module Aws::Lightsail
8243
9785
  end
8244
9786
 
8245
9787
  # @!attribute [rw] operations
8246
- # An array of key-value pairs containing information about the request
8247
- # operation.
9788
+ # An array of objects that describe the result of the action, such as
9789
+ # the status of the request, the timestamp of the request, and the
9790
+ # resources affected by the request.
8248
9791
  # @return [Array<Types::Operation>]
8249
9792
  #
8250
9793
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/UpdateDomainEntryResult AWS API Documentation
@@ -8287,7 +9830,9 @@ module Aws::Lightsail
8287
9830
  end
8288
9831
 
8289
9832
  # @!attribute [rw] operations
8290
- # An object describing the API operations.
9833
+ # An array of objects that describe the result of the action, such as
9834
+ # the status of the request, the timestamp of the request, and the
9835
+ # resources affected by the request.
8291
9836
  # @return [Array<Types::Operation>]
8292
9837
  #
8293
9838
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/UpdateLoadBalancerAttributeResult AWS API Documentation
@@ -8333,8 +9878,9 @@ module Aws::Lightsail
8333
9878
  end
8334
9879
 
8335
9880
  # @!attribute [rw] operations
8336
- # An object describing the result of your update relational database
8337
- # parameters request.
9881
+ # An array of objects that describe the result of the action, such as
9882
+ # the status of the request, the timestamp of the request, and the
9883
+ # resources affected by the request.
8338
9884
  # @return [Array<Types::Operation>]
8339
9885
  #
8340
9886
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/UpdateRelationalDatabaseParametersResult AWS API Documentation
@@ -8357,6 +9903,7 @@ module Aws::Lightsail
8357
9903
  # disable_backup_retention: false,
8358
9904
  # publicly_accessible: false,
8359
9905
  # apply_immediately: false,
9906
+ # ca_certificate_identifier: "string",
8360
9907
  # }
8361
9908
  #
8362
9909
  # @!attribute [rw] relational_database_name
@@ -8451,6 +9998,11 @@ module Aws::Lightsail
8451
9998
  # Default: `false`
8452
9999
  # @return [Boolean]
8453
10000
  #
10001
+ # @!attribute [rw] ca_certificate_identifier
10002
+ # Indicates the certificate that needs to be associated with the
10003
+ # database.
10004
+ # @return [String]
10005
+ #
8454
10006
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/UpdateRelationalDatabaseRequest AWS API Documentation
8455
10007
  #
8456
10008
  class UpdateRelationalDatabaseRequest < Struct.new(
@@ -8462,13 +10014,15 @@ module Aws::Lightsail
8462
10014
  :enable_backup_retention,
8463
10015
  :disable_backup_retention,
8464
10016
  :publicly_accessible,
8465
- :apply_immediately)
10017
+ :apply_immediately,
10018
+ :ca_certificate_identifier)
8466
10019
  include Aws::Structure
8467
10020
  end
8468
10021
 
8469
10022
  # @!attribute [rw] operations
8470
- # An object describing the result of your update relational database
8471
- # request.
10023
+ # An array of objects that describe the result of the action, such as
10024
+ # the status of the request, the timestamp of the request, and the
10025
+ # resources affected by the request.
8472
10026
  # @return [Array<Types::Operation>]
8473
10027
  #
8474
10028
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/UpdateRelationalDatabaseResult AWS API Documentation