aws-sdk-lightsail 1.75.0 → 1.77.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3b33489fab04bb2b1375123b33715f4b843ac5f6e55e7c1ee8f34e9218990e5f
4
- data.tar.gz: 1328183af7423fee4c99f90bdbf0c85d8b64c622e200a922f6d54d6de68ed0b7
3
+ metadata.gz: fe157b52d019e6499c62127a07550ac4def69107d20c49db22bab68078a88ff1
4
+ data.tar.gz: d10147d58226f26ac24149d27cb40f2aa7bd02eec215847c88cd68040979bbe6
5
5
  SHA512:
6
- metadata.gz: f4528e496a2f03e1adfef28fe5fb657ca01b50be78e7859cfc5d57d8b9c6077630a906221a642312596131d3a980d6ebb5987a27d9a1c7f1a2c27328f86f7c73
7
- data.tar.gz: 486cacf6a0d106b71517527548981442aa23d69da339e18ad8f3d23ca49e82b8f6b0daa381720e5ae4f50f5cabbf64a9b59b8d2e20da79d2246345d80755e6ab
6
+ metadata.gz: 1807cee77e7d353c515cb8ae7b68306cafc6516f9f84d898b282303b06ec8f7174d733b81cf1f7c21c859f0270ab059686b1fd1e5b2b099990cc1152bf84252e
7
+ data.tar.gz: fdfa5aa32aba4e2ff3100f53fe5cedb9c9f1947b7554cc3de29726342cb5c42023f0c95618c6dbf6a45fe66f9280e4b0e7d3d32b53e3d06556be88022b237e6f
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.77.0 (2023-06-13)
5
+ ------------------
6
+
7
+ * Feature - This release adds pagination for the Get Certificates API operation.
8
+
9
+ 1.76.0 (2023-05-31)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.75.0 (2023-02-28)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.75.0
1
+ 1.77.0
@@ -275,6 +275,11 @@ module Aws::Lightsail
275
275
  # in the future.
276
276
  #
277
277
  #
278
+ # @option options [String] :sdk_ua_app_id
279
+ # A unique and opaque application ID that is appended to the
280
+ # User-Agent header as app/<sdk_ua_app_id>. It should have a
281
+ # maximum length of 50.
282
+ #
278
283
  # @option options [String] :secret_access_key
279
284
  #
280
285
  # @option options [String] :session_token
@@ -5916,7 +5921,7 @@ module Aws::Lightsail
5916
5921
  # Returns information about one or more Amazon Lightsail SSL/TLS
5917
5922
  # certificates.
5918
5923
  #
5919
- # <note markdown="1"> To get a summary of a certificate, ommit `includeCertificateDetails`
5924
+ # <note markdown="1"> To get a summary of a certificate, omit `includeCertificateDetails`
5920
5925
  # from your request. The response will include only the certificate
5921
5926
  # Amazon Resource Name (ARN), certificate name, domain name, and tags.
5922
5927
  #
@@ -5945,9 +5950,17 @@ module Aws::Lightsail
5945
5950
  # When omitted, the response includes all of your certificates in the
5946
5951
  # Amazon Web Services Region where the request is made.
5947
5952
  #
5953
+ # @option params [String] :page_token
5954
+ # The token to advance to the next page of results from your request.
5955
+ #
5956
+ # To get a page token, perform an initial `GetCertificates` request. If
5957
+ # your results are paginated, the response will return a next page token
5958
+ # that you can specify as the page token in a subsequent request.
5959
+ #
5948
5960
  # @return [Types::GetCertificatesResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
5949
5961
  #
5950
5962
  # * {Types::GetCertificatesResult#certificates #certificates} => Array&lt;Types::CertificateSummary&gt;
5963
+ # * {Types::GetCertificatesResult#next_page_token #next_page_token} => String
5951
5964
  #
5952
5965
  # @example Request syntax with placeholder values
5953
5966
  #
@@ -5955,6 +5968,7 @@ module Aws::Lightsail
5955
5968
  # certificate_statuses: ["PENDING_VALIDATION"], # accepts PENDING_VALIDATION, ISSUED, INACTIVE, EXPIRED, VALIDATION_TIMED_OUT, REVOKED, FAILED
5956
5969
  # include_certificate_details: false,
5957
5970
  # certificate_name: "CertificateName",
5971
+ # page_token: "string",
5958
5972
  # })
5959
5973
  #
5960
5974
  # @example Response structure
@@ -6007,6 +6021,7 @@ module Aws::Lightsail
6007
6021
  # resp.certificates[0].tags #=> Array
6008
6022
  # resp.certificates[0].tags[0].key #=> String
6009
6023
  # resp.certificates[0].tags[0].value #=> String
6024
+ # resp.next_page_token #=> String
6010
6025
  #
6011
6026
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/GetCertificates AWS API Documentation
6012
6027
  #
@@ -6624,7 +6639,7 @@ module Aws::Lightsail
6624
6639
  #
6625
6640
  # * Specified in the Unix time format.
6626
6641
  #
6627
- # For example, if you wish to use a start time of October 1, 2018, at
6642
+ # For example, if you want to use a start time of October 1, 2018, at
6628
6643
  # 8 PM UTC, specify `1538424000` as the start time.
6629
6644
  #
6630
6645
  # You can convert a human-friendly time to Unix time format using a
@@ -6643,7 +6658,7 @@ module Aws::Lightsail
6643
6658
  #
6644
6659
  # * Specified in the Unix time format.
6645
6660
  #
6646
- # For example, if you wish to use an end time of October 1, 2018, at 9
6661
+ # For example, if you want to use an end time of October 1, 2018, at 9
6647
6662
  # PM UTC, specify `1538427600` as the end time.
6648
6663
  #
6649
6664
  # You can convert a human-friendly time to Unix time format using a
@@ -6996,31 +7011,31 @@ module Aws::Lightsail
6996
7011
  # received by your Lightsail distribution, for all HTTP methods, and
6997
7012
  # for both HTTP and HTTPS requests.
6998
7013
  #
6999
- # `Statistics`\: The most useful statistic is `Sum`.
7014
+ # `Statistics`: The most useful statistic is `Sum`.
7000
7015
  #
7001
- # `Unit`\: The published unit is `None`.
7016
+ # `Unit`: The published unit is `None`.
7002
7017
  #
7003
7018
  # * <b> <code>BytesDownloaded</code> </b> - The number of bytes
7004
7019
  # downloaded by viewers for GET, HEAD, and OPTIONS requests.
7005
7020
  #
7006
- # `Statistics`\: The most useful statistic is `Sum`.
7021
+ # `Statistics`: The most useful statistic is `Sum`.
7007
7022
  #
7008
- # `Unit`\: The published unit is `None`.
7023
+ # `Unit`: The published unit is `None`.
7009
7024
  #
7010
7025
  # * <b> <code>BytesUploaded </code> </b> - The number of bytes uploaded
7011
7026
  # to your origin by your Lightsail distribution, using POST and PUT
7012
7027
  # requests.
7013
7028
  #
