aws-sdk-lightsail 1.62.0 → 1.65.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -40,9 +40,9 @@ module Aws::Lightsail
40
40
  #
41
41
  # Access keys grant full programmatic access to the specified bucket and
42
42
  # its objects. You can have a maximum of two access keys per bucket. Use
43
- # the CreateBucketAccessKey action to create an access key for a
43
+ # the [CreateBucketAccessKey][1] action to create an access key for a
44
44
  # specific bucket. For more information about access keys, see [Creating
45
- # access keys for a bucket in Amazon Lightsail][1] in the *Amazon
45
+ # access keys for a bucket in Amazon Lightsail][2] in the *Amazon
46
46
  # Lightsail Developer Guide*.
47
47
  #
48
48
  # The `secretAccessKey` value is returned only in response to the
@@ -53,7 +53,8 @@ module Aws::Lightsail
53
53
  #
54
54
  #
55
55
  #
56
- # [1]: https://lightsail.aws.amazon.com/ls/docs/en_us/articles/amazon-lightsail-creating-bucket-access-keys
56
+ # [1]: https://docs.aws.amazon.com/lightsail/2016-11-28/api-reference/API_CreateBucketAccessKey.html
57
+ # [2]: https://lightsail.aws.amazon.com/ls/docs/en_us/articles/amazon-lightsail-creating-bucket-access-keys
57
58
  #
58
59
  # @!attribute [rw] access_key_id
59
60
  # The ID of the access key.
@@ -82,11 +83,15 @@ module Aws::Lightsail
82
83
  # An object that describes the last time the access key was used.
83
84
  #
84
85
  # <note markdown="1"> This object does not include data in the response of a
85
- # CreateBucketAccessKey action. If the access key has not been used,
86
- # the `region` and `serviceName` values are `N/A`, and the
86
+ # [CreateBucketAccessKey][1] action. If the access key has not been
87
+ # used, the `region` and `serviceName` values are `N/A`, and the
87
88
  # `lastUsedDate` value is null.
88
89
  #
89
90
  # </note>
91
+ #
92
+ #
93
+ #
94
+ # [1]: https://docs.aws.amazon.com/lightsail/2016-11-28/api-reference/API_CreateBucketAccessKey.html
90
95
  # @return [Types::AccessKeyLastUsed]
91
96
  #
92
97
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/AccessKey AWS API Documentation
@@ -104,10 +109,14 @@ module Aws::Lightsail
104
109
  # Describes the last time an access key was used.
105
110
  #
106
111
  # <note markdown="1"> This object does not include data in the response of a
107
- # CreateBucketAccessKey action.
112
+ # [CreateBucketAccessKey][1] action.
108
113
  #
109
114
  # </note>
110
115
  #
116
+ #
117
+ #
118
+ # [1]: https://docs.aws.amazon.com/lightsail/2016-11-28/api-reference/API_CreateBucketAccessKey.html
119
+ #
111
120
  # @!attribute [rw] last_used_date
112
121
  # The date and time when the access key was most recently used.
113
122
  #
@@ -202,6 +211,115 @@ module Aws::Lightsail
202
211
  include Aws::Structure
203
212
  end
204
213
 
214
+ # Describes the synchronization status of the Amazon Simple Storage
215
+ # Service (Amazon S3) account-level block public access (BPA) feature
216
+ # for your Lightsail buckets.
217
+ #
218
+ # The account-level BPA feature of Amazon S3 provides centralized
219
+ # controls to limit public access to all Amazon S3 buckets in an
220
+ # account. BPA can make all Amazon S3 buckets in an Amazon Web Services
221
+ # account private regardless of the individual bucket and object
222
+ # permissions that are configured. Lightsail buckets take into account
223
+ # the Amazon S3 account-level BPA configuration when allowing or denying
224
+ # public access. To do this, Lightsail periodically fetches the
225
+ # account-level BPA configuration from Amazon S3. When the account-level
226
+ # BPA status is `InSync`, the Amazon S3 account-level BPA configuration
227
+ # is synchronized and it applies to your Lightsail buckets. For more
228
+ # information about Amazon Simple Storage Service account-level BPA and
229
+ # how it affects Lightsail buckets, see [Block public access for buckets
230
+ # in Amazon Lightsail][1] in the *Amazon Lightsail Developer Guide*.
231
+ #
232
+ #
233
+ #
234
+ # [1]: https://lightsail.aws.amazon.com/ls/docs/en_us/articles/amazon-lightsail-block-public-access-for-buckets
235
+ #
236
+ # @!attribute [rw] status
237
+ # The status of the account-level BPA synchronization.
238
+ #
239
+ # The following statuses are possible:
240
+ #
241
+ # * `InSync` - Account-level BPA is synchronized. The Amazon S3
242
+ # account-level BPA configuration applies to your Lightsail buckets.
243
+ #
244
+ # * `NeverSynced` - Synchronization has not yet happened. The Amazon
245
+ # S3 account-level BPA configuration does not apply to your
246
+ # Lightsail buckets.
247
+ #
248
+ # * `Failed` - Synchronization failed. The Amazon S3 account-level BPA
249
+ # configuration does not apply to your Lightsail buckets.
250
+ #
251
+ # * `Defaulted` - Synchronization failed and account-level BPA for
252
+ # your Lightsail buckets is defaulted to *active*.
253
+ #
254
+ # <note markdown="1"> You might need to complete further actions if the status is `Failed`
255
+ # or `Defaulted`. The `message` parameter provides more information
256
+ # for those statuses.
257
+ #
258
+ # </note>
259
+ # @return [String]
260
+ #
261
+ # @!attribute [rw] last_synced_at
262
+ # The timestamp of when the account-level BPA configuration was last
263
+ # synchronized. This value is null when the account-level BPA
264
+ # configuration has not been synchronized.
265
+ # @return [Time]
266
+ #
267
+ # @!attribute [rw] message
268
+ # A message that provides a reason for a `Failed` or `Defaulted`
269
+ # synchronization status.
270
+ #
271
+ # The following messages are possible:
272
+ #
273
+ # * `SYNC_ON_HOLD` - The synchronization has not yet happened. This
274
+ # status message occurs immediately after you create your first
275
+ # Lightsail bucket. This status message should change after the
276
+ # first synchronization happens, approximately 1 hour after the
277
+ # first bucket is created.
278
+ #
279
+ # * `DEFAULTED_FOR_SLR_MISSING` - The synchronization failed because
280
+ # the required service-linked role is missing from your Amazon Web
281
+ # Services account. The account-level BPA configuration for your
282
+ # Lightsail buckets is defaulted to *active* until the
283
+ # synchronization can occur. This means that all your buckets are
284
+ # private and not publicly accessible. For more information about
285
+ # how to create the required service-linked role to allow
286
+ # synchronization, see [Using Service-Linked Roles for Amazon
287
+ # Lightsail][1] in the *Amazon Lightsail Developer Guide*.
288
+ #
289
+ # * `DEFAULTED_FOR_SLR_MISSING_ON_HOLD` - The synchronization failed
290
+ # because the required service-linked role is missing from your
291
+ # Amazon Web Services account. Account-level BPA is not yet
292
+ # configured for your Lightsail buckets. Therefore, only the bucket
293
+ # access permissions and individual object access permissions apply
294
+ # to your Lightsail buckets. For more information about how to
295
+ # create the required service-linked role to allow synchronization,
296
+ # see [Using Service-Linked Roles for Amazon Lightsail][1] in the
297
+ # *Amazon Lightsail Developer Guide*.
298
+ #
299
+ # * `Unknown` - The reason that synchronization failed is unknown.
300
+ # Contact Amazon Web Services Support for more information.
301
+ #
302
+ #
303
+ #
304
+ # [1]: https://lightsail.aws.amazon.com/ls/docs/en_us/articles/amazon-lightsail-using-service-linked-roles
305
+ # @return [String]
306
+ #
307
+ # @!attribute [rw] bpa_impacts_lightsail
308
+ # A Boolean value that indicates whether account-level block public
309
+ # access is affecting your Lightsail buckets.
310
+ # @return [Boolean]
311
+ #
312
+ # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/AccountLevelBpaSync AWS API Documentation
313
+ #
314
+ class AccountLevelBpaSync < Struct.new(
315
+ :status,
316
+ :last_synced_at,
317
+ :message,
318
+ :bpa_impacts_lightsail)
319
+ SENSITIVE = []
320
+ include Aws::Structure
321
+ end
322
+
205
323
  # Lightsail throws this exception when an account is still in the setup
