aws-sdk-lightsail 1.29.0 → 1.34.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -1477,6 +1479,8 @@ module Aws::Lightsail
1477
1479
  InstancePortInfo.add_member(:access_type, Shapes::ShapeRef.new(shape: PortAccessType, location_name: "accessType"))
1478
1480
  InstancePortInfo.add_member(:common_name, Shapes::ShapeRef.new(shape: string, location_name: "commonName"))
1479
1481
  InstancePortInfo.add_member(:access_direction, Shapes::ShapeRef.new(shape: AccessDirection, location_name: "accessDirection"))
1482
+ InstancePortInfo.add_member(:cidrs, Shapes::ShapeRef.new(shape: StringList, location_name: "cidrs"))
1483
+ InstancePortInfo.add_member(:cidr_list_aliases, Shapes::ShapeRef.new(shape: StringList, location_name: "cidrListAliases"))
1480
1484
  InstancePortInfo.struct_class = Types::InstancePortInfo
1481
1485
 
1482
1486
  InstancePortInfoList.member = Shapes::ShapeRef.new(shape: InstancePortInfo)
@@ -1485,6 +1489,8 @@ module Aws::Lightsail
1485
1489
  InstancePortState.add_member(:to_port, Shapes::ShapeRef.new(shape: Port, location_name: "toPort"))
1486
1490
  InstancePortState.add_member(:protocol, Shapes::ShapeRef.new(shape: NetworkProtocol, location_name: "protocol"))
1487
1491
  InstancePortState.add_member(:state, Shapes::ShapeRef.new(shape: PortState, location_name: "state"))
1492
+ InstancePortState.add_member(:cidrs, Shapes::ShapeRef.new(shape: StringList, location_name: "cidrs"))
1493
+ InstancePortState.add_member(:cidr_list_aliases, Shapes::ShapeRef.new(shape: StringList, location_name: "cidrListAliases"))
1488
1494
  InstancePortState.struct_class = Types::InstancePortState
1489
1495
 
1490
1496
  InstancePortStateList.member = Shapes::ShapeRef.new(shape: InstancePortState)
@@ -1706,6 +1712,8 @@ module Aws::Lightsail
1706
1712
  PortInfo.add_member(:from_port, Shapes::ShapeRef.new(shape: Port, location_name: "fromPort"))
1707
1713
  PortInfo.add_member(:to_port, Shapes::ShapeRef.new(shape: Port, location_name: "toPort"))
1708
1714
  PortInfo.add_member(:protocol, Shapes::ShapeRef.new(shape: NetworkProtocol, location_name: "protocol"))
1715
+ PortInfo.add_member(:cidrs, Shapes::ShapeRef.new(shape: StringList, location_name: "cidrs"))
1716
+ PortInfo.add_member(:cidr_list_aliases, Shapes::ShapeRef.new(shape: StringList, location_name: "cidrListAliases"))
1709
1717
  PortInfo.struct_class = Types::PortInfo
1710
1718
 
1711
1719
  PortInfoList.member = Shapes::ShapeRef.new(shape: PortInfo)
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -6,13 +8,7 @@
6
8
  # WARNING ABOUT GENERATED CODE
7
9
 
8
10
  module Aws::Lightsail
9
- # This class provides a resource oriented interface for Lightsail.
10
- # To create a resource object:
11
- # resource = Aws::Lightsail::Resource.new(region: 'us-west-2')
12
- # You can supply a client object with custom configuration that will be used for all resource operations.
13
- # If you do not pass +:client+, a default client will be constructed.
14
- # client = Aws::Lightsail::Client.new(region: 'us-west-2')
15
- # resource = Aws::Lightsail::Resource.new(client: client)
11
+
16
12
  class Resource
17
13
 
18
14
  # @param options ({})
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -30,6 +32,7 @@ module Aws::Lightsail
30
32
  :docs,
31
33
  :message,
32
34
  :tip)
35
+ SENSITIVE = []
33
36
  include Aws::Structure
34
37
  end
35
38
 
@@ -55,6 +58,7 @@ module Aws::Lightsail
55
58
  :docs,
56
59
  :message,
57
60
  :tip)
61
+ SENSITIVE = []
58
62
  include Aws::Structure
59
63
  end
60
64
 
@@ -95,6 +99,7 @@ module Aws::Lightsail
95
99
  :status,
96
100
  :snapshot_time_of_day,
97
101
  :next_snapshot_time_of_day)
102
+ SENSITIVE = []
98
103
  include Aws::Structure
99
104
  end
100
105
 
@@ -134,6 +139,7 @@ module Aws::Lightsail
134
139
  class AddOnRequest < Struct.new(
135
140
  :add_on_type,
136
141
  :auto_snapshot_add_on_request)
142
+ SENSITIVE = []
137
143
  include Aws::Structure
138
144
  end
139
145
 
@@ -205,18 +211,18 @@ module Aws::Lightsail
205
211
  #
206
212
  # An alarm can treat missing data in the following ways:
207
213
  #
208
- # * `breaching` Assume the missing data is not within the threshold.
214
+ # * `breaching` - Assume the missing data is not within the threshold.
209
215
  # Missing data counts towards the number of times the metric is not
210
216
  # within the threshold.
211
217
  #
212
- # * `notBreaching` Assume the missing data is within the threshold.
218
+ # * `notBreaching` - Assume the missing data is within the threshold.
213
219
  # Missing data does not count towards the number of times the metric
214
220
  # is not within the threshold.
215
221
  #
216
- # * `ignore` Ignore the missing data. Maintains the current alarm
222
+ # * `ignore` - Ignore the missing data. Maintains the current alarm
217
223
  # state.
218
224
  #
219
- # * `missing` Missing data is treated as missing.
225
+ # * `missing` - Missing data is treated as missing.
220
226
  # @return [String]
221
227
  #
222
228
  # @!attribute [rw] statistic
@@ -224,26 +230,26 @@ module Aws::Lightsail
224
230
  #
225
231
  # The following statistics are available:
226
232
  #
227
- # * `Minimum` The lowest value observed during the specified period.
233
+ # * `Minimum` - The lowest value observed during the specified period.
228
234
  # Use this value to determine low volumes of activity for your
229
235
  # application.
230
236
  #
231
- # * `Maximum` The highest value observed during the specified
237
+ # * `Maximum` - The highest value observed during the specified
232
238
  # period. Use this value to determine high volumes of activity for
233
239
  # your application.
234
240
  #
235
- # * `Sum` All values submitted for the matching metric added
241
+ # * `Sum` - All values submitted for the matching metric added
236
242
  # together. You can use this statistic to determine the total volume
237
243
  # of a metric.
238
244
  #
239
- # * `Average` The value of Sum / SampleCount during the specified
245
+ # * `Average` - The value of Sum / SampleCount during the specified
240
246
  # period. By comparing this statistic with the Minimum and Maximum
241
247
  # values, you can determine the full scope of a metric and how close
242
248
  # the average use is to the Minimum and Maximum values. This
243
249
  # comparison helps you to know when to increase or decrease your
244
250
  # resources.
245
251
  #
246
- # * `SampleCount` The count, or number, of data points used for the
252
+ # * `SampleCount` - The count, or number, of data points used for the
247
253
  # statistical calculation.
248
254
  # @return [String]
249
255
  #
@@ -256,13 +262,13 @@ module Aws::Lightsail
256
262
  #
257
263
  # An alarm has the following possible states:
258
264
  #
259
- # * `ALARM` The metric is outside of the defined threshold.
265
+ # * `ALARM` - The metric is outside of the defined threshold.
260
266
  #
261
- # * `INSUFFICIENT_DATA` The alarm has just started, the metric is
267
+ # * `INSUFFICIENT_DATA` - The alarm has just started, the metric is
262
268
  # not available, or not enough data is available for the metric to
263
269
  # determine the alarm state.
264
270
  #
265
- # * `OK` The metric is within the defined threshold.
271
+ # * `OK` - The metric is within the defined threshold.
266
272
  # @return [String]
267
273
  #
268
274
  # @!attribute [rw] unit
@@ -305,6 +311,7 @@ module Aws::Lightsail
305
311
  :contact_protocols,
306
312
  :notification_triggers,
307
313
  :notification_enabled)
314
+ SENSITIVE = []
308
315
  include Aws::Structure
309
316
  end
310
317
 
@@ -323,12 +330,13 @@ module Aws::Lightsail
323
330
  #
324
331
  class AllocateStaticIpRequest < Struct.new(
325
332
  :static_ip_name)
333
+ SENSITIVE = []
326
334
  include Aws::Structure
327
335
  end
328
336
 
329
337
  # @!attribute [rw] operations
330
338
  # An array of objects that describe the result of the action, such as
331
- # the status of the request, the time stamp of the request, and the
339
+ # the status of the request, the timestamp of the request, and the
332
340
  # resources affected by the request.
333
341
  # @return [Array<Types::Operation>]
334
342
  #
@@ -336,6 +344,7 @@ module Aws::Lightsail
336
344
  #
337
345
  class AllocateStaticIpResult < Struct.new(
338
346
  :operations)
347
+ SENSITIVE = []
339
348
  include Aws::Structure
340
349
  end
341
350
 
@@ -367,12 +376,13 @@ module Aws::Lightsail
367
376
  :disk_name,
368
377
  :instance_name,
369
378
  :disk_path)
379
+ SENSITIVE = []
370
380
  include Aws::Structure
371
381
  end
372
382
 
373
383
  # @!attribute [rw] operations
374
384
  # An array of objects that describe the result of the action, such as
375
- # the status of the request, the time stamp of the request, and the
385
+ # the status of the request, the timestamp of the request, and the
376
386
  # resources affected by the request.
377
387
  # @return [Array<Types::Operation>]
378
388
  #
@@ -380,6 +390,7 @@ module Aws::Lightsail
380
390
  #
381
391
  class AttachDiskResult < Struct.new(
382
392
  :operations)
393
+ SENSITIVE = []
383
394
  include Aws::Structure
384
395
  end
385
396
 
@@ -412,12 +423,13 @@ module Aws::Lightsail
412
423
  class AttachInstancesToLoadBalancerRequest < Struct.new(
413
424
  :load_balancer_name,
414
425
  :instance_names)
426
+ SENSITIVE = []
415
427
  include Aws::Structure
416
428
  end
417
429
 
418
430
  # @!attribute [rw] operations
419
431
  # An array of objects that describe the result of the action, such as
420
- # the status of the request, the time stamp of the request, and the
432
+ # the status of the request, the timestamp of the request, and the
421
433
  # resources affected by the request.
422
434
  # @return [Array<Types::Operation>]
423
435
  #
@@ -425,6 +437,7 @@ module Aws::Lightsail
425
437
  #
426
438
  class AttachInstancesToLoadBalancerResult < Struct.new(
427
439
  :operations)
440
+ SENSITIVE = []
428
441
  include Aws::Structure
429
442
  end
430
443
 
@@ -450,12 +463,13 @@ module Aws::Lightsail
450
463
  class AttachLoadBalancerTlsCertificateRequest < Struct.new(
451
464
  :load_balancer_name,
452
465
  :certificate_name)
466
+ SENSITIVE = []
453
467
  include Aws::Structure
454
468
  end
455
469
 
456
470
  # @!attribute [rw] operations
457
471
  # An array of objects that describe the result of the action, such as
458
- # the status of the request, the time stamp of the request, and the
472
+ # the status of the request, the timestamp of the request, and the
459
473
  # resources affected by the request.
460
474
  #
461
475
  # These SSL/TLS certificates are only usable by Lightsail load
@@ -467,6 +481,7 @@ module Aws::Lightsail
467
481
  #
468
482
  class AttachLoadBalancerTlsCertificateResult < Struct.new(
469
483
  :operations)
484
+ SENSITIVE = []
470
485
  include Aws::Structure
471
486
  end
472
487
 
@@ -491,12 +506,13 @@ module Aws::Lightsail
491
506
  class AttachStaticIpRequest < Struct.new(
492
507
  :static_ip_name,
493
508
  :instance_name)
509
+ SENSITIVE = []
494
510
  include Aws::Structure
495
511
  end
496
512
 
497
513
  # @!attribute [rw] operations
498
514
  # An array of objects that describe the result of the action, such as
499
- # the status of the request, the time stamp of the request, and the
515
+ # the status of the request, the timestamp of the request, and the
500
516
  # resources affected by the request.
501
517
  # @return [Array<Types::Operation>]
502
518
  #
@@ -504,6 +520,7 @@ module Aws::Lightsail
504
520
  #
505
521
  class AttachStaticIpResult < Struct.new(
506
522
  :operations)
523
+ SENSITIVE = []
507
524
  include Aws::Structure
508
525
  end
509
526
 
@@ -523,6 +540,7 @@ module Aws::Lightsail
523
540
  class AttachedDisk < Struct.new(
524
541
  :path,
525
542
  :size_in_gb)
543
+ SENSITIVE = []
526
544
  include Aws::Structure
527
545
  end
528
546
 
@@ -585,6 +603,7 @@ module Aws::Lightsail
585
603
  #
586
604
  class AutoSnapshotAddOnRequest < Struct.new(
587
605
  :snapshot_time_of_day)
606
+ SENSITIVE = []
588
607
  include Aws::Structure
589
608
  end
590
609
 
@@ -614,6 +633,7 @@ module Aws::Lightsail
614
633
  :created_at,
615
634
  :status,
616
635
  :from_attached_disks)
636
+ SENSITIVE = []
617
637
  include Aws::Structure
618
638
  end
619
639
 
@@ -633,6 +653,7 @@ module Aws::Lightsail
633
653
  class AvailabilityZone < Struct.new(
634
654
  :zone_name,
635
655
  :state)
656
+ SENSITIVE = []
636
657
  include Aws::Structure
637
658
  end
638
659
 
@@ -711,6 +732,7 @@ module Aws::Lightsail
711
732
  :product_url,
712
733
  :license_url,
713
734
  :platform)
735
+ SENSITIVE = []
714
736
  include Aws::Structure
715
737
  end
716
738
 
@@ -718,7 +740,7 @@ module Aws::Lightsail
718
740
  # private server (or *instance*).
719
741
  #
720
742
  # @!attribute [rw] price
721
- # The price in US dollars (e.g., `5.0`).
743
+ # The price in US dollars (e.g., `5.0`) of the bundle.
722
744
  # @return [Float]
723
745
  #
724
746
  # @!attribute [rw] cpu_count
@@ -783,6 +805,7 @@ module Aws::Lightsail
783
805
  :ram_size_in_gb,
784
806
  :transfer_per_month_in_gb,
785
807
  :supported_platforms)
808
+ SENSITIVE = []
786
809
  include Aws::Structure
787
810
  end
788
811
 
@@ -793,18 +816,19 @@ module Aws::Lightsail
793
816
  # port_info: { # required
794
817
  # from_port: 1,
795
818
  # to_port: 1,
796
- # protocol: "tcp", # accepts tcp, all, udp
819
+ # protocol: "tcp", # accepts tcp, all, udp, icmp
820
+ # cidrs: ["string"],
821
+ # cidr_list_aliases: ["string"],
797
822
  # },
798
823
  # instance_name: "ResourceName", # required
799
824
  # }
800
825
  #
801
826
  # @!attribute [rw] port_info
802
- # Information about the public port you are trying to close.
827
+ # An object to describe the ports to close for the specified instance.
803
828
  # @return [Types::PortInfo]
804
829
  #
805
830
  # @!attribute [rw] instance_name
806
- # The name of the instance on which you're attempting to close the
807
- # public ports.
831
+ # The name of the instance for which to close ports.
808
832
  # @return [String]
809
833
  #
810
834
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/CloseInstancePublicPortsRequest AWS API Documentation
@@ -812,12 +836,13 @@ module Aws::Lightsail
812
836
  class CloseInstancePublicPortsRequest < Struct.new(
813
837
  :port_info,
814
838
  :instance_name)
839
+ SENSITIVE = []
815
840
  include Aws::Structure
816
841
  end
817
842
 
818
843
  # @!attribute [rw] operation
819
- # An array of objects that describe the result of the action, such as
820
- # the status of the request, the time stamp of the request, and the
844
+ # An object that describes the result of the action, such as the
845
+ # status of the request, the timestamp of the request, and the
821
846
  # resources affected by the request.
822
847
  # @return [Types::Operation]
823
848
  #
@@ -825,6 +850,7 @@ module Aws::Lightsail
825
850
  #
826
851
  class CloseInstancePublicPortsResult < Struct.new(
827
852
  :operation)
853
+ SENSITIVE = []
828
854
  include Aws::Structure
829
855
  end
830
856
 
@@ -883,6 +909,7 @@ module Aws::Lightsail
883
909
  :state,
884
910
  :source_info,
885
911
  :destination_info)
912
+ SENSITIVE = []
886
913
  include Aws::Structure
887
914
  end
888
915
 
@@ -907,6 +934,7 @@ module Aws::Lightsail
907
934
  :resource_type,
908
935
  :name,
909
936
  :arn)
937
+ SENSITIVE = []
910
938
  include Aws::Structure
911
939
  end
912
940
 
@@ -929,12 +957,12 @@ module Aws::Lightsail
929
957
  #
930
958
  # A contact method has the following possible status:
931
959
  #
932
- # * `PendingVerification` The contact method has not yet been
960
+ # * `PendingVerification` - The contact method has not yet been
933
961
  # verified, and the verification has not yet expired.
934
962
  #
935
- # * `Valid` The contact method has been verified.
963
+ # * `Valid` - The contact method has been verified.
936
964
  #
937
- # * `InValid` An attempt was made to verify the contact method, but
965
+ # * `InValid` - An attempt was made to verify the contact method, but
938
966
  # the verification has expired.
939
967
  # @return [String]
940
968
  #
@@ -982,6 +1010,7 @@ module Aws::Lightsail
982
1010
  :location,
983
1011
  :resource_type,
984
1012
  :support_code)
1013
+ SENSITIVE = []
985
1014
  include Aws::Structure
986
1015
  end
987
1016
 
@@ -1085,12 +1114,13 @@ module Aws::Lightsail
1085
1114
  :use_latest_restorable_auto_snapshot,
1086
1115
  :target_snapshot_name,
1087
1116
  :source_region)
1117
+ SENSITIVE = []
1088
1118
  include Aws::Structure
1089
1119
  end
1090
1120
 
1091
1121
  # @!attribute [rw] operations
1092
1122
  # An array of objects that describe the result of the action, such as
1093
- # the status of the request, the time stamp of the request, and the
1123
+ # the status of the request, the timestamp of the request, and the
1094
1124
  # resources affected by the request.
1095
1125
  # @return [Array<Types::Operation>]
1096
1126
  #
@@ -1098,6 +1128,7 @@ module Aws::Lightsail
1098
1128
  #
1099
1129
  class CopySnapshotResult < Struct.new(
1100
1130
  :operations)
1131
+ SENSITIVE = []
1101
1132
  include Aws::Structure
1102
1133
  end
1103
1134
 
@@ -1127,12 +1158,13 @@ module Aws::Lightsail
1127
1158
  #
1128
1159
  class CreateCloudFormationStackRequest < Struct.new(
1129
1160
  :instances)
1161
+ SENSITIVE = []
1130
1162
  include Aws::Structure
1131
1163
  end
1132
1164
 
1133
1165
  # @!attribute [rw] operations
1134
1166
  # An array of objects that describe the result of the action, such as
1135
- # the status of the request, the time stamp of the request, and the
1167
+ # the status of the request, the timestamp of the request, and the
1136
1168
  # resources affected by the request.
1137
1169
  # @return [Array<Types::Operation>]
1138
1170
  #
@@ -1140,6 +1172,7 @@ module Aws::Lightsail
1140
1172
  #
1141
1173
  class CreateCloudFormationStackResult < Struct.new(
1142
1174
  :operations)
1175
+ SENSITIVE = []
1143
1176
  include Aws::Structure
1144
1177
  end
1145
1178
 
@@ -1193,7 +1226,7 @@ module Aws::Lightsail
1193
1226
  # maximum of 15 digits, and they are prefixed with the plus character
1194
1227
  # (+) and the country code. For example, a U.S. phone number in E.164
1195
1228
  # format would be specified as +1XXX5550100. For more information, see
1196
- # [E.164][1] in Wikipedia.
1229
+ # [E.164][1] on *Wikipedia*.
1197
1230
  #
1198
1231
  #
1199
1232
  #
@@ -1205,12 +1238,13 @@ module Aws::Lightsail
1205
1238
  class CreateContactMethodRequest < Struct.new(
1206
1239
  :protocol,
1207
1240
  :contact_endpoint)
1241
+ SENSITIVE = []
1208
1242
  include Aws::Structure
1209
1243
  end
1210
1244
 
1211
1245
  # @!attribute [rw] operations
1212
1246
  # An array of objects that describe the result of the action, such as
1213
- # the status of the request, the time stamp of the request, and the
1247
+ # the status of the request, the timestamp of the request, and the
1214
1248
  # resources affected by the request.
1215
1249
  # @return [Array<Types::Operation>]
1216
1250
  #
@@ -1218,6 +1252,7 @@ module Aws::Lightsail
1218
1252
  #
1219
1253
  class CreateContactMethodResult < Struct.new(
1220
1254
  :operations)
1255
+ SENSITIVE = []
1221
1256
  include Aws::Structure
1222
1257
  end
1223
1258
 
@@ -1364,12 +1399,13 @@ module Aws::Lightsail
1364
1399
  :source_disk_name,
1365
1400
  :restore_date,
1366
1401
  :use_latest_restorable_auto_snapshot)
1402
+ SENSITIVE = []
1367
1403
  include Aws::Structure
1368
1404
  end
1369
1405
 
1370
1406
  # @!attribute [rw] operations
1371
1407
  # An array of objects that describe the result of the action, such as
1372
- # the status of the request, the time stamp of the request, and the
1408
+ # the status of the request, the timestamp of the request, and the
1373
1409
  # resources affected by the request.
1374
1410
  # @return [Array<Types::Operation>]
1375
1411
  #
@@ -1377,6 +1413,7 @@ module Aws::Lightsail
1377
1413
  #