7014
- # `Statistics`\: The most useful statistic is `Sum`.
7029
+ # `Statistics`: The most useful statistic is `Sum`.
7015
7030
  #
7016
- # `Unit`\: The published unit is `None`.
7031
+ # `Unit`: The published unit is `None`.
7017
7032
  #
7018
7033
  # * <b> <code>TotalErrorRate</code> </b> - The percentage of all viewer
7019
7034
  # requests for which the response's HTTP status code was 4xx or 5xx.
7020
7035
  #
7021
- # `Statistics`\: The most useful statistic is `Average`.
7036
+ # `Statistics`: The most useful statistic is `Average`.
7022
7037
  #
7023
- # `Unit`\: The published unit is `Percent`.
7038
+ # `Unit`: The published unit is `Percent`.
7024
7039
  #
7025
7040
  # * <b> <code>4xxErrorRate</code> </b> - The percentage of all viewer
7026
7041
  # requests for which the response's HTTP status cod was 4xx. In these
@@ -7028,9 +7043,9 @@ module Aws::Lightsail
7028
7043
  # example, a status code of 404 (Not Found) means that the client
7029
7044
  # requested an object that could not be found.
7030
7045
  #
7031
- # `Statistics`\: The most useful statistic is `Average`.
7046
+ # `Statistics`: The most useful statistic is `Average`.
7032
7047
  #
7033
- # `Unit`\: The published unit is `Percent`.
7048
+ # `Unit`: The published unit is `Percent`.
7034
7049
  #
7035
7050
  # * <b> <code>5xxErrorRate</code> </b> - The percentage of all viewer
7036
7051
  # requests for which the response's HTTP status code was 5xx. In
@@ -7038,9 +7053,9 @@ module Aws::Lightsail
7038
7053
  # example, a status code of 503 (Service Unavailable) means that the
7039
7054
  # origin server is currently unavailable.
7040
7055
  #
7041
- # `Statistics`\: The most useful statistic is `Average`.
7056
+ # `Statistics`: The most useful statistic is `Average`.
7042
7057
  #
7043
- # `Unit`\: The published unit is `Percent`.
7058
+ # `Unit`: The published unit is `Percent`.
7044
7059
  #
7045
7060
  # @option params [required, Time,DateTime,Date,Integer,String] :start_time
7046
7061
  # The start of the time interval for which to get metric data.
@@ -7603,10 +7618,10 @@ module Aws::Lightsail
7603
7618
  # `BurstCapacityPercentage` reaches 100%. For more information, see
7604
7619
  # [Viewing instance burst capacity in Amazon Lightsail][1].
7605
7620
  #
7606
- # `Statistics`\: The most useful statistics are `Maximum` and
7621
+ # `Statistics`: The most useful statistics are `Maximum` and
7607
7622
  # `Average`.
7608
7623
  #
7609
- # `Unit`\: The published unit is `Percent`.
7624
+ # `Unit`: The published unit is `Percent`.
7610
7625
  #
7611
7626
  # * <b> <code>BurstCapacityTime</code> </b> - The available amount of
7612
7627
  # time for your instance to burst at 100% CPU utilization. Your
@@ -7623,10 +7638,10 @@ module Aws::Lightsail
7623
7638
  # more information, see [Viewing instance burst capacity in Amazon
7624
7639
  # Lightsail][1].
7625
7640
  #
7626
- # `Statistics`\: The most useful statistics are `Maximum` and
7641
+ # `Statistics`: The most useful statistics are `Maximum` and
7627
7642
  # `Average`.
7628
7643
  #
7629
- # `Unit`\: The published unit is `Seconds`.
7644
+ # `Unit`: The published unit is `Seconds`.
7630
7645
  #
7631
7646
  # * <b> <code>CPUUtilization</code> </b> - The percentage of allocated
7632
7647
  # compute units that are currently in use on the instance. This metric
@@ -7635,10 +7650,10 @@ module Aws::Lightsail
7635
7650
  # than Lightsail when the instance is not allocated a full processor
7636
7651
  # core.
7637
7652
  #
7638
- # `Statistics`\: The most useful statistics are `Maximum` and
7653
+ # `Statistics`: The most useful statistics are `Maximum` and
7639
7654
  # `Average`.
7640
7655
  #
7641
- # `Unit`\: The published unit is `Percent`.
7656
+ # `Unit`: The published unit is `Percent`.
7642
7657
  #
7643
7658
  # * <b> <code>NetworkIn</code> </b> - The number of bytes received on
7644
7659
  # all network interfaces by the instance. This metric identifies the
@@ -7647,9 +7662,9 @@ module Aws::Lightsail
7647
7662
  # this metric is reported in 5-minute intervals, divide the reported
7648
7663
  # number by 300 to find Bytes/second.
7649
7664
  #
7650
- # `Statistics`\: The most useful statistic is `Sum`.
7665
+ # `Statistics`: The most useful statistic is `Sum`.
7651
7666
  #
7652
- # `Unit`\: The published unit is `Bytes`.
7667
+ # `Unit`: The published unit is `Bytes`.
7653
7668
  #
7654
7669
  # * <b> <code>NetworkOut</code> </b> - The number of bytes sent out on
7655
7670
  # all network interfaces by the instance. This metric identifies the
@@ -7658,9 +7673,9 @@ module Aws::Lightsail
7658
7673
  # metric is reported in 5-minute intervals, divide the reported number
7659
7674
  # by 300 to find Bytes/second.
7660
7675
  #
7661
- # `Statistics`\: The most useful statistic is `Sum`.
7676
+ # `Statistics`: The most useful statistic is `Sum`.
7662
7677
  #
7663
- # `Unit`\: The published unit is `Bytes`.
7678
+ # `Unit`: The published unit is `Bytes`.
7664
7679
  #
7665
7680
  # * <b> <code>StatusCheckFailed</code> </b> - Reports whether the
7666
7681
  # instance passed or failed both the instance status check and the
@@ -7668,27 +7683,27 @@ module Aws::Lightsail
7668
7683
  # (failed). This metric data is available in 1-minute (60 seconds)
7669
7684
  # granularity.
7670
7685
  #
7671
- # `Statistics`\: The most useful statistic is `Sum`.
7686
+ # `Statistics`: The most useful statistic is `Sum`.
7672
7687
  #
7673
- # `Unit`\: The published unit is `Count`.
7688
+ # `Unit`: The published unit is `Count`.
7674
7689
  #
7675
7690
  # * <b> <code>StatusCheckFailed_Instance</code> </b> - Reports whether
7676
7691
  # the instance passed or failed the instance status check. This metric
7677
7692
  # can be either 0 (passed) or 1 (failed). This metric data is
7678
7693
  # available in 1-minute (60 seconds) granularity.
7679
7694
  #
7680
- # `Statistics`\: The most useful statistic is `Sum`.
7695
+ # `Statistics`: The most useful statistic is `Sum`.
7681
7696
  #
7682
- # `Unit`\: The published unit is `Count`.
7697
+ # `Unit`: The published unit is `Count`.
7683
7698
  #