206
324
  # in progress state.
207
325
  #
@@ -979,7 +1097,12 @@ module Aws::Lightsail
979
1097
  # A bucket bundle specifies the monthly cost, storage space, and data
980
1098
  # transfer quota for a bucket.
981
1099
  #
982
- # Use the UpdateBucketBundle action to change the bundle of a bucket.
1100
+ # Use the [UpdateBucketBundle][1] action to change the bundle of a
1101
+ # bucket.
1102
+ #
1103
+ #
1104
+ #
1105
+ # [1]: https://docs.aws.amazon.com/lightsail/2016-11-28/api-reference/API_UpdateBucketBundle.html
983
1106
  # @return [String]
984
1107
  #
985
1108
  # @!attribute [rw] created_at
@@ -991,7 +1114,8 @@ module Aws::Lightsail
991
1114
  # @return [String]
992
1115
  #
993
1116
  # @!attribute [rw] location
994
- # Describes the resource location.
1117
+ # An object that describes the location of the bucket, such as the
1118
+ # Amazon Web Services Region and Availability Zone.
995
1119
  # @return [Types::ResourceLocation]
996
1120
  #
997
1121
  # @!attribute [rw] name
@@ -1032,23 +1156,31 @@ module Aws::Lightsail
1032
1156
  # Indicates whether the bundle that is currently applied to a bucket
1033
1157
  # can be changed to another bundle.
1034
1158
  #
1035
- # You can update a bucket's bundle only one time within a monthly AWS
1036
- # billing cycle.
1159
+ # You can update a bucket's bundle only one time within a monthly
1160
+ # Amazon Web Services billing cycle.
1161
+ #
1162
+ # Use the [UpdateBucketBundle][1] action to change a bucket's bundle.
1163
+ #
1037
1164
  #
1038
- # Use the UpdateBucketBundle action to change a bucket's bundle.
1165
+ #
1166
+ # [1]: https://docs.aws.amazon.com/lightsail/2016-11-28/api-reference/API_UpdateBucketBundle.html
1039
1167
  # @return [Boolean]
1040
1168
  #
1041
1169
  # @!attribute [rw] readonly_access_accounts
1042
- # An array of strings that specify the AWS account IDs that have
1043
- # read-only access to the bucket.
1170
+ # An array of strings that specify the Amazon Web Services account IDs
1171
+ # that have read-only access to the bucket.
1044
1172
  # @return [Array<String>]
1045
1173
  #
1046
1174
  # @!attribute [rw] resources_receiving_access
1047
1175
  # An array of objects that describe Lightsail instances that have
1048
1176
  # access to the bucket.
1049
1177
  #
1050
- # Use the SetResourceAccessForBucket action to update the instances
1051
- # that have access to a bucket.
1178
+ # Use the [SetResourceAccessForBucket][1] action to update the
1179
+ # instances that have access to a bucket.
1180
+ #
1181
+ #
1182
+ #
1183
+ # [1]: https://docs.aws.amazon.com/lightsail/2016-11-28/api-reference/API_SetResourceAccessForBucket.html
1052
1184
  # @return [Array<Types::ResourceReceivingAccess>]
1053
1185
  #
1054
1186
  # @!attribute [rw] state
@@ -1109,9 +1241,9 @@ module Aws::Lightsail
1109
1241
  # @return [Boolean]
1110
1242
  #
1111
1243
  # @!attribute [rw] destination
1112
- # The name of the bucket where the access is saved. The destination
1113
- # can be a Lightsail bucket in the same account, and in the same AWS
1114
- # Region as the source bucket.
1244
+ # The name of the bucket where the access logs are saved. The
1245
+ # destination can be a Lightsail bucket in the same account, and in
1246
+ # the same Amazon Web Services Region as the source bucket.
1115
1247
  #