1378
1414
  class CreateDiskFromSnapshotResult < Struct.new(
1379
1415
  :operations)
1416
+ SENSITIVE = []
1380
1417
  include Aws::Structure
1381
1418
  end
1382
1419
 
@@ -1441,12 +1478,13 @@ module Aws::Lightsail
1441
1478
  :size_in_gb,
1442
1479
  :tags,
1443
1480
  :add_ons)
1481
+ SENSITIVE = []
1444
1482
  include Aws::Structure
1445
1483
  end
1446
1484
 
1447
1485
  # @!attribute [rw] operations
1448
1486
  # An array of objects that describe the result of the action, such as
1449
- # the status of the request, the time stamp of the request, and the
1487
+ # the status of the request, the timestamp of the request, and the
1450
1488
  # resources affected by the request.
1451
1489
  # @return [Array<Types::Operation>]
1452
1490
  #
@@ -1454,6 +1492,7 @@ module Aws::Lightsail
1454
1492
  #
1455
1493
  class CreateDiskResult < Struct.new(
1456
1494
  :operations)
1495
+ SENSITIVE = []
1457
1496
  include Aws::Structure
1458
1497
  end
1459
1498
 
@@ -1514,12 +1553,13 @@ module Aws::Lightsail
1514
1553
  :disk_snapshot_name,
1515
1554
  :instance_name,
1516
1555
  :tags)
1556
+ SENSITIVE = []
1517
1557
  include Aws::Structure
1518
1558
  end
1519
1559
 
1520
1560
  # @!attribute [rw] operations
1521
1561
  # An array of objects that describe the result of the action, such as
1522
- # the status of the request, the time stamp of the request, and the
1562
+ # the status of the request, the timestamp of the request, and the
1523
1563
  # resources affected by the request.
1524
1564
  # @return [Array<Types::Operation>]
1525
1565
  #
@@ -1527,6 +1567,7 @@ module Aws::Lightsail
1527
1567
  #
1528
1568
  class CreateDiskSnapshotResult < Struct.new(
1529
1569
  :operations)
1570
+ SENSITIVE = []
1530
1571
  include Aws::Structure
1531
1572
  end
1532
1573
 
@@ -1562,12 +1603,13 @@ module Aws::Lightsail
1562
1603
  class CreateDomainEntryRequest < Struct.new(
1563
1604
  :domain_name,
1564
1605
  :domain_entry)
1606
+ SENSITIVE = []
1565
1607
  include Aws::Structure
1566
1608
  end
1567
1609
 
1568
1610
  # @!attribute [rw] operation
1569
1611
  # An array of objects that describe the result of the action, such as
1570
- # the status of the request, the time stamp of the request, and the
1612
+ # the status of the request, the timestamp of the request, and the
1571
1613
  # resources affected by the request.
1572
1614
  # @return [Types::Operation]
1573
1615
  #
@@ -1575,6 +1617,7 @@ module Aws::Lightsail
1575
1617
  #
1576
1618
  class CreateDomainEntryResult < Struct.new(
1577
1619
  :operation)
1620
+ SENSITIVE = []
1578
1621
  include Aws::Structure
1579
1622
  end
1580
1623
 
@@ -1616,12 +1659,13 @@ module Aws::Lightsail
1616
1659
  class CreateDomainRequest < Struct.new(
1617
1660
  :domain_name,
1618
1661
  :tags)
1662
+ SENSITIVE = []
1619
1663
  include Aws::Structure
1620
1664
  end
1621
1665
 
1622
1666
  # @!attribute [rw] operation
1623
1667
  # An array of objects that describe the result of the action, such as
1624
- # the status of the request, the time stamp of the request, and the
1668
+ # the status of the request, the timestamp of the request, and the
1625
1669
  # resources affected by the request.
1626
1670
  # @return [Types::Operation]
1627
1671
  #
@@ -1629,6 +1673,7 @@ module Aws::Lightsail
1629
1673
  #
1630
1674
  class CreateDomainResult < Struct.new(
1631
1675
  :operation)
1676
+ SENSITIVE = []
1632
1677
  include Aws::Structure
1633
1678
  end
1634
1679
 
@@ -1668,12 +1713,13 @@ module Aws::Lightsail
1668
1713
  :instance_snapshot_name,
1669
1714
  :instance_name,
1670
1715
  :tags)
1716
+ SENSITIVE = []
1671
1717
  include Aws::Structure
1672
1718
  end
1673
1719
 
1674
1720
  # @!attribute [rw] operations
1675
1721
  # An array of objects that describe the result of the action, such as
1676
- # the status of the request, the time stamp of the request, and the
1722
+ # the status of the request, the timestamp of the request, and the
1677
1723
  # resources affected by the request.
1678
1724
  # @return [Array<Types::Operation>]
1679
1725
  #
@@ -1681,6 +1727,7 @@ module Aws::Lightsail
1681
1727
  #
1682
1728
  class CreateInstanceSnapshotResult < Struct.new(
1683
1729
  :operations)
1730
+ SENSITIVE = []
1684
1731
  include Aws::Structure
1685
1732
  end
1686
1733
 
@@ -1870,12 +1917,13 @@ module Aws::Lightsail
1870
1917
  :source_instance_name,
1871
1918
  :restore_date,
1872
1919
  :use_latest_restorable_auto_snapshot)
1920
+ SENSITIVE = []
1873
1921
  include Aws::Structure
1874
1922
  end
1875
1923
 
1876
1924
  # @!attribute [rw] operations
1877
1925
  # An array of objects that describe the result of the action, such as
1878
- # the status of the request, the time stamp of the request, and the
1926
+ # the status of the request, the timestamp of the request, and the
1879
1927
  # resources affected by the request.
1880
1928
  # @return [Array<Types::Operation>]
1881
1929
  #
@@ -1883,6 +1931,7 @@ module Aws::Lightsail
1883
1931
  #
1884
1932
  class CreateInstancesFromSnapshotResult < Struct.new(
1885
1933
  :operations)
1934
+ SENSITIVE = []
1886
1935
  include Aws::Structure
1887
1936
  end
1888
1937
 
@@ -2006,12 +2055,13 @@ module Aws::Lightsail
2006
2055
  :key_pair_name,
2007
2056
  :tags,
2008
2057
  :add_ons)
2058
+ SENSITIVE = []
2009
2059
  include Aws::Structure
2010
2060
  end
2011
2061
 
2012
2062
  # @!attribute [rw] operations
2013
2063
  # An array of objects that describe the result of the action, such as
2014
- # the status of the request, the time stamp of the request, and the
2064
+ # the status of the request, the timestamp of the request, and the
2015
2065
  # resources affected by the request.
2016
2066
  # @return [Array<Types::Operation>]
2017
2067
  #
@@ -2019,6 +2069,7 @@ module Aws::Lightsail
2019
2069
  #
2020
2070
  class CreateInstancesResult < Struct.new(
2021
2071
  :operations)
2072
+ SENSITIVE = []
2022
2073
  include Aws::Structure
2023
2074
  end
2024
2075
 
@@ -2052,6 +2103,7 @@ module Aws::Lightsail
2052
2103
  class CreateKeyPairRequest < Struct.new(
2053
2104
  :key_pair_name,
2054
2105
  :tags)
2106
+ SENSITIVE = []
2055
2107
  include Aws::Structure
2056
2108
  end
2057
2109
 
@@ -2070,7 +2122,7 @@ module Aws::Lightsail
2070
2122
  #
2071
2123
  # @!attribute [rw] operation
2072
2124
  # An array of objects that describe the result of the action, such as
2073
- # the status of the request, the time stamp of the request, and the
2125
+ # the status of the request, the timestamp of the request, and the
2074
2126
  # resources affected by the request.
2075
2127
  # @return [Types::Operation]
2076
2128
  #
@@ -2081,6 +2133,7 @@ module Aws::Lightsail
2081
2133
  :public_key_base_64,
2082
2134
  :private_key_base_64,
2083
2135
  :operation)
2136
+ SENSITIVE = []
2084
2137
  include Aws::Structure
2085
2138
  end
2086
2139
 
@@ -2159,12 +2212,13 @@ module Aws::Lightsail
2159
2212
  :certificate_domain_name,
2160
2213
  :certificate_alternative_names,
2161
2214
  :tags)
2215
+ SENSITIVE = []
2162
2216
  include Aws::Structure
2163
2217
  end
2164
2218
 
2165
2219
  # @!attribute [rw] operations
2166
2220
  # An array of objects that describe the result of the action, such as
2167
- # the status of the request, the time stamp of the request, and the
2221
+ # the status of the request, the timestamp of the request, and the
2168
2222
  # resources affected by the request.
2169
2223
  # @return [Array<Types::Operation>]
2170
2224
  #
@@ -2172,6 +2226,7 @@ module Aws::Lightsail
2172
2226
  #
2173
2227
  class CreateLoadBalancerResult < Struct.new(
2174
2228
  :operations)
2229
+ SENSITIVE = []
2175
2230
  include Aws::Structure
2176
2231
  end
2177
2232
 
@@ -2238,12 +2293,13 @@ module Aws::Lightsail
2238
2293
  :certificate_domain_name,
2239
2294
  :certificate_alternative_names,
2240
2295
  :tags)
2296
+ SENSITIVE = []
2241
2297
  include Aws::Structure
2242
2298
  end
2243
2299
 
2244
2300
  # @!attribute [rw] operations
2245
2301
  # An array of objects that describe the result of the action, such as
2246
- # the status of the request, the time stamp of the request, and the
2302
+ # the status of the request, the timestamp of the request, and the
2247
2303
  # resources affected by the request.
2248
2304
  # @return [Array<Types::Operation>]
2249
2305
  #
@@ -2251,6 +2307,7 @@ module Aws::Lightsail
2251
2307
  #
2252
2308
  class CreateLoadBalancerTlsCertificateResult < Struct.new(
2253
2309
  :operations)
2310
+ SENSITIVE = []
2254
2311
  include Aws::Structure
2255
2312
  end
2256
2313
 
@@ -2369,12 +2426,13 @@ module Aws::Lightsail
2369
2426
  :restore_time,
2370
2427
  :use_latest_restorable_time,
2371
2428
  :tags)
2429
+ SENSITIVE = []
2372
2430
  include Aws::Structure
2373
2431
  end
2374
2432
 
2375
2433
  # @!attribute [rw] operations
2376
2434
  # An array of objects that describe the result of the action, such as
2377
- # the status of the request, the time stamp of the request, and the
2435
+ # the status of the request, the timestamp of the request, and the
2378
2436
  # resources affected by the request.
2379
2437
  # @return [Array<Types::Operation>]
2380
2438
  #
@@ -2382,6 +2440,7 @@ module Aws::Lightsail
2382
2440
  #
2383
2441
  class CreateRelationalDatabaseFromSnapshotResult < Struct.new(
2384
2442
  :operations)
2443
+ SENSITIVE = []
2385
2444
  include Aws::Structure
2386
2445
  end
2387
2446
 
@@ -2562,12 +2621,13 @@ module Aws::Lightsail
2562
2621
  :preferred_maintenance_window,
2563
2622
  :publicly_accessible,
2564
2623
  :tags)
2624
+ SENSITIVE = [:master_user_password]
2565
2625
  include Aws::Structure
2566
2626
  end
2567
2627
 
2568
2628
  # @!attribute [rw] operations
2569
2629
  # An array of objects that describe the result of the action, such as
2570
- # the status of the request, the time stamp of the request, and the
2630
+ # the status of the request, the timestamp of the request, and the
2571
2631
  # resources affected by the request.
2572
2632
  # @return [Array<Types::Operation>]
2573
2633
  #
@@ -2575,6 +2635,7 @@ module Aws::Lightsail
2575
2635
  #
2576
2636
  class CreateRelationalDatabaseResult < Struct.new(
2577
2637
  :operations)
2638
+ SENSITIVE = []
2578
2639
  include Aws::Structure
2579
2640
  end
2580
2641
 
@@ -2620,12 +2681,13 @@ module Aws::Lightsail
2620
2681
  :relational_database_name,
2621
2682
  :relational_database_snapshot_name,
2622
2683
  :tags)
2684
+ SENSITIVE = []
2623
2685
  include Aws::Structure
2624
2686
  end
2625
2687
 
2626
2688
  # @!attribute [rw] operations
2627
2689
  # An array of objects that describe the result of the action, such as
2628
- # the status of the request, the time stamp of the request, and the
2690
+ # the status of the request, the timestamp of the request, and the
2629
2691
  # resources affected by the request.
2630
2692
  # @return [Array<Types::Operation>]
2631
2693
  #
@@ -2633,6 +2695,7 @@ module Aws::Lightsail
2633
2695
  #
2634
2696
  class CreateRelationalDatabaseSnapshotResult < Struct.new(
2635
2697
  :operations)
2698
+ SENSITIVE = []
2636
2699
  include Aws::Structure
2637
2700
  end
2638
2701
 
@@ -2651,12 +2714,13 @@ module Aws::Lightsail
2651
2714
  #
2652
2715
  class DeleteAlarmRequest < Struct.new(
2653
2716
  :alarm_name)
2717
+ SENSITIVE = []
2654
2718
  include Aws::Structure
2655
2719
  end
2656
2720
 
2657
2721
  # @!attribute [rw] operations
2658
2722
  # An array of objects that describe the result of the action, such as
2659
- # the status of the request, the time stamp of the request, and the
2723
+ # the status of the request, the timestamp of the request, and the
2660
2724
  # resources affected by the request.
2661
2725
  # @return [Array<Types::Operation>]
2662
2726
  #
@@ -2664,6 +2728,7 @@ module Aws::Lightsail
2664
2728
  #
2665
2729
  class DeleteAlarmResult < Struct.new(
2666
2730
  :operations)
2731
+ SENSITIVE = []
2667
2732
  include Aws::Structure
2668
2733
  end
2669
2734
 
@@ -2691,12 +2756,13 @@ module Aws::Lightsail
2691
2756
  class DeleteAutoSnapshotRequest < Struct.new(
2692
2757
  :resource_name,
2693
2758
  :date)
2759
+ SENSITIVE = []
2694
2760
  include Aws::Structure
2695
2761
  end
2696
2762
 
2697
2763
  # @!attribute [rw] operations
2698
2764
  # An array of objects that describe the result of the action, such as
2699
- # the status of the request, the time stamp of the request, and the
2765
+ # the status of the request, the timestamp of the request, and the
2700
2766
  # resources affected by the request.
2701
2767
  # @return [Array<Types::Operation>]
2702
2768
  #
@@ -2704,6 +2770,7 @@ module Aws::Lightsail
2704
2770
  #
2705
2771
  class DeleteAutoSnapshotResult < Struct.new(
2706
2772
  :operations)
2773
+ SENSITIVE = []
2707
2774
  include Aws::Structure
2708
2775
  end
2709
2776
 
@@ -2729,12 +2796,13 @@ module Aws::Lightsail
2729
2796
  #
2730
2797
  class DeleteContactMethodRequest < Struct.new(
2731
2798
  :protocol)
2799
+ SENSITIVE = []
2732
2800
  include Aws::Structure
2733
2801
  end
2734
2802
 
2735
2803
  # @!attribute [rw] operations
2736
2804
  # An array of objects that describe the result of the action, such as
2737
- # the status of the request, the time stamp of the request, and the
2805
+ # the status of the request, the timestamp of the request, and the
2738
2806
  # resources affected by the request.
2739
2807
  # @return [Array<Types::Operation>]
2740
2808
  #
@@ -2742,6 +2810,7 @@ module Aws::Lightsail
2742
2810
  #
2743
2811
  class DeleteContactMethodResult < Struct.new(
2744
2812
  :operations)
2813
+ SENSITIVE = []
2745
2814
  include Aws::Structure
2746
2815
  end
2747
2816
 
@@ -2767,12 +2836,13 @@ module Aws::Lightsail
2767
2836
  class DeleteDiskRequest < Struct.new(
2768
2837
  :disk_name,
2769
2838
  :force_delete_add_ons)
2839
+ SENSITIVE = []
2770
2840
  include Aws::Structure
2771
2841
  end
2772
2842
 
2773
2843
  # @!attribute [rw] operations
2774
2844
  # An array of objects that describe the result of the action, such as
2775
- # the status of the request, the time stamp of the request, and the
2845
+ # the status of the request, the timestamp of the request, and the
2776
2846
  # resources affected by the request.
2777
2847
  # @return [Array<Types::Operation>]
2778
2848
  #
@@ -2780,6 +2850,7 @@ module Aws::Lightsail
2780
2850
  #
2781
2851
  class DeleteDiskResult < Struct.new(
2782
2852
  :operations)
2853
+ SENSITIVE = []
2783
2854
  include Aws::Structure
2784
2855
  end
2785
2856
 
@@ -2799,12 +2870,13 @@ module Aws::Lightsail
2799
2870
  #
2800
2871
  class DeleteDiskSnapshotRequest < Struct.new(
2801
2872
  :disk_snapshot_name)
2873
+ SENSITIVE = []
2802
2874
  include Aws::Structure
2803
2875
  end
2804
2876
 
2805
2877
  # @!attribute [rw] operations
2806
2878
  # An array of objects that describe the result of the action, such as
2807
- # the status of the request, the time stamp of the request, and the
2879
+ # the status of the request, the timestamp of the request, and the
2808
2880
  # resources affected by the request.
2809
2881
  # @return [Array<Types::Operation>]
2810
2882
  #
@@ -2812,6 +2884,7 @@ module Aws::Lightsail
2812
2884
  #
2813
2885
  class DeleteDiskSnapshotResult < Struct.new(
2814
2886
  :operations)
2887
+ SENSITIVE = []
2815
2888
  include Aws::Structure
2816
2889
  end
2817
2890
 
@@ -2846,12 +2919,13 @@ module Aws::Lightsail
2846
2919
  class DeleteDomainEntryRequest < Struct.new(
2847
2920
  :domain_name,
2848
2921
  :domain_entry)
2922
+ SENSITIVE = []
2849
2923
  include Aws::Structure
2850
2924
  end
2851
2925
 
2852
2926
  # @!attribute [rw] operation
2853
2927
  # An array of objects that describe the result of the action, such as
2854
- # the status of the request, the time stamp of the request, and the
2928
+ # the status of the request, the timestamp of the request, and the
2855
2929
  # resources affected by the request.
2856
2930
  # @return [Types::Operation]
2857
2931
  #
@@ -2859,6 +2933,7 @@ module Aws::Lightsail
2859
2933
  #
2860
2934
  class DeleteDomainEntryResult < Struct.new(
2861
2935
  :operation)
2936
+ SENSITIVE = []
2862
2937
  include Aws::Structure
2863
2938
  end
2864
2939
 
@@ -2877,12 +2952,13 @@ module Aws::Lightsail
2877
2952
  #
2878
2953
  class DeleteDomainRequest < Struct.new(
2879
2954
  :domain_name)
2955
+ SENSITIVE = []
2880
2956
  include Aws::Structure
2881
2957
  end
2882
2958
 
2883
2959
  # @!attribute [rw] operation
2884
2960
  # An array of objects that describe the result of the action, such as
2885
- # the status of the request, the time stamp of the request, and the
2961
+ # the status of the request, the timestamp of the request, and the
2886
2962
  # resources affected by the request.
2887
2963
  # @return [Types::Operation]
2888
2964
  #
@@ -2890,6 +2966,7 @@ module Aws::Lightsail
2890
2966
  #
2891
2967
  class DeleteDomainResult < Struct.new(
2892
2968
  :operation)
2969
+ SENSITIVE = []
2893
2970
  include Aws::Structure
2894
2971
  end
2895
2972
 
@@ -2915,12 +2992,13 @@ module Aws::Lightsail
2915
2992
  class DeleteInstanceRequest < Struct.new(
2916
2993
  :instance_name,
2917
2994
  :force_delete_add_ons)
2995
+ SENSITIVE = []
2918
2996
  include Aws::Structure
2919
2997
  end
2920
2998
 
2921
2999
  # @!attribute [rw] operations
2922
3000
  # An array of objects that describe the result of the action, such as
2923
- # the status of the request, the time stamp of the request, and the
3001
+ # the status of the request, the timestamp of the request, and the
2924
3002
  # resources affected by the request.
2925
3003
  # @return [Array<Types::Operation>]
2926
3004
  #
@@ -2928,6 +3006,7 @@ module Aws::Lightsail
2928
3006
  #
2929
3007
  class DeleteInstanceResult < Struct.new(
2930
3008
  :operations)
3009
+ SENSITIVE = []
2931
3010
  include Aws::Structure
2932
3011
  end
2933
3012
 
@@ -2946,12 +3025,13 @@ module Aws::Lightsail
2946
3025
  #
2947
3026
  class DeleteInstanceSnapshotRequest < Struct.new(
2948
3027
  :instance_snapshot_name)
3028
+ SENSITIVE = []
2949
3029
  include Aws::Structure
2950
3030
  end
2951
3031
 
2952
3032
  # @!attribute [rw] operations
2953
3033
  # An array of objects that describe the result of the action, such as
2954
- # the status of the request, the time stamp of the request, and the
3034
+ # the status of the request, the timestamp of the request, and the
2955
3035
  # resources affected by the request.
2956
3036
  # @return [Array<Types::Operation>]
2957
3037
  #
@@ -2959,6 +3039,7 @@ module Aws::Lightsail
2959
3039
  #
2960
3040
  class DeleteInstanceSnapshotResult < Struct.new(
2961
3041
  :operations)
3042
+ SENSITIVE = []
2962
3043
  include Aws::Structure
2963
3044
  end
2964
3045
 
@@ -2977,12 +3058,13 @@ module Aws::Lightsail
2977
3058
  #
2978
3059
  class DeleteKeyPairRequest < Struct.new(
2979
3060
  :key_pair_name)
3061
+ SENSITIVE = []
2980
3062
  include Aws::Structure
2981
3063
  end
2982
3064
 
2983
3065
  # @!attribute [rw] operation
2984
3066
  # An array of objects that describe the result of the action, such as