7684
7699
  # * <b> <code>StatusCheckFailed_System</code> </b> - Reports whether the
7685
7700
  # instance passed or failed the system status check. This metric can
7686
7701
  # be either 0 (passed) or 1 (failed). This metric data is available in
7687
7702
  # 1-minute (60 seconds) granularity.
7688
7703
  #
7689
- # `Statistics`\: The most useful statistic is `Sum`.
7704
+ # `Statistics`: The most useful statistic is `Sum`.
7690
7705
  #
7691
- # `Unit`\: The published unit is `Count`.
7706
+ # `Unit`: The published unit is `Count`.
7692
7707
  #
7693
7708
  # * <b> <code>MetadataNoToken</code> </b> - Reports the number of times
7694
7709
  # that the instance metadata service was successfully accessed without
@@ -7698,9 +7713,9 @@ module Aws::Lightsail
7698
7713
  # sessions, such as Instance Metadata Service Version 2, then the
7699
7714
  # value is 0.
7700
7715
  #
7701
- # `Statistics`\: The most useful statistic is `Sum`.
7716
+ # `Statistics`: The most useful statistic is `Sum`.
7702
7717
  #
7703
- # `Unit`\: The published unit is `Count`.
7718
+ # `Unit`: The published unit is `Count`.
7704
7719
  #
7705
7720
  #
7706
7721
  #
@@ -8297,53 +8312,53 @@ module Aws::Lightsail
8297
8312
  # load balancer. Possible causes include a mismatch of ciphers or
8298
8313
  # protocols.
8299
8314
  #
8300
- # `Statistics`\: The most useful statistic is `Sum`.
8315
+ # `Statistics`: The most useful statistic is `Sum`.
8301
8316
  #
8302
- # `Unit`\: The published unit is `Count`.
8317
+ # `Unit`: The published unit is `Count`.
8303
8318
  #
8304
8319
  # * <b> <code>HealthyHostCount</code> </b> - The number of target
8305
8320
  # instances that are considered healthy.
8306
8321
  #
8307
- # `Statistics`\: The most useful statistic are `Average`, `Minimum`,
8322
+ # `Statistics`: The most useful statistic are `Average`, `Minimum`,
8308
8323
  # and `Maximum`.
8309
8324
  #
8310
- # `Unit`\: The published unit is `Count`.
8325
+ # `Unit`: The published unit is `Count`.
8311
8326
  #
8312
8327
  # * <b> <code>HTTPCode_Instance_2XX_Count</code> </b> - The number of
8313
8328
  # HTTP 2XX response codes generated by the target instances. This does
8314
8329
  # not include any response codes generated by the load balancer.
8315
8330
  #
8316
- # `Statistics`\: The most useful statistic is `Sum`. Note that
8331
+ # `Statistics`: The most useful statistic is `Sum`. Note that
8317
8332
  # `Minimum`, `Maximum`, and `Average` all return `1`.
8318
8333
  #
8319
- # `Unit`\: The published unit is `Count`.
8334
+ # `Unit`: The published unit is `Count`.
8320
8335
  #
8321
8336
  # * <b> <code>HTTPCode_Instance_3XX_Count</code> </b> - The number of
8322
8337
  # HTTP 3XX response codes generated by the target instances. This does
8323
8338
  # not include any response codes generated by the load balancer.
8324
8339
  #
8325
- # `Statistics`\: The most useful statistic is `Sum`. Note that
8340
+ # `Statistics`: The most useful statistic is `Sum`. Note that
8326
8341
  # `Minimum`, `Maximum`, and `Average` all return `1`.
8327
8342
  #
8328
- # `Unit`\: The published unit is `Count`.
8343
+ # `Unit`: The published unit is `Count`.
8329
8344
  #
8330
8345
  # * <b> <code>HTTPCode_Instance_4XX_Count</code> </b> - The number of
8331
8346
  # HTTP 4XX response codes generated by the target instances. This does
8332
8347
  # not include any response codes generated by the load balancer.
8333
8348
  #
8334
- # `Statistics`\: The most useful statistic is `Sum`. Note that
8349
+ # `Statistics`: The most useful statistic is `Sum`. Note that
8335
8350
  # `Minimum`, `Maximum`, and `Average` all return `1`.
8336
8351
  #
8337
- # `Unit`\: The published unit is `Count`.
8352
+ # `Unit`: The published unit is `Count`.
8338
8353
  #
8339
8354
  # * <b> <code>HTTPCode_Instance_5XX_Count</code> </b> - The number of
8340
8355
  # HTTP 5XX response codes generated by the target instances. This does
8341
8356
  # not include any response codes generated by the load balancer.
8342
8357
  #
8343
- # `Statistics`\: The most useful statistic is `Sum`. Note that
8358
+ # `Statistics`: The most useful statistic is `Sum`. Note that
8344
8359
  # `Minimum`, `Maximum`, and `Average` all return `1`.
8345
8360
  #
8346
- # `Unit`\: The published unit is `Count`.
8361
+ # `Unit`: The published unit is `Count`.
8347
8362
  #
8348
8363
  # * <b> <code>HTTPCode_LB_4XX_Count</code> </b> - The number of HTTP 4XX
8349
8364
  # client error codes that originated from the load balancer. Client
@@ -8351,10 +8366,10 @@ module Aws::Lightsail
8351
8366
  # These requests were not received by the target instance. This count
8352
8367
  # does not include response codes generated by the target instances.
8353
8368
  #
8354
- # `Statistics`\: The most useful statistic is `Sum`. Note that
8369
+ # `Statistics`: The most useful statistic is `Sum`. Note that
8355
8370
  # `Minimum`, `Maximum`, and `Average` all return `1`.
8356
8371
  #
8357
- # `Unit`\: The published unit is `Count`.
8372
+ # `Unit`: The published unit is `Count`.
8358
8373
  #
8359
8374
  # * <b> <code>HTTPCode_LB_5XX_Count</code> </b> - The number of HTTP 5XX
8360
8375
  # server error codes that originated from the load balancer. This does
@@ -8363,43 +8378,43 @@ module Aws::Lightsail
8363
8378
  # to the load balancer, or if the request rate exceeds the capacity of
8364
8379
  # the instances (spillover) or the load balancer.
8365
8380
  #
8366
- # `Statistics`\: The most useful statistic is `Sum`. Note that
8381
+ # `Statistics`: The most useful statistic is `Sum`. Note that
8367
8382
  # `Minimum`, `Maximum`, and `Average` all return `1`.
8368
8383
  #
8369
- # `Unit`\: The published unit is `Count`.
8384
+ # `Unit`: The published unit is `Count`.
8370
8385
  #
8371
8386
  # * <b> <code>InstanceResponseTime</code> </b> - The time elapsed, in
8372
8387
  # seconds, after the request leaves the load balancer until a response
8373
8388
  # from the target instance is received.
8374
8389
  #
8375
- # `Statistics`\: The most useful statistic is `Average`.
8390
+ # `Statistics`: The most useful statistic is `Average`.
8376
8391
  #
8377
- # `Unit`\: The published unit is `Seconds`.
8392
+ # `Unit`: The published unit is `Seconds`.
8378
8393
  #