1116
1248
  # <note markdown="1"> This parameter is required when enabling the access log for a
1117
1249
  # bucket, and should be omitted when disabling the access log.
@@ -1339,8 +1471,6 @@ module Aws::Lightsail
1339
1471
  # used to specify a directory, file, or file type that your distribution
1340
1472
  # will not cache.
1341
1473
  #
1342
- # if the cacheBehavior's behavior is set to 'cache', then
1343
- #
1344
1474
  # @note When making an API call, you may pass CacheBehaviorPerPath
1345
1475
  # data as a hash:
1346
1476
  #
@@ -1841,8 +1971,8 @@ module Aws::Lightsail
1841
1971
  # @return [Time]
1842
1972
  #
1843
1973
  # @!attribute [rw] location
1844
- # A list of objects describing the Availability Zone and AWS Region of
1845
- # the CloudFormation stack record.
1974
+ # A list of objects describing the Availability Zone and Amazon Web
1975
+ # Services Region of the CloudFormation stack record.
1846
1976
  # @return [Types::ResourceLocation]
1847
1977
  #
1848
1978
  # @!attribute [rw] resource_type
@@ -1950,7 +2080,8 @@ module Aws::Lightsail
1950
2080
  # @return [Time]
1951
2081
  #
1952
2082
  # @!attribute [rw] location
1953
- # Describes the resource location.
2083
+ # An object that describes the location of the contact method, such as
2084
+ # the Amazon Web Services Region and Availability Zone.
1954
2085
  # @return [Types::ResourceLocation]
1955
2086
  #
1956
2087
  # @!attribute [rw] resource_type
@@ -2080,7 +2211,7 @@ module Aws::Lightsail
2080
2211
  #
2081
2212
  # @!attribute [rw] location
2082
2213
  # An object that describes the location of the container service, such
2083
- # as the AWS Region and Availability Zone.
2214
+ # as the Amazon Web Services Region and Availability Zone.
2084
2215
  # @return [Types::ResourceLocation]
2085
2216
  #
2086
2217
  # @!attribute [rw] resource_type
@@ -2172,9 +2303,9 @@ module Aws::Lightsail
2172
2303
  # The principal ARN of the container service.
2173
2304
  #
2174
2305
  # The principal ARN can be used to create a trust relationship between
2175
- # your standard AWS account and your Lightsail container service. This
2176
- # allows you to give your service permission to access resources in
2177
- # your standard AWS account.
2306
+ # your standard Amazon Web Services account and your Lightsail
2307
+ # container service. This allows you to give your service permission
2308
+ # to access resources in your standard Amazon Web Services account.
2178
2309
  # @return [String]
2179
2310
  #
2180
2311
  # @!attribute [rw] private_domain_name
@@ -2732,8 +2863,8 @@ module Aws::Lightsail
2732
2863
  # @return [String]
2733
2864
  #
2734
2865
  # @!attribute [rw] source_region
2735
- # The AWS Region where the source manual or automatic snapshot is
2736
- # located.
2866
+ # The Amazon Web Services Region where the source manual or automatic
2867
+ # snapshot is located.
2737
2868
  # @return [String]
2738
2869
  #
2739
2870
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/CopySnapshotRequest AWS API Documentation
@@ -2834,18 +2965,28 @@ module Aws::Lightsail
2834
2965
  # A bucket bundle specifies the monthly cost, storage space, and data
2835
2966
  # transfer quota for a bucket.
2836
2967
  #
2837
- # Use the GetBucketBundles action to get a list of bundle IDs that you
2838
- # can specify.
2968
+ # Use the [GetBucketBundles][1] action to get a list of bundle IDs
2969
+ # that you can specify.
2970
+ #
2971
+ # Use the [UpdateBucketBundle][2] action to change the bundle after
2972
+ # the bucket is created.
2973
+ #
2974
+ #
2839
2975
  #
2840
- # Use the UpdateBucketBundle action to change the bundle after the
2841
- # bucket is created.
2976
+ # [1]: https://docs.aws.amazon.com/lightsail/2016-11-28/api-reference/API_GetBucketBundles.html
2977
+ # [2]: https://docs.aws.amazon.com/lightsail/2016-11-28/api-reference/API_UpdateBucketBundle.html
2842
2978
  # @return [String]
2843
2979
  #
2844
2980
  # @!attribute [rw] tags
2845
2981
  # The tag keys and optional values to add to the bucket during
2846
2982
  # creation.
2847
2983
  #
2848
- # Use the TagResource action to tag the bucket after it's created.
2984
+ # Use the [TagResource][1] action to tag the bucket after it's
2985
+ # created.
2986
+ #
2987
+ #
2988
+ #
2989
+ # [1]: https://docs.aws.amazon.com/lightsail/2016-11-28/api-reference/API_TagResource.html
2849
2990
  # @return [Array<Types::Tag>]
2850
2991
  #
2851
2992
  # @!attribute [rw] enable_object_versioning
@@ -3018,7 +3159,8 @@ module Aws::Lightsail
3018
3159
  # The protocol of the contact method, such as `Email` or `SMS` (text
3019
3160
  # messaging).
3020
3161
  #
3021
- # The `SMS` protocol is supported only in the following AWS Regions.
3162
+ # The `SMS` protocol is supported only in the following Amazon Web
3163
+ # Services Regions.
3022
3164
  #
3023
3165
  # * US East (N. Virginia) (`us-east-1`)
3024
3166
  #
@@ -3033,9 +3175,9 @@ module Aws::Lightsail
3033
3175
  # * Asia Pacific (Sydney) (`ap-southeast-2`)
3034
3176
  #
3035
3177
  # For a list of countries/regions where SMS text messages can be sent,
3036
- # and the latest AWS Regions where SMS text messaging is supported,
3037
- # see [Supported Regions and Countries][1] in the *Amazon SNS
3038
- # Developer Guide*.
3178
+ # and the latest Amazon Web Services Regions where SMS text messaging
3179
+ # is supported, see [Supported Regions and Countries][1] in the
3180
+ # *Amazon SNS Developer Guide*.
3039
3181
  #