2985
- # the status of the request, the time stamp of the request, and the
3067
+ # the status of the request, the timestamp of the request, and the
2986
3068
  # resources affected by the request.
2987
3069
  # @return [Types::Operation]
2988
3070
  #
@@ -2990,6 +3072,7 @@ module Aws::Lightsail
2990
3072
  #
2991
3073
  class DeleteKeyPairResult < Struct.new(
2992
3074
  :operation)
3075
+ SENSITIVE = []
2993
3076
  include Aws::Structure
2994
3077
  end
2995
3078
 
@@ -3009,12 +3092,13 @@ module Aws::Lightsail
3009
3092
  #
3010
3093
  class DeleteKnownHostKeysRequest < Struct.new(
3011
3094
  :instance_name)
3095
+ SENSITIVE = []
3012
3096
  include Aws::Structure
3013
3097
  end
3014
3098
 
3015
3099
  # @!attribute [rw] operations
3016
3100
  # An array of objects that describe the result of the action, such as
3017
- # the status of the request, the time stamp of the request, and the
3101
+ # the status of the request, the timestamp of the request, and the
3018
3102
  # resources affected by the request.
3019
3103
  # @return [Array<Types::Operation>]
3020
3104
  #
@@ -3022,6 +3106,7 @@ module Aws::Lightsail
3022
3106
  #
3023
3107
  class DeleteKnownHostKeysResult < Struct.new(
3024
3108
  :operations)
3109
+ SENSITIVE = []
3025
3110
  include Aws::Structure
3026
3111
  end
3027
3112
 
@@ -3040,12 +3125,13 @@ module Aws::Lightsail
3040
3125
  #
3041
3126
  class DeleteLoadBalancerRequest < Struct.new(
3042
3127
  :load_balancer_name)
3128
+ SENSITIVE = []
3043
3129
  include Aws::Structure
3044
3130
  end
3045
3131
 
3046
3132
  # @!attribute [rw] operations
3047
3133
  # An array of objects that describe the result of the action, such as
3048
- # the status of the request, the time stamp of the request, and the
3134
+ # the status of the request, the timestamp of the request, and the
3049
3135
  # resources affected by the request.
3050
3136
  # @return [Array<Types::Operation>]
3051
3137
  #
@@ -3053,6 +3139,7 @@ module Aws::Lightsail
3053
3139
  #
3054
3140
  class DeleteLoadBalancerResult < Struct.new(
3055
3141
  :operations)
3142
+ SENSITIVE = []
3056
3143
  include Aws::Structure
3057
3144
  end
3058
3145
 
@@ -3088,12 +3175,13 @@ module Aws::Lightsail
3088
3175
  :load_balancer_name,
3089
3176
  :certificate_name,
3090
3177
  :force)
3178
+ SENSITIVE = []
3091
3179
  include Aws::Structure
3092
3180
  end
3093
3181
 
3094
3182
  # @!attribute [rw] operations
3095
3183
  # An array of objects that describe the result of the action, such as
3096
- # the status of the request, the time stamp of the request, and the
3184
+ # the status of the request, the timestamp of the request, and the
3097
3185
  # resources affected by the request.
3098
3186
  # @return [Array<Types::Operation>]
3099
3187
  #
@@ -3101,6 +3189,7 @@ module Aws::Lightsail
3101
3189
  #
3102
3190
  class DeleteLoadBalancerTlsCertificateResult < Struct.new(
3103
3191
  :operations)
3192
+ SENSITIVE = []
3104
3193
  include Aws::Structure
3105
3194
  end
3106
3195
 
@@ -3151,12 +3240,13 @@ module Aws::Lightsail
3151
3240
  :relational_database_name,
3152
3241
  :skip_final_snapshot,
3153
3242
  :final_relational_database_snapshot_name)
3243
+ SENSITIVE = []
3154
3244
  include Aws::Structure
3155
3245
  end
3156
3246
 
3157
3247
  # @!attribute [rw] operations
3158
3248
  # An array of objects that describe the result of the action, such as
3159
- # the status of the request, the time stamp of the request, and the
3249
+ # the status of the request, the timestamp of the request, and the
3160
3250
  # resources affected by the request.
3161
3251
  # @return [Array<Types::Operation>]
3162
3252
  #
@@ -3164,6 +3254,7 @@ module Aws::Lightsail
3164
3254
  #
3165
3255
  class DeleteRelationalDatabaseResult < Struct.new(
3166
3256
  :operations)
3257
+ SENSITIVE = []
3167
3258
  include Aws::Structure
3168
3259
  end
3169
3260
 
@@ -3182,12 +3273,13 @@ module Aws::Lightsail
3182
3273
  #
3183
3274
  class DeleteRelationalDatabaseSnapshotRequest < Struct.new(
3184
3275
  :relational_database_snapshot_name)
3276
+ SENSITIVE = []
3185
3277
  include Aws::Structure
3186
3278
  end
3187
3279
 
3188
3280
  # @!attribute [rw] operations
3189
3281
  # An array of objects that describe the result of the action, such as
3190
- # the status of the request, the time stamp of the request, and the
3282
+ # the status of the request, the timestamp of the request, and the
3191
3283
  # resources affected by the request.
3192
3284
  # @return [Array<Types::Operation>]
3193
3285
  #
@@ -3195,6 +3287,7 @@ module Aws::Lightsail
3195
3287
  #
3196
3288
  class DeleteRelationalDatabaseSnapshotResult < Struct.new(
3197
3289
  :operations)
3290
+ SENSITIVE = []
3198
3291
  include Aws::Structure
3199
3292
  end
3200
3293
 
@@ -3213,6 +3306,7 @@ module Aws::Lightsail
3213
3306
  class DestinationInfo < Struct.new(
3214
3307
  :id,
3215
3308
  :service)
3309
+ SENSITIVE = []
3216
3310
  include Aws::Structure
3217
3311
  end
3218
3312
 
@@ -3232,12 +3326,13 @@ module Aws::Lightsail
3232
3326
  #
3233
3327
  class DetachDiskRequest < Struct.new(
3234
3328
  :disk_name)
3329
+ SENSITIVE = []
3235
3330
  include Aws::Structure
3236
3331
  end
3237
3332
 
3238
3333
  # @!attribute [rw] operations
3239
3334
  # An array of objects that describe the result of the action, such as
3240
- # the status of the request, the time stamp of the request, and the
3335
+ # the status of the request, the timestamp of the request, and the
3241
3336
  # resources affected by the request.
3242
3337
  # @return [Array<Types::Operation>]
3243
3338
  #
@@ -3245,6 +3340,7 @@ module Aws::Lightsail
3245
3340
  #
3246
3341
  class DetachDiskResult < Struct.new(
3247
3342
  :operations)
3343
+ SENSITIVE = []
3248
3344
  include Aws::Structure
3249
3345
  end
3250
3346
 
@@ -3270,12 +3366,13 @@ module Aws::Lightsail
3270
3366
  class DetachInstancesFromLoadBalancerRequest < Struct.new(
3271
3367
  :load_balancer_name,
3272
3368
  :instance_names)
3369
+ SENSITIVE = []
3273
3370
  include Aws::Structure
3274
3371
  end
3275
3372
 
3276
3373
  # @!attribute [rw] operations
3277
3374
  # An array of objects that describe the result of the action, such as
3278
- # the status of the request, the time stamp of the request, and the
3375
+ # the status of the request, the timestamp of the request, and the
3279
3376
  # resources affected by the request.
3280
3377
  # @return [Array<Types::Operation>]
3281
3378
  #
@@ -3283,6 +3380,7 @@ module Aws::Lightsail
3283
3380
  #
3284
3381
  class DetachInstancesFromLoadBalancerResult < Struct.new(
3285
3382
  :operations)
3383
+ SENSITIVE = []
3286
3384
  include Aws::Structure
3287
3385
  end
3288
3386
 
@@ -3301,12 +3399,13 @@ module Aws::Lightsail
3301
3399
  #
3302
3400
  class DetachStaticIpRequest < Struct.new(
3303
3401
  :static_ip_name)
3402
+ SENSITIVE = []
3304
3403
  include Aws::Structure
3305
3404
  end
3306
3405
 
3307
3406
  # @!attribute [rw] operations
3308
3407
  # An array of objects that describe the result of the action, such as
3309
- # the status of the request, the time stamp of the request, and the
3408
+ # the status of the request, the timestamp of the request, and the
3310
3409
  # resources affected by the request.
3311
3410
  # @return [Array<Types::Operation>]
3312
3411
  #
@@ -3314,6 +3413,7 @@ module Aws::Lightsail
3314
3413
  #
3315
3414
  class DetachStaticIpResult < Struct.new(
3316
3415
  :operations)
3416
+ SENSITIVE = []
3317
3417
  include Aws::Structure
3318
3418
  end
3319
3419
 
@@ -3338,12 +3438,13 @@ module Aws::Lightsail
3338
3438
  class DisableAddOnRequest < Struct.new(
3339
3439
  :add_on_type,
3340
3440
  :resource_name)
3441
+ SENSITIVE = []
3341
3442
  include Aws::Structure
3342
3443
  end
3343
3444
 
3344
3445
  # @!attribute [rw] operations
3345
3446
  # An array of objects that describe the result of the action, such as
3346
- # the status of the request, the time stamp of the request, and the
3447
+ # the status of the request, the timestamp of the request, and the
3347
3448
  # resources affected by the request.
3348
3449
  # @return [Array<Types::Operation>]
3349
3450
  #
@@ -3351,6 +3452,7 @@ module Aws::Lightsail
3351
3452
  #
3352
3453
  class DisableAddOnResult < Struct.new(
3353
3454
  :operations)
3455
+ SENSITIVE = []
3354
3456
  include Aws::Structure
3355
3457
  end
3356
3458
 
@@ -3466,6 +3568,7 @@ module Aws::Lightsail
3466
3568
  :is_attached,
3467
3569
  :attachment_state,
3468
3570
  :gb_in_use)
3571
+ SENSITIVE = []
3469
3572
  include Aws::Structure
3470
3573
  end
3471
3574
 
@@ -3495,6 +3598,7 @@ module Aws::Lightsail
3495
3598
  :path,
3496
3599
  :size_in_gb,
3497
3600
  :is_system_disk)
3601
+ SENSITIVE = []
3498
3602
  include Aws::Structure
3499
3603
  end
3500
3604
 
@@ -3522,6 +3626,7 @@ module Aws::Lightsail
3522
3626
  class DiskMap < Struct.new(
3523
3627
  :original_disk_path,
3524
3628
  :new_disk_name)
3629
+ SENSITIVE = []
3525
3630
  include Aws::Structure
3526
3631
  end
3527
3632
 
@@ -3620,6 +3725,7 @@ module Aws::Lightsail
3620
3725
  :from_instance_name,
3621
3726
  :from_instance_arn,
3622
3727
  :is_from_auto_snapshot)
3728
+ SENSITIVE = []
3623
3729
  include Aws::Structure
3624
3730
  end
3625
3731
 
@@ -3633,6 +3739,7 @@ module Aws::Lightsail
3633
3739
  #
3634
3740
  class DiskSnapshotInfo < Struct.new(
3635
3741
  :size_in_gb)
3742
+ SENSITIVE = []
3636
3743
  include Aws::Structure
3637
3744
  end
3638
3745
 
@@ -3693,6 +3800,7 @@ module Aws::Lightsail
3693
3800
  :resource_type,
3694
3801
  :tags,
3695
3802
  :domain_entries)
3803
+ SENSITIVE = []
3696
3804
  include Aws::Structure
3697
3805
  end
3698
3806
 
@@ -3776,6 +3884,7 @@ module Aws::Lightsail
3776
3884
  :is_alias,
3777
3885
  :type,
3778
3886
  :options)
3887
+ SENSITIVE = []
3779
3888
  include Aws::Structure
3780
3889
  end
3781
3890
 
@@ -3798,6 +3907,7 @@ module Aws::Lightsail
3798
3907
  class DownloadDefaultKeyPairResult < Struct.new(
3799
3908
  :public_key_base_64,
3800
3909
  :private_key_base_64)
3910
+ SENSITIVE = []
3801
3911
  include Aws::Structure
3802
3912
  end
3803
3913
 
@@ -3828,12 +3938,13 @@ module Aws::Lightsail
3828
3938
  class EnableAddOnRequest < Struct.new(
3829
3939
  :resource_name,
3830
3940
  :add_on_request)
3941
+ SENSITIVE = []
3831
3942
  include Aws::Structure
3832
3943
  end
3833
3944
 
3834
3945
  # @!attribute [rw] operations
3835
3946
  # An array of objects that describe the result of the action, such as
3836
- # the status of the request, the time stamp of the request, and the
3947
+ # the status of the request, the timestamp of the request, and the
3837
3948
  # resources affected by the request.
3838
3949
  # @return [Array<Types::Operation>]
3839
3950
  #
@@ -3841,6 +3952,7 @@ module Aws::Lightsail
3841
3952
  #
3842
3953
  class EnableAddOnResult < Struct.new(
3843
3954
  :operations)
3955
+ SENSITIVE = []
3844
3956
  include Aws::Structure
3845
3957
  end
3846
3958
 
@@ -3892,6 +4004,7 @@ module Aws::Lightsail
3892
4004
  :state,
3893
4005
  :source_info,
3894
4006
  :destination_info)
4007
+ SENSITIVE = []
3895
4008
  include Aws::Structure
3896
4009
  end
3897
4010
 
@@ -3943,6 +4056,7 @@ module Aws::Lightsail
3943
4056
  :from_resource_arn,
3944
4057
  :instance_snapshot_info,
3945
4058
  :disk_snapshot_info)
4059
+ SENSITIVE = []
3946
4060
  include Aws::Structure
3947
4061
  end
3948
4062
 
@@ -3962,12 +4076,13 @@ module Aws::Lightsail
3962
4076
  #
3963
4077
  class ExportSnapshotRequest < Struct.new(
3964
4078
  :source_snapshot_name)
4079
+ SENSITIVE = []
3965
4080
  include Aws::Structure
3966
4081
  end
3967
4082
 
3968
4083
  # @!attribute [rw] operations
3969
4084
  # An array of objects that describe the result of the action, such as
3970
- # the status of the request, the time stamp of the request, and the
4085
+ # the status of the request, the timestamp of the request, and the
3971
4086
  # resources affected by the request.
3972
4087
  # @return [Array<Types::Operation>]
3973
4088
  #
@@ -3975,6 +4090,7 @@ module Aws::Lightsail
3975
4090
  #
3976
4091
  class ExportSnapshotResult < Struct.new(
3977
4092
  :operations)
4093
+ SENSITIVE = []
3978
4094
  include Aws::Structure
3979
4095
  end
3980
4096
 
@@ -3998,6 +4114,7 @@ module Aws::Lightsail
3998
4114
  #
3999
4115
  class GetActiveNamesRequest < Struct.new(
4000
4116
  :page_token)
4117
+ SENSITIVE = []
4001
4118
  include Aws::Structure
4002
4119
  end
4003
4120
 
@@ -4021,6 +4138,7 @@ module Aws::Lightsail
4021
4138
  class GetActiveNamesResult < Struct.new(
4022
4139
  :active_names,
4023
4140
  :next_page_token)
4141
+ SENSITIVE = []
4024
4142
  include Aws::Structure
4025
4143
  end
4026
4144
 
@@ -4060,6 +4178,7 @@ module Aws::Lightsail
4060
4178
  :alarm_name,
4061
4179
  :page_token,
4062
4180
  :monitored_resource_name)
4181
+ SENSITIVE = []
4063
4182
  include Aws::Structure
4064
4183
  end
4065
4184
 
@@ -4082,6 +4201,7 @@ module Aws::Lightsail
4082
4201
  class GetAlarmsResult < Struct.new(
4083
4202
  :alarms,
4084
4203
  :next_page_token)
4204
+ SENSITIVE = []
4085
4205
  include Aws::Structure
4086
4206
  end
4087
4207
 
@@ -4101,6 +4221,7 @@ module Aws::Lightsail
4101
4221
  #
4102
4222
  class GetAutoSnapshotsRequest < Struct.new(
4103
4223
  :resource_name)
4224
+ SENSITIVE = []
4104
4225
  include Aws::Structure
4105
4226
  end
4106
4227
 
@@ -4123,6 +4244,7 @@ module Aws::Lightsail
4123
4244
  :resource_name,
4124
4245
  :resource_type,
4125
4246
  :auto_snapshots)
4247
+ SENSITIVE = []
4126
4248
  include Aws::Structure
4127
4249
  end
4128
4250
 
@@ -4153,6 +4275,7 @@ module Aws::Lightsail
4153
4275
  class GetBlueprintsRequest < Struct.new(
4154
4276
  :include_inactive,
4155
4277
  :page_token)
4278
+ SENSITIVE = []
4156
4279
  include Aws::Structure
4157
4280
  end
4158
4281
 
@@ -4177,6 +4300,7 @@ module Aws::Lightsail
4177
4300
  class GetBlueprintsResult < Struct.new(
4178
4301
  :blueprints,
4179
4302
  :next_page_token)
4303
+ SENSITIVE = []
4180
4304
  include Aws::Structure
4181
4305
  end
4182
4306
 
@@ -4207,6 +4331,7 @@ module Aws::Lightsail
4207
4331
  class GetBundlesRequest < Struct.new(
4208
4332
  :include_inactive,
4209
4333
  :page_token)
4334
+ SENSITIVE = []
4210
4335
  include Aws::Structure
4211
4336
  end
4212
4337
 
@@ -4231,6 +4356,7 @@ module Aws::Lightsail
4231
4356
  class GetBundlesResult < Struct.new(
4232
4357
  :bundles,
4233
4358
  :next_page_token)
4359
+ SENSITIVE = []
4234
4360
  include Aws::Structure
4235
4361
  end
4236
4362
 
@@ -4254,6 +4380,7 @@ module Aws::Lightsail
4254
4380
  #
4255
4381
  class GetCloudFormationStackRecordsRequest < Struct.new(
4256
4382
  :page_token)
4383
+ SENSITIVE = []
4257
4384
  include Aws::Structure
4258
4385
  end
4259
4386
 
@@ -4277,6 +4404,7 @@ module Aws::Lightsail
4277
4404
  class GetCloudFormationStackRecordsResult < Struct.new(
4278
4405
  :cloud_formation_stack_records,
4279
4406
  :next_page_token)
4407
+ SENSITIVE = []
4280
4408
  include Aws::Structure
4281
4409
  end
4282
4410
 
@@ -4299,6 +4427,7 @@ module Aws::Lightsail
4299
4427
  #
4300
4428
  class GetContactMethodsRequest < Struct.new(
4301
4429
  :protocols)
4430
+ SENSITIVE = []
4302
4431
  include Aws::Structure
4303
4432
  end
4304
4433
 
@@ -4310,6 +4439,7 @@ module Aws::Lightsail
4310
4439
  #
4311
4440
  class GetContactMethodsResult < Struct.new(
4312
4441
  :contact_methods)
4442
+ SENSITIVE = []
4313
4443
  include Aws::Structure
4314
4444
  end
4315
4445
 
@@ -4328,6 +4458,7 @@ module Aws::Lightsail
4328
4458
  #
4329
4459
  class GetDiskRequest < Struct.new(
4330
4460
  :disk_name)
4461
+ SENSITIVE = []
4331
4462
  include Aws::Structure
4332
4463
  end
4333
4464
 
@@ -4339,6 +4470,7 @@ module Aws::Lightsail
4339
4470
  #
4340
4471
  class GetDiskResult < Struct.new(
4341
4472
  :disk)
4473
+ SENSITIVE = []
4342
4474
  include Aws::Structure
4343
4475
  end
4344
4476
 
@@ -4357,6 +4489,7 @@ module Aws::Lightsail
4357
4489
  #
4358
4490
  class GetDiskSnapshotRequest < Struct.new(
4359
4491
  :disk_snapshot_name)
4492
+ SENSITIVE = []
4360
4493
  include Aws::Structure
4361
4494
  end
4362
4495
 
@@ -4368,6 +4501,7 @@ module Aws::Lightsail
4368
4501
  #
4369
4502
  class GetDiskSnapshotResult < Struct.new(
4370
4503
  :disk_snapshot)
4504
+ SENSITIVE = []
4371
4505
  include Aws::Structure
4372
4506
  end
4373
4507
 
@@ -4391,6 +4525,7 @@ module Aws::Lightsail
4391
4525
  #
4392
4526
  class GetDiskSnapshotsRequest < Struct.new(
4393
4527
  :page_token)
4528
+ SENSITIVE = []
4394
4529
  include Aws::Structure
4395
4530
  end
4396
4531
 
@@ -4415,6 +4550,7 @@ module Aws::Lightsail
4415
4550
  class GetDiskSnapshotsResult < Struct.new(
4416
4551
  :disk_snapshots,
4417
4552
  :next_page_token)
4553
+ SENSITIVE = []
4418
4554
  include Aws::Structure
4419
4555
  end
4420
4556
 
@@ -4437,6 +4573,7 @@ module Aws::Lightsail
4437
4573
  #
4438
4574
  class GetDisksRequest < Struct.new(
4439
4575
  :page_token)
4576
+ SENSITIVE = []
4440
4577
  include Aws::Structure
4441
4578
  end
4442
4579
 
@@ -4460,6 +4597,7 @@ module Aws::Lightsail
4460
4597
  class GetDisksResult < Struct.new(
4461
4598
  :disks,
4462
4599
  :next_page_token)
4600
+ SENSITIVE = []
4463
4601
  include Aws::Structure
4464
4602
  end
4465
4603
 
@@ -4478,6 +4616,7 @@ module Aws::Lightsail
4478
4616
  #
4479
4617
  class GetDomainRequest < Struct.new(
4480
4618
  :domain_name)
4619
+ SENSITIVE = []
4481
4620
  include Aws::Structure
4482
4621
  end
4483
4622
 
@@ -4490,6 +4629,7 @@ module Aws::Lightsail
4490
4629
  #
4491
4630
  class GetDomainResult < Struct.new(
4492
4631
  :domain)
4632
+ SENSITIVE = []
4493
4633
  include Aws::Structure