8379
8394
  # * <b> <code>RejectedConnectionCount</code> </b> - The number of
8380
8395
  # connections that were rejected because the load balancer had reached
8381
8396
  # its maximum number of connections.
8382
8397
  #
8383
- # `Statistics`\: The most useful statistic is `Sum`.
8398
+ # `Statistics`: The most useful statistic is `Sum`.
8384
8399
  #
8385
- # `Unit`\: The published unit is `Count`.
8400
+ # `Unit`: The published unit is `Count`.
8386
8401
  #
8387
8402
  # * <b> <code>RequestCount</code> </b> - The number of requests
8388
8403
  # processed over IPv4. This count includes only the requests with a
8389
8404
  # response generated by a target instance of the load balancer.
8390
8405
  #
8391
- # `Statistics`\: The most useful statistic is `Sum`. Note that
8406
+ # `Statistics`: The most useful statistic is `Sum`. Note that
8392
8407
  # `Minimum`, `Maximum`, and `Average` all return `1`.
8393
8408
  #
8394
- # `Unit`\: The published unit is `Count`.
8409
+ # `Unit`: The published unit is `Count`.
8395
8410
  #
8396
8411
  # * <b> <code>UnhealthyHostCount</code> </b> - The number of target
8397
8412
  # instances that are considered unhealthy.
8398
8413
  #
8399
- # `Statistics`\: The most useful statistic are `Average`, `Minimum`,
8414
+ # `Statistics`: The most useful statistic are `Average`, `Minimum`,
8400
8415
  # and `Maximum`.
8401
8416
  #
8402
- # `Unit`\: The published unit is `Count`.
8417
+ # `Unit`: The published unit is `Count`.
8403
8418
  #
8404
8419
  # @option params [required, Integer] :period
8405
8420
  # The granularity, in seconds, of the returned data points.
@@ -9269,49 +9284,49 @@ module Aws::Lightsail
9269
9284
  # * <b> <code>CPUUtilization</code> </b> - The percentage of CPU
9270
9285
  # utilization currently in use on the database.
9271
9286
  #
9272
- # `Statistics`\: The most useful statistics are `Maximum` and
9287
+ # `Statistics`: The most useful statistics are `Maximum` and
9273
9288
  # `Average`.
9274
9289
  #
9275
- # `Unit`\: The published unit is `Percent`.
9290
+ # `Unit`: The published unit is `Percent`.
9276
9291
  #
9277
9292
  # * <b> <code>DatabaseConnections</code> </b> - The number of database
9278
9293
  # connections in use.
9279
9294
  #
9280
- # `Statistics`\: The most useful statistics are `Maximum` and `Sum`.
9295
+ # `Statistics`: The most useful statistics are `Maximum` and `Sum`.
9281
9296
  #
9282
- # `Unit`\: The published unit is `Count`.
9297
+ # `Unit`: The published unit is `Count`.
9283
9298
  #
9284
9299
  # * <b> <code>DiskQueueDepth</code> </b> - The number of outstanding IOs
9285
9300
  # (read/write requests) that are waiting to access the disk.
9286
9301
  #
9287
- # `Statistics`\: The most useful statistic is `Sum`.
9302
+ # `Statistics`: The most useful statistic is `Sum`.
9288
9303
  #
9289
- # `Unit`\: The published unit is `Count`.
9304
+ # `Unit`: The published unit is `Count`.
9290
9305
  #
9291
9306
  # * <b> <code>FreeStorageSpace</code> </b> - The amount of available
9292
9307
  # storage space.
9293
9308
  #
9294
- # `Statistics`\: The most useful statistic is `Sum`.
9309
+ # `Statistics`: The most useful statistic is `Sum`.
9295
9310
  #
9296
- # `Unit`\: The published unit is `Bytes`.
9311
+ # `Unit`: The published unit is `Bytes`.
9297
9312
  #
9298
9313
  # * <b> <code>NetworkReceiveThroughput</code> </b> - The incoming
9299
9314
  # (Receive) network traffic on the database, including both customer
9300
9315
  # database traffic and AWS traffic used for monitoring and
9301
9316
  # replication.
9302
9317
  #
9303
- # `Statistics`\: The most useful statistic is `Average`.
9318
+ # `Statistics`: The most useful statistic is `Average`.
9304
9319
  #
9305
- # `Unit`\: The published unit is `Bytes/Second`.
9320
+ # `Unit`: The published unit is `Bytes/Second`.
9306
9321
  #
9307
9322
  # * <b> <code>NetworkTransmitThroughput</code> </b> - The outgoing
9308
9323
  # (Transmit) network traffic on the database, including both customer
9309
9324
  # database traffic and AWS traffic used for monitoring and
9310
9325
  # replication.
9311
9326
  #
9312
- # `Statistics`\: The most useful statistic is `Average`.
9327
+ # `Statistics`: The most useful statistic is `Average`.
9313
9328
  #
9314
- # `Unit`\: The published unit is `Bytes/Second`.
9329
+ # `Unit`: The published unit is `Bytes/Second`.
9315
9330
  #
9316
9331
  # @option params [required, Integer] :period
9317
9332
  # The granularity, in seconds, of the returned data points.
@@ -9909,18 +9924,18 @@ module Aws::Lightsail
9909
9924
  #
9910
9925
  # The following metrics are available for each resource type:
9911
9926
  #
9912
- # * **Instances**\: `BurstCapacityPercentage`, `BurstCapacityTime`,
9927
+ # * **Instances**: `BurstCapacityPercentage`, `BurstCapacityTime`,
9913
9928
  # `CPUUtilization`, `NetworkIn`, `NetworkOut`, `StatusCheckFailed`,
9914
9929
  # `StatusCheckFailed_Instance`, and `StatusCheckFailed_System`.
9915
9930
  #
9916
- # * **Load balancers**\: `ClientTLSNegotiationErrorCount`,
9931
+ # * **Load balancers**: `ClientTLSNegotiationErrorCount`,
9917
9932
  # `HealthyHostCount`, `UnhealthyHostCount`, `HTTPCode_LB_4XX_Count`,
9918
9933
  # `HTTPCode_LB_5XX_Count`, `HTTPCode_Instance_2XX_Count`,
9919
9934
  # `HTTPCode_Instance_3XX_Count`, `HTTPCode_Instance_4XX_Count`,
9920
9935
  # `HTTPCode_Instance_5XX_Count`, `InstanceResponseTime`,
9921
9936
  # `RejectedConnectionCount`, and `RequestCount`.
9922
9937
  #
9923
- # * **Relational databases**\: `CPUUtilization`, `DatabaseConnections`,
9938
+ # * **Relational databases**: `CPUUtilization`, `DatabaseConnections`,
9924
9939
  # `DiskQueueDepth`, `FreeStorageSpace`, `NetworkReceiveThroughput`,
9925
9940
  # and `NetworkTransmitThroughput`.
9926
9941
  #
@@ -12159,7 +12174,7 @@ module Aws::Lightsail
12159
12174
  params: params,