3040
3182
  # For more information about notifications in Amazon Lightsail, see
3041
3183
  # [Notifications in Amazon Lightsail][2].
@@ -3232,7 +3374,8 @@ module Aws::Lightsail
3232
3374
  #
3233
3375
  # The following are the requirements for container service names:
3234
3376
  #
3235
- # * Must be unique within each AWS Region in your Lightsail account.
3377
+ # * Must be unique within each Amazon Web Services Region in your
3378
+ # Lightsail account.
3236
3379
  #
3237
3380
  # * Must contain 1 to 63 characters.
3238
3381
  #
@@ -3704,7 +3847,7 @@ module Aws::Lightsail
3704
3847
  #
3705
3848
  # @!attribute [rw] origin
3706
3849
  # An object that describes the origin resource for the distribution,
3707
- # such as a Lightsail instance or load balancer.
3850
+ # such as a Lightsail instance, bucket, or load balancer.
3708
3851
  #
3709
3852
  # The distribution pulls, caches, and serves content from the origin.
3710
3853
  # @return [Types::InputOrigin]
@@ -4385,6 +4528,7 @@ module Aws::Lightsail
4385
4528
  # },
4386
4529
  # ],
4387
4530
  # ip_address_type: "dualstack", # accepts dualstack, ipv4
4531
+ # tls_policy_name: "string",
4388
4532
  # }
4389
4533
  #
4390
4534
  # @!attribute [rw] load_balancer_name
@@ -4442,6 +4586,22 @@ module Aws::Lightsail
4442
4586
  # The default value is `dualstack`.
4443
4587
  # @return [String]
4444
4588
  #
4589
+ # @!attribute [rw] tls_policy_name
4590
+ # The name of the TLS policy to apply to the load balancer.
4591
+ #
4592
+ # Use the [GetLoadBalancerTlsPolicies][1] action to get a list of TLS
4593
+ # policy names that you can specify.
4594
+ #
4595
+ # For more information about load balancer TLS policies, see [Load
4596
+ # balancer TLS security policies][2] in the *Amazon Lightsail
4597
+ # Developer Guide*.
4598
+ #
4599
+ #
4600
+ #
4601
+ # [1]: https://docs.aws.amazon.com/lightsail/2016-11-28/api-reference/API_GetLoadBalancerTlsPolicies.html
4602
+ # [2]: https://lightsail.aws.amazon.com/ls/docs/en_us/articles/amazon-lightsail-configure-load-balancer-tls-security-policy
4603
+ # @return [String]
4604
+ #
4445
4605
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/CreateLoadBalancerRequest AWS API Documentation
4446
4606
  #
4447
4607
  class CreateLoadBalancerRequest < Struct.new(
@@ -4452,7 +4612,8 @@ module Aws::Lightsail
4452
4612
  :certificate_domain_name,
4453
4613
  :certificate_alternative_names,
4454
4614
  :tags,
4455
- :ip_address_type)
4615
+ :ip_address_type,
4616
+ :tls_policy_name)
4456
4617
  SENSITIVE = []
4457
4618
  include Aws::Structure
4458
4619
  end
@@ -5097,8 +5258,12 @@ module Aws::Lightsail
5097
5258
  # @!attribute [rw] access_key_id
5098
5259
  # The ID of the access key to delete.
5099
5260
  #
5100
- # Use the GetBucketAccessKeys action to get a list of access key IDs
5101
- # that you can specify.
5261
+ # Use the [GetBucketAccessKeys][1] action to get a list of access key
5262
+ # IDs that you can specify.
5263
+ #
5264
+ #
5265
+ #
5266
+ # [1]: https://docs.aws.amazon.com/lightsail/2016-11-28/api-reference/API_GetBucketAccessKeys.html
5102
5267
  # @return [String]
5103
5268
  #
5104
5269
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/DeleteBucketAccessKeyRequest AWS API Documentation
@@ -5135,8 +5300,12 @@ module Aws::Lightsail
5135
5300
  # @!attribute [rw] bucket_name
5136
5301
  # The name of the bucket to delete.
5137
5302
  #
5138
- # Use the GetBuckets action to get a list of bucket names that you can
5139
- # specify.
5303
+ # Use the [GetBuckets][1] action to get a list of bucket names that
5304
+ # you can specify.
5305
+ #
5306
+ #
5307
+ #
5308
+ # [1]: https://docs.aws.amazon.com/lightsail/2016-11-28/api-reference/API_GetBuckets.html
5140
5309
  # @return [String]
5141
5310
  #
5142
5311
  # @!attribute [rw] force_delete
@@ -5148,7 +5317,7 @@ module Aws::Lightsail
5148
5317
  # * The bucket is the origin of a distribution.
5149
5318
  #
5150
5319
  # * The bucket has instances that were granted access to it using the
5151
- # SetResourceAccessForBucket action.
5320
+ # [SetResourceAccessForBucket][1] action.
5152
5321
  #
5153
5322
  # * The bucket has objects.
5154
5323
  #
@@ -5157,6 +5326,10 @@ module Aws::Lightsail
5157
5326
  # Force deleting a bucket might impact other resources that rely on
5158
5327
  # the bucket, such as instances, distributions, or software that use
5159
5328
  # the issued access keys.
5329
+ #
5330
+ #
5331
+ #
5332
+ # [1]: https://docs.aws.amazon.com/lightsail/2016-11-28/api-reference/API_SetResourceAccessForBucket.html
5160
5333
  # @return [Boolean]
5161
5334
  #
5162
5335
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/DeleteBucketRequest AWS API Documentation
@@ -5593,16 +5766,27 @@ module Aws::Lightsail
5593
5766
  #
5594
5767
  # {
5595
5768
  # key_pair_name: "ResourceName", # required
5769
+ # expected_fingerprint: "string",
5596
5770
  # }
5597
5771
  #
5598
5772
  # @!attribute [rw] key_pair_name
5599
5773
  # The name of the key pair to delete.
5600
5774
  # @return [String]
5601
5775
  #