4494
4634
  end
4495
4635
 
@@ -4513,6 +4653,7 @@ module Aws::Lightsail
4513
4653
  #
4514
4654
  class GetDomainsRequest < Struct.new(
4515
4655
  :page_token)
4656
+ SENSITIVE = []
4516
4657
  include Aws::Structure
4517
4658
  end
4518
4659
 
@@ -4537,6 +4678,7 @@ module Aws::Lightsail
4537
4678
  class GetDomainsResult < Struct.new(
4538
4679
  :domains,
4539
4680
  :next_page_token)
4681
+ SENSITIVE = []
4540
4682
  include Aws::Structure
4541
4683
  end
4542
4684
 
@@ -4560,6 +4702,7 @@ module Aws::Lightsail
4560
4702
  #
4561
4703
  class GetExportSnapshotRecordsRequest < Struct.new(
4562
4704
  :page_token)
4705
+ SENSITIVE = []
4563
4706
  include Aws::Structure
4564
4707
  end
4565
4708
 
@@ -4583,6 +4726,7 @@ module Aws::Lightsail
4583
4726
  class GetExportSnapshotRecordsResult < Struct.new(
4584
4727
  :export_snapshot_records,
4585
4728
  :next_page_token)
4729
+ SENSITIVE = []
4586
4730
  include Aws::Structure
4587
4731
  end
4588
4732
 
@@ -4607,6 +4751,7 @@ module Aws::Lightsail
4607
4751
  class GetInstanceAccessDetailsRequest < Struct.new(
4608
4752
  :instance_name,
4609
4753
  :protocol)
4754
+ SENSITIVE = []
4610
4755
  include Aws::Structure
4611
4756
  end
4612
4757
 
@@ -4619,6 +4764,7 @@ module Aws::Lightsail
4619
4764
  #
4620
4765
  class GetInstanceAccessDetailsResult < Struct.new(
4621
4766
  :access_details)
4767
+ SENSITIVE = []
4622
4768
  include Aws::Structure
4623
4769
  end
4624
4770
 
@@ -4627,7 +4773,7 @@ module Aws::Lightsail
4627
4773
  #
4628
4774
  # {
4629
4775
  # instance_name: "ResourceName", # required
4630
- # metric_name: "CPUUtilization", # required, accepts CPUUtilization, NetworkIn, NetworkOut, StatusCheckFailed, StatusCheckFailed_Instance, StatusCheckFailed_System
4776
+ # metric_name: "CPUUtilization", # required, accepts CPUUtilization, NetworkIn, NetworkOut, StatusCheckFailed, StatusCheckFailed_Instance, StatusCheckFailed_System, BurstCapacityTime, BurstCapacityPercentage
4631
4777
  # period: 1, # required
4632
4778
  # start_time: Time.now, # required
4633
4779
  # end_time: Time.now, # required
@@ -4646,7 +4792,39 @@ module Aws::Lightsail
4646
4792
  # useful `statistics` to include in your request, and the published
4647
4793
  # `unit` value.
4648
4794
  #
4649
- # * <b> <code>CPUUtilization</code> </b> The percentage of allocated
4795
+ # * <b> <code>BurstCapacityPercentage</code> </b> - The percentage of
4796
+ # CPU performance available for your instance to burst above its
4797
+ # baseline. Your instance continuously accrues and consumes burst
4798
+ # capacity. Burst capacity stops accruing when your instance's
4799
+ # `BurstCapacityPercentage` reaches 100%. For more information, see
4800
+ # [Viewing instance burst capacity in Amazon Lightsail][1].
4801
+ #
4802
+ # `Statistics`\: The most useful statistics are `Maximum` and
4803
+ # `Average`.
4804
+ #
4805
+ # `Unit`\: The published unit is `Percent`.
4806
+ #
4807
+ # * <b> <code>BurstCapacityTime</code> </b> - The available amount of
4808
+ # time for your instance to burst at 100% CPU utilization. Your
4809
+ # instance continuously accrues and consumes burst capacity. Burst
4810
+ # capacity time stops accruing when your instance's
4811
+ # `BurstCapacityPercentage` metric reaches 100%.
4812
+ #
4813
+ # Burst capacity time is consumed at the full rate only when your
4814
+ # instance operates at 100% CPU utilization. For example, if your
4815
+ # instance operates at 50% CPU utilization in the burstable zone for
4816
+ # a 5-minute period, then it consumes CPU burst capacity minutes at
4817
+ # a 50% rate in that period. Your instance consumed 2 minutes and 30
4818
+ # seconds of CPU burst capacity minutes in the 5-minute period. For
4819
+ # more information, see [Viewing instance burst capacity in Amazon
4820
+ # Lightsail][1].
4821
+ #
4822
+ # `Statistics`\: The most useful statistics are `Maximum` and
4823
+ # `Average`.
4824
+ #
4825
+ # `Unit`\: The published unit is `Seconds`.
4826
+ #
4827
+ # * <b> <code>CPUUtilization</code> </b> - The percentage of allocated
4650
4828
  # compute units that are currently in use on the instance. This
4651
4829
  # metric identifies the processing power to run the applications on
4652
4830
  # the instance. Tools in your operating system can show a lower
@@ -4658,7 +4836,7 @@ module Aws::Lightsail
4658
4836
  #
4659
4837
  # `Unit`\: The published unit is `Percent`.
4660
4838
  #
4661
- # * <b> <code>NetworkIn</code> </b> The number of bytes received on
4839
+ # * <b> <code>NetworkIn</code> </b> - The number of bytes received on
4662
4840
  # all network interfaces by the instance. This metric identifies the
4663
4841
  # volume of incoming network traffic to the instance. The number
4664
4842
  # reported is the number of bytes received during the period.
@@ -4669,7 +4847,7 @@ module Aws::Lightsail
4669
4847
  #
4670
4848
  # `Unit`\: The published unit is `Bytes`.
4671
4849
  #
4672
- # * <b> <code>NetworkOut</code> </b> The number of bytes sent out on
4850
+ # * <b> <code>NetworkOut</code> </b> - The number of bytes sent out on
4673
4851
  # all network interfaces by the instance. This metric identifies the
4674
4852
  # volume of outgoing network traffic from the instance. The number
4675
4853
  # reported is the number of bytes sent during the period. Because
@@ -4680,7 +4858,7 @@ module Aws::Lightsail
4680
4858
  #
4681
4859
  # `Unit`\: The published unit is `Bytes`.
4682
4860
  #
4683
- # * <b> <code>StatusCheckFailed</code> </b> Reports whether the
4861
+ # * <b> <code>StatusCheckFailed</code> </b> - Reports whether the
4684
4862
  # instance passed or failed both the instance status check and the
4685
4863
  # system status check. This metric can be either 0 (passed) or 1
4686
4864
  # (failed). This metric data is available in 1-minute (60 seconds)
@@ -4690,7 +4868,7 @@ module Aws::Lightsail
4690
4868
  #
4691
4869
  # `Unit`\: The published unit is `Count`.
4692
4870
  #
4693
- # * <b> <code>StatusCheckFailed_Instance</code> </b> Reports whether
4871
+ # * <b> <code>StatusCheckFailed_Instance</code> </b> - Reports whether
4694
4872
  # the instance passed or failed the instance status check. This
4695
4873
  # metric can be either 0 (passed) or 1 (failed). This metric data is
4696
4874
  # available in 1-minute (60 seconds) granularity.
@@ -4699,7 +4877,7 @@ module Aws::Lightsail
4699
4877
  #
4700
4878
  # `Unit`\: The published unit is `Count`.
4701
4879
  #
4702
- # * <b> <code>StatusCheckFailed_System</code> </b> Reports whether
4880
+ # * <b> <code>StatusCheckFailed_System</code> </b> - Reports whether
4703
4881
  # the instance passed or failed the system status check. This metric
4704
4882
  # can be either 0 (passed) or 1 (failed). This metric data is
4705
4883
  # available in 1-minute (60 seconds) granularity.
@@ -4707,6 +4885,10 @@ module Aws::Lightsail
4707
4885
  # `Statistics`\: The most useful statistic is `Sum`.
4708
4886
  #
4709
4887
  # `Unit`\: The published unit is `Count`.
4888
+ #
4889
+ #
4890
+ #
4891
+ # [1]: https://lightsail.aws.amazon.com/ls/docs/en_us/articles/amazon-lightsail-viewing-instance-burst-capacity
4710
4892
  # @return [String]
4711
4893
  #
4712
4894
  # @!attribute [rw] period
@@ -4728,8 +4910,8 @@ module Aws::Lightsail
4728
4910
  #
4729
4911
  # @!attribute [rw] unit
4730
4912
  # The unit for the metric data request. Valid units depend on the
4731
- # metric data being required. For the valid units with each available
4732
- # metric, see the `metricName` parameter.
4913
+ # metric data being requested. For the valid units to specify with
4914
+ # each available metric, see the `metricName` parameter.
4733
4915
  # @return [String]
4734
4916
  #
4735
4917
  # @!attribute [rw] statistics
@@ -4737,26 +4919,26 @@ module Aws::Lightsail
4737
4919
  #
4738
4920
  # The following statistics are available:
4739
4921
  #
4740
- # * `Minimum` The lowest value observed during the specified period.
4922
+ # * `Minimum` - The lowest value observed during the specified period.
4741
4923
  # Use this value to determine low volumes of activity for your
4742
4924
  # application.
4743
4925
  #
4744
- # * `Maximum` The highest value observed during the specified
4926
+ # * `Maximum` - The highest value observed during the specified
4745
4927
  # period. Use this value to determine high volumes of activity for
4746
4928
  # your application.
4747
4929
  #
4748
- # * `Sum` All values submitted for the matching metric added
4930
+ # * `Sum` - All values submitted for the matching metric added
4749
4931
  # together. You can use this statistic to determine the total volume
4750
4932
  # of a metric.
4751
4933
  #
4752
- # * `Average` The value of Sum / SampleCount during the specified
4934
+ # * `Average` - The value of Sum / SampleCount during the specified
4753
4935
  # period. By comparing this statistic with the Minimum and Maximum
4754
4936
  # values, you can determine the full scope of a metric and how close
4755
4937
  # the average use is to the Minimum and Maximum values. This
4756
4938
  # comparison helps you to know when to increase or decrease your
4757
4939
  # resources.
4758
4940
  #
4759
- # * `SampleCount` The count, or number, of data points used for the
4941
+ # * `SampleCount` - The count, or number, of data points used for the
4760
4942
  # statistical calculation.
4761
4943
  # @return [Array<String>]
4762
4944
  #
@@ -4770,16 +4952,16 @@ module Aws::Lightsail
4770
4952
  :end_time,
4771
4953
  :unit,
4772
4954
  :statistics)
4955
+ SENSITIVE = []
4773
4956
  include Aws::Structure
4774
4957
  end
4775
4958
 
4776
4959
  # @!attribute [rw] metric_name
4777
- # The metric name to return data for.
4960
+ # The name of the metric returned.
4778
4961
  # @return [String]
4779
4962
  #
4780
4963
  # @!attribute [rw] metric_data
4781
- # An array of key-value pairs containing information about the results
4782
- # of your get instance metric data request.
4964
+ # An array of objects that describe the metric data returned.
4783
4965
  # @return [Array<Types::MetricDatapoint>]
4784
4966
  #
4785
4967
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/GetInstanceMetricDataResult AWS API Documentation
@@ -4787,6 +4969,7 @@ module Aws::Lightsail
4787
4969
  class GetInstanceMetricDataResult < Struct.new(
4788
4970
  :metric_name,
4789
4971
  :metric_data)
4972
+ SENSITIVE = []
4790
4973
  include Aws::Structure
4791
4974
  end
4792
4975
 
@@ -4798,24 +4981,27 @@ module Aws::Lightsail
4798
4981
  # }
4799
4982
  #
4800
4983
  # @!attribute [rw] instance_name
4801
- # The name of the instance.
4984
+ # The name of the instance for which to return firewall port states.
4802
4985
  # @return [String]
4803
4986
  #
4804
4987
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/GetInstancePortStatesRequest AWS API Documentation
4805
4988
  #
4806
4989
  class GetInstancePortStatesRequest < Struct.new(
4807
4990
  :instance_name)
4991
+ SENSITIVE = []
4808
4992
  include Aws::Structure
4809
4993
  end
4810
4994
 
4811
4995
  # @!attribute [rw] port_states
4812
- # Information about the port states resulting from your request.
4996
+ # An array of objects that describe the firewall port states for the
4997
+ # specified instance.
4813
4998
  # @return [Array<Types::InstancePortState>]
4814
4999
  #
4815
5000
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/GetInstancePortStatesResult AWS API Documentation
4816
5001
  #
4817
5002
  class GetInstancePortStatesResult < Struct.new(
4818
5003
  :port_states)
5004
+ SENSITIVE = []
4819
5005
  include Aws::Structure
4820
5006
  end
4821
5007
 
@@ -4834,6 +5020,7 @@ module Aws::Lightsail
4834
5020
  #
4835
5021
  class GetInstanceRequest < Struct.new(
4836
5022
  :instance_name)
5023
+ SENSITIVE = []
4837
5024
  include Aws::Structure
4838
5025
  end
4839
5026
 
@@ -4846,6 +5033,7 @@ module Aws::Lightsail
4846
5033
  #
4847
5034
  class GetInstanceResult < Struct.new(
4848
5035
  :instance)
5036
+ SENSITIVE = []
4849
5037
  include Aws::Structure
4850
5038
  end
4851
5039
 
@@ -4864,6 +5052,7 @@ module Aws::Lightsail
4864
5052
  #
4865
5053
  class GetInstanceSnapshotRequest < Struct.new(
4866
5054
  :instance_snapshot_name)
5055
+ SENSITIVE = []
4867
5056
  include Aws::Structure
4868
5057
  end
4869
5058
 
@@ -4876,6 +5065,7 @@ module Aws::Lightsail
4876
5065
  #
4877
5066
  class GetInstanceSnapshotResult < Struct.new(
4878
5067
  :instance_snapshot)
5068
+ SENSITIVE = []
4879
5069
  include Aws::Structure
4880
5070
  end
4881
5071
 
@@ -4899,6 +5089,7 @@ module Aws::Lightsail
4899
5089
  #
4900
5090
  class GetInstanceSnapshotsRequest < Struct.new(
4901
5091
  :page_token)
5092
+ SENSITIVE = []
4902
5093
  include Aws::Structure
4903
5094
  end
4904
5095
 
@@ -4923,6 +5114,7 @@ module Aws::Lightsail
4923
5114
  class GetInstanceSnapshotsResult < Struct.new(
4924
5115
  :instance_snapshots,
4925
5116
  :next_page_token)
5117
+ SENSITIVE = []
4926
5118
  include Aws::Structure
4927
5119
  end
4928
5120
 
@@ -4941,6 +5133,7 @@ module Aws::Lightsail
4941
5133
  #
4942
5134
  class GetInstanceStateRequest < Struct.new(
4943
5135
  :instance_name)
5136
+ SENSITIVE = []
4944
5137
  include Aws::Structure
4945
5138
  end
4946
5139
 
@@ -4952,6 +5145,7 @@ module Aws::Lightsail
4952
5145
  #
4953
5146
  class GetInstanceStateResult < Struct.new(
4954
5147
  :state)
5148
+ SENSITIVE = []
4955
5149
  include Aws::Structure
4956
5150
  end
4957
5151
 
@@ -4975,6 +5169,7 @@ module Aws::Lightsail
4975
5169
  #
4976
5170
  class GetInstancesRequest < Struct.new(
4977
5171
  :page_token)
5172
+ SENSITIVE = []
4978
5173
  include Aws::Structure
4979
5174
  end
4980
5175
 
@@ -4999,6 +5194,7 @@ module Aws::Lightsail
4999
5194
  class GetInstancesResult < Struct.new(
5000
5195
  :instances,
5001
5196
  :next_page_token)
5197
+ SENSITIVE = []
5002
5198
  include Aws::Structure
5003
5199
  end
5004
5200
 
@@ -5017,6 +5213,7 @@ module Aws::Lightsail
5017
5213
  #
5018
5214
  class GetKeyPairRequest < Struct.new(
5019
5215
  :key_pair_name)
5216
+ SENSITIVE = []
5020
5217
  include Aws::Structure
5021
5218
  end
5022
5219
 
@@ -5029,6 +5226,7 @@ module Aws::Lightsail
5029
5226
  #
5030
5227
  class GetKeyPairResult < Struct.new(
5031
5228
  :key_pair)
5229
+ SENSITIVE = []
5032
5230
  include Aws::Structure
5033
5231
  end
5034
5232
 
@@ -5052,6 +5250,7 @@ module Aws::Lightsail
5052
5250
  #
5053
5251
  class GetKeyPairsRequest < Struct.new(
5054
5252
  :page_token)
5253
+ SENSITIVE = []
5055
5254
  include Aws::Structure
5056
5255
  end
5057
5256
 
@@ -5076,6 +5275,7 @@ module Aws::Lightsail
5076
5275
  class GetKeyPairsResult < Struct.new(
5077
5276
  :key_pairs,
5078
5277
  :next_page_token)
5278
+ SENSITIVE = []
5079
5279
  include Aws::Structure
5080
5280
  end
5081
5281
 
@@ -5103,7 +5303,7 @@ module Aws::Lightsail
5103
5303
  # most useful `statistics` to include in your request, and the
5104
5304
  # published `unit` value.
5105
5305
  #
5106
- # * <b> <code>ClientTLSNegotiationErrorCount</code> </b> The number
5306
+ # * <b> <code>ClientTLSNegotiationErrorCount</code> </b> - The number
5107
5307
  # of TLS connections initiated by the client that did not establish
5108
5308
  # a session with the load balancer due to a TLS error generated by
5109
5309
  # the load balancer. Possible causes include a mismatch of ciphers
@@ -5113,7 +5313,7 @@ module Aws::Lightsail
5113
5313
  #
5114
5314
  # `Unit`\: The published unit is `Count`.
5115
5315
  #
5116
- # * <b> <code>HealthyHostCount</code> </b> The number of target
5316
+ # * <b> <code>HealthyHostCount</code> </b> - The number of target
5117
5317
  # instances that are considered healthy.
5118
5318
  #
5119
5319
  # `Statistics`\: The most useful statistic are `Average`, `Minimum`,
@@ -5121,7 +5321,7 @@ module Aws::Lightsail
5121
5321
  #
5122
5322
  # `Unit`\: The published unit is `Count`.
5123
5323
  #
5124
- # * <b> <code>HTTPCode_Instance_2XX_Count</code> </b> The number of
5324
+ # * <b> <code>HTTPCode_Instance_2XX_Count</code> </b> - The number of
5125
5325
  # HTTP 2XX response codes generated by the target instances. This
5126
5326
  # does not include any response codes generated by the load
5127
5327
  # balancer.
@@ -5131,7 +5331,7 @@ module Aws::Lightsail
5131
5331
  #
5132
5332
  # `Unit`\: The published unit is `Count`.
5133
5333
  #
5134
- # * <b> <code>HTTPCode_Instance_3XX_Count</code> </b> The number of
5334
+ # * <b> <code>HTTPCode_Instance_3XX_Count</code> </b> - The number of
5135
5335
  # HTTP 3XX response codes generated by the target instances. This
5136
5336
  # does not include any response codes generated by the load
5137
5337
  # balancer.
@@ -5141,7 +5341,7 @@ module Aws::Lightsail
5141
5341
  #
5142
5342
  # `Unit`\: The published unit is `Count`.
5143
5343
  #
5144
- # * <b> <code>HTTPCode_Instance_4XX_Count</code> </b> The number of
5344
+ # * <b> <code>HTTPCode_Instance_4XX_Count</code> </b> - The number of
5145
5345
  # HTTP 4XX response codes generated by the target instances. This
5146
5346
  # does not include any response codes generated by the load
5147
5347
  # balancer.
@@ -5151,7 +5351,7 @@ module Aws::Lightsail
5151
5351
  #
5152
5352
  # `Unit`\: The published unit is `Count`.
5153
5353
  #
5154
- # * <b> <code>HTTPCode_Instance_5XX_Count</code> </b> The number of
5354
+ # * <b> <code>HTTPCode_Instance_5XX_Count</code> </b> - The number of
5155
5355
  # HTTP 5XX response codes generated by the target instances. This
5156
5356
  # does not include any response codes generated by the load
5157
5357
  # balancer.
@@ -5161,7 +5361,7 @@ module Aws::Lightsail
5161
5361
  #
5162
5362
  # `Unit`\: The published unit is `Count`.
5163
5363
  #
5164
- # * <b> <code>HTTPCode_LB_4XX_Count</code> </b> The number of HTTP
5364
+ # * <b> <code>HTTPCode_LB_4XX_Count</code> </b> - The number of HTTP
5165
5365
  # 4XX client error codes that originated from the load balancer.
5166
5366
  # Client errors are generated when requests are malformed or
5167
5367
  # incomplete. These requests were not received by the target
@@ -5173,7 +5373,7 @@ module Aws::Lightsail
5173
5373
  #
5174
5374
  # `Unit`\: The published unit is `Count`.
5175
5375
  #
5176
- # * <b> <code>HTTPCode_LB_5XX_Count</code> </b> The number of HTTP
5376
+ # * <b> <code>HTTPCode_LB_5XX_Count</code> </b> - The number of HTTP
5177
5377
  # 5XX server error codes that originated from the load balancer.
5178
5378
  # This does not include any response codes generated by the target
5179
5379
  # instance. This metric is reported if there are no healthy
@@ -5186,7 +5386,7 @@ module Aws::Lightsail
5186
5386
  #
5187
5387
  # `Unit`\: The published unit is `Count`.
5188
5388
  #
5189
- # * <b> <code>InstanceResponseTime</code> </b> The time elapsed, in
5389
+ # * <b> <code>InstanceResponseTime</code> </b> - The time elapsed, in
5190
5390
  # seconds, after the request leaves the load balancer until a
5191
5391
  # response from the target instance is received.
5192
5392
  #