12160
12175
  config: config)
12161
12176
  context[:gem_name] = 'aws-sdk-lightsail'
12162
- context[:gem_version] = '1.75.0'
12177
+ context[:gem_version] = '1.77.0'
12163
12178
  Seahorse::Client::Request.new(handlers, context)
12164
12179
  end
12165
12180
 
@@ -1781,9 +1781,11 @@ module Aws::Lightsail
1781
1781
  GetCertificatesRequest.add_member(:certificate_statuses, Shapes::ShapeRef.new(shape: CertificateStatusList, location_name: "certificateStatuses"))
1782
1782
  GetCertificatesRequest.add_member(:include_certificate_details, Shapes::ShapeRef.new(shape: IncludeCertificateDetails, location_name: "includeCertificateDetails"))
1783
1783
  GetCertificatesRequest.add_member(:certificate_name, Shapes::ShapeRef.new(shape: CertificateName, location_name: "certificateName"))
1784
+ GetCertificatesRequest.add_member(:page_token, Shapes::ShapeRef.new(shape: string, location_name: "pageToken"))
1784
1785
  GetCertificatesRequest.struct_class = Types::GetCertificatesRequest
1785
1786
 
1786
1787
  GetCertificatesResult.add_member(:certificates, Shapes::ShapeRef.new(shape: CertificateSummaryList, location_name: "certificates"))
1788
+ GetCertificatesResult.add_member(:next_page_token, Shapes::ShapeRef.new(shape: string, location_name: "nextPageToken"))
1787
1789
  GetCertificatesResult.struct_class = Types::GetCertificatesResult
1788
1790
 
1789
1791
  GetCloudFormationStackRecordsRequest.add_member(:page_token, Shapes::ShapeRef.new(shape: string, location_name: "pageToken"))
@@ -1599,7 +1599,7 @@ module Aws::Lightsail
1599
1599
  # Describes the full details of an Amazon Lightsail SSL/TLS certificate.
1600
1600
  #
1601
1601
  # <note markdown="1"> To get a summary of a certificate, use the `GetCertificates` action
1602
- # and ommit `includeCertificateDetails` from your request. The response
1602
+ # and omit `includeCertificateDetails` from your request. The response
1603
1603
  # will include only the certificate Amazon Resource Name (ARN),
1604
1604
  # certificate name, domain name, and tags.
1605
1605
  #
@@ -6862,12 +6862,22 @@ module Aws::Lightsail
6862
6862
  # Amazon Web Services Region where the request is made.
6863
6863
  # @return [String]
6864
6864
  #
6865
+ # @!attribute [rw] page_token
6866
+ # The token to advance to the next page of results from your request.
6867
+ #
6868
+ # To get a page token, perform an initial `GetCertificates` request.
6869
+ # If your results are paginated, the response will return a next page
6870
+ # token that you can specify as the page token in a subsequent
6871
+ # request.
6872
+ # @return [String]
6873
+ #
6865
6874
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/GetCertificatesRequest AWS API Documentation
6866
6875
  #
6867
6876
  class GetCertificatesRequest < Struct.new(
6868
6877
  :certificate_statuses,
6869
6878
  :include_certificate_details,
6870
- :certificate_name)
6879
+ :certificate_name,
6880
+ :page_token)
6871
6881
  SENSITIVE = []
6872
6882
  include Aws::Structure
6873
6883
  end
@@ -6876,10 +6886,18 @@ module Aws::Lightsail
6876
6886
  # An object that describes certificates.
6877
6887
  # @return [Array<Types::CertificateSummary>]
6878
6888
  #
6889
+ # @!attribute [rw] next_page_token
6890
+ # If `NextPageToken` is returned there are more results available. The
6891
+ # value of `NextPageToken` is a unique pagination token for each page.
6892
+ # Make the call again using the returned token to retrieve the next
6893
+ # page. Keep all other arguments unchanged.
6894
+ # @return [String]
6895
+ #
6879
6896
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/GetCertificatesResult AWS API Documentation
6880
6897
  #
6881
6898
  class GetCertificatesResult < Struct.new(
6882
- :certificates)
6899
+ :certificates,
6900
+ :next_page_token)
6883
6901
  SENSITIVE = []
6884
6902
  include Aws::Structure
6885
6903
  end
@@ -7292,7 +7310,7 @@ module Aws::Lightsail
7292
7310
  #
7293
7311
  # * Specified in the Unix time format.
7294
7312
  #
7295
- # For example, if you wish to use a start time of October 1, 2018,
7313
+ # For example, if you want to use a start time of October 1, 2018,
7296
7314
  # at 8 PM UTC, specify `1538424000` as the start time.
7297
7315
  #
7298
7316
  # You can convert a human-friendly time to Unix time format using a
@@ -7312,7 +7330,7 @@ module Aws::Lightsail
7312
7330
  #
7313
7331
  # * Specified in the Unix time format.
7314
7332
  #
7315
- # For example, if you wish to use an end time of October 1, 2018, at
7333
+ # For example, if you want to use an end time of October 1, 2018, at
7316
7334
  # 9 PM UTC, specify `1538427600` as the end time.
7317
7335
  #
7318
7336
  # You can convert a human-friendly time to Unix time format using a
@@ -7548,32 +7566,32 @@ module Aws::Lightsail
7548
7566
  # requests received by your Lightsail distribution, for all HTTP
7549
7567
  # methods, and for both HTTP and HTTPS requests.
7550
7568
  #
7551
- # `Statistics`\: The most useful statistic is `Sum`.
7569
+ # `Statistics`: The most useful statistic is `Sum`.
7552
7570
  #
7553
- # `Unit`\: The published unit is `None`.
7571
+ # `Unit`: The published unit is `None`.
7554
7572
  #
7555
7573
  # * <b> <code>BytesDownloaded</code> </b> - The number of bytes
7556
7574
  # downloaded by viewers for GET, HEAD, and OPTIONS requests.
7557
7575
  #
7558
- # `Statistics`\: The most useful statistic is `Sum`.
7576
+ # `Statistics`: The most useful statistic is `Sum`.
7559
7577
  #
7560
- # `Unit`\: The published unit is `None`.
7578
+ # `Unit`: The published unit is `None`.
7561
7579
  #
7562
7580
  # * <b> <code>BytesUploaded </code> </b> - The number of bytes
7563
7581
  # uploaded to your origin by your Lightsail distribution, using POST
7564
7582
  # and PUT requests.
7565
7583
  #
7566
- # `Statistics`\: The most useful statistic is `Sum`.
7584
+ # `Statistics`: The most useful statistic is `Sum`.
7567
7585
  #
7568
- # `Unit`\: The published unit is `None`.
7586
+ # `Unit`: The published unit is `None`.
7569
7587
  #
7570
7588
  # * <b> <code>TotalErrorRate</code> </b> - The percentage of all
7571
7589
  # viewer requests for which the response's HTTP status code was 4xx
7572
7590
  # or 5xx.
7573
7591
  #
7574
- # `Statistics`\: The most useful statistic is `Average`.
7592
+ # `Statistics`: The most useful statistic is `Average`.
7575
7593
  #