5776
+ # @!attribute [rw] expected_fingerprint
5777
+ # The RSA fingerprint of the Lightsail default key pair to delete.
5778
+ #
5779
+ # <note markdown="1"> The `expectedFingerprint` parameter is required only when specifying
5780
+ # to delete a Lightsail default key pair.
5781
+ #
5782
+ # </note>
5783
+ # @return [String]
5784
+ #
5602
5785
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/DeleteKeyPairRequest AWS API Documentation
5603
5786
  #
5604
5787
  class DeleteKeyPairRequest < Struct.new(
5605
- :key_pair_name)
5788
+ :key_pair_name,
5789
+ :expected_fingerprint)
5606
5790
  SENSITIVE = []
5607
5791
  include Aws::Structure
5608
5792
  end
@@ -6548,11 +6732,16 @@ module Aws::Lightsail
6548
6732
  # A base64-encoded RSA private key.
6549
6733
  # @return [String]
6550
6734
  #
6735
+ # @!attribute [rw] created_at
6736
+ # The timestamp when the default key pair was created.
6737
+ # @return [Time]
6738
+ #
6551
6739
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/DownloadDefaultKeyPairResult AWS API Documentation
6552
6740
  #
6553
6741
  class DownloadDefaultKeyPairResult < Struct.new(
6554
6742
  :public_key_base_64,
6555
- :private_key_base_64)
6743
+ :private_key_base_64,
6744
+ :created_at)
6556
6745
  SENSITIVE = []
6557
6746
  include Aws::Structure
6558
6747
  end
@@ -7200,8 +7389,8 @@ module Aws::Lightsail
7200
7389
  # @!attribute [rw] bucket_name
7201
7390
  # The name of the bucket for which to return information.
7202
7391
  #
7203
- # When omitted, the response includes all of your buckets in the AWS
7204
- # Region where the request is made.
7392
+ # When omitted, the response includes all of your buckets in the
7393
+ # Amazon Web Services Region where the request is made.
7205
7394
  # @return [String]
7206
7395
  #
7207
7396
  # @!attribute [rw] page_token
@@ -7216,7 +7405,11 @@ module Aws::Lightsail
7216
7405
  # @!attribute [rw] include_connected_resources
7217
7406
  # A Boolean value that indicates whether to include Lightsail
7218
7407
  # instances that were given access to the bucket using the
7219
- # SetResourceAccessForBucket action.
7408
+ # [SetResourceAccessForBucket][1] action.
7409
+ #
7410
+ #
7411
+ #
7412
+ # [1]: https://docs.aws.amazon.com/lightsail/2016-11-28/api-reference/API_SetResourceAccessForBucket.html
7220
7413
  # @return [Boolean]
7221
7414
  #
7222
7415
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/GetBucketsRequest AWS API Documentation
@@ -7244,11 +7437,26 @@ module Aws::Lightsail
7244
7437
  # parameter.
7245
7438
  # @return [String]
7246
7439
  #
7440
+ # @!attribute [rw] account_level_bpa_sync
7441
+ # An object that describes the synchronization status of the Amazon S3
7442
+ # account-level block public access feature for your Lightsail
7443
+ # buckets.
7444
+ #
7445
+ # For more information about this feature and how it affects Lightsail
7446
+ # buckets, see [Block public access for buckets in Amazon
7447
+ # Lightsail][1].
7448
+ #
7449
+ #
7450
+ #
7451
+ # [1]: https://lightsail.aws.amazon.com/ls/docs/en_us/articles/amazon-lightsail-block-public-access-for-buckets
7452
+ # @return [Types::AccountLevelBpaSync]
7453
+ #
7247
7454
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/GetBucketsResult AWS API Documentation
7248
7455
  #
7249
7456
  class GetBucketsResult < Struct.new(
7250
7457
  :buckets,
7251
- :next_page_token)
7458
+ :next_page_token,
7459
+ :account_level_bpa_sync)
7252
7460
  SENSITIVE = []
7253
7461
  include Aws::Structure
7254
7462
  end
@@ -7325,8 +7533,8 @@ module Aws::Lightsail
7325
7533
  # `ISSUED` status.
7326
7534
  #
7327
7535
  # When omitted, the response includes all of your certificates in the
7328
- # AWS Region where the request is made, regardless of their current
7329
- # status.
7536
+ # Amazon Web Services Region where the request is made, regardless of
7537
+ # their current status.
7330
7538
  # @return [Array<String>]
7331
7539
  #
7332
7540
  # @!attribute [rw] include_certificate_details
@@ -7341,7 +7549,7 @@ module Aws::Lightsail
7341
7549
  # The name for the certificate for which to return information.
7342
7550
  #
7343
7551
  # When omitted, the response includes all of your certificates in the
7344
- # AWS Region where the request is made.
7552
+ # Amazon Web Services Region where the request is made.
7345
7553
  # @return [String]
7346
7554
  #
7347
7555
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/GetCertificatesRequest AWS API Documentation
@@ -7809,7 +8017,7 @@ module Aws::Lightsail
7809
8017
  # The name of the container service for which to return information.
7810
8018
  #
7811
8019
  # When omitted, the response includes all of your container services
7812
- # in the AWS Region where the request is made.
8020
+ # in the Amazon Web Services Region where the request is made.
7813
8021
  # @return [String]
7814
8022
  #
7815
8023
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/GetContainerServicesRequest AWS API Documentation
@@ -8242,7 +8450,7 @@ module Aws::Lightsail
8242
8450
  # The name of the distribution for which to return information.
8243
8451
  #
8244
8452
  # When omitted, the response includes all of your distributions in the
8245
- # AWS Region where the request is made.
8453
+ # Amazon Web Services Region where the request is made.
8246
8454
  # @return [String]
8247
8455
  #
8248
8456
  # @!attribute [rw] page_token
@@ -8921,6 +9129,7 @@ module Aws::Lightsail
8921
9129
  #
8922
9130
  # {
8923
9131
  # page_token: "string",
9132
+ # include_default_key_pair: false,
8924
9133
  # }
8925
9134
  #
8926
9135
  # @!attribute [rw] page_token
@@ -8932,10 +9141,16 @@ module Aws::Lightsail
8932
9141
  # request.
8933
9142
  # @return [String]
8934
9143
  #