@@ -5194,7 +5394,7 @@ module Aws::Lightsail
5194
5394
  #
5195
5395
  # `Unit`\: The published unit is `Seconds`.
5196
5396
  #
5197
- # * <b> <code>RejectedConnectionCount</code> </b> The number of
5397
+ # * <b> <code>RejectedConnectionCount</code> </b> - The number of
5198
5398
  # connections that were rejected because the load balancer had
5199
5399
  # reached its maximum number of connections.
5200
5400
  #
@@ -5202,7 +5402,7 @@ module Aws::Lightsail
5202
5402
  #
5203
5403
  # `Unit`\: The published unit is `Count`.
5204
5404
  #
5205
- # * <b> <code>RequestCount</code> </b> The number of requests
5405
+ # * <b> <code>RequestCount</code> </b> - The number of requests
5206
5406
  # processed over IPv4. This count includes only the requests with a
5207
5407
  # response generated by a target instance of the load balancer.
5208
5408
  #
@@ -5211,7 +5411,7 @@ module Aws::Lightsail
5211
5411
  #
5212
5412
  # `Unit`\: The published unit is `Count`.
5213
5413
  #
5214
- # * <b> <code>UnhealthyHostCount</code> </b> The number of target
5414
+ # * <b> <code>UnhealthyHostCount</code> </b> - The number of target
5215
5415
  # instances that are considered unhealthy.
5216
5416
  #
5217
5417
  # `Statistics`\: The most useful statistic are `Average`, `Minimum`,
@@ -5234,7 +5434,7 @@ module Aws::Lightsail
5234
5434
  #
5235
5435
  # @!attribute [rw] unit
5236
5436
  # The unit for the metric data request. Valid units depend on the
5237
- # metric data being required. For the valid units with each available
5437
+ # metric data being requested. For the valid units with each available
5238
5438
  # metric, see the `metricName` parameter.
5239
5439
  # @return [String]
5240
5440
  #
@@ -5243,26 +5443,26 @@ module Aws::Lightsail
5243
5443
  #
5244
5444
  # The following statistics are available:
5245
5445
  #
5246
- # * `Minimum` The lowest value observed during the specified period.
5446
+ # * `Minimum` - The lowest value observed during the specified period.
5247
5447
  # Use this value to determine low volumes of activity for your
5248
5448
  # application.
5249
5449
  #
5250
- # * `Maximum` The highest value observed during the specified
5450
+ # * `Maximum` - The highest value observed during the specified
5251
5451
  # period. Use this value to determine high volumes of activity for
5252
5452
  # your application.
5253
5453
  #
5254
- # * `Sum` All values submitted for the matching metric added
5454
+ # * `Sum` - All values submitted for the matching metric added
5255
5455
  # together. You can use this statistic to determine the total volume
5256
5456
  # of a metric.
5257
5457
  #
5258
- # * `Average` The value of Sum / SampleCount during the specified
5458
+ # * `Average` - The value of Sum / SampleCount during the specified
5259
5459
  # period. By comparing this statistic with the Minimum and Maximum
5260
5460
  # values, you can determine the full scope of a metric and how close
5261
5461
  # the average use is to the Minimum and Maximum values. This
5262
5462
  # comparison helps you to know when to increase or decrease your
5263
5463
  # resources.
5264
5464
  #
5265
- # * `SampleCount` The count, or number, of data points used for the
5465
+ # * `SampleCount` - The count, or number, of data points used for the
5266
5466
  # statistical calculation.
5267
5467
  # @return [Array<String>]
5268
5468
  #
@@ -5276,102 +5476,16 @@ module Aws::Lightsail
5276
5476
  :end_time,
5277
5477
  :unit,
5278
5478
  :statistics)
5479
+ SENSITIVE = []
5279
5480
  include Aws::Structure
5280
5481
  end
5281
5482
 
5282
5483
  # @!attribute [rw] metric_name
5283
- # The metric about which you are receiving information. Valid values
5284
- # are listed below, along with the most useful `statistics` to include
5285
- # in your request.
5286
- #
5287
- # * <b> <code>ClientTLSNegotiationErrorCount</code> </b> - The number
5288
- # of TLS connections initiated by the client that did not establish
5289
- # a session with the load balancer. Possible causes include a
5290
- # mismatch of ciphers or protocols.
5291
- #
5292
- # `Statistics`\: The most useful statistic is `Sum`.
5293
- #
5294
- # * <b> <code>HealthyHostCount</code> </b> - The number of target
5295
- # instances that are considered healthy.
5296
- #
5297
- # `Statistics`\: The most useful statistic are `Average`, `Minimum`,
5298
- # and `Maximum`.
5299
- #
5300
- # * <b> <code>UnhealthyHostCount</code> </b> - The number of target
5301
- # instances that are considered unhealthy.
5302
- #
5303
- # `Statistics`\: The most useful statistic are `Average`, `Minimum`,
5304
- # and `Maximum`.
5305
- #
5306
- # * <b> <code>HTTPCode_LB_4XX_Count</code> </b> - The number of HTTP
5307
- # 4XX client error codes that originate from the load balancer.
5308
- # Client errors are generated when requests are malformed or
5309
- # incomplete. These requests have not been received by the target
5310
- # instance. This count does not include any response codes generated
5311
- # by the target instances.
5312
- #
5313
- # `Statistics`\: The most useful statistic is `Sum`. Note that
5314
- # `Minimum`, `Maximum`, and `Average` all return `1`.
5315
- #
5316
- # * <b> <code>HTTPCode_LB_5XX_Count</code> </b> - The number of HTTP
5317
- # 5XX server error codes that originate from the load balancer. This
5318
- # count does not include any response codes generated by the target
5319
- # instances.
5320
- #
5321
- # `Statistics`\: The most useful statistic is `Sum`. Note that
5322
- # `Minimum`, `Maximum`, and `Average` all return `1`. Note that
5323
- # `Minimum`, `Maximum`, and `Average` all return `1`.
5324
- #
5325
- # * <b> <code>HTTPCode_Instance_2XX_Count</code> </b> - The number of
5326
- # HTTP response codes generated by the target instances. This does
5327
- # not include any response codes generated by the load balancer.
5328
- #
5329
- # `Statistics`\: The most useful statistic is `Sum`. Note that
5330
- # `Minimum`, `Maximum`, and `Average` all return `1`.
5331
- #
5332
- # * <b> <code>HTTPCode_Instance_3XX_Count</code> </b> - The number of
5333
- # HTTP response codes generated by the target instances. This does
5334
- # not include any response codes generated by the load balancer.
5335
- #
5336
- # `Statistics`\: The most useful statistic is `Sum`. Note that
5337
- # `Minimum`, `Maximum`, and `Average` all return `1`.
5338
- #
5339
- # * <b> <code>HTTPCode_Instance_4XX_Count</code> </b> - The number of
5340
- # HTTP response codes generated by the target instances. This does
5341
- # not include any response codes generated by the load balancer.
5342
- #
5343
- # `Statistics`\: The most useful statistic is `Sum`. Note that
5344
- # `Minimum`, `Maximum`, and `Average` all return `1`.
5345
- #
5346
- # * <b> <code>HTTPCode_Instance_5XX_Count</code> </b> - The number of
5347
- # HTTP response codes generated by the target instances. This does
5348
- # not include any response codes generated by the load balancer.
5349
- #
5350
- # `Statistics`\: The most useful statistic is `Sum`. Note that
5351
- # `Minimum`, `Maximum`, and `Average` all return `1`.
5352
- #
5353
- # * <b> <code>InstanceResponseTime</code> </b> - The time elapsed, in
5354
- # seconds, after the request leaves the load balancer until a
5355
- # response from the target instance is received.
5356
- #
5357
- # `Statistics`\: The most useful statistic is `Average`.
5358
- #
5359
- # * <b> <code>RejectedConnectionCount</code> </b> - The number of
5360
- # connections that were rejected because the load balancer had
5361
- # reached its maximum number of connections.
5362
- #
5363
- # `Statistics`\: The most useful statistic is `Sum`.
5364
- #
5365
- # * <b> <code>RequestCount</code> </b> - The number of requests
5366
- # processed over IPv4. This count includes only the requests with a
5367
- # response generated by a target instance of the load balancer.
5368
- #
5369
- # `Statistics`\: The most useful statistic is `Sum`. Note that
5370
- # `Minimum`, `Maximum`, and `Average` all return `1`.
5484
+ # The name of the metric returned.
5371
5485
  # @return [String]
5372
5486
  #
5373
5487
  # @!attribute [rw] metric_data
5374
- # An array of metric datapoint objects.
5488
+ # An array of objects that describe the metric data returned.
5375
5489
  # @return [Array<Types::MetricDatapoint>]
5376
5490
  #
5377
5491
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/GetLoadBalancerMetricDataResult AWS API Documentation
@@ -5379,6 +5493,7 @@ module Aws::Lightsail
5379
5493
  class GetLoadBalancerMetricDataResult < Struct.new(
5380
5494
  :metric_name,
5381
5495
  :metric_data)
5496
+ SENSITIVE = []
5382
5497
  include Aws::Structure
5383
5498
  end
5384
5499
 
@@ -5397,6 +5512,7 @@ module Aws::Lightsail
5397
5512
  #
5398
5513
  class GetLoadBalancerRequest < Struct.new(
5399
5514
  :load_balancer_name)
5515
+ SENSITIVE = []
5400
5516
  include Aws::Structure
5401
5517
  end
5402
5518
 
@@ -5408,6 +5524,7 @@ module Aws::Lightsail
5408
5524
  #
5409
5525
  class GetLoadBalancerResult < Struct.new(
5410
5526
  :load_balancer)
5527
+ SENSITIVE = []
5411
5528
  include Aws::Structure
5412
5529
  end
5413
5530
 
@@ -5427,6 +5544,7 @@ module Aws::Lightsail
5427
5544
  #
5428
5545
  class GetLoadBalancerTlsCertificatesRequest < Struct.new(
5429
5546
  :load_balancer_name)
5547
+ SENSITIVE = []
5430
5548
  include Aws::Structure
5431
5549
  end
5432
5550
 
@@ -5439,6 +5557,7 @@ module Aws::Lightsail
5439
5557
  #
5440
5558
  class GetLoadBalancerTlsCertificatesResult < Struct.new(
5441
5559
  :tls_certificates)
5560
+ SENSITIVE = []
5442
5561
  include Aws::Structure
5443
5562
  end
5444
5563
 
@@ -5462,6 +5581,7 @@ module Aws::Lightsail
5462
5581
  #
5463
5582
  class GetLoadBalancersRequest < Struct.new(
5464
5583
  :page_token)
5584
+ SENSITIVE = []
5465
5585
  include Aws::Structure
5466
5586
  end
5467
5587
 
@@ -5485,6 +5605,7 @@ module Aws::Lightsail
5485
5605
  class GetLoadBalancersResult < Struct.new(
5486
5606
  :load_balancers,
5487
5607
  :next_page_token)
5608
+ SENSITIVE = []
5488
5609
  include Aws::Structure
5489
5610
  end
5490
5611
 
@@ -5503,12 +5624,13 @@ module Aws::Lightsail
5503
5624
  #
5504
5625
  class GetOperationRequest < Struct.new(
5505
5626
  :operation_id)
5627
+ SENSITIVE = []
5506
5628
  include Aws::Structure
5507
5629
  end
5508
5630
 
5509
5631
  # @!attribute [rw] operation
5510
5632
  # An array of objects that describe the result of the action, such as
5511
- # the status of the request, the time stamp of the request, and the
5633
+ # the status of the request, the timestamp of the request, and the
5512
5634
  # resources affected by the request.
5513
5635
  # @return [Types::Operation]
5514
5636
  #
@@ -5516,6 +5638,7 @@ module Aws::Lightsail
5516
5638
  #
5517
5639
  class GetOperationResult < Struct.new(
5518
5640
  :operation)
5641
+ SENSITIVE = []
5519
5642
  include Aws::Structure
5520
5643
  end
5521
5644
 
@@ -5545,12 +5668,13 @@ module Aws::Lightsail
5545
5668
  class GetOperationsForResourceRequest < Struct.new(
5546
5669
  :resource_name,
5547
5670
  :page_token)
5671
+ SENSITIVE = []
5548
5672
  include Aws::Structure
5549
5673
  end
5550
5674
 
5551
5675
  # @!attribute [rw] operations
5552
5676
  # An array of objects that describe the result of the action, such as
5553
- # the status of the request, the time stamp of the request, and the
5677
+ # the status of the request, the timestamp of the request, and the
5554
5678
  # resources affected by the request.
5555
5679
  # @return [Array<Types::Operation>]
5556
5680
  #
@@ -5581,6 +5705,7 @@ module Aws::Lightsail
5581
5705
  :operations,
5582
5706
  :next_page_count,
5583
5707
  :next_page_token)
5708
+ SENSITIVE = []
5584
5709
  include Aws::Structure
5585
5710
  end
5586
5711
 
@@ -5604,12 +5729,13 @@ module Aws::Lightsail
5604
5729
  #
5605
5730
  class GetOperationsRequest < Struct.new(
5606
5731
  :page_token)
5732
+ SENSITIVE = []
5607
5733
  include Aws::Structure
5608
5734
  end
5609
5735
 
5610
5736
  # @!attribute [rw] operations
5611
5737
  # An array of objects that describe the result of the action, such as
5612
- # the status of the request, the time stamp of the request, and the
5738
+ # the status of the request, the timestamp of the request, and the
5613
5739
  # resources affected by the request.
5614
5740
  # @return [Array<Types::Operation>]
5615
5741
  #
@@ -5629,6 +5755,7 @@ module Aws::Lightsail
5629
5755
  class GetOperationsResult < Struct.new(
5630
5756
  :operations,
5631
5757
  :next_page_token)
5758
+ SENSITIVE = []
5632
5759
  include Aws::Structure
5633
5760
  end
5634
5761
 
@@ -5657,6 +5784,7 @@ module Aws::Lightsail
5657
5784
  class GetRegionsRequest < Struct.new(
5658
5785
  :include_availability_zones,
5659
5786
  :include_relational_database_availability_zones)
5787
+ SENSITIVE = []
5660
5788
  include Aws::Structure
5661
5789
  end
5662
5790
 
@@ -5669,6 +5797,7 @@ module Aws::Lightsail
5669
5797
  #
5670
5798
  class GetRegionsResult < Struct.new(
5671
5799
  :regions)
5800
+ SENSITIVE = []
5672
5801
  include Aws::Structure
5673
5802
  end
5674
5803
 
@@ -5692,6 +5821,7 @@ module Aws::Lightsail
5692
5821
  #
5693
5822
  class GetRelationalDatabaseBlueprintsRequest < Struct.new(
5694
5823
  :page_token)
5824
+ SENSITIVE = []
5695
5825
  include Aws::Structure
5696
5826
  end
5697
5827
 
@@ -5716,6 +5846,7 @@ module Aws::Lightsail
5716
5846
  class GetRelationalDatabaseBlueprintsResult < Struct.new(
5717
5847
  :blueprints,
5718
5848
  :next_page_token)
5849
+ SENSITIVE = []
5719
5850
  include Aws::Structure
5720
5851
  end
5721
5852
 
@@ -5739,6 +5870,7 @@ module Aws::Lightsail
5739
5870
  #
5740
5871
  class GetRelationalDatabaseBundlesRequest < Struct.new(
5741
5872
  :page_token)
5873
+ SENSITIVE = []
5742
5874
  include Aws::Structure
5743
5875
  end
5744
5876
 
@@ -5763,6 +5895,7 @@ module Aws::Lightsail
5763
5895
  class GetRelationalDatabaseBundlesResult < Struct.new(
5764
5896
  :bundles,
5765
5897
  :next_page_token)
5898
+ SENSITIVE = []
5766
5899
  include Aws::Structure
5767
5900
  end
5768
5901
 
@@ -5803,6 +5936,7 @@ module Aws::Lightsail
5803
5936
  :relational_database_name,
5804
5937
  :duration_in_minutes,
5805
5938
  :page_token)
5939
+ SENSITIVE = []
5806
5940
  include Aws::Structure
5807
5941
  end
5808
5942
 
@@ -5827,6 +5961,7 @@ module Aws::Lightsail
5827
5961
  class GetRelationalDatabaseEventsResult < Struct.new(
5828
5962
  :relational_database_events,
5829
5963
  :next_page_token)
5964
+ SENSITIVE = []
5830
5965
  include Aws::Structure
5831
5966
  end
5832
5967
 
@@ -5911,6 +6046,7 @@ module Aws::Lightsail
5911
6046
  :end_time,
5912
6047
  :start_from_head,
5913
6048
  :page_token)
6049
+ SENSITIVE = []
5914
6050
  include Aws::Structure
5915
6051
  end
5916
6052
 
@@ -5935,6 +6071,7 @@ module Aws::Lightsail
5935
6071
  :resource_log_events,
5936
6072
  :next_backward_token,
5937
6073
  :next_forward_token)
6074
+ SENSITIVE = []
5938
6075
  include Aws::Structure
5939
6076
  end
5940
6077
 
@@ -5953,6 +6090,7 @@ module Aws::Lightsail
5953
6090
  #
5954
6091
  class GetRelationalDatabaseLogStreamsRequest < Struct.new(
5955
6092
  :relational_database_name)
6093
+ SENSITIVE = []
5956
6094
  include Aws::Structure
5957
6095
  end
5958
6096
 
@@ -5965,6 +6103,7 @@ module Aws::Lightsail
5965
6103
  #
5966
6104
  class GetRelationalDatabaseLogStreamsResult < Struct.new(
5967
6105
  :log_streams)
6106
+ SENSITIVE = []
5968
6107
  include Aws::Structure
5969
6108
  end
5970
6109
 
@@ -5997,6 +6136,7 @@ module Aws::Lightsail
5997
6136
  class GetRelationalDatabaseMasterUserPasswordRequest < Struct.new(
5998
6137
  :relational_database_name,
5999
6138
  :password_version)
6139
+ SENSITIVE = []
6000
6140
  include Aws::Structure
6001
6141
  end
6002
6142
 
@@ -6014,6 +6154,7 @@ module Aws::Lightsail
6014
6154
  class GetRelationalDatabaseMasterUserPasswordResult < Struct.new(
6015
6155
  :master_user_password,
6016
6156
  :created_at)
6157
+ SENSITIVE = [:master_user_password]
6017
6158
  include Aws::Structure
6018
6159
  end
6019
6160
 
@@ -6042,7 +6183,7 @@ module Aws::Lightsail
6042
6183
  # published `unit` value. All relational database metric data is
6043
6184
  # available in 1-minute (60 seconds) granularity.
6044
6185
  #
6045
- # * <b> <code>CPUUtilization</code> </b> The percentage of CPU
6186
+ # * <b> <code>CPUUtilization</code> </b> - The percentage of CPU
6046
6187
  # utilization currently in use on the database.
6047
6188
  #
6048
6189
  # `Statistics`\: The most useful statistics are `Maximum` and
@@ -6050,28 +6191,28 @@ module Aws::Lightsail
6050
6191
  #
6051
6192
  # `Unit`\: The published unit is `Percent`.
6052
6193
  #
6053
- # * <b> <code>DatabaseConnections</code> </b> The number of database
6194
+ # * <b> <code>DatabaseConnections</code> </b> - The number of database
6054
6195
  # connections in use.
6055
6196
  #
6056
6197
  # `Statistics`\: The most useful statistics are `Maximum` and `Sum`.
6057
6198
  #
6058
6199
  # `Unit`\: The published unit is `Count`.
6059
6200
  #
6060
- # * <b> <code>DiskQueueDepth</code> </b> The number of outstanding
6201
+ # * <b> <code>DiskQueueDepth</code> </b> - The number of outstanding
6061
6202
  # IOs (read/write requests) that are waiting to access the disk.
6062
6203
  #
6063
6204
  # `Statistics`\: The most useful statistic is `Sum`.
6064
6205
  #
6065
6206
  # `Unit`\: The published unit is `Count`.
6066
6207
  #
6067
- # * <b> <code>FreeStorageSpace</code> </b> The amount of available
6208
+ # * <b> <code>FreeStorageSpace</code> </b> - The amount of available
6068
6209
  # storage space.
6069
6210
  #
6070
6211
  # `Statistics`\: The most useful statistic is `Sum`.
6071
6212
  #
6072
6213
  # `Unit`\: The published unit is `Bytes`.
6073
6214
  #
6074
- # * <b> <code>NetworkReceiveThroughput</code> </b> The incoming
6215
+ # * <b> <code>NetworkReceiveThroughput</code> </b> - The incoming
6075
6216
  # (Receive) network traffic on the database, including both customer
6076
6217
  # database traffic and AWS traffic used for monitoring and
6077
6218
  # replication.
@@ -6080,7 +6221,7 @@ module Aws::Lightsail
6080
6221
  #
6081
6222
  # `Unit`\: The published unit is `Bytes/Second`.
6082
6223
  #
6083
- # * <b> <code>NetworkTransmitThroughput</code> </b> The outgoing
6224
+ # * <b> <code>NetworkTransmitThroughput</code> </b> - The outgoing
6084
6225
  # (Transmit) network traffic on the database, including both
6085
6226
  # customer database traffic and AWS traffic used for monitoring and
6086
6227
  # replication.
@@ -6125,7 +6266,7 @@ module Aws::Lightsail
6125
6266
  #
6126
6267
  # @!attribute [rw] unit
6127
6268
  # The unit for the metric data request. Valid units depend on the
6128
- # metric data being required. For the valid units with each available
6269
+ # metric data being requested. For the valid units with each available
6129
6270
  # metric, see the `metricName` parameter.
6130
6271
  # @return [String]
6131
6272
  #
@@ -6134,26 +6275,26 @@ module Aws::Lightsail
6134
6275
  #
6135
6276
  # The following statistics are available:
6136
6277
  #
6137
- # * `Minimum` The lowest value observed during the specified period.
6278
+ # * `Minimum` - The lowest value observed during the specified period.
6138
6279
  # Use this value to determine low volumes of activity for your
6139
6280
  # application.
6140
6281
  #