7576
- # `Unit`\: The published unit is `Percent`.
7594
+ # `Unit`: The published unit is `Percent`.
7577
7595
  #
7578
7596
  # * <b> <code>4xxErrorRate</code> </b> - The percentage of all viewer
7579
7597
  # requests for which the response's HTTP status cod was 4xx. In
@@ -7581,9 +7599,9 @@ module Aws::Lightsail
7581
7599
  # For example, a status code of 404 (Not Found) means that the
7582
7600
  # client requested an object that could not be found.
7583
7601
  #
7584
- # `Statistics`\: The most useful statistic is `Average`.
7602
+ # `Statistics`: The most useful statistic is `Average`.
7585
7603
  #
7586
- # `Unit`\: The published unit is `Percent`.
7604
+ # `Unit`: The published unit is `Percent`.
7587
7605
  #
7588
7606
  # * <b> <code>5xxErrorRate</code> </b> - The percentage of all viewer
7589
7607
  # requests for which the response's HTTP status code was 5xx. In
@@ -7591,9 +7609,9 @@ module Aws::Lightsail
7591
7609
  # example, a status code of 503 (Service Unavailable) means that the
7592
7610
  # origin server is currently unavailable.
7593
7611
  #
7594
- # `Statistics`\: The most useful statistic is `Average`.
7612
+ # `Statistics`: The most useful statistic is `Average`.
7595
7613
  #
7596
- # `Unit`\: The published unit is `Percent`.
7614
+ # `Unit`: The published unit is `Percent`.
7597
7615
  # @return [String]
7598
7616
  #
7599
7617
  # @!attribute [rw] start_time
@@ -7912,10 +7930,10 @@ module Aws::Lightsail
7912
7930
  # `BurstCapacityPercentage` reaches 100%. For more information, see
7913
7931
  # [Viewing instance burst capacity in Amazon Lightsail][1].
7914
7932
  #
7915
- # `Statistics`\: The most useful statistics are `Maximum` and
7933
+ # `Statistics`: The most useful statistics are `Maximum` and
7916
7934
  # `Average`.
7917
7935
  #
7918
- # `Unit`\: The published unit is `Percent`.
7936
+ # `Unit`: The published unit is `Percent`.
7919
7937
  #
7920
7938
  # * <b> <code>BurstCapacityTime</code> </b> - The available amount of
7921
7939
  # time for your instance to burst at 100% CPU utilization. Your
@@ -7932,10 +7950,10 @@ module Aws::Lightsail
7932
7950
  # more information, see [Viewing instance burst capacity in Amazon
7933
7951
  # Lightsail][1].
7934
7952
  #
7935
- # `Statistics`\: The most useful statistics are `Maximum` and
7953
+ # `Statistics`: The most useful statistics are `Maximum` and
7936
7954
  # `Average`.
7937
7955
  #
7938
- # `Unit`\: The published unit is `Seconds`.
7956
+ # `Unit`: The published unit is `Seconds`.
7939
7957
  #
7940
7958
  # * <b> <code>CPUUtilization</code> </b> - The percentage of allocated
7941
7959
  # compute units that are currently in use on the instance. This
@@ -7944,10 +7962,10 @@ module Aws::Lightsail
7944
7962
  # percentage than Lightsail when the instance is not allocated a
7945
7963
  # full processor core.
7946
7964
  #
7947
- # `Statistics`\: The most useful statistics are `Maximum` and
7965
+ # `Statistics`: The most useful statistics are `Maximum` and
7948
7966
  # `Average`.
7949
7967
  #
7950
- # `Unit`\: The published unit is `Percent`.
7968
+ # `Unit`: The published unit is `Percent`.
7951
7969
  #
7952
7970
  # * <b> <code>NetworkIn</code> </b> - The number of bytes received on
7953
7971
  # all network interfaces by the instance. This metric identifies the
@@ -7956,9 +7974,9 @@ module Aws::Lightsail
7956
7974
  # Because this metric is reported in 5-minute intervals, divide the
7957
7975
  # reported number by 300 to find Bytes/second.
7958
7976
  #
7959
- # `Statistics`\: The most useful statistic is `Sum`.
7977
+ # `Statistics`: The most useful statistic is `Sum`.
7960
7978
  #
7961
- # `Unit`\: The published unit is `Bytes`.
7979
+ # `Unit`: The published unit is `Bytes`.
7962
7980
  #
7963
7981
  # * <b> <code>NetworkOut</code> </b> - The number of bytes sent out on
7964
7982
  # all network interfaces by the instance. This metric identifies the
@@ -7967,9 +7985,9 @@ module Aws::Lightsail
7967
7985
  # this metric is reported in 5-minute intervals, divide the reported
7968
7986
  # number by 300 to find Bytes/second.
7969
7987
  #
7970
- # `Statistics`\: The most useful statistic is `Sum`.
7988
+ # `Statistics`: The most useful statistic is `Sum`.
7971
7989
  #
7972
- # `Unit`\: The published unit is `Bytes`.
7990
+ # `Unit`: The published unit is `Bytes`.
7973
7991
  #
7974
7992
  # * <b> <code>StatusCheckFailed</code> </b> - Reports whether the
7975
7993
  # instance passed or failed both the instance status check and the
@@ -7977,27 +7995,27 @@ module Aws::Lightsail
7977
7995
  # (failed). This metric data is available in 1-minute (60 seconds)
7978
7996
  # granularity.
7979
7997
  #
7980
- # `Statistics`\: The most useful statistic is `Sum`.
7998
+ # `Statistics`: The most useful statistic is `Sum`.
7981
7999
  #
7982
- # `Unit`\: The published unit is `Count`.
8000
+ # `Unit`: The published unit is `Count`.
7983
8001
  #
7984
8002
  # * <b> <code>StatusCheckFailed_Instance</code> </b> - Reports whether
7985
8003
  # the instance passed or failed the instance status check. This
7986
8004
  # metric can be either 0 (passed) or 1 (failed). This metric data is
7987
8005
  # available in 1-minute (60 seconds) granularity.
7988
8006
  #
7989
- # `Statistics`\: The most useful statistic is `Sum`.
8007
+ # `Statistics`: The most useful statistic is `Sum`.
7990
8008
  #
7991
- # `Unit`\: The published unit is `Count`.
8009
+ # `Unit`: The published unit is `Count`.
7992
8010
  #
7993
8011
  # * <b> <code>StatusCheckFailed_System</code> </b> - Reports whether
7994
8012
  # the instance passed or failed the system status check. This metric
7995
8013
  # can be either 0 (passed) or 1 (failed). This metric data is
7996
8014
  # available in 1-minute (60 seconds) granularity.
7997
8015
  #
7998
- # `Statistics`\: The most useful statistic is `Sum`.
8016
+ # `Statistics`: The most useful statistic is `Sum`.
7999
8017
  #
8000
- # `Unit`\: The published unit is `Count`.
8018
+ # `Unit`: The published unit is `Count`.
8001
8019
  #