9144
+ # @!attribute [rw] include_default_key_pair
9145
+ # A Boolean value that indicates whether to include the default key
9146
+ # pair in the response of your request.
9147
+ # @return [Boolean]
9148
+ #
8935
9149
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/GetKeyPairsRequest AWS API Documentation
8936
9150
  #
8937
9151
  class GetKeyPairsRequest < Struct.new(
8938
- :page_token)
9152
+ :page_token,
9153
+ :include_default_key_pair)
8939
9154
  SENSITIVE = []
8940
9155
  include Aws::Structure
8941
9156
  end
@@ -9247,6 +9462,55 @@ module Aws::Lightsail
9247
9462
  include Aws::Structure
9248
9463
  end
9249
9464
 
9465
+ # @note When making an API call, you may pass GetLoadBalancerTlsPoliciesRequest
9466
+ # data as a hash:
9467
+ #
9468
+ # {
9469
+ # page_token: "string",
9470
+ # }
9471
+ #
9472
+ # @!attribute [rw] page_token
9473
+ # The token to advance to the next page of results from your request.
9474
+ #
9475
+ # To get a page token, perform an initial `GetLoadBalancerTlsPolicies`
9476
+ # request. If your results are paginated, the response will return a
9477
+ # next page token that you can specify as the page token in a
9478
+ # subsequent request.
9479
+ # @return [String]
9480
+ #
9481
+ # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/GetLoadBalancerTlsPoliciesRequest AWS API Documentation
9482
+ #
9483
+ class GetLoadBalancerTlsPoliciesRequest < Struct.new(
9484
+ :page_token)
9485
+ SENSITIVE = []
9486
+ include Aws::Structure
9487
+ end
9488
+
9489
+ # @!attribute [rw] tls_policies
9490
+ # An array of objects that describe the TLS security policies that are
9491
+ # available.
9492
+ # @return [Array<Types::LoadBalancerTlsPolicy>]
9493
+ #
9494
+ # @!attribute [rw] next_page_token
9495
+ # The token to advance to the next page of results from your request.
9496
+ #
9497
+ # A next page token is not returned if there are no more results to
9498
+ # display.
9499
+ #
9500
+ # To get the next page of results, perform another
9501
+ # `GetLoadBalancerTlsPolicies` request and specify the next page token
9502
+ # using the `pageToken` parameter.
9503
+ # @return [String]
9504
+ #
9505
+ # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/GetLoadBalancerTlsPoliciesResult AWS API Documentation
9506
+ #
9507
+ class GetLoadBalancerTlsPoliciesResult < Struct.new(
9508
+ :tls_policies,
9509
+ :next_page_token)
9510
+ SENSITIVE = []
9511
+ include Aws::Structure
9512
+ end
9513
+
9250
9514
  # @note When making an API call, you may pass GetLoadBalancersRequest
9251
9515
  # data as a hash:
9252
9516
  #
@@ -10472,9 +10736,9 @@ module Aws::Lightsail
10472
10736
  # Describes the origin resource of an Amazon Lightsail content delivery
10473
10737
  # network (CDN) distribution.
10474
10738
  #
10475
- # An origin can be a Lightsail instance or load balancer. A distribution
10476
- # pulls content from an origin, caches it, and serves it to viewers via
10477
- # a worldwide network of edge servers.
10739
+ # An origin can be a Lightsail instance, bucket, or load balancer. A
10740
+ # distribution pulls content from an origin, caches it, and serves it to
10741
+ # viewers via a worldwide network of edge servers.
10478
10742
  #
10479
10743
  # @note When making an API call, you may pass InputOrigin
10480
10744
  # data as a hash:
@@ -11429,8 +11693,9 @@ module Aws::Lightsail
11429
11693
  # the validation rules of an input field.
11430
11694
  #
11431
11695
  # <note markdown="1"> Domain and distribution APIs are only available in the N. Virginia
11432
- # (`us-east-1`) AWS Region. Please set your AWS Region configuration to
11433
- # `us-east-1` to create, view, or edit these resources.
11696
+ # (`us-east-1`) Amazon Web Services Region. Please set your Amazon Web
11697
+ # Services Region configuration to `us-east-1` to create, view, or edit
11698
+ # these resources.
11434
11699
  #
11435
11700
  # </note>
11436
11701
  #
@@ -11560,11 +11825,12 @@ module Aws::Lightsail
11560
11825
  #
11561
11826
  # @!attribute [rw] location
11562
11827
  # An object that describes the location of the distribution, such as
11563
- # the AWS Region and Availability Zone.
11828
+ # the Amazon Web Services Region and Availability Zone.
11564
11829
  #
11565
11830
  # <note markdown="1"> Lightsail distributions are global resources that can reference an
11566
- # origin in any AWS Region, and distribute its content globally.
11567
- # However, all distributions are located in the `us-east-1` Region.
11831
+ # origin in any Amazon Web Services Region, and distribute its content
11832
+ # globally. However, all distributions are located in the `us-east-1`
11833
+ # Region.
11568
11834
  #
11569
11835
  # </note>
11570
11836
  # @return [Types::ResourceLocation]
@@ -11600,7 +11866,7 @@ module Aws::Lightsail
11600
11866
  #
11601
11867
  # @!attribute [rw] origin
11602
11868
  # An object that describes the origin resource of the distribution,
11603
- # such as a Lightsail instance or load balancer.
11869
+ # such as a Lightsail instance, bucket, or load balancer.
11604
11870
  #
11605
11871
  # The distribution pulls, caches, and serves content from the origin.
11606
11872
  # @return [Types::Origin]
@@ -11773,6 +12039,21 @@ module Aws::Lightsail
11773
12039
  # IPv4 and IPv6.
11774
12040
  # @return [String]
11775
12041
  #
12042
+ # @!attribute [rw] https_redirection_enabled
12043
+ # A Boolean value that indicates whether HTTPS redirection is enabled
12044
+ # for the load balancer.
12045
+ # @return [Boolean]
12046
+ #
12047
+ # @!attribute [rw] tls_policy_name
12048
+ # The name of the TLS security policy for the load balancer.
12049
+ #
12050
+ # The following TLS security policy names are possible:
12051
+ #
12052
+ # * `TLS-2016-08`
12053
+ #
12054
+ # * `TLS-FS-Res-1-2-2019-08`
12055
+ # @return [String]
12056
+ #
11776
12057
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/LoadBalancer AWS API Documentation
11777
12058
  #