6141
- # * `Maximum` The highest value observed during the specified
6282
+ # * `Maximum` - The highest value observed during the specified
6142
6283
  # period. Use this value to determine high volumes of activity for
6143
6284
  # your application.
6144
6285
  #
6145
- # * `Sum` All values submitted for the matching metric added
6286
+ # * `Sum` - All values submitted for the matching metric added
6146
6287
  # together. You can use this statistic to determine the total volume
6147
6288
  # of a metric.
6148
6289
  #
6149
- # * `Average` The value of Sum / SampleCount during the specified
6290
+ # * `Average` - The value of Sum / SampleCount during the specified
6150
6291
  # period. By comparing this statistic with the Minimum and Maximum
6151
6292
  # values, you can determine the full scope of a metric and how close
6152
6293
  # the average use is to the Minimum and Maximum values. This
6153
6294
  # comparison helps you to know when to increase or decrease your
6154
6295
  # resources.
6155
6296
  #
6156
- # * `SampleCount` The count, or number, of data points used for the
6297
+ # * `SampleCount` - The count, or number, of data points used for the
6157
6298
  # statistical calculation.
6158
6299
  # @return [Array<String>]
6159
6300
  #
@@ -6167,16 +6308,16 @@ module Aws::Lightsail
6167
6308
  :end_time,
6168
6309
  :unit,
6169
6310
  :statistics)
6311
+ SENSITIVE = []
6170
6312
  include Aws::Structure
6171
6313
  end
6172
6314
 
6173
6315
  # @!attribute [rw] metric_name
6174
- # The name of the metric.
6316
+ # The name of the metric returned.
6175
6317
  # @return [String]
6176
6318
  #
6177
6319
  # @!attribute [rw] metric_data
6178
- # An object describing the result of your get relational database
6179
- # metric data request.
6320
+ # An array of objects that describe the metric data returned.
6180
6321
  # @return [Array<Types::MetricDatapoint>]
6181
6322
  #
6182
6323
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/GetRelationalDatabaseMetricDataResult AWS API Documentation
@@ -6184,6 +6325,7 @@ module Aws::Lightsail
6184
6325
  class GetRelationalDatabaseMetricDataResult < Struct.new(
6185
6326
  :metric_name,
6186
6327
  :metric_data)
6328
+ SENSITIVE = []
6187
6329
  include Aws::Structure
6188
6330
  end
6189
6331
 
@@ -6213,6 +6355,7 @@ module Aws::Lightsail
6213
6355
  class GetRelationalDatabaseParametersRequest < Struct.new(
6214
6356
  :relational_database_name,
6215
6357
  :page_token)
6358
+ SENSITIVE = []
6216
6359
  include Aws::Structure
6217
6360
  end
6218
6361
 
@@ -6237,6 +6380,7 @@ module Aws::Lightsail
6237
6380
  class GetRelationalDatabaseParametersResult < Struct.new(
6238
6381
  :parameters,
6239
6382
  :next_page_token)
6383
+ SENSITIVE = []
6240
6384
  include Aws::Structure
6241
6385
  end
6242
6386
 
@@ -6255,6 +6399,7 @@ module Aws::Lightsail
6255
6399
  #
6256
6400
  class GetRelationalDatabaseRequest < Struct.new(
6257
6401
  :relational_database_name)
6402
+ SENSITIVE = []
6258
6403
  include Aws::Structure
6259
6404
  end
6260
6405
 
@@ -6266,6 +6411,7 @@ module Aws::Lightsail
6266
6411
  #
6267
6412
  class GetRelationalDatabaseResult < Struct.new(
6268
6413
  :relational_database)
6414
+ SENSITIVE = []
6269
6415
  include Aws::Structure
6270
6416
  end
6271
6417
 
@@ -6284,6 +6430,7 @@ module Aws::Lightsail
6284
6430
  #
6285
6431
  class GetRelationalDatabaseSnapshotRequest < Struct.new(
6286
6432
  :relational_database_snapshot_name)
6433
+ SENSITIVE = []
6287
6434
  include Aws::Structure
6288
6435
  end
6289
6436
 
@@ -6295,6 +6442,7 @@ module Aws::Lightsail
6295
6442
  #
6296
6443
  class GetRelationalDatabaseSnapshotResult < Struct.new(
6297
6444
  :relational_database_snapshot)
6445
+ SENSITIVE = []
6298
6446
  include Aws::Structure
6299
6447
  end
6300
6448
 
@@ -6318,6 +6466,7 @@ module Aws::Lightsail
6318
6466
  #
6319
6467
  class GetRelationalDatabaseSnapshotsRequest < Struct.new(
6320
6468
  :page_token)
6469
+ SENSITIVE = []
6321
6470
  include Aws::Structure
6322
6471
  end
6323
6472
 
@@ -6342,6 +6491,7 @@ module Aws::Lightsail
6342
6491
  class GetRelationalDatabaseSnapshotsResult < Struct.new(
6343
6492
  :relational_database_snapshots,
6344
6493
  :next_page_token)
6494
+ SENSITIVE = []
6345
6495
  include Aws::Structure
6346
6496
  end
6347
6497
 
@@ -6365,6 +6515,7 @@ module Aws::Lightsail
6365
6515
  #
6366
6516
  class GetRelationalDatabasesRequest < Struct.new(
6367
6517
  :page_token)
6518
+ SENSITIVE = []
6368
6519
  include Aws::Structure
6369
6520
  end
6370
6521
 
@@ -6389,6 +6540,7 @@ module Aws::Lightsail
6389
6540
  class GetRelationalDatabasesResult < Struct.new(
6390
6541
  :relational_databases,
6391
6542
  :next_page_token)
6543
+ SENSITIVE = []
6392
6544
  include Aws::Structure
6393
6545
  end
6394
6546
 
@@ -6407,6 +6559,7 @@ module Aws::Lightsail
6407
6559
  #
6408
6560
  class GetStaticIpRequest < Struct.new(
6409
6561
  :static_ip_name)
6562
+ SENSITIVE = []
6410
6563
  include Aws::Structure
6411
6564
  end
6412
6565
 
@@ -6419,6 +6572,7 @@ module Aws::Lightsail
6419
6572
  #
6420
6573
  class GetStaticIpResult < Struct.new(
6421
6574
  :static_ip)
6575
+ SENSITIVE = []
6422
6576
  include Aws::Structure
6423
6577
  end
6424
6578
 
@@ -6442,6 +6596,7 @@ module Aws::Lightsail
6442
6596
  #
6443
6597
  class GetStaticIpsRequest < Struct.new(
6444
6598
  :page_token)
6599
+ SENSITIVE = []
6445
6600
  include Aws::Structure
6446
6601
  end
6447
6602
 
@@ -6466,6 +6621,7 @@ module Aws::Lightsail
6466
6621
  class GetStaticIpsResult < Struct.new(
6467
6622
  :static_ips,
6468
6623
  :next_page_token)
6624
+ SENSITIVE = []
6469
6625
  include Aws::Structure
6470
6626
  end
6471
6627
 
@@ -6536,6 +6692,7 @@ module Aws::Lightsail
6536
6692
  :fingerprint_sha256,
6537
6693
  :not_valid_before,
6538
6694
  :not_valid_after)
6695
+ SENSITIVE = []
6539
6696
  include Aws::Structure
6540
6697
  end
6541
6698
 
@@ -6561,12 +6718,13 @@ module Aws::Lightsail
6561
6718
  class ImportKeyPairRequest < Struct.new(
6562
6719
  :key_pair_name,
6563
6720
  :public_key_base_64)
6721
+ SENSITIVE = []
6564
6722
  include Aws::Structure
6565
6723
  end
6566
6724
 
6567
6725
  # @!attribute [rw] operation
6568
6726
  # An array of objects that describe the result of the action, such as
6569
- # the status of the request, the time stamp of the request, and the
6727
+ # the status of the request, the timestamp of the request, and the
6570
6728
  # resources affected by the request.
6571
6729
  # @return [Types::Operation]
6572
6730
  #
@@ -6574,6 +6732,7 @@ module Aws::Lightsail
6574
6732
  #
6575
6733
  class ImportKeyPairResult < Struct.new(
6576
6734
  :operation)
6735
+ SENSITIVE = []
6577
6736
  include Aws::Structure
6578
6737
  end
6579
6738
 
@@ -6697,6 +6856,7 @@ module Aws::Lightsail
6697
6856
  :state,
6698
6857
  :username,
6699
6858
  :ssh_key_name)
6859
+ SENSITIVE = []
6700
6860
  include Aws::Structure
6701
6861
  end
6702
6862
 
@@ -6778,6 +6938,7 @@ module Aws::Lightsail
6778
6938
  :instance_name,
6779
6939
  :username,
6780
6940
  :host_keys)
6941
+ SENSITIVE = []
6781
6942
  include Aws::Structure
6782
6943
  end
6783
6944
 
@@ -6816,14 +6977,22 @@ module Aws::Lightsail
6816
6977
  #
6817
6978
  # The following configuration options are available:
6818
6979
  #
6819
- # * DEFAULT Use the default firewall settings from the image.
6980
+ # * `DEFAULT` - Use the default firewall settings from the Lightsail
6981
+ # instance blueprint.
6820
6982
  #
6821
- # * INSTANCE Use the firewall settings from the source Lightsail
6822
- # instance.
6983
+ # * `INSTANCE` - Use the configured firewall settings from the source
6984
+ # Lightsail instance.
6823
6985
  #
6824
- # * NONE Default to Amazon EC2.
6986
+ # * `NONE` - Use the default Amazon EC2 security group.
6825
6987
  #
6826
- # * CLOSED All ports closed.
6988
+ # * `CLOSED` - All ports closed.
6989
+ #
6990
+ # <note markdown="1"> If you configured `lightsail-connect` as a `cidrListAliases` on your
6991
+ # instance, or if you chose to allow the Lightsail browser-based SSH
6992
+ # or RDP clients to connect to your instance, that configuration is
6993
+ # not carried over to your new Amazon EC2 instance.
6994
+ #
6995
+ # </note>
6827
6996
  # @return [String]
6828
6997
  #
6829
6998
  # @!attribute [rw] user_data
@@ -6850,6 +7019,7 @@ module Aws::Lightsail
6850
7019
  :port_info_source,
6851
7020
  :user_data,
6852
7021
  :availability_zone)
7022
+ SENSITIVE = []
6853
7023
  include Aws::Structure
6854
7024
  end
6855
7025
 
@@ -6873,6 +7043,7 @@ module Aws::Lightsail
6873
7043
  :cpu_count,
6874
7044
  :disks,
6875
7045
  :ram_size_in_gb)
7046
+ SENSITIVE = []
6876
7047
  include Aws::Structure
6877
7048
  end
6878
7049
 
@@ -6955,6 +7126,7 @@ module Aws::Lightsail
6955
7126
  :instance_name,
6956
7127
  :instance_health,
6957
7128
  :instance_health_reason)
7129
+ SENSITIVE = []
6958
7130
  include Aws::Structure
6959
7131
  end
6960
7132
 
@@ -6975,21 +7147,50 @@ module Aws::Lightsail
6975
7147
  class InstanceNetworking < Struct.new(
6976
7148
  :monthly_transfer,
6977
7149
  :ports)
7150
+ SENSITIVE = []
6978
7151
  include Aws::Structure
6979
7152
  end
6980
7153
 
6981
- # Describes information about the instance ports.
7154
+ # Describes information about ports for an Amazon Lightsail instance.
6982
7155
  #
6983
7156
  # @!attribute [rw] from_port
6984
- # The first port in the range.
7157
+ # The first port in a range of open ports on an instance.
7158
+ #
7159
+ # Allowed ports:
7160
+ #
7161
+ # * TCP and UDP - `0` to `65535`
7162
+ #
7163
+ # * ICMP - The ICMP type. For example, specify `8` as the `fromPort`
7164
+ # (ICMP type), and `-1` as the `toPort` (ICMP code), to enable ICMP
7165
+ # Ping. For more information, see [Control Messages][1] on
7166
+ # *Wikipedia*.
7167
+ #
7168
+ #
7169
+ #
7170
+ # [1]: https://en.wikipedia.org/wiki/Internet_Control_Message_Protocol#Control_messages
6985
7171
  # @return [Integer]
6986
7172
  #
6987
7173
  # @!attribute [rw] to_port
6988
- # The last port in the range.
7174
+ # The last port in a range of open ports on an instance.
7175
+ #
7176
+ # Allowed ports:
7177
+ #
7178
+ # * TCP and UDP - `0` to `65535`
7179
+ #
7180
+ # * ICMP - The ICMP code. For example, specify `8` as the `fromPort`
7181
+ # (ICMP type), and `-1` as the `toPort` (ICMP code), to enable ICMP
7182
+ # Ping. For more information, see [Control Messages][1] on
7183
+ # *Wikipedia*.
7184
+ #
7185
+ #
7186
+ #
7187
+ # [1]: https://en.wikipedia.org/wiki/Internet_Control_Message_Protocol#Control_messages
6989
7188
  # @return [Integer]
6990
7189
  #
6991
7190
  # @!attribute [rw] protocol
6992
- # The protocol being used. Can be one of the following.
7191
+ # The IP protocol name.
7192
+ #
7193
+ # The name can be one of the following:
6993
7194
  #
6994
7195
  # * `tcp` - Transmission Control Protocol (TCP) provides reliable,
6995
7196
  # ordered, and error-checked delivery of streamed data between
@@ -6998,7 +7199,7 @@ module Aws::Lightsail
6998
7199
  # service, use UDP instead.
6999
7200
  #
7000
7201
  # * `all` - All transport layer protocol types. For more general
7001
- # information, see [Transport layer][1] on Wikipedia.
7202
+ # information, see [Transport layer][1] on *Wikipedia*.
7002
7203
  #
7003
7204
  # * `udp` - With User Datagram Protocol (UDP), computer applications
7004
7205
  # can send messages (or datagrams) to other hosts on an Internet
@@ -7009,14 +7210,23 @@ module Aws::Lightsail
7009
7210
  # latency over reliability. If you do require reliable data stream
7010
7211
  # service, use TCP instead.
7011
7212
  #
7213
+ # * `icmp` - Internet Control Message Protocol (ICMP) is used to send
7214
+ # error messages and operational information indicating success or
7215
+ # failure when communicating with an instance. For example, an error
7216
+ # is indicated when an instance could not be reached. When you
7217
+ # specify `icmp` as the `protocol`, you must specify the ICMP type
7218
+ # using the `fromPort` parameter, and ICMP code using the `toPort`
7219
+ # parameter.
7220
+ #
7012
7221
  #
7013
7222
  #
7014
7223
  # [1]: https://en.wikipedia.org/wiki/Transport_layer
7015
7224
  # @return [String]
7016
7225
  #
7017
7226
  # @!attribute [rw] access_from
7018
- # The location from which access is allowed (e.g., `Anywhere
7019
- # (0.0.0.0/0)`).
7227
+ # The location from which access is allowed. For example, `Anywhere
7228
+ # (0.0.0.0/0)`, or `Custom` if a specific IP address or range of IP
7229
+ # addresses is allowed.
7020
7230
  # @return [String]
7021
7231
  #
7022
7232
  # @!attribute [rw] access_type
@@ -7024,13 +7234,39 @@ module Aws::Lightsail
7024
7234
  # @return [String]
7025
7235
  #
7026
7236
  # @!attribute [rw] common_name
7027
- # The common name.
7237
+ # The common name of the port information.
7028
7238
  # @return [String]
7029
7239
  #
7030
7240
  # @!attribute [rw] access_direction
7031
7241
  # The access direction (`inbound` or `outbound`).
7242
+ #
7243
+ # <note markdown="1"> Lightsail currently supports only `inbound` access direction.
7244
+ #
7245
+ # </note>
7032
7246
  # @return [String]
7033
7247
  #
7248
+ # @!attribute [rw] cidrs
7249
+ # The IP address, or range of IP addresses in CIDR notation, that are
7250
+ # allowed to connect to an instance through the ports, and the
7251
+ # protocol. Lightsail supports IPv4 addresses.
7252
+ #
7253
+ # For more information about CIDR block notation, see [Classless
7254
+ # Inter-Domain Routing][1] on *Wikipedia*.
7255
+ #
7256
+ #
7257
+ #
7258
+ # [1]: https://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing#CIDR_notation
7259
+ # @return [Array<String>]
7260
+ #
7261
+ # @!attribute [rw] cidr_list_aliases
7262
+ # An alias that defines access for a preconfigured range of IP
7263
+ # addresses.
7264
+ #
7265
+ # The only alias currently supported is `lightsail-connect`, which
7266
+ # allows IP addresses of the browser-based RDP/SSH client in the
7267
+ # Lightsail console to connect to your instance.
7268
+ # @return [Array<String>]
7269
+ #
7034
7270
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/InstancePortInfo AWS API Documentation
7035
7271
  #
7036
7272
  class InstancePortInfo < Struct.new(
@@ -7040,22 +7276,54 @@ module Aws::Lightsail
7040
7276
  :access_from,
7041
7277
  :access_type,
7042
7278
  :common_name,
7043
- :access_direction)
7279
+ :access_direction,
7280
+ :cidrs,
7281
+ :cidr_list_aliases)
7282
+ SENSITIVE = []
7044
7283
  include Aws::Structure
7045
7284
  end
7046
7285
 
7047
- # Describes the port state.
7286
+ # Describes open ports on an instance, the IP addresses allowed to
7287
+ # connect to the instance through the ports, and the protocol.
7048
7288
  #
7049
7289
  # @!attribute [rw] from_port
7050
- # The first port in the range.
7290
+ # The first port in a range of open ports on an instance.
7291
+ #
7292
+ # Allowed ports:
7293
+ #
7294
+ # * TCP and UDP - `0` to `65535`
7295
+ #
7296
+ # * ICMP - The ICMP type. For example, specify `8` as the `fromPort`
7297
+ # (ICMP type), and `-1` as the `toPort` (ICMP code), to enable ICMP
7298
+ # Ping. For more information, see [Control Messages][1] on
7299
+ # *Wikipedia*.
7300
+ #
7301
+ #
7302
+ #
7303
+ # [1]: https://en.wikipedia.org/wiki/Internet_Control_Message_Protocol#Control_messages
7051
7304
  # @return [Integer]
7052
7305
  #
7053
7306
  # @!attribute [rw] to_port
7054
- # The last port in the range.
7307
+ # The last port in a range of open ports on an instance.
7308
+ #
7309
+ # Allowed ports:
7310
+ #
7311
+ # * TCP and UDP - `0` to `65535`
7312
+ #
7313
+ # * ICMP - The ICMP code. For example, specify `8` as the `fromPort`
7314
+ # (ICMP type), and `-1` as the `toPort` (ICMP code), to enable ICMP
7315
+ # Ping. For more information, see [Control Messages][1] on
7316
+ # *Wikipedia*.
7317
+ #
7318
+ #
7319
+ #
7320
+ # [1]: https://en.wikipedia.org/wiki/Internet_Control_Message_Protocol#Control_messages
7055
7321
  # @return [Integer]
7056
7322
  #
7057
7323
  # @!attribute [rw] protocol
7058
- # The protocol being used. Can be one of the following.
7324
+ # The IP protocol name.
7325
+ #
7326
+ # The name can be one of the following:
7059
7327
  #
7060
7328
  # * `tcp` - Transmission Control Protocol (TCP) provides reliable,
7061
7329
  # ordered, and error-checked delivery of streamed data between
@@ -7064,7 +7332,7 @@ module Aws::Lightsail
7064
7332
  # service, use UDP instead.
7065
7333
  #
7066
7334
  # * `all` - All transport layer protocol types. For more general
7067
- # information, see [Transport layer][1] on Wikipedia.
7335
+ # information, see [Transport layer][1] on *Wikipedia*.
7068
7336
  #
7069
7337
  # * `udp` - With User Datagram Protocol (UDP), computer applications
7070
7338
  # can send messages (or datagrams) to other hosts on an Internet
@@ -7075,6 +7343,14 @@ module Aws::Lightsail
7075
7343
  # latency over reliability. If you do require reliable data stream
7076
7344
  # service, use TCP instead.
7077
7345
  #
7346
+ # * `icmp` - Internet Control Message Protocol (ICMP) is used to send
7347
+ # error messages and operational information indicating success or
7348
+ # failure when communicating with an instance. For example, an error
7349
+ # is indicated when an instance could not be reached. When you
7350
+ # specify `icmp` as the `protocol`, you must specify the ICMP type
7351
+ # using the `fromPort` parameter, and ICMP code using the `toPort`
7352
+ # parameter.
7353
+ #
7078
7354
  #
7079
7355
  #
7080
7356
  # [1]: https://en.wikipedia.org/wiki/Transport_layer
@@ -7082,15 +7358,44 @@ module Aws::Lightsail
7082
7358
  #
7083
7359
  # @!attribute [rw] state
7084
7360
  # Specifies whether the instance port is `open` or `closed`.
7361
+ #
7362
+ # <note markdown="1"> The port state for Lightsail instances is always `open`.
7363
+ #
7364
+ # </note>
7085
7365
  # @return [String]
7086
7366
  #
7367
+ # @!attribute [rw] cidrs
7368
+ # The IP address, or range of IP addresses in CIDR notation, that are
7369
+ # allowed to connect to an instance through the ports, and the
7370
+ # protocol. Lightsail supports IPv4 addresses.
7371
+ #
7372
+ # For more information about CIDR block notation, see [Classless
7373
+ # Inter-Domain Routing][1] on *Wikipedia*.
7374
+ #
7375
+ #
7376
+ #
7377
+ # [1]: https://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing#CIDR_notation
7378
+ # @return [Array<String>]
7379
+ #
7380
+ # @!attribute [rw] cidr_list_aliases
7381
+ # An alias that defines access for a preconfigured range of IP
7382
+ # addresses.
7383
+ #
7384
+ # The only alias currently supported is `lightsail-connect`, which
7385
+ # allows IP addresses of the browser-based RDP/SSH client in the
7386
+ # Lightsail console to connect to your instance.
7387
+ # @return [Array<String>]
7388
+ #
7087
7389
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/InstancePortState AWS API Documentation
7088
7390
  #