8002
8020
  # * <b> <code>MetadataNoToken</code> </b> - Reports the number of
8003
8021
  # times that the instance metadata service was successfully accessed
@@ -8007,9 +8025,9 @@ module Aws::Lightsail
8007
8025
  # token-backed sessions, such as Instance Metadata Service Version
8008
8026
  # 2, then the value is 0.
8009
8027
  #
8010
- # `Statistics`\: The most useful statistic is `Sum`.
8028
+ # `Statistics`: The most useful statistic is `Sum`.
8011
8029
  #
8012
- # `Unit`\: The published unit is `Count`.
8030
+ # `Unit`: The published unit is `Count`.
8013
8031
  #
8014
8032
  #
8015
8033
  #
@@ -8371,57 +8389,57 @@ module Aws::Lightsail
8371
8389
  # the load balancer. Possible causes include a mismatch of ciphers
8372
8390
  # or protocols.
8373
8391
  #
8374
- # `Statistics`\: The most useful statistic is `Sum`.
8392
+ # `Statistics`: The most useful statistic is `Sum`.
8375
8393
  #
8376
- # `Unit`\: The published unit is `Count`.
8394
+ # `Unit`: The published unit is `Count`.
8377
8395
  #
8378
8396
  # * <b> <code>HealthyHostCount</code> </b> - The number of target
8379
8397
  # instances that are considered healthy.
8380
8398
  #
8381
- # `Statistics`\: The most useful statistic are `Average`, `Minimum`,
8399
+ # `Statistics`: The most useful statistic are `Average`, `Minimum`,
8382
8400
  # and `Maximum`.
8383
8401
  #
8384
- # `Unit`\: The published unit is `Count`.
8402
+ # `Unit`: The published unit is `Count`.
8385
8403
  #
8386
8404
  # * <b> <code>HTTPCode_Instance_2XX_Count</code> </b> - The number of
8387
8405
  # HTTP 2XX response codes generated by the target instances. This
8388
8406
  # does not include any response codes generated by the load
8389
8407
  # balancer.
8390
8408
  #
8391
- # `Statistics`\: The most useful statistic is `Sum`. Note that
8409
+ # `Statistics`: The most useful statistic is `Sum`. Note that
8392
8410
  # `Minimum`, `Maximum`, and `Average` all return `1`.
8393
8411
  #
8394
- # `Unit`\: The published unit is `Count`.
8412
+ # `Unit`: The published unit is `Count`.
8395
8413
  #
8396
8414
  # * <b> <code>HTTPCode_Instance_3XX_Count</code> </b> - The number of
8397
8415
  # HTTP 3XX response codes generated by the target instances. This
8398
8416
  # does not include any response codes generated by the load
8399
8417
  # balancer.
8400
8418
  #
8401
- # `Statistics`\: The most useful statistic is `Sum`. Note that
8419
+ # `Statistics`: The most useful statistic is `Sum`. Note that
8402
8420
  # `Minimum`, `Maximum`, and `Average` all return `1`.
8403
8421
  #
8404
- # `Unit`\: The published unit is `Count`.
8422
+ # `Unit`: The published unit is `Count`.
8405
8423
  #
8406
8424
  # * <b> <code>HTTPCode_Instance_4XX_Count</code> </b> - The number of
8407
8425
  # HTTP 4XX response codes generated by the target instances. This
8408
8426
  # does not include any response codes generated by the load
8409
8427
  # balancer.
8410
8428
  #
8411
- # `Statistics`\: The most useful statistic is `Sum`. Note that
8429
+ # `Statistics`: The most useful statistic is `Sum`. Note that
8412
8430
  # `Minimum`, `Maximum`, and `Average` all return `1`.
8413
8431
  #
8414
- # `Unit`\: The published unit is `Count`.
8432
+ # `Unit`: The published unit is `Count`.
8415
8433
  #
8416
8434
  # * <b> <code>HTTPCode_Instance_5XX_Count</code> </b> - The number of
8417
8435
  # HTTP 5XX response codes generated by the target instances. This
8418
8436
  # does not include any response codes generated by the load
8419
8437
  # balancer.
8420
8438
  #
8421
- # `Statistics`\: The most useful statistic is `Sum`. Note that
8439
+ # `Statistics`: The most useful statistic is `Sum`. Note that
8422
8440
  # `Minimum`, `Maximum`, and `Average` all return `1`.
8423
8441
  #
8424
- # `Unit`\: The published unit is `Count`.
8442
+ # `Unit`: The published unit is `Count`.
8425
8443
  #
8426
8444
  # * <b> <code>HTTPCode_LB_4XX_Count</code> </b> - The number of HTTP
8427
8445
  # 4XX client error codes that originated from the load balancer.
@@ -8430,10 +8448,10 @@ module Aws::Lightsail
8430
8448
  # instance. This count does not include response codes generated by
8431
8449
  # the target instances.
8432
8450
  #
8433
- # `Statistics`\: The most useful statistic is `Sum`. Note that
8451
+ # `Statistics`: The most useful statistic is `Sum`. Note that
8434
8452
  # `Minimum`, `Maximum`, and `Average` all return `1`.
8435
8453
  #
8436
- # `Unit`\: The published unit is `Count`.
8454
+ # `Unit`: The published unit is `Count`.
8437
8455
  #
8438
8456
  # * <b> <code>HTTPCode_LB_5XX_Count</code> </b> - The number of HTTP
8439
8457
  # 5XX server error codes that originated from the load balancer.
@@ -8443,43 +8461,43 @@ module Aws::Lightsail
8443
8461
  # exceeds the capacity of the instances (spillover) or the load
8444
8462
  # balancer.
8445
8463
  #
8446
- # `Statistics`\: The most useful statistic is `Sum`. Note that
8464
+ # `Statistics`: The most useful statistic is `Sum`. Note that
8447
8465
  # `Minimum`, `Maximum`, and `Average` all return `1`.
8448
8466
  #
8449
- # `Unit`\: The published unit is `Count`.
8467
+ # `Unit`: The published unit is `Count`.
8450
8468
  #
8451
8469
  # * <b> <code>InstanceResponseTime</code> </b> - The time elapsed, in
8452
8470
  # seconds, after the request leaves the load balancer until a
8453
8471
  # response from the target instance is received.
8454
8472
  #
8455
- # `Statistics`\: The most useful statistic is `Average`.
8473
+ # `Statistics`: The most useful statistic is `Average`.
8456
8474
  #
8457
- # `Unit`\: The published unit is `Seconds`.
8475
+ # `Unit`: The published unit is `Seconds`.
8458
8476
  #
8459
8477
  # * <b> <code>RejectedConnectionCount</code> </b> - The number of
8460
8478
  # connections that were rejected because the load balancer had
8461
8479
  # reached its maximum number of connections.
8462
8480
  #
8463
- # `Statistics`\: The most useful statistic is `Sum`.
8481
+ # `Statistics`: The most useful statistic is `Sum`.
8464
8482
  #
8465
- # `Unit`\: The published unit is `Count`.
8483
+ # `Unit`: The published unit is `Count`.
8466
8484
  #