11778
12059
  class LoadBalancer < Struct.new(
@@ -11792,7 +12073,9 @@ module Aws::Lightsail
11792
12073
  :instance_health_summary,
11793
12074
  :tls_certificate_summaries,
11794
12075
  :configuration_options,
11795
- :ip_address_type)
12076
+ :ip_address_type,
12077
+ :https_redirection_enabled,
12078
+ :tls_policy_name)
11796
12079
  SENSITIVE = []
11797
12080
  include Aws::Structure
11798
12081
  end
@@ -12184,6 +12467,76 @@ module Aws::Lightsail
12184
12467
  include Aws::Structure
12185
12468
  end
12186
12469
 
12470
+ # Describes the TLS security policies that are available for Lightsail
12471
+ # load balancers.
12472
+ #
12473
+ # For more information about load balancer TLS security policies, see
12474
+ # [Load balancer TLS security policies][1] in the *Amazon Lightsail
12475
+ # Developer Guide*.
12476
+ #
12477
+ #
12478
+ #
12479
+ # [1]: https://lightsail.aws.amazon.com/ls/docs/en_us/articles/amazon-lightsail-configure-load-balancer-tls-security-policy
12480
+ #
12481
+ # @!attribute [rw] name
12482
+ # The name of the TLS security policy.
12483
+ #
12484
+ # The following TLS security policy names are possible:
12485
+ #
12486
+ # * `TLS-2016-08`
12487
+ #
12488
+ # * `TLS-FS-Res-1-2-2019-08`
12489
+ #
12490
+ # You can specify either of these values for the
12491
+ # `tlsSecurityPolicyName` request parameter in the
12492
+ # [CreateLoadBalancer][1] action, and the `attributeValue` request
12493
+ # parameter in the [UpdateLoadBalancerAttribute][2] action.
12494
+ #
12495
+ #
12496
+ #
12497
+ # [1]: https://docs.aws.amazon.com/lightsail/2016-11-28/api-reference/API_CreateLoadBalancer.html
12498
+ # [2]: https://docs.aws.amazon.com/lightsail/2016-11-28/api-reference/API_UpdateLoadBalancerAttribute.html
12499
+ # @return [String]
12500
+ #
12501
+ # @!attribute [rw] is_default
12502
+ # A Boolean value that indicates whether the TLS security policy is
12503
+ # the default.
12504
+ # @return [Boolean]
12505
+ #
12506
+ # @!attribute [rw] description
12507
+ # The description of the TLS security policy.
12508
+ # @return [String]
12509
+ #
12510
+ # @!attribute [rw] protocols
12511
+ # The protocols used in a given TLS security policy.
12512
+ #
12513
+ # The following protocols are possible:
12514
+ #
12515
+ # * `Protocol-TLSv1`
12516
+ #
12517
+ # * `Protocol-TLSv1.1`
12518
+ #
12519
+ # * `Protocol-TLSv1.2`
12520
+ # @return [Array<String>]
12521
+ #
12522
+ # @!attribute [rw] ciphers
12523
+ # The ciphers used by the TLS security policy.
12524
+ #
12525
+ # The ciphers are listed in order of preference.
12526
+ # @return [Array<String>]
12527
+ #
12528
+ # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/LoadBalancerTlsPolicy AWS API Documentation
12529
+ #
12530
+ class LoadBalancerTlsPolicy < Struct.new(
12531
+ :name,
12532
+ :is_default,
12533
+ :description,
12534
+ :protocols,
12535
+ :ciphers)
12536
+ SENSITIVE = []
12537
+ include Aws::Structure
12538
+ end
12539
+
12187
12540
  # Describes a database log event.
12188
12541
  #
12189
12542
  # @!attribute [rw] created_at
@@ -12387,7 +12740,7 @@ module Aws::Lightsail
12387
12740
  # @return [Time]
12388
12741
  #
12389
12742
  # @!attribute [rw] location
12390
- # The AWS Region and Availability Zone.
12743
+ # The Amazon Web Services Region and Availability Zone.
12391
12744
  # @return [Types::ResourceLocation]
12392
12745
  #
12393
12746
  # @!attribute [rw] is_terminal
@@ -12465,9 +12818,9 @@ module Aws::Lightsail
12465
12818
  # Describes the origin resource of an Amazon Lightsail content delivery
12466
12819
  # network (CDN) distribution.
12467
12820
  #
12468
- # An origin can be a Lightsail instance or load balancer. A distribution
12469
- # pulls content from an origin, caches it, and serves it to viewers via
12470
- # a worldwide network of edge servers.
12821
+ # An origin can be a Lightsail instance, bucket, or load balancer. A
12822
+ # distribution pulls content from an origin, caches it, and serves it to
12823
+ # viewers via a worldwide network of edge servers.
12471
12824
  #
12472
12825
  # @!attribute [rw] name
12473
12826
  # The name of the origin resource.
@@ -12896,12 +13249,12 @@ module Aws::Lightsail
12896
13249
  # triggered.
12897
13250
  #
12898
13251
  # A notification is not sent if a contact protocol is not specified,
12899
- # if the specified contact protocol is not configured in the AWS
12900
- # Region, or if notifications are not enabled for the alarm using the
12901
- # `notificationEnabled` paramater.
13252
+ # if the specified contact protocol is not configured in the Amazon
13253
+ # Web Services Region, or if notifications are not enabled for the
13254
+ # alarm using the `notificationEnabled` paramater.
12902
13255
  #
12903
13256
  # Use the `CreateContactMethod` action to configure a contact protocol
12904
- # in an AWS Region.
13257
+ # in an Amazon Web Services Region.
12905
13258
  # @return [Array<String>]
12906
13259
  #
12907
13260
  # @!attribute [rw] notification_triggers
@@ -13228,8 +13581,8 @@ module Aws::Lightsail
13228
13581
  end
13229
13582
 
13230
13583
  # @!attribute [rw] container_image
13231
- # Describes a container image that is registered to an Amazon
13232
- # Lightsail container service.
13584
+ # An object that describes a container image that is registered to a
13585
+ # Lightsail container service
13233
13586
  # @return [Types::ContainerImage]
13234
13587
  #
13235
13588
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/RegisterContainerImageResult AWS API Documentation
@@ -14014,8 +14367,9 @@ module Aws::Lightsail
14014
14367
  # `LoadBalancer`.
14015
14368
  #
14016
14369
  # <note markdown="1"> Distribution-related APIs are available only in the N. Virginia
14017
- # (`us-east-1`) AWS Region. Set your AWS Region configuration to
14018
- # `us-east-1` to create, view, or edit distributions.
14370
+ # (`us-east-1`) Amazon Web Services Region. Set your Amazon Web
14371
+ # Services Region configuration to `us-east-1` to create, view, or
14372
+ # edit distributions.
14019
14373
  #
14020
14374
  # </note>
14021
14375
  # @return [String]
@@ -14567,8 +14921,12 @@ module Aws::Lightsail
14567
14921
  # @!attribute [rw] bundle_id
14568
14922
  # The ID of the new bundle to apply to the bucket.
14569
14923
  #
14570
- # Use the GetBucketBundles action to get a list of bundle IDs that you
14571
- # can specify.
14924
+ # Use the [GetBucketBundles][1] action to get a list of bundle IDs
14925
+ # that you can specify.
14926
+ #
14927
+ #
14928
+ #
14929
+ # [1]: https://docs.aws.amazon.com/lightsail/2016-11-28/api-reference/API_GetBucketBundles.html
14572
14930
  # @return [String]
14573
14931
  #
14574
14932
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/UpdateBucketBundleRequest AWS API Documentation
@@ -14634,10 +14992,11 @@ module Aws::Lightsail
14634
14992
  # @return [String]
14635
14993
  #
14636
14994
  # @!attribute [rw] readonly_access_accounts
14637
- # An array of strings to specify the AWS account IDs that can access
14638
- # the bucket.
14995
+ # An array of strings to specify the Amazon Web Services account IDs
14996
+ # that can access the bucket.
14639
14997
  #
14640
- # You can give a maximum of 10 AWS accounts access to a bucket.
14998
+ # You can give a maximum of 10 Amazon Web Services accounts access to
14999
+ # a bucket.
14641
15000
  # @return [Array<String>]
14642
15001
  #
14643
15002
  # @!attribute [rw] access_log_config
@@ -14799,7 +15158,9 @@ module Aws::Lightsail
14799
15158
  end
14800
15159
 
14801
15160
  # @!attribute [rw] operation
14802
- # Describes the API operation.
15161
+ # An object that describes the result of the action, such as the
15162
+ # status of the request, the timestamp of the request, and the
15163
+ # resources affected by the request.
14803
15164
  # @return [Types::Operation]
14804
15165
  #
14805
15166
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/UpdateDistributionBundleResult AWS API Documentation
@@ -14860,7 +15221,7 @@ module Aws::Lightsail
14860
15221
  #
14861
15222
  # @!attribute [rw] origin
14862
15223
  # An object that describes the origin resource for the distribution,
14863
- # such as a Lightsail instance or load balancer.
15224
+ # such as a Lightsail instance, bucket, or load balancer.
14864
15225
  #
14865
15226
  # The distribution pulls, caches, and serves content from the origin.
14866
15227
  # @return [Types::InputOrigin]
@@ -14971,7 +15332,7 @@ module Aws::Lightsail
14971
15332
  #
14972
15333
  # {
14973
15334
  # load_balancer_name: "ResourceName", # required
14974
- # attribute_name: "HealthCheckPath", # required, accepts HealthCheckPath, SessionStickinessEnabled, SessionStickiness_LB_CookieDurationSeconds
15335
+ # attribute_name: "HealthCheckPath", # required, accepts HealthCheckPath, SessionStickinessEnabled, SessionStickiness_LB_CookieDurationSeconds, HttpsRedirectionEnabled, TlsPolicyName
14975
15336
  # attribute_value: "StringMax256", # required
14976
15337
  # }
14977
15338
  #
@@ -14981,12 +15342,36 @@ module Aws::Lightsail
14981
15342
  # @return [String]
14982
15343
  #
14983
15344
  # @!attribute [rw] attribute_name
14984
- # The name of the attribute you want to update. Valid values are
14985
- # below.
15345
+ # The name of the attribute you want to update.
14986
15346
  # @return [String]
14987
15347
  #
14988
15348
  # @!attribute [rw] attribute_value
14989
15349
  # The value that you want to specify for the attribute name.
15350
+ #
15351
+ # The following values are supported depending on what you specify for
15352
+ # the `attributeName` request parameter:
15353
+ #
15354
+ # * If you specify `HealthCheckPath` for the `attributeName` request
15355
+ # parameter, then the `attributeValue` request parameter must be the
15356
+ # path to ping on the target (for example,
15357
+ # `/weather/us/wa/seattle`).
15358
+ #
15359
+ # * If you specify `SessionStickinessEnabled` for the `attributeName`
15360
+ # request parameter, then the `attributeValue` request parameter
15361
+ # must be `true` or `false`.
15362
+ #
15363
+ # * If you specify `SessionStickiness_LB_CookieDurationSeconds` for
15364
+ # the `attributeName` request parameter, then the `attributeValue`
15365
+ # request parameter must be an interger that represents the cookie
15366
+ # duration in seconds.
15367
+ #
15368
+ # * If you specify `HttpsRedirectionEnabled` for the `attributeName`
15369
+ # request parameter, then the `attributeValue` request parameter
15370
+ # must be `true` or `false`.
15371
+ #
15372
+ # * If you specify `TlsPolicyName` for the `attributeName` request
15373
+ # parameter, then the `attributeValue` request parameter must be
15374
+ # `TLS version 1.0, 1.1, and 1.2` or `TLS version 1.2`.
14990
15375
  # @return [String]
14991
15376
  #
14992
15377
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/UpdateLoadBalancerAttributeRequest AWS API Documentation