7089
7391
  class InstancePortState < Struct.new(
7090
7392
  :from_port,
7091
7393
  :to_port,
7092
7394
  :protocol,
7093
- :state)
7395
+ :state,
7396
+ :cidrs,
7397
+ :cidr_list_aliases)
7398
+ SENSITIVE = []
7094
7399
  include Aws::Structure
7095
7400
  end
7096
7401
 
@@ -7198,6 +7503,7 @@ module Aws::Lightsail
7198
7503
  :from_bundle_id,
7199
7504
  :is_from_auto_snapshot,
7200
7505
  :size_in_gb)
7506
+ SENSITIVE = []
7201
7507
  include Aws::Structure
7202
7508
  end
7203
7509
 
@@ -7224,6 +7530,7 @@ module Aws::Lightsail
7224
7530
  :from_bundle_id,
7225
7531
  :from_blueprint_id,
7226
7532
  :from_disk_info)
7533
+ SENSITIVE = []
7227
7534
  include Aws::Structure
7228
7535
  end
7229
7536
 
@@ -7242,6 +7549,7 @@ module Aws::Lightsail
7242
7549
  class InstanceState < Struct.new(
7243
7550
  :code,
7244
7551
  :name)
7552
+ SENSITIVE = []
7245
7553
  include Aws::Structure
7246
7554
  end
7247
7555
 
@@ -7273,6 +7581,7 @@ module Aws::Lightsail
7273
7581
  :docs,
7274
7582
  :message,
7275
7583
  :tip)
7584
+ SENSITIVE = []
7276
7585
  include Aws::Structure
7277
7586
  end
7278
7587
 
@@ -7290,6 +7599,7 @@ module Aws::Lightsail
7290
7599
  #
7291
7600
  class IsVpcPeeredResult < Struct.new(
7292
7601
  :is_peered)
7602
+ SENSITIVE = []
7293
7603
  include Aws::Structure
7294
7604
  end
7295
7605
 
@@ -7350,6 +7660,7 @@ module Aws::Lightsail
7350
7660
  :resource_type,
7351
7661
  :tags,
7352
7662
  :fingerprint)
7663
+ SENSITIVE = []
7353
7664
  include Aws::Structure
7354
7665
  end
7355
7666
 
@@ -7461,6 +7772,7 @@ module Aws::Lightsail
7461
7772
  :instance_health_summary,
7462
7773
  :tls_certificate_summaries,
7463
7774
  :configuration_options)
7775
+ SENSITIVE = []
7464
7776
  include Aws::Structure
7465
7777
  end
7466
7778
 
@@ -7541,7 +7853,8 @@ module Aws::Lightsail
7541
7853
  # @return [Boolean]
7542
7854
  #
7543
7855
  # @!attribute [rw] status
7544
- # The status of the SSL/TLS certificate. Valid values are below.
7856
+ # The validation status of the SSL/TLS certificate. Valid values are
7857
+ # below.
7545
7858
  # @return [String]
7546
7859
  #
7547
7860
  # @!attribute [rw] domain_name
@@ -7641,6 +7954,7 @@ module Aws::Lightsail
7641
7954
  :signature_algorithm,
7642
7955
  :subject,
7643
7956
  :subject_alternative_names)
7957
+ SENSITIVE = []
7644
7958
  include Aws::Structure
7645
7959
  end
7646
7960
 
@@ -7660,6 +7974,7 @@ module Aws::Lightsail
7660
7974
  class LoadBalancerTlsCertificateDomainValidationOption < Struct.new(
7661
7975
  :domain_name,
7662
7976
  :validation_status)
7977
+ SENSITIVE = []
7663
7978
  include Aws::Structure
7664
7979
  end
7665
7980
 
@@ -7697,6 +8012,7 @@ module Aws::Lightsail
7697
8012
  :value,
7698
8013
  :validation_status,
7699
8014
  :domain_name)
8015
+ SENSITIVE = []
7700
8016
  include Aws::Structure
7701
8017
  end
7702
8018
 
@@ -7720,6 +8036,7 @@ module Aws::Lightsail
7720
8036
  class LoadBalancerTlsCertificateRenewalSummary < Struct.new(
7721
8037
  :renewal_status,
7722
8038
  :domain_validation_options)
8039
+ SENSITIVE = []
7723
8040
  include Aws::Structure
7724
8041
  end
7725
8042
 
@@ -7739,6 +8056,7 @@ module Aws::Lightsail
7739
8056
  class LoadBalancerTlsCertificateSummary < Struct.new(
7740
8057
  :name,
7741
8058
  :is_attached)
8059
+ SENSITIVE = []
7742
8060
  include Aws::Structure
7743
8061
  end
7744
8062
 
@@ -7757,6 +8075,7 @@ module Aws::Lightsail
7757
8075
  class LogEvent < Struct.new(
7758
8076
  :created_at,
7759
8077
  :message)
8078
+ SENSITIVE = []
7760
8079
  include Aws::Structure
7761
8080
  end
7762
8081
 
@@ -7800,6 +8119,7 @@ module Aws::Lightsail
7800
8119
  :sum,
7801
8120
  :timestamp,
7802
8121
  :unit)
8122
+ SENSITIVE = []
7803
8123
  include Aws::Structure
7804
8124
  end
7805
8125
 
@@ -7833,6 +8153,7 @@ module Aws::Lightsail
7833
8153
  :arn,
7834
8154
  :name,
7835
8155
  :resource_type)
8156
+ SENSITIVE = []
7836
8157
  include Aws::Structure
7837
8158
  end
7838
8159
 
@@ -7847,6 +8168,7 @@ module Aws::Lightsail
7847
8168
  #
7848
8169
  class MonthlyTransfer < Struct.new(
7849
8170
  :gb_per_month_allocated)
8171
+ SENSITIVE = []
7850
8172
  include Aws::Structure
7851
8173
  end
7852
8174
 
@@ -7871,6 +8193,7 @@ module Aws::Lightsail
7871
8193
  :docs,
7872
8194
  :message,
7873
8195
  :tip)
8196
+ SENSITIVE = []
7874
8197
  include Aws::Structure
7875
8198
  end
7876
8199
 
@@ -7881,19 +8204,19 @@ module Aws::Lightsail
7881
8204
  # port_info: { # required
7882
8205
  # from_port: 1,
7883
8206
  # to_port: 1,
7884
- # protocol: "tcp", # accepts tcp, all, udp
8207
+ # protocol: "tcp", # accepts tcp, all, udp, icmp
8208
+ # cidrs: ["string"],
8209
+ # cidr_list_aliases: ["string"],
7885
8210
  # },
7886
8211
  # instance_name: "ResourceName", # required
7887
8212
  # }
7888
8213
  #
7889
8214
  # @!attribute [rw] port_info
7890
- # An array of key-value pairs containing information about the port
7891
- # mappings.
8215
+ # An object to describe the ports to open for the specified instance.
7892
8216
  # @return [Types::PortInfo]
7893
8217
  #
7894
8218
  # @!attribute [rw] instance_name
7895
- # The name of the instance for which you want to open the public
7896
- # ports.
8219
+ # The name of the instance for which to open ports.
7897
8220
  # @return [String]
7898
8221
  #
7899
8222
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/OpenInstancePublicPortsRequest AWS API Documentation
@@ -7901,12 +8224,13 @@ module Aws::Lightsail
7901
8224
  class OpenInstancePublicPortsRequest < Struct.new(
7902
8225
  :port_info,
7903
8226
  :instance_name)
8227
+ SENSITIVE = []
7904
8228
  include Aws::Structure
7905
8229
  end
7906
8230
 
7907
8231
  # @!attribute [rw] operation
7908
8232
  # An array of objects that describe the result of the action, such as
7909
- # the status of the request, the time stamp of the request, and the
8233
+ # the status of the request, the timestamp of the request, and the
7910
8234
  # resources affected by the request.
7911
8235
  # @return [Types::Operation]
7912
8236
  #
@@ -7914,6 +8238,7 @@ module Aws::Lightsail
7914
8238
  #
7915
8239
  class OpenInstancePublicPortsResult < Struct.new(
7916
8240
  :operation)
8241
+ SENSITIVE = []
7917
8242
  include Aws::Structure
7918
8243
  end
7919
8244
 
@@ -7983,6 +8308,7 @@ module Aws::Lightsail
7983
8308
  :status_changed_at,
7984
8309
  :error_code,
7985
8310
  :error_details)
8311
+ SENSITIVE = []
7986
8312
  include Aws::Structure
7987
8313
  end
7988
8314
 
@@ -8007,6 +8333,7 @@ module Aws::Lightsail
8007
8333
  :docs,
8008
8334
  :message,
8009
8335
  :tip)
8336
+ SENSITIVE = []
8010
8337
  include Aws::Structure
8011
8338
  end
8012
8339
 
@@ -8048,6 +8375,7 @@ module Aws::Lightsail
8048
8375
  class PasswordData < Struct.new(
8049
8376
  :ciphertext,
8050
8377
  :key_pair_name)
8378
+ SENSITIVE = []
8051
8379
  include Aws::Structure
8052
8380
  end
8053
8381
 
@@ -8059,7 +8387,7 @@ module Aws::Lightsail
8059
8387
 
8060
8388
  # @!attribute [rw] operation
8061
8389
  # An array of objects that describe the result of the action, such as
8062
- # the status of the request, the time stamp of the request, and the
8390
+ # the status of the request, the timestamp of the request, and the
8063
8391
  # resources affected by the request.
8064
8392
  # @return [Types::Operation]
8065
8393
  #
@@ -8067,6 +8395,7 @@ module Aws::Lightsail
8067
8395
  #
8068
8396
  class PeerVpcResult < Struct.new(
8069
8397
  :operation)
8398
+ SENSITIVE = []
8070
8399
  include Aws::Structure
8071
8400
  end
8072
8401
 
@@ -8090,6 +8419,7 @@ module Aws::Lightsail
8090
8419
  :action,
8091
8420
  :description,
8092
8421
  :current_apply_date)
8422
+ SENSITIVE = []
8093
8423
  include Aws::Structure
8094
8424
  end
8095
8425
 
@@ -8114,11 +8444,12 @@ module Aws::Lightsail
8114
8444
  :master_user_password,
8115
8445
  :engine_version,
8116
8446
  :backup_retention_enabled)
8447
+ SENSITIVE = []
8117
8448
  include Aws::Structure
8118
8449
  end
8119
8450
 
8120
- # Describes information about the ports on your virtual private server
8121
- # (or *instance*).
8451
+ # Describes ports to open on an instance, the IP addresses allowed to
8452
+ # connect to the instance through the ports, and the protocol.
8122
8453
  #
8123
8454
  # @note When making an API call, you may pass PortInfo
8124
8455
  # data as a hash:
@@ -8126,27 +8457,120 @@ module Aws::Lightsail
8126
8457
  # {
8127
8458
  # from_port: 1,
8128
8459
  # to_port: 1,
8129
- # protocol: "tcp", # accepts tcp, all, udp
8460
+ # protocol: "tcp", # accepts tcp, all, udp, icmp
8461
+ # cidrs: ["string"],
8462
+ # cidr_list_aliases: ["string"],
8130
8463
  # }
8131
8464
  #
8132
8465
  # @!attribute [rw] from_port
8133
- # The first port in the range.
8466
+ # The first port in a range of open ports on an instance.
8467
+ #
8468
+ # Allowed ports:
8469
+ #
8470
+ # * TCP and UDP - `0` to `65535`
8471
+ #
8472
+ # * ICMP - The ICMP type. For example, specify `8` as the `fromPort`
8473
+ # (ICMP type), and `-1` as the `toPort` (ICMP code), to enable ICMP
8474
+ # Ping. For more information, see [Control Messages][1] on
8475
+ # *Wikipedia*.
8476
+ #
8477
+ #
8478
+ #
8479
+ # [1]: https://en.wikipedia.org/wiki/Internet_Control_Message_Protocol#Control_messages
8134
8480
  # @return [Integer]
8135
8481
  #
8136
8482
  # @!attribute [rw] to_port
8137
- # The last port in the range.
8483
+ # The last port in a range of open ports on an instance.
8484
+ #
8485
+ # Allowed ports:
8486
+ #
8487
+ # * TCP and UDP - `0` to `65535`
8488
+ #
8489
+ # * ICMP - The ICMP code. For example, specify `8` as the `fromPort`
8490
+ # (ICMP type), and `-1` as the `toPort` (ICMP code), to enable ICMP
8491
+ # Ping. For more information, see [Control Messages][1] on
8492
+ # *Wikipedia*.
8493
+ #
8494
+ #
8495
+ #
8496
+ # [1]: https://en.wikipedia.org/wiki/Internet_Control_Message_Protocol#Control_messages
8138
8497
  # @return [Integer]
8139
8498
  #
8140
8499
  # @!attribute [rw] protocol
8141
- # The protocol.
8500
+ # The IP protocol name.
8501
+ #
8502
+ # The name can be one of the following:
8503
+ #
8504
+ # * `tcp` - Transmission Control Protocol (TCP) provides reliable,
8505
+ # ordered, and error-checked delivery of streamed data between
8506
+ # applications running on hosts communicating by an IP network. If
8507
+ # you have an application that doesn't require reliable data stream
8508
+ # service, use UDP instead.
8509
+ #
8510
+ # * `all` - All transport layer protocol types. For more general
8511
+ # information, see [Transport layer][1] on *Wikipedia*.
8512
+ #
8513
+ # * `udp` - With User Datagram Protocol (UDP), computer applications
8514
+ # can send messages (or datagrams) to other hosts on an Internet
8515
+ # Protocol (IP) network. Prior communications are not required to
8516
+ # set up transmission channels or data paths. Applications that
8517
+ # don't require reliable data stream service can use UDP, which
8518
+ # provides a connectionless datagram service that emphasizes reduced
8519
+ # latency over reliability. If you do require reliable data stream
8520
+ # service, use TCP instead.
8521
+ #
8522
+ # * `icmp` - Internet Control Message Protocol (ICMP) is used to send
8523
+ # error messages and operational information indicating success or
8524
+ # failure when communicating with an instance. For example, an error
8525
+ # is indicated when an instance could not be reached. When you
8526
+ # specify `icmp` as the `protocol`, you must specify the ICMP type
8527
+ # using the `fromPort` parameter, and ICMP code using the `toPort`
8528
+ # parameter.
8529
+ #
8530
+ #
8531
+ #
8532
+ # [1]: https://en.wikipedia.org/wiki/Transport_layer
8142
8533
  # @return [String]
8143
8534
  #
8535
+ # @!attribute [rw] cidrs
8536
+ # The IP address, or range of IP addresses in CIDR notation, that are
8537
+ # allowed to connect to an instance through the ports, and the
8538
+ # protocol. Lightsail supports IPv4 addresses.
8539
+ #
8540
+ # Examples:
8541
+ #
8542
+ # * To allow the IP address `192.0.2.44`, specify `192.0.2.44` or
8543
+ # `192.0.2.44/32`.
8544
+ #
8545
+ # * To allow the IP addresses `192.0.2.0` to `192.0.2.255`, specify
8546
+ # `192.0.2.0/24`.
8547
+ #
8548
+ # For more information about CIDR block notation, see [Classless
8549
+ # Inter-Domain Routing][1] on *Wikipedia*.
8550
+ #
8551
+ #
8552
+ #
8553
+ # [1]: https://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing#CIDR_notation
8554
+ # @return [Array<String>]
8555
+ #
8556
+ # @!attribute [rw] cidr_list_aliases
8557
+ # An alias that defines access for a preconfigured range of IP
8558
+ # addresses.
8559
+ #
8560
+ # The only alias currently supported is `lightsail-connect`, which
8561
+ # allows IP addresses of the browser-based RDP/SSH client in the
8562
+ # Lightsail console to connect to your instance.
8563
+ # @return [Array<String>]
8564
+ #
8144
8565
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/PortInfo AWS API Documentation
8145
8566
  #
8146
8567
  class PortInfo < Struct.new(
8147
8568
  :from_port,
8148
8569
  :to_port,
8149
- :protocol)
8570
+ :protocol,
8571
+ :cidrs,
8572
+ :cidr_list_aliases)
8573
+ SENSITIVE = []
8150
8574
  include Aws::Structure
8151
8575
  end
8152
8576
 
@@ -8155,7 +8579,7 @@ module Aws::Lightsail
8155
8579
  #
8156
8580
  # {
8157
8581
  # alarm_name: "ResourceName", # required
8158
- # 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
8582
+ # 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, BurstCapacityTime, BurstCapacityPercentage
8159
8583
  # monitored_resource_name: "ResourceName", # required
8160
8584
  # comparison_operator: "GreaterThanOrEqualToThreshold", # required, accepts GreaterThanOrEqualToThreshold, GreaterThanThreshold, LessThanThreshold, LessThanOrEqualToThreshold
8161
8585
  # threshold: 1.0, # required
@@ -8179,9 +8603,9 @@ module Aws::Lightsail
8179
8603
  #
8180
8604
  # The following metrics are available for each resource type:
8181
8605
  #
8182
- # * **Instances**\: `CPUUtilization`, `NetworkIn`, `NetworkOut`,
8183
- # `StatusCheckFailed`, `StatusCheckFailed_Instance`, and
8184
- # `StatusCheckFailed_System`.
8606
+ # * **Instances**\: `BurstCapacityPercentage`, `BurstCapacityTime`,
8607
+ # `CPUUtilization`, `NetworkIn`, `NetworkOut`, `StatusCheckFailed`,
8608
+ # `StatusCheckFailed_Instance`, and `StatusCheckFailed_System`.
8185
8609
  #
8186
8610
  # * **Load balancers**\: `ClientTLSNegotiationErrorCount`,
8187
8611
  # `HealthyHostCount`, `UnhealthyHostCount`, `HTTPCode_LB_4XX_Count`,
@@ -8193,6 +8617,13 @@ module Aws::Lightsail
8193
8617
  # * **Relational databases**\: `CPUUtilization`,
8194
8618
  # `DatabaseConnections`, `DiskQueueDepth`, `FreeStorageSpace`,
8195
8619
  # `NetworkReceiveThroughput`, and `NetworkTransmitThroughput`.
8620
+ #
8621
+ # For more information about these metrics, see [Metrics available in
8622
+ # Lightsail][1].
8623
+ #
8624
+ #
8625
+ #
8626
+ # [1]: https://lightsail.aws.amazon.com/ls/docs/en_us/articles/amazon-lightsail-resource-health-metrics#available-metrics
8196
8627
  # @return [String]
8197
8628
  #
8198
8629
  # @!attribute [rw] monitored_resource_name
@@ -8241,18 +8672,18 @@ module Aws::Lightsail
8241
8672
  #
8242
8673
  # An alarm can treat missing data in the following ways:
8243
8674
  #
8244
- # * `breaching` Assume the missing data is not within the threshold.
8675
+ # * `breaching` - Assume the missing data is not within the threshold.
8245
8676
  # Missing data counts towards the number of times the metric is not
8246
8677
  # within the threshold.
8247
8678
  #
8248
- # * `notBreaching` Assume the missing data is within the threshold.
8679
+ # * `notBreaching` - Assume the missing data is within the threshold.
8249
8680
  # Missing data does not count towards the number of times the metric
8250
8681
  # is not within the threshold.
8251
8682
  #
8252
- # * `ignore` Ignore the missing data. Maintains the current alarm
8683
+ # * `ignore` - Ignore the missing data. Maintains the current alarm
8253
8684
  # state.
8254
8685
  #
8255
- # * `missing` Missing data is treated as missing.
8686
+ # * `missing` - Missing data is treated as missing.
8256
8687
  #
8257
8688
  # If `treatMissingData` is not specified, the default behavior of
8258
8689
  # `missing` is used.
@@ -8280,13 +8711,13 @@ module Aws::Lightsail
8280
8711
  #
8281
8712
  # An alarm has the following possible states:
8282
8713
  #
8283
- # * `ALARM` The metric is outside of the defined threshold.
8714
+ # * `ALARM` - The metric is outside of the defined threshold.
8284
8715
  #
8285
- # * `INSUFFICIENT_DATA` The alarm has just started, the metric is
8716
+ # * `INSUFFICIENT_DATA` - The alarm has just started, the metric is
8286
8717
  # not available, or not enough data is available for the metric to
8287
8718
  # determine the alarm state.
8288
8719
  #
8289
- # * `OK` The metric is within the defined threshold.
8720
+ # * `OK` - The metric is within the defined threshold.
8290
8721
  #
8291
8722
  # When you specify a notification trigger, the `ALARM` state must be
8292
8723
  # specified. The `INSUFFICIENT_DATA` and `OK` states can be specified
@@ -8326,12 +8757,13 @@ module Aws::Lightsail
8326
8757
  :contact_protocols,
8327
8758
  :notification_triggers,
8328
8759
  :notification_enabled)
8760
+ SENSITIVE = []
8329
8761
  include Aws::Structure
8330
8762
  end
8331
8763
 
8332
8764
  # @!attribute [rw] operations
8333
8765
  # An array of objects that describe the result of the action, such as
8334
- # the status of the request, the time stamp of the request, and the
8766
+ # the status of the request, the timestamp of the request, and the
8335
8767
  # resources affected by the request.
8336
8768
  # @return [Array<Types::Operation>]
8337
8769
  #
@@ -8339,6 +8771,7 @@ module Aws::Lightsail
8339
8771
  #
8340
8772
  class PutAlarmResult < Struct.new(
8341
8773
  :operations)
8774
+ SENSITIVE = []
8342
8775
  include Aws::Structure
8343
8776
  end
8344
8777
 
@@ -8350,18 +8783,21 @@ module Aws::Lightsail
8350
8783
  # {
8351
8784
  # from_port: 1,
8352
8785
  # to_port: 1,
8353
- # protocol: "tcp", # accepts tcp, all, udp
8786
+ # protocol: "tcp", # accepts tcp, all, udp, icmp
8787
+ # cidrs: ["string"],
8788
+ # cidr_list_aliases: ["string"],
8354
8789
  # },