8467
8485
  # * <b> <code>RequestCount</code> </b> - The number of requests
8468
8486
  # processed over IPv4. This count includes only the requests with a
8469
8487
  # response generated by a target instance of the load balancer.
8470
8488
  #
8471
- # `Statistics`\: The most useful statistic is `Sum`. Note that
8489
+ # `Statistics`: The most useful statistic is `Sum`. Note that
8472
8490
  # `Minimum`, `Maximum`, and `Average` all return `1`.
8473
8491
  #
8474
- # `Unit`\: The published unit is `Count`.
8492
+ # `Unit`: The published unit is `Count`.
8475
8493
  #
8476
8494
  # * <b> <code>UnhealthyHostCount</code> </b> - The number of target
8477
8495
  # instances that are considered unhealthy.
8478
8496
  #
8479
- # `Statistics`\: The most useful statistic are `Average`, `Minimum`,
8497
+ # `Statistics`: The most useful statistic are `Average`, `Minimum`,
8480
8498
  # and `Maximum`.
8481
8499
  #
8482
- # `Unit`\: The published unit is `Count`.
8500
+ # `Unit`: The published unit is `Count`.
8483
8501
  # @return [String]
8484
8502
  #
8485
8503
  # @!attribute [rw] period
@@ -9182,49 +9200,49 @@ module Aws::Lightsail
9182
9200
  # * <b> <code>CPUUtilization</code> </b> - The percentage of CPU
9183
9201
  # utilization currently in use on the database.
9184
9202
  #
9185
- # `Statistics`\: The most useful statistics are `Maximum` and
9203
+ # `Statistics`: The most useful statistics are `Maximum` and
9186
9204
  # `Average`.
9187
9205
  #
9188
- # `Unit`\: The published unit is `Percent`.
9206
+ # `Unit`: The published unit is `Percent`.
9189
9207
  #
9190
9208
  # * <b> <code>DatabaseConnections</code> </b> - The number of database
9191
9209
  # connections in use.
9192
9210
  #
9193
- # `Statistics`\: The most useful statistics are `Maximum` and `Sum`.
9211
+ # `Statistics`: The most useful statistics are `Maximum` and `Sum`.
9194
9212
  #
9195
- # `Unit`\: The published unit is `Count`.
9213
+ # `Unit`: The published unit is `Count`.
9196
9214
  #
9197
9215
  # * <b> <code>DiskQueueDepth</code> </b> - The number of outstanding
9198
9216
  # IOs (read/write requests) that are waiting to access the disk.
9199
9217
  #
9200
- # `Statistics`\: The most useful statistic is `Sum`.
9218
+ # `Statistics`: The most useful statistic is `Sum`.
9201
9219
  #
9202
- # `Unit`\: The published unit is `Count`.
9220
+ # `Unit`: The published unit is `Count`.
9203
9221
  #
9204
9222
  # * <b> <code>FreeStorageSpace</code> </b> - The amount of available
9205
9223
  # storage space.
9206
9224
  #
9207
- # `Statistics`\: The most useful statistic is `Sum`.
9225
+ # `Statistics`: The most useful statistic is `Sum`.
9208
9226
  #
9209
- # `Unit`\: The published unit is `Bytes`.
9227
+ # `Unit`: The published unit is `Bytes`.
9210
9228
  #
9211
9229
  # * <b> <code>NetworkReceiveThroughput</code> </b> - The incoming
9212
9230
  # (Receive) network traffic on the database, including both customer
9213
9231
  # database traffic and AWS traffic used for monitoring and
9214
9232
  # replication.
9215
9233
  #
9216
- # `Statistics`\: The most useful statistic is `Average`.
9234
+ # `Statistics`: The most useful statistic is `Average`.
9217
9235
  #
9218
- # `Unit`\: The published unit is `Bytes/Second`.
9236
+ # `Unit`: The published unit is `Bytes/Second`.
9219
9237
  #
9220
9238
  # * <b> <code>NetworkTransmitThroughput</code> </b> - The outgoing
9221
9239
  # (Transmit) network traffic on the database, including both
9222
9240
  # customer database traffic and AWS traffic used for monitoring and
9223
9241
  # replication.
9224
9242
  #
9225
- # `Statistics`\: The most useful statistic is `Average`.
9243
+ # `Statistics`: The most useful statistic is `Average`.
9226
9244
  #
9227
- # `Unit`\: The published unit is `Bytes/Second`.
9245
+ # `Unit`: The published unit is `Bytes/Second`.
9228
9246
  # @return [String]
9229
9247
  #
9230
9248
  # @!attribute [rw] period
@@ -12245,20 +12263,20 @@ module Aws::Lightsail
12245
12263
  #
12246
12264
  # The following metrics are available for each resource type:
12247
12265
  #
12248
- # * **Instances**\: `BurstCapacityPercentage`, `BurstCapacityTime`,
12266
+ # * **Instances**: `BurstCapacityPercentage`, `BurstCapacityTime`,
12249
12267
  # `CPUUtilization`, `NetworkIn`, `NetworkOut`, `StatusCheckFailed`,
12250
12268
  # `StatusCheckFailed_Instance`, and `StatusCheckFailed_System`.
12251
12269
  #
12252
- # * **Load balancers**\: `ClientTLSNegotiationErrorCount`,
12270
+ # * **Load balancers**: `ClientTLSNegotiationErrorCount`,
12253
12271
  # `HealthyHostCount`, `UnhealthyHostCount`, `HTTPCode_LB_4XX_Count`,
12254
12272
  # `HTTPCode_LB_5XX_Count`, `HTTPCode_Instance_2XX_Count`,
12255
12273
  # `HTTPCode_Instance_3XX_Count`, `HTTPCode_Instance_4XX_Count`,
12256
12274
  # `HTTPCode_Instance_5XX_Count`, `InstanceResponseTime`,
12257
12275
  # `RejectedConnectionCount`, and `RequestCount`.
12258
12276
  #
12259
- # * **Relational databases**\: `CPUUtilization`,
12260
- # `DatabaseConnections`, `DiskQueueDepth`, `FreeStorageSpace`,
12261
- # `NetworkReceiveThroughput`, and `NetworkTransmitThroughput`.
12277
+ # * **Relational databases**: `CPUUtilization`, `DatabaseConnections`,
12278
+ # `DiskQueueDepth`, `FreeStorageSpace`, `NetworkReceiveThroughput`,
12279
+ # and `NetworkTransmitThroughput`.
12262
12280
  #
12263
12281
  # For more information about these metrics, see [Metrics available in
12264
12282
  # Lightsail][1].
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-lightsail/customizations'
52
52
  # @!group service
53
53
  module Aws::Lightsail
54
54
 
55
- GEM_VERSION = '1.75.0'
55
+ GEM_VERSION = '1.77.0'
56
56
 
57
57
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-lightsail
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.75.0
4
+ version: 1.77.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-02-28 00:00:00.000000000 Z
11
+ date: 2023-06-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.165.0
22
+ version: 3.174.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.165.0
32
+ version: 3.174.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement