aws-sdk-lightsail 1.3.0 → 1.4.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/aws-sdk-lightsail.rb +1 -1
- data/lib/aws-sdk-lightsail/client.rb +211 -134
- data/lib/aws-sdk-lightsail/types.rb +291 -52
- metadata +3 -3
@@ -95,6 +95,13 @@ module Aws::Lightsail
|
|
95
95
|
# @!attribute [rw] instance_names
|
96
96
|
# An array of strings representing the instance name(s) you want to
|
97
97
|
# attach to your load balancer.
|
98
|
+
#
|
99
|
+
# An instance must be `running` before you can attach it to your load
|
100
|
+
# balancer.
|
101
|
+
#
|
102
|
+
# There are no additional limits on the number of instances you can
|
103
|
+
# attach to your load balancer, aside from the limit of Lightsail
|
104
|
+
# instances you can create in your account (20).
|
98
105
|
# @return [Array<String>]
|
99
106
|
#
|
100
107
|
# @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/AttachInstancesToLoadBalancerRequest AWS API Documentation
|
@@ -126,11 +133,11 @@ module Aws::Lightsail
|
|
126
133
|
#
|
127
134
|
# @!attribute [rw] load_balancer_name
|
128
135
|
# The name of the load balancer to which you want to associate the
|
129
|
-
# TLS
|
136
|
+
# SSL/TLS certificate.
|
130
137
|
# @return [String]
|
131
138
|
#
|
132
139
|
# @!attribute [rw] certificate_name
|
133
|
-
# The name of your TLS
|
140
|
+
# The name of your SSL/TLS certificate.
|
134
141
|
# @return [String]
|
135
142
|
#
|
136
143
|
# @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/AttachLoadBalancerTlsCertificateRequest AWS API Documentation
|
@@ -143,6 +150,10 @@ module Aws::Lightsail
|
|
143
150
|
|
144
151
|
# @!attribute [rw] operations
|
145
152
|
# An object representing the API operations.
|
153
|
+
#
|
154
|
+
# These SSL/TLS certificates are only usable by Lightsail load
|
155
|
+
# balancers. You can't get the certificate and use it for another
|
156
|
+
# purpose.
|
146
157
|
# @return [Array<Types::Operation>]
|
147
158
|
#
|
148
159
|
# @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/AttachLoadBalancerTlsCertificateResult AWS API Documentation
|
@@ -917,10 +928,14 @@ module Aws::Lightsail
|
|
917
928
|
# The path you provided to perform the load balancer health check. If
|
918
929
|
# you didn't specify a health check path, Lightsail uses the root
|
919
930
|
# path of your website (e.g., `"/"`).
|
931
|
+
#
|
932
|
+
# You may want to specify a custom health check path other than the
|
933
|
+
# root of your application if your home page loads slowly or has a lot
|
934
|
+
# of media or scripting on it.
|
920
935
|
# @return [String]
|
921
936
|
#
|
922
937
|
# @!attribute [rw] certificate_name
|
923
|
-
# The name of the TLS
|
938
|
+
# The name of the SSL/TLS certificate.
|
924
939
|
#
|
925
940
|
# If you specify `certificateName`, then `certificateDomainName` is
|
926
941
|
# required (and vice-versa).
|
@@ -935,8 +950,9 @@ module Aws::Lightsail
|
|
935
950
|
# @return [String]
|
936
951
|
#
|
937
952
|
# @!attribute [rw] certificate_alternative_names
|
938
|
-
# The alternative
|
939
|
-
# (e.g., `www.example.com`, `
|
953
|
+
# The optional alternative domains and subdomains to use with your
|
954
|
+
# SSL/TLS certificate (e.g., `www.example.com`, `example.com`,
|
955
|
+
# `m.example.com`, `blog.example.com`).
|
940
956
|
# @return [Array<String>]
|
941
957
|
#
|
942
958
|
# @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/CreateLoadBalancerRequest AWS API Documentation
|
@@ -973,21 +989,34 @@ module Aws::Lightsail
|
|
973
989
|
# }
|
974
990
|
#
|
975
991
|
# @!attribute [rw] load_balancer_name
|
976
|
-
# The load balancer name where you want to create the TLS
|
992
|
+
# The load balancer name where you want to create the SSL/TLS
|
977
993
|
# certificate.
|
978
994
|
# @return [String]
|
979
995
|
#
|
980
996
|
# @!attribute [rw] certificate_name
|
981
|
-
# The TLS
|
997
|
+
# The SSL/TLS certificate name.
|
998
|
+
#
|
999
|
+
# You can have up to 10 certificates in your account at one time. Each
|
1000
|
+
# Lightsail load balancer can have up to 2 certificates associated
|
1001
|
+
# with it at one time. There is also an overall limit to the number of
|
1002
|
+
# certificates that can be issue in a 365-day period. For more
|
1003
|
+
# information, see [Limits][1].
|
1004
|
+
#
|
1005
|
+
#
|
1006
|
+
#
|
1007
|
+
# [1]: http://docs.aws.amazon.com/acm/latest/userguide/acm-limits.html
|
982
1008
|
# @return [String]
|
983
1009
|
#
|
984
1010
|
# @!attribute [rw] certificate_domain_name
|
985
|
-
# The domain name (e.g., `example.com`) for your TLS
|
1011
|
+
# The domain name (e.g., `example.com`) for your SSL/TLS certificate.
|
986
1012
|
# @return [String]
|
987
1013
|
#
|
988
1014
|
# @!attribute [rw] certificate_alternative_names
|
989
|
-
# An array of strings listing alternative
|
990
|
-
# TLS
|
1015
|
+
# An array of strings listing alternative domains and subdomains for
|
1016
|
+
# your SSL/TLS certificate. Lightsail will de-dupe the names for you.
|
1017
|
+
# You can have a maximum of 9 alternative names (in addition to the 1
|
1018
|
+
# primary domain). We do not support wildcards (e.g.,
|
1019
|
+
# `*.example.com`).
|
991
1020
|
# @return [Array<String>]
|
992
1021
|
#
|
993
1022
|
# @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/CreateLoadBalancerTlsCertificateRequest AWS API Documentation
|
@@ -1279,11 +1308,16 @@ module Aws::Lightsail
|
|
1279
1308
|
# @return [String]
|
1280
1309
|
#
|
1281
1310
|
# @!attribute [rw] certificate_name
|
1282
|
-
# The TLS
|
1311
|
+
# The SSL/TLS certificate name.
|
1283
1312
|
# @return [String]
|
1284
1313
|
#
|
1285
1314
|
# @!attribute [rw] force
|
1286
|
-
# When `true`, forces the deletion of
|
1315
|
+
# When `true`, forces the deletion of an SSL/TLS certificate.
|
1316
|
+
#
|
1317
|
+
# There can be two certificates associated with a Lightsail load
|
1318
|
+
# balancer: the primary and the backup. The force parameter is
|
1319
|
+
# required when the primary SSL/TLS certificate is in use by an
|
1320
|
+
# instance attached to the load balancer.
|
1287
1321
|
# @return [Boolean]
|
1288
1322
|
#
|
1289
1323
|
# @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/DeleteLoadBalancerTlsCertificateRequest AWS API Documentation
|
@@ -1672,11 +1706,18 @@ module Aws::Lightsail
|
|
1672
1706
|
#
|
1673
1707
|
# @!attribute [rw] target
|
1674
1708
|
# The target AWS name server (e.g., `ns-111.awsdns-22.com.`).
|
1709
|
+
#
|
1710
|
+
# For Lightsail load balancers, the value looks like
|
1711
|
+
# `ab1234c56789c6b86aba6fb203d443bc-123456789.us-east-2.elb.amazonaws.com`.
|
1712
|
+
# Be sure to also set `isAlias` to `true` when setting up an A record
|
1713
|
+
# for a load balancer.
|
1675
1714
|
# @return [String]
|
1676
1715
|
#
|
1677
1716
|
# @!attribute [rw] is_alias
|
1678
1717
|
# When `true`, specifies whether the domain entry is an alias used by
|
1679
|
-
# the Lightsail load balancer.
|
1718
|
+
# the Lightsail load balancer. You can include an alias (A type)
|
1719
|
+
# record in your request, which points to a load balancer DNS name and
|
1720
|
+
# routes traffic to your load balancer
|
1680
1721
|
# @return [Boolean]
|
1681
1722
|
#
|
1682
1723
|
# @!attribute [rw] type
|
@@ -2542,6 +2583,28 @@ module Aws::Lightsail
|
|
2542
2583
|
# @!attribute [rw] statistics
|
2543
2584
|
# An array of statistics that you want to request metrics for. Valid
|
2544
2585
|
# values are listed below.
|
2586
|
+
#
|
2587
|
+
# * <b> <code>SampleCount</code> </b> - The count (number) of data
|
2588
|
+
# points used for the statistical calculation.
|
2589
|
+
#
|
2590
|
+
# * <b> <code>Average</code> </b> - The value of Sum / SampleCount
|
2591
|
+
# during the specified period. By comparing this statistic with the
|
2592
|
+
# Minimum and Maximum, you can determine the full scope of a metric
|
2593
|
+
# and how close the average use is to the Minimum and Maximum. This
|
2594
|
+
# comparison helps you to know when to increase or decrease your
|
2595
|
+
# resources as needed.
|
2596
|
+
#
|
2597
|
+
# * <b> <code>Sum</code> </b> - All values submitted for the matching
|
2598
|
+
# metric added together. This statistic can be useful for
|
2599
|
+
# determining the total volume of a metric.
|
2600
|
+
#
|
2601
|
+
# * <b> <code>Minimum</code> </b> - The lowest value observed during
|
2602
|
+
# the specified period. You can use this value to determine low
|
2603
|
+
# volumes of activity for your application.
|
2604
|
+
#
|
2605
|
+
# * <b> <code>Maximum</code> </b> - The highest value observed during
|
2606
|
+
# the specified period. You can use this value to determine high
|
2607
|
+
# volumes of activity for your application.
|
2545
2608
|
# @return [Array<String>]
|
2546
2609
|
#
|
2547
2610
|
# @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/GetLoadBalancerMetricDataRequest AWS API Documentation
|
@@ -2559,7 +2622,93 @@ module Aws::Lightsail
|
|
2559
2622
|
|
2560
2623
|
# @!attribute [rw] metric_name
|
2561
2624
|
# The metric about which you are receiving information. Valid values
|
2562
|
-
# are listed below
|
2625
|
+
# are listed below, along with the most useful `statistics` to include
|
2626
|
+
# in your request.
|
2627
|
+
#
|
2628
|
+
# * <b> <code>ClientTLSNegotiationErrorCount</code> </b> - The number
|
2629
|
+
# of TLS connections initiated by the client that did not establish
|
2630
|
+
# a session with the load balancer. Possible causes include a
|
2631
|
+
# mismatch of ciphers or protocols.
|
2632
|
+
#
|
2633
|
+
# `Statistics`\: The most useful statistic is `Sum`.
|
2634
|
+
#
|
2635
|
+
# * <b> <code>HealthyHostCount</code> </b> - The number of target
|
2636
|
+
# instances that are considered healthy.
|
2637
|
+
#
|
2638
|
+
# `Statistics`\: The most useful statistic are `Average`, `Minimum`,
|
2639
|
+
# and `Maximum`.
|
2640
|
+
#
|
2641
|
+
# * <b> <code>UnhealthyHostCount</code> </b> - The number of target
|
2642
|
+
# instances that are considered unhealthy.
|
2643
|
+
#
|
2644
|
+
# `Statistics`\: The most useful statistic are `Average`, `Minimum`,
|
2645
|
+
# and `Maximum`.
|
2646
|
+
#
|
2647
|
+
# * <b> <code>HTTPCode_LB_4XX_Count</code> </b> - The number of HTTP
|
2648
|
+
# 4XX client error codes that originate from the load balancer.
|
2649
|
+
# Client errors are generated when requests are malformed or
|
2650
|
+
# incomplete. These requests have not been received by the target
|
2651
|
+
# instance. This count does not include any response codes generated
|
2652
|
+
# by the target instances.
|
2653
|
+
#
|
2654
|
+
# `Statistics`\: The most useful statistic is `Sum`. Note that
|
2655
|
+
# `Minimum`, `Maximum`, and `Average` all return `1`.
|
2656
|
+
#
|
2657
|
+
# * <b> <code>HTTPCode_LB_5XX_Count</code> </b> - The number of HTTP
|
2658
|
+
# 5XX server error codes that originate from the load balancer. This
|
2659
|
+
# count does not include any response codes generated by the target
|
2660
|
+
# instances.
|
2661
|
+
#
|
2662
|
+
# `Statistics`\: The most useful statistic is `Sum`. Note that
|
2663
|
+
# `Minimum`, `Maximum`, and `Average` all return `1`. Note that
|
2664
|
+
# `Minimum`, `Maximum`, and `Average` all return `1`.
|
2665
|
+
#
|
2666
|
+
# * <b> <code>HTTPCode_Instance_2XX_Count</code> </b> - The number of
|
2667
|
+
# HTTP response codes generated by the target instances. This does
|
2668
|
+
# not include any response codes generated by the load balancer.
|
2669
|
+
#
|
2670
|
+
# `Statistics`\: The most useful statistic is `Sum`. Note that
|
2671
|
+
# `Minimum`, `Maximum`, and `Average` all return `1`.
|
2672
|
+
#
|
2673
|
+
# * <b> <code>HTTPCode_Instance_3XX_Count</code> </b> - The number of
|
2674
|
+
# HTTP response codes generated by the target instances. This does
|
2675
|
+
# not include any response codes generated by the load balancer.
|
2676
|
+
#
|
2677
|
+
# `Statistics`\: The most useful statistic is `Sum`. Note that
|
2678
|
+
# `Minimum`, `Maximum`, and `Average` all return `1`.
|
2679
|
+
#
|
2680
|
+
# * <b> <code>HTTPCode_Instance_4XX_Count</code> </b> - The number of
|
2681
|
+
# HTTP response codes generated by the target instances. This does
|
2682
|
+
# not include any response codes generated by the load balancer.
|
2683
|
+
#
|
2684
|
+
# `Statistics`\: The most useful statistic is `Sum`. Note that
|
2685
|
+
# `Minimum`, `Maximum`, and `Average` all return `1`.
|
2686
|
+
#
|
2687
|
+
# * <b> <code>HTTPCode_Instance_5XX_Count</code> </b> - The number of
|
2688
|
+
# HTTP response codes generated by the target instances. This does
|
2689
|
+
# not include any response codes generated by the load balancer.
|
2690
|
+
#
|
2691
|
+
# `Statistics`\: The most useful statistic is `Sum`. Note that
|
2692
|
+
# `Minimum`, `Maximum`, and `Average` all return `1`.
|
2693
|
+
#
|
2694
|
+
# * <b> <code>InstanceResponseTime</code> </b> - The time elapsed, in
|
2695
|
+
# seconds, after the request leaves the load balancer until a
|
2696
|
+
# response from the target instance is received.
|
2697
|
+
#
|
2698
|
+
# `Statistics`\: The most useful statistic is `Average`.
|
2699
|
+
#
|
2700
|
+
# * <b> <code>RejectedConnectionCount</code> </b> - The number of
|
2701
|
+
# connections that were rejected because the load balancer had
|
2702
|
+
# reached its maximum number of connections.
|
2703
|
+
#
|
2704
|
+
# `Statistics`\: The most useful statistic is `Sum`.
|
2705
|
+
#
|
2706
|
+
# * <b> <code>RequestCount</code> </b> - The number of requests
|
2707
|
+
# processed over IPv4. This count includes only the requests with a
|
2708
|
+
# response generated by a target instance of the load balancer.
|
2709
|
+
#
|
2710
|
+
# `Statistics`\: The most useful statistic is `Sum`. Note that
|
2711
|
+
# `Minimum`, `Maximum`, and `Average` all return `1`.
|
2563
2712
|
# @return [String]
|
2564
2713
|
#
|
2565
2714
|
# @!attribute [rw] metric_data
|
@@ -2611,7 +2760,7 @@ module Aws::Lightsail
|
|
2611
2760
|
# }
|
2612
2761
|
#
|
2613
2762
|
# @!attribute [rw] load_balancer_name
|
2614
|
-
# The name of the load balancer
|
2763
|
+
# The name of the load balancer you associated with your SSL/TLS
|
2615
2764
|
# certificate.
|
2616
2765
|
# @return [String]
|
2617
2766
|
#
|
@@ -2624,7 +2773,7 @@ module Aws::Lightsail
|
|
2624
2773
|
|
2625
2774
|
# @!attribute [rw] tls_certificates
|
2626
2775
|
# An array of LoadBalancerTlsCertificate objects describing your
|
2627
|
-
# TLS
|
2776
|
+
# SSL/TLS certificates.
|
2628
2777
|
# @return [Array<Types::LoadBalancerTlsCertificate>]
|
2629
2778
|
#
|
2630
2779
|
# @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/GetLoadBalancerTlsCertificatesResult AWS API Documentation
|
@@ -3145,7 +3294,65 @@ module Aws::Lightsail
|
|
3145
3294
|
# @return [String]
|
3146
3295
|
#
|
3147
3296
|
# @!attribute [rw] instance_health_reason
|
3148
|
-
# More information about the instance health.
|
3297
|
+
# More information about the instance health. If the `instanceHealth`
|
3298
|
+
# is `healthy`, then an `instanceHealthReason` value is not provided.
|
3299
|
+
#
|
3300
|
+
# If <b> <code>instanceHealth</code> </b> is `initial`, the <b>
|
3301
|
+
# <code>instanceHealthReason</code> </b> value can be one of the
|
3302
|
+
# following:
|
3303
|
+
#
|
3304
|
+
# * <b> <code>Lb.RegistrationInProgress</code> </b> - The target
|
3305
|
+
# instance is in the process of being registered with the load
|
3306
|
+
# balancer.
|
3307
|
+
#
|
3308
|
+
# * <b> <code>Lb.InitialHealthChecking</code> </b> - The Lightsail
|
3309
|
+
# load balancer is still sending the target instance the minimum
|
3310
|
+
# number of health checks required to determine its health status.
|
3311
|
+
#
|
3312
|
+
# If <b> <code>instanceHealth</code> </b> is `unhealthy`, the <b>
|
3313
|
+
# <code>instanceHealthReason</code> </b> value can be one of the
|
3314
|
+
# following:
|
3315
|
+
#
|
3316
|
+
# * <b> <code>Instance.ResponseCodeMismatch</code> </b> - The health
|
3317
|
+
# checks did not return an expected HTTP code.
|
3318
|
+
#
|
3319
|
+
# * <b> <code>Instance.Timeout</code> </b> - The health check requests
|
3320
|
+
# timed out.
|
3321
|
+
#
|
3322
|
+
# * <b> <code>Instance.FailedHealthChecks</code> </b> - The health
|
3323
|
+
# checks failed because the connection to the target instance timed
|
3324
|
+
# out, the target instance response was malformed, or the target
|
3325
|
+
# instance failed the health check for an unknown reason.
|
3326
|
+
#
|
3327
|
+
# * <b> <code>Lb.InternalError</code> </b> - The health checks failed
|
3328
|
+
# due to an internal error.
|
3329
|
+
#
|
3330
|
+
# If <b> <code>instanceHealth</code> </b> is `unused`, the <b>
|
3331
|
+
# <code>instanceHealthReason</code> </b> value can be one of the
|
3332
|
+
# following:
|
3333
|
+
#
|
3334
|
+
# * <b> <code>Instance.NotRegistered</code> </b> - The target instance
|
3335
|
+
# is not registered with the target group.
|
3336
|
+
#
|
3337
|
+
# * <b> <code>Instance.NotInUse</code> </b> - The target group is not
|
3338
|
+
# used by any load balancer, or the target instance is in an
|
3339
|
+
# Availability Zone that is not enabled for its load balancer.
|
3340
|
+
#
|
3341
|
+
# * <b> <code>Instance.IpUnusable</code> </b> - The target IP address
|
3342
|
+
# is reserved for use by a Lightsail load balancer.
|
3343
|
+
#
|
3344
|
+
# * <b> <code>Instance.InvalidState</code> </b> - The target is in the
|
3345
|
+
# stopped or terminated state.
|
3346
|
+
#
|
3347
|
+
# If <b> <code>instanceHealth</code> </b> is `draining`, the <b>
|
3348
|
+
# <code>instanceHealthReason</code> </b> value can be one of the
|
3349
|
+
# following:
|
3350
|
+
#
|
3351
|
+
# * <b> <code>Instance.DeregistrationInProgress</code> </b> - The
|
3352
|
+
# target instance is in the process of being deregistered and the
|
3353
|
+
# deregistration delay period has not expired.
|
3354
|
+
#
|
3355
|
+
# ^
|
3149
3356
|
# @return [String]
|
3150
3357
|
#
|
3151
3358
|
# @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/InstanceHealthSummary AWS API Documentation
|
@@ -3489,8 +3696,9 @@ module Aws::Lightsail
|
|
3489
3696
|
# @return [Time]
|
3490
3697
|
#
|
3491
3698
|
# @!attribute [rw] location
|
3492
|
-
# The AWS Region
|
3493
|
-
#
|
3699
|
+
# The AWS Region where your load balancer was created (e.g.,
|
3700
|
+
# `us-east-2a`). Lightsail automatically creates your load balancer
|
3701
|
+
# across Availability Zones.
|
3494
3702
|
# @return [Types::ResourceLocation]
|
3495
3703
|
#
|
3496
3704
|
# @!attribute [rw] resource_type
|
@@ -3508,10 +3716,13 @@ module Aws::Lightsail
|
|
3508
3716
|
# @!attribute [rw] protocol
|
3509
3717
|
# The protocol you have enabled for your load balancer. Valid values
|
3510
3718
|
# are below.
|
3719
|
+
#
|
3720
|
+
# You can't just have `HTTP_HTTPS`, but you can have just `HTTP`.
|
3511
3721
|
# @return [String]
|
3512
3722
|
#
|
3513
3723
|
# @!attribute [rw] public_ports
|
3514
|
-
# An array of public port settings for your load balancer.
|
3724
|
+
# An array of public port settings for your load balancer. For HTTP,
|
3725
|
+
# use port 80. For HTTPS, use port 443.
|
3515
3726
|
# @return [Array<Integer>]
|
3516
3727
|
#
|
3517
3728
|
# @!attribute [rw] health_check_path
|
@@ -3521,7 +3732,9 @@ module Aws::Lightsail
|
|
3521
3732
|
# @return [String]
|
3522
3733
|
#
|
3523
3734
|
# @!attribute [rw] instance_port
|
3524
|
-
# The
|
3735
|
+
# The port where the load balancer will direct traffic to your
|
3736
|
+
# Lightsail instances. For HTTP traffic, it's port 80. For HTTPS
|
3737
|
+
# traffic, it's port 443.
|
3525
3738
|
# @return [Integer]
|
3526
3739
|
#
|
3527
3740
|
# @!attribute [rw] instance_health_summary
|
@@ -3531,7 +3744,8 @@ module Aws::Lightsail
|
|
3531
3744
|
#
|
3532
3745
|
# @!attribute [rw] tls_certificate_summaries
|
3533
3746
|
# An array of LoadBalancerTlsCertificateSummary objects that provide
|
3534
|
-
# additional information about the TLS
|
3747
|
+
# additional information about the SSL/TLS certificates. For example,
|
3748
|
+
# if `true`, the certificate is attached to the load balancer.
|
3535
3749
|
# @return [Array<Types::LoadBalancerTlsCertificateSummary>]
|
3536
3750
|
#
|
3537
3751
|
# @!attribute [rw] configuration_options
|
@@ -3560,28 +3774,28 @@ module Aws::Lightsail
|
|
3560
3774
|
include Aws::Structure
|
3561
3775
|
end
|
3562
3776
|
|
3563
|
-
# Describes a load balancer TLS
|
3777
|
+
# Describes a load balancer SSL/TLS certificate.
|
3564
3778
|
#
|
3565
3779
|
# TLS is just an updated, more secure version of Secure Socket Layer
|
3566
3780
|
# (SSL).
|
3567
3781
|
#
|
3568
3782
|
# @!attribute [rw] name
|
3569
|
-
# The name of the TLS
|
3783
|
+
# The name of the SSL/TLS certificate (e.g., `my-certificate`).
|
3570
3784
|
# @return [String]
|
3571
3785
|
#
|
3572
3786
|
# @!attribute [rw] arn
|
3573
|
-
# The Amazon Resource Name (ARN) of the TLS
|
3787
|
+
# The Amazon Resource Name (ARN) of the SSL/TLS certificate.
|
3574
3788
|
# @return [String]
|
3575
3789
|
#
|
3576
3790
|
# @!attribute [rw] support_code
|
3577
3791
|
# The support code. Include this code in your email to support when
|
3578
|
-
# you have questions about your Lightsail load balancer or TLS
|
3792
|
+
# you have questions about your Lightsail load balancer or SSL/TLS
|
3579
3793
|
# certificate. This code enables our support team to look up your
|
3580
3794
|
# Lightsail information more easily.
|
3581
3795
|
# @return [String]
|
3582
3796
|
#
|
3583
3797
|
# @!attribute [rw] created_at
|
3584
|
-
# The time when you created your TLS
|
3798
|
+
# The time when you created your SSL/TLS certificate.
|
3585
3799
|
# @return [Time]
|
3586
3800
|
#
|
3587
3801
|
# @!attribute [rw] location
|
@@ -3590,24 +3804,48 @@ module Aws::Lightsail
|
|
3590
3804
|
# @return [Types::ResourceLocation]
|
3591
3805
|
#
|
3592
3806
|
# @!attribute [rw] resource_type
|
3593
|
-
# The resource type (e.g., `LoadBalancerTlsCertificate
|
3807
|
+
# The resource type (e.g., `LoadBalancerTlsCertificate`).
|
3808
|
+
#
|
3809
|
+
# * <b> <code>Instance</code> </b> - A Lightsail instance (a virtual
|
3810
|
+
# private server)
|
3811
|
+
#
|
3812
|
+
# * <b> <code>StaticIp</code> </b> - A static IP address
|
3813
|
+
#
|
3814
|
+
# * <b> <code>KeyPair</code> </b> - The key pair used to connect to a
|
3815
|
+
# Lightsail instance
|
3816
|
+
#
|
3817
|
+
# * <b> <code>InstanceSnapshot</code> </b> - A Lightsail instance
|
3818
|
+
# snapshot
|
3819
|
+
#
|
3820
|
+
# * <b> <code>Domain</code> </b> - A DNS zone
|
3821
|
+
#
|
3822
|
+
# * <b> <code>PeeredVpc</code> </b> - A peered VPC
|
3823
|
+
#
|
3824
|
+
# * <b> <code>LoadBalancer</code> </b> - A Lightsail load balancer
|
3825
|
+
#
|
3826
|
+
# * <b> <code>LoadBalancerTlsCertificate</code> </b> - An SSL/TLS
|
3827
|
+
# certificate associated with a Lightsail load balancer
|
3828
|
+
#
|
3829
|
+
# * <b> <code>Disk</code> </b> - A Lightsail block storage disk
|
3830
|
+
#
|
3831
|
+
# * <b> <code>DiskSnapshot</code> </b> - A block storage disk snapshot
|
3594
3832
|
# @return [String]
|
3595
3833
|
#
|
3596
3834
|
# @!attribute [rw] load_balancer_name
|
3597
|
-
# The load balancer name where your TLS
|
3835
|
+
# The load balancer name where your SSL/TLS certificate is attached.
|
3598
3836
|
# @return [String]
|
3599
3837
|
#
|
3600
3838
|
# @!attribute [rw] is_attached
|
3601
|
-
# When `true`, the TLS
|
3839
|
+
# When `true`, the SSL/TLS certificate is attached to the Lightsail
|
3602
3840
|
# load balancer.
|
3603
3841
|
# @return [Boolean]
|
3604
3842
|
#
|
3605
3843
|
# @!attribute [rw] status
|
3606
|
-
# The status of the TLS
|
3844
|
+
# The status of the SSL/TLS certificate. Valid values are below.
|
3607
3845
|
# @return [String]
|
3608
3846
|
#
|
3609
3847
|
# @!attribute [rw] domain_name
|
3610
|
-
# The domain name for your TLS
|
3848
|
+
# The domain name for your SSL/TLS certificate.
|
3611
3849
|
# @return [String]
|
3612
3850
|
#
|
3613
3851
|
# @!attribute [rw] domain_validation_records
|
@@ -3616,11 +3854,11 @@ module Aws::Lightsail
|
|
3616
3854
|
# @return [Array<Types::LoadBalancerTlsCertificateDomainValidationRecord>]
|
3617
3855
|
#
|
3618
3856
|
# @!attribute [rw] failure_reason
|
3619
|
-
# The reason for the TLS
|
3857
|
+
# The reason for the SSL/TLS certificate validation failure.
|
3620
3858
|
# @return [String]
|
3621
3859
|
#
|
3622
3860
|
# @!attribute [rw] issued_at
|
3623
|
-
# The time when the TLS
|
3861
|
+
# The time when the SSL/TLS certificate was issued.
|
3624
3862
|
# @return [Time]
|
3625
3863
|
#
|
3626
3864
|
# @!attribute [rw] issuer
|
@@ -3633,11 +3871,11 @@ module Aws::Lightsail
|
|
3633
3871
|
# @return [String]
|
3634
3872
|
#
|
3635
3873
|
# @!attribute [rw] not_after
|
3636
|
-
# The timestamp when the TLS
|
3874
|
+
# The timestamp when the SSL/TLS certificate expires.
|
3637
3875
|
# @return [Time]
|
3638
3876
|
#
|
3639
3877
|
# @!attribute [rw] not_before
|
3640
|
-
# The timestamp when the TLS
|
3878
|
+
# The timestamp when the SSL/TLS certificate is first valid.
|
3641
3879
|
# @return [Time]
|
3642
3880
|
#
|
3643
3881
|
# @!attribute [rw] renewal_summary
|
@@ -3650,7 +3888,7 @@ module Aws::Lightsail
|
|
3650
3888
|
# @return [String]
|
3651
3889
|
#
|
3652
3890
|
# @!attribute [rw] revoked_at
|
3653
|
-
# The timestamp when the TLS
|
3891
|
+
# The timestamp when the SSL/TLS certificate was revoked.
|
3654
3892
|
# @return [Time]
|
3655
3893
|
#
|
3656
3894
|
# @!attribute [rw] serial
|
@@ -3667,12 +3905,12 @@ module Aws::Lightsail
|
|
3667
3905
|
# @return [String]
|
3668
3906
|
#
|
3669
3907
|
# @!attribute [rw] subject_alternative_names
|
3670
|
-
# One or more
|
3671
|
-
#
|
3672
|
-
#
|
3673
|
-
#
|
3674
|
-
#
|
3675
|
-
#
|
3908
|
+
# One or more domains or subdomains included in the certificate. This
|
3909
|
+
# list contains the domain names that are bound to the public key that
|
3910
|
+
# is contained in the certificate. The subject alternative names
|
3911
|
+
# include the canonical domain name (CNAME) of the certificate and
|
3912
|
+
# additional domain names that can be used to connect to the website,
|
3913
|
+
# such as `example.com`, `www.example.com`, or `m.example.com`.
|
3676
3914
|
# @return [Array<String>]
|
3677
3915
|
#
|
3678
3916
|
# @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/LoadBalancerTlsCertificate AWS API Documentation
|
@@ -3705,11 +3943,11 @@ module Aws::Lightsail
|
|
3705
3943
|
include Aws::Structure
|
3706
3944
|
end
|
3707
3945
|
|
3708
|
-
# Contains information about the domain names on
|
3946
|
+
# Contains information about the domain names on an SSL/TLS certificate
|
3709
3947
|
# that you will use to validate domain ownership.
|
3710
3948
|
#
|
3711
3949
|
# @!attribute [rw] domain_name
|
3712
|
-
#
|
3950
|
+
# The fully qualified domain name in the certificate request.
|
3713
3951
|
# @return [String]
|
3714
3952
|
#
|
3715
3953
|
# @!attribute [rw] validation_status
|
@@ -3724,7 +3962,7 @@ module Aws::Lightsail
|
|
3724
3962
|
include Aws::Structure
|
3725
3963
|
end
|
3726
3964
|
|
3727
|
-
# Describes the validation record of each domain name in the TLS
|
3965
|
+
# Describes the validation record of each domain name in the SSL/TLS
|
3728
3966
|
# certificate.
|
3729
3967
|
#
|
3730
3968
|
# @!attribute [rw] name
|
@@ -3746,7 +3984,7 @@ module Aws::Lightsail
|
|
3746
3984
|
# @return [String]
|
3747
3985
|
#
|
3748
3986
|
# @!attribute [rw] domain_name
|
3749
|
-
# The domain name against which your TLS
|
3987
|
+
# The domain name against which your SSL/TLS certificate was
|
3750
3988
|
# validated.
|
3751
3989
|
# @return [String]
|
3752
3990
|
#
|
@@ -3784,14 +4022,14 @@ module Aws::Lightsail
|
|
3784
4022
|
include Aws::Structure
|
3785
4023
|
end
|
3786
4024
|
|
3787
|
-
# Provides a summary of TLS
|
4025
|
+
# Provides a summary of SSL/TLS certificate metadata.
|
3788
4026
|
#
|
3789
4027
|
# @!attribute [rw] name
|
3790
|
-
# The name of the TLS
|
4028
|
+
# The name of the SSL/TLS certificate.
|
3791
4029
|
# @return [String]
|
3792
4030
|
#
|
3793
4031
|
# @!attribute [rw] is_attached
|
3794
|
-
# When `true`, the TLS
|
4032
|
+
# When `true`, the SSL/TLS certificate is attached to the Lightsail
|
3795
4033
|
# load balancer.
|
3796
4034
|
# @return [Boolean]
|
3797
4035
|
#
|
@@ -4124,7 +4362,7 @@ module Aws::Lightsail
|
|
4124
4362
|
|
4125
4363
|
# @!attribute [rw] operations
|
4126
4364
|
# An array of key-value pairs containing information about the request
|
4127
|
-
#
|
4365
|
+
# operations.
|
4128
4366
|
# @return [Array<Types::Operation>]
|
4129
4367
|
#
|
4130
4368
|
# @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/RebootInstanceResult AWS API Documentation
|
@@ -4422,7 +4660,8 @@ module Aws::Lightsail
|
|
4422
4660
|
# }
|
4423
4661
|
#
|
4424
4662
|
# @!attribute [rw] load_balancer_name
|
4425
|
-
# The name of the load balancer that you want to modify.
|
4663
|
+
# The name of the load balancer that you want to modify (e.g.,
|
4664
|
+
# `my-load-balancer`.
|
4426
4665
|
# @return [String]
|
4427
4666
|
#
|
4428
4667
|
# @!attribute [rw] attribute_name
|