8355
8790
  # ],
8356
8791
  # instance_name: "ResourceName", # required
8357
8792
  # }
8358
8793
  #
8359
8794
  # @!attribute [rw] port_infos
8360
- # Specifies information about the public port(s).
8795
+ # An array of objects to describe the ports to open for the specified
8796
+ # instance.
8361
8797
  # @return [Array<Types::PortInfo>]
8362
8798
  #
8363
8799
  # @!attribute [rw] instance_name
8364
- # The Lightsail instance name of the public port(s) you are setting.
8800
+ # The name of the instance for which to open ports.
8365
8801
  # @return [String]
8366
8802
  #
8367
8803
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/PutInstancePublicPortsRequest AWS API Documentation
@@ -8369,12 +8805,13 @@ module Aws::Lightsail
8369
8805
  class PutInstancePublicPortsRequest < Struct.new(
8370
8806
  :port_infos,
8371
8807
  :instance_name)
8808
+ SENSITIVE = []
8372
8809
  include Aws::Structure
8373
8810
  end
8374
8811
 
8375
8812
  # @!attribute [rw] operation
8376
8813
  # An array of objects that describe the result of the action, such as
8377
- # the status of the request, the time stamp of the request, and the
8814
+ # the status of the request, the timestamp of the request, and the
8378
8815
  # resources affected by the request.
8379
8816
  # @return [Types::Operation]
8380
8817
  #
@@ -8382,6 +8819,7 @@ module Aws::Lightsail
8382
8819
  #
8383
8820
  class PutInstancePublicPortsResult < Struct.new(
8384
8821
  :operation)
8822
+ SENSITIVE = []
8385
8823
  include Aws::Structure
8386
8824
  end
8387
8825
 
@@ -8400,12 +8838,13 @@ module Aws::Lightsail
8400
8838
  #
8401
8839
  class RebootInstanceRequest < Struct.new(
8402
8840
  :instance_name)
8841
+ SENSITIVE = []
8403
8842
  include Aws::Structure
8404
8843
  end
8405
8844
 
8406
8845
  # @!attribute [rw] operations
8407
8846
  # An array of objects that describe the result of the action, such as
8408
- # the status of the request, the time stamp of the request, and the
8847
+ # the status of the request, the timestamp of the request, and the
8409
8848
  # resources affected by the request.
8410
8849
  # @return [Array<Types::Operation>]
8411
8850
  #
@@ -8413,6 +8852,7 @@ module Aws::Lightsail
8413
8852
  #
8414
8853
  class RebootInstanceResult < Struct.new(
8415
8854
  :operations)
8855
+ SENSITIVE = []
8416
8856
  include Aws::Structure
8417
8857
  end
8418
8858
 
@@ -8431,12 +8871,13 @@ module Aws::Lightsail
8431
8871
  #
8432
8872
  class RebootRelationalDatabaseRequest < Struct.new(
8433
8873
  :relational_database_name)
8874
+ SENSITIVE = []
8434
8875
  include Aws::Structure
8435
8876
  end
8436
8877
 
8437
8878
  # @!attribute [rw] operations
8438
8879
  # An array of objects that describe the result of the action, such as
8439
- # the status of the request, the time stamp of the request, and the
8880
+ # the status of the request, the timestamp of the request, and the
8440
8881
  # resources affected by the request.
8441
8882
  # @return [Array<Types::Operation>]
8442
8883
  #
@@ -8444,6 +8885,7 @@ module Aws::Lightsail
8444
8885
  #
8445
8886
  class RebootRelationalDatabaseResult < Struct.new(
8446
8887
  :operations)
8888
+ SENSITIVE = []
8447
8889
  include Aws::Structure
8448
8890
  end
8449
8891
 
@@ -8485,6 +8927,7 @@ module Aws::Lightsail
8485
8927
  :name,
8486
8928
  :availability_zones,
8487
8929
  :relational_database_availability_zones)
8930
+ SENSITIVE = []
8488
8931
  include Aws::Structure
8489
8932
  end
8490
8933
 
@@ -8648,6 +9091,7 @@ module Aws::Lightsail
8648
9091
  :master_endpoint,
8649
9092
  :pending_maintenance_actions,
8650
9093
  :ca_certificate_identifier)
9094
+ SENSITIVE = []
8651
9095
  include Aws::Structure
8652
9096
  end
8653
9097
 
@@ -8691,6 +9135,7 @@ module Aws::Lightsail
8691
9135
  :engine_description,
8692
9136
  :engine_version_description,
8693
9137
  :is_engine_default)
9138
+ SENSITIVE = []
8694
9139
  include Aws::Structure
8695
9140
  end
8696
9141
 
@@ -8746,6 +9191,7 @@ module Aws::Lightsail
8746
9191
  :cpu_count,
8747
9192
  :is_encrypted,
8748
9193
  :is_active)
9194
+ SENSITIVE = []
8749
9195
  include Aws::Structure
8750
9196
  end
8751
9197
 
@@ -8764,6 +9210,7 @@ module Aws::Lightsail
8764
9210
  class RelationalDatabaseEndpoint < Struct.new(
8765
9211
  :port,
8766
9212
  :address)
9213
+ SENSITIVE = []
8767
9214
  include Aws::Structure
8768
9215
  end
8769
9216
 
@@ -8792,6 +9239,7 @@ module Aws::Lightsail
8792
9239
  :created_at,
8793
9240
  :message,
8794
9241
  :event_categories)
9242
+ SENSITIVE = []
8795
9243
  include Aws::Structure
8796
9244
  end
8797
9245
 
@@ -8815,6 +9263,7 @@ module Aws::Lightsail
8815
9263
  :cpu_count,
8816
9264
  :disk_size_in_gb,
8817
9265
  :ram_size_in_gb)
9266
+ SENSITIVE = []
8818
9267
  include Aws::Structure
8819
9268
  end
8820
9269
 
@@ -8879,6 +9328,7 @@ module Aws::Lightsail
8879
9328
  :is_modifiable,
8880
9329
  :parameter_name,
8881
9330
  :parameter_value)
9331
+ SENSITIVE = []
8882
9332
  include Aws::Structure
8883
9333
  end
8884
9334
 
@@ -8979,6 +9429,7 @@ module Aws::Lightsail
8979
9429
  :from_relational_database_arn,
8980
9430
  :from_relational_database_bundle_id,
8981
9431
  :from_relational_database_blueprint_id)
9432
+ SENSITIVE = []
8982
9433
  include Aws::Structure
8983
9434
  end
8984
9435
 
@@ -8997,12 +9448,13 @@ module Aws::Lightsail
8997
9448
  #
8998
9449
  class ReleaseStaticIpRequest < Struct.new(
8999
9450
  :static_ip_name)
9451
+ SENSITIVE = []
9000
9452
  include Aws::Structure
9001
9453
  end
9002
9454
 
9003
9455
  # @!attribute [rw] operations
9004
9456
  # An array of objects that describe the result of the action, such as
9005
- # the status of the request, the time stamp of the request, and the
9457
+ # the status of the request, the timestamp of the request, and the
9006
9458
  # resources affected by the request.
9007
9459
  # @return [Array<Types::Operation>]
9008
9460
  #
@@ -9010,6 +9462,7 @@ module Aws::Lightsail
9010
9462
  #
9011
9463
  class ReleaseStaticIpResult < Struct.new(
9012
9464
  :operations)
9465
+ SENSITIVE = []
9013
9466
  include Aws::Structure
9014
9467
  end
9015
9468
 
@@ -9029,6 +9482,7 @@ module Aws::Lightsail
9029
9482
  class ResourceLocation < Struct.new(
9030
9483
  :availability_zone,
9031
9484
  :region_name)
9485
+ SENSITIVE = []
9032
9486
  include Aws::Structure
9033
9487
  end
9034
9488
 
@@ -9047,12 +9501,13 @@ module Aws::Lightsail
9047
9501
  #
9048
9502
  class SendContactMethodVerificationRequest < Struct.new(
9049
9503
  :protocol)
9504
+ SENSITIVE = []
9050
9505
  include Aws::Structure
9051
9506
  end
9052
9507
 
9053
9508
  # @!attribute [rw] operations
9054
9509
  # An array of objects that describe the result of the action, such as
9055
- # the status of the request, the time stamp of the request, and the
9510
+ # the status of the request, the timestamp of the request, and the
9056
9511
  # resources affected by the request.
9057
9512
  # @return [Array<Types::Operation>]
9058
9513
  #
@@ -9060,6 +9515,7 @@ module Aws::Lightsail
9060
9515
  #
9061
9516
  class SendContactMethodVerificationResult < Struct.new(
9062
9517
  :operations)
9518
+ SENSITIVE = []
9063
9519
  include Aws::Structure
9064
9520
  end
9065
9521
 
@@ -9084,6 +9540,7 @@ module Aws::Lightsail
9084
9540
  :docs,
9085
9541
  :message,
9086
9542
  :tip)
9543
+ SENSITIVE = []
9087
9544
  include Aws::Structure
9088
9545
  end
9089
9546
 
@@ -9102,12 +9559,13 @@ module Aws::Lightsail
9102
9559
  #
9103
9560
  class StartInstanceRequest < Struct.new(
9104
9561
  :instance_name)
9562
+ SENSITIVE = []
9105
9563
  include Aws::Structure
9106
9564
  end
9107
9565
 
9108
9566
  # @!attribute [rw] operations
9109
9567
  # An array of objects that describe the result of the action, such as
9110
- # the status of the request, the time stamp of the request, and the
9568
+ # the status of the request, the timestamp of the request, and the
9111
9569
  # resources affected by the request.
9112
9570
  # @return [Array<Types::Operation>]
9113
9571
  #
@@ -9115,6 +9573,7 @@ module Aws::Lightsail
9115
9573
  #
9116
9574
  class StartInstanceResult < Struct.new(
9117
9575
  :operations)
9576
+ SENSITIVE = []
9118
9577
  include Aws::Structure
9119
9578
  end
9120
9579
 
@@ -9133,12 +9592,13 @@ module Aws::Lightsail
9133
9592
  #
9134
9593
  class StartRelationalDatabaseRequest < Struct.new(
9135
9594
  :relational_database_name)
9595
+ SENSITIVE = []
9136
9596
  include Aws::Structure
9137
9597
  end
9138
9598
 
9139
9599
  # @!attribute [rw] operations
9140
9600
  # An array of objects that describe the result of the action, such as
9141
- # the status of the request, the time stamp of the request, and the
9601
+ # the status of the request, the timestamp of the request, and the
9142
9602
  # resources affected by the request.
9143
9603
  # @return [Array<Types::Operation>]
9144
9604
  #
@@ -9146,6 +9606,7 @@ module Aws::Lightsail
9146
9606
  #
9147
9607
  class StartRelationalDatabaseResult < Struct.new(
9148
9608
  :operations)
9609
+ SENSITIVE = []
9149
9610
  include Aws::Structure
9150
9611
  end
9151
9612
 
@@ -9205,6 +9666,7 @@ module Aws::Lightsail
9205
9666
  :ip_address,
9206
9667
  :attached_to,
9207
9668
  :is_attached)
9669
+ SENSITIVE = []
9208
9670
  include Aws::Structure
9209
9671
  end
9210
9672
 
@@ -9234,12 +9696,13 @@ module Aws::Lightsail
9234
9696
  class StopInstanceRequest < Struct.new(
9235
9697
  :instance_name,
9236
9698
  :force)
9699
+ SENSITIVE = []
9237
9700
  include Aws::Structure
9238
9701
  end
9239
9702
 
9240
9703
  # @!attribute [rw] operations
9241
9704
  # An array of objects that describe the result of the action, such as
9242
- # the status of the request, the time stamp of the request, and the
9705
+ # the status of the request, the timestamp of the request, and the
9243
9706
  # resources affected by the request.
9244
9707
  # @return [Array<Types::Operation>]
9245
9708
  #
@@ -9247,6 +9710,7 @@ module Aws::Lightsail
9247
9710
  #
9248
9711
  class StopInstanceResult < Struct.new(
9249
9712
  :operations)
9713
+ SENSITIVE = []
9250
9714
  include Aws::Structure
9251
9715
  end
9252
9716
 
@@ -9272,12 +9736,13 @@ module Aws::Lightsail
9272
9736
  class StopRelationalDatabaseRequest < Struct.new(
9273
9737
  :relational_database_name,
9274
9738
  :relational_database_snapshot_name)
9739
+ SENSITIVE = []
9275
9740
  include Aws::Structure
9276
9741
  end
9277
9742
 
9278
9743
  # @!attribute [rw] operations
9279
9744
  # An array of objects that describe the result of the action, such as
9280
- # the status of the request, the time stamp of the request, and the
9745
+ # the status of the request, the timestamp of the request, and the
9281
9746
  # resources affected by the request.
9282
9747
  # @return [Array<Types::Operation>]
9283
9748
  #
@@ -9285,6 +9750,7 @@ module Aws::Lightsail
9285
9750
  #
9286
9751
  class StopRelationalDatabaseResult < Struct.new(
9287
9752
  :operations)
9753
+ SENSITIVE = []
9288
9754
  include Aws::Structure
9289
9755
  end
9290
9756
 
@@ -9325,6 +9791,7 @@ module Aws::Lightsail
9325
9791
  class Tag < Struct.new(
9326
9792
  :key,
9327
9793
  :value)
9794
+ SENSITIVE = []
9328
9795
  include Aws::Structure
9329
9796
  end
9330
9797
 
@@ -9361,12 +9828,13 @@ module Aws::Lightsail
9361
9828
  :resource_name,
9362
9829
  :resource_arn,
9363
9830
  :tags)
9831
+ SENSITIVE = []
9364
9832
  include Aws::Structure
9365
9833
  end
9366
9834
 
9367
9835
  # @!attribute [rw] operations
9368
9836
  # An array of objects that describe the result of the action, such as
9369
- # the status of the request, the time stamp of the request, and the
9837
+ # the status of the request, the timestamp of the request, and the
9370
9838
  # resources affected by the request.
9371
9839
  # @return [Array<Types::Operation>]
9372
9840
  #
@@ -9374,6 +9842,7 @@ module Aws::Lightsail
9374
9842
  #
9375
9843
  class TagResourceResult < Struct.new(
9376
9844
  :operations)
9845
+ SENSITIVE = []
9377
9846
  include Aws::Structure
9378
9847
  end
9379
9848
 
@@ -9394,13 +9863,13 @@ module Aws::Lightsail
9394
9863
  #
9395
9864
  # An alarm has the following possible states that can be tested:
9396
9865
  #
9397
- # * `ALARM` The metric is outside of the defined threshold.
9866
+ # * `ALARM` - The metric is outside of the defined threshold.
9398
9867
  #
9399
- # * `INSUFFICIENT_DATA` The alarm has just started, the metric is
9868
+ # * `INSUFFICIENT_DATA` - The alarm has just started, the metric is
9400
9869
  # not available, or not enough data is available for the metric to
9401
9870
  # determine the alarm state.
9402
9871
  #
9403
- # * `OK` The metric is within the defined threshold.
9872
+ # * `OK` - The metric is within the defined threshold.
9404
9873
  # @return [String]
9405
9874
  #
9406
9875
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/TestAlarmRequest AWS API Documentation
@@ -9408,12 +9877,13 @@ module Aws::Lightsail
9408
9877
  class TestAlarmRequest < Struct.new(
9409
9878
  :alarm_name,
9410
9879
  :state)
9880
+ SENSITIVE = []
9411
9881
  include Aws::Structure
9412
9882
  end
9413
9883
 
9414
9884
  # @!attribute [rw] operations
9415
9885
  # An array of objects that describe the result of the action, such as
9416
- # the status of the request, the time stamp of the request, and the
9886
+ # the status of the request, the timestamp of the request, and the
9417
9887
  # resources affected by the request.
9418
9888
  # @return [Array<Types::Operation>]
9419
9889
  #
@@ -9421,6 +9891,7 @@ module Aws::Lightsail
9421
9891
  #
9422
9892
  class TestAlarmResult < Struct.new(
9423
9893
  :operations)
9894
+ SENSITIVE = []
9424
9895
  include Aws::Structure
9425
9896
  end
9426
9897
 
@@ -9446,6 +9917,7 @@ module Aws::Lightsail
9446
9917
  :docs,
9447
9918
  :message,
9448
9919
  :tip)
9920
+ SENSITIVE = []
9449
9921
  include Aws::Structure
9450
9922
  end
9451
9923
 
@@ -9457,7 +9929,7 @@ module Aws::Lightsail
9457
9929
 
9458
9930
  # @!attribute [rw] operation
9459
9931
  # An array of objects that describe the result of the action, such as
9460
- # the status of the request, the time stamp of the request, and the
9932
+ # the status of the request, the timestamp of the request, and the
9461
9933
  # resources affected by the request.
9462
9934
  # @return [Types::Operation]
9463
9935
  #
@@ -9465,6 +9937,7 @@ module Aws::Lightsail
9465
9937
  #
9466
9938
  class UnpeerVpcResult < Struct.new(
9467
9939
  :operation)
9940
+ SENSITIVE = []
9468
9941
  include Aws::Structure
9469
9942
  end
9470
9943
 
@@ -9496,12 +9969,13 @@ module Aws::Lightsail
9496
9969
  :resource_name,
9497
9970
  :resource_arn,
9498
9971
  :tag_keys)
9972
+ SENSITIVE = []
9499
9973
  include Aws::Structure
9500
9974
  end
9501
9975
 
9502
9976
  # @!attribute [rw] operations
9503
9977
  # An array of objects that describe the result of the action, such as
9504
- # the status of the request, the time stamp of the request, and the
9978
+ # the status of the request, the timestamp of the request, and the
9505
9979
  # resources affected by the request.
9506
9980
  # @return [Array<Types::Operation>]
9507
9981
  #
@@ -9509,6 +9983,7 @@ module Aws::Lightsail
9509
9983
  #
9510
9984
  class UntagResourceResult < Struct.new(
9511
9985
  :operations)
9986
+ SENSITIVE = []
9512
9987
  include Aws::Structure
9513
9988
  end
9514
9989
 
@@ -9543,12 +10018,13 @@ module Aws::Lightsail
9543
10018
  class UpdateDomainEntryRequest < Struct.new(
9544
10019
  :domain_name,
9545
10020
  :domain_entry)
10021
+ SENSITIVE = []
9546
10022
  include Aws::Structure
9547
10023
  end
9548
10024
 
9549
10025
  # @!attribute [rw] operations
9550
10026
  # An array of objects that describe the result of the action, such as
9551
- # the status of the request, the time stamp of the request, and the
10027
+ # the status of the request, the timestamp of the request, and the
9552
10028
  # resources affected by the request.
9553
10029
  # @return [Array<Types::Operation>]
9554
10030
  #
@@ -9556,6 +10032,7 @@ module Aws::Lightsail
9556
10032
  #
9557
10033
  class UpdateDomainEntryResult < Struct.new(
9558
10034
  :operations)
10035
+ SENSITIVE = []
9559
10036
  include Aws::Structure
9560
10037
  end
9561
10038
 
@@ -9588,12 +10065,13 @@ module Aws::Lightsail
9588
10065
  :load_balancer_name,
9589
10066
  :attribute_name,
9590
10067
  :attribute_value)
10068
+ SENSITIVE = []
9591
10069
  include Aws::Structure
9592
10070
  end
9593
10071
 
9594
10072
  # @!attribute [rw] operations
9595
10073
  # An array of objects that describe the result of the action, such as
9596
- # the status of the request, the time stamp of the request, and the
10074
+ # the status of the request, the timestamp of the request, and the
9597
10075
  # resources affected by the request.
9598
10076
  # @return [Array<Types::Operation>]
9599
10077
  #
@@ -9601,6 +10079,7 @@ module Aws::Lightsail
9601
10079
  #
9602
10080
  class UpdateLoadBalancerAttributeResult < Struct.new(
9603
10081
  :operations)
10082
+ SENSITIVE = []
9604
10083
  include Aws::Structure
9605
10084
  end
9606
10085
 
@@ -9636,12 +10115,13 @@ module Aws::Lightsail
9636
10115
  class UpdateRelationalDatabaseParametersRequest < Struct.new(
9637
10116
  :relational_database_name,
9638
10117
  :parameters)
10118
+ SENSITIVE = []
9639
10119
  include Aws::Structure
9640
10120
  end
9641
10121
 
9642
10122
  # @!attribute [rw] operations
9643
10123
  # An array of objects that describe the result of the action, such as
9644
- # the status of the request, the time stamp of the request, and the
10124
+ # the status of the request, the timestamp of the request, and the
9645
10125
  # resources affected by the request.
9646
10126
  # @return [Array<Types::Operation>]
9647
10127
  #
@@ -9649,6 +10129,7 @@ module Aws::Lightsail
9649
10129
  #
9650
10130
  class UpdateRelationalDatabaseParametersResult < Struct.new(
9651
10131
  :operations)
10132
+ SENSITIVE = []
9652
10133
  include Aws::Structure
9653
10134
  end
9654
10135
 
@@ -9778,12 +10259,13 @@ module Aws::Lightsail
9778
10259
  :publicly_accessible,
9779
10260
  :apply_immediately,
9780
10261
  :ca_certificate_identifier)
10262
+ SENSITIVE = [:master_user_password]
9781
10263
  include Aws::Structure
9782
10264
  end
9783
10265
 
9784
10266
  # @!attribute [rw] operations
9785
10267
  # An array of objects that describe the result of the action, such as
9786
- # the status of the request, the time stamp of the request, and the
10268
+ # the status of the request, the timestamp of the request, and the
9787
10269
  # resources affected by the request.
9788
10270
  # @return [Array<Types::Operation>]
9789
10271
  #
@@ -9791,6 +10273,7 @@ module Aws::Lightsail
9791
10273
  #
9792
10274
  class UpdateRelationalDatabaseResult < Struct.new(
9793
10275
  :operations)
10276
+ SENSITIVE = []
9794
10277
  include Aws::Structure
9795
10278
  end
9796
10279