aws-sdk-cloudfront 1.51.0 → 1.55.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-cloudfront.rb +2 -2
- data/lib/aws-sdk-cloudfront/client.rb +155 -26
- data/lib/aws-sdk-cloudfront/client_api.rb +68 -0
- data/lib/aws-sdk-cloudfront/types.rb +321 -166
- metadata +4 -4
@@ -53,23 +53,23 @@ module Aws::CloudFront
|
|
53
53
|
include Aws::Structure
|
54
54
|
end
|
55
55
|
|
56
|
-
# A list of
|
57
|
-
#
|
58
|
-
#
|
56
|
+
# A list of accounts and the active CloudFront key pairs in each account
|
57
|
+
# that CloudFront can use to verify the signatures of signed URLs and
|
58
|
+
# signed cookies.
|
59
59
|
#
|
60
60
|
# @!attribute [rw] enabled
|
61
|
-
# This field is `true` if any of the
|
62
|
-
#
|
61
|
+
# This field is `true` if any of the accounts in the list have active
|
62
|
+
# CloudFront key pairs that CloudFront can use to verify the
|
63
63
|
# signatures of signed URLs and signed cookies. If not, this field is
|
64
64
|
# `false`.
|
65
65
|
# @return [Boolean]
|
66
66
|
#
|
67
67
|
# @!attribute [rw] quantity
|
68
|
-
# The number of
|
68
|
+
# The number of accounts in the list.
|
69
69
|
# @return [Integer]
|
70
70
|
#
|
71
71
|
# @!attribute [rw] items
|
72
|
-
# A list of
|
72
|
+
# A list of accounts and the identifiers of active CloudFront key
|
73
73
|
# pairs in each account that CloudFront can use to verify the
|
74
74
|
# signatures of signed URLs and signed cookies.
|
75
75
|
# @return [Array<Types::Signer>]
|
@@ -84,15 +84,17 @@ module Aws::CloudFront
|
|
84
84
|
include Aws::Structure
|
85
85
|
end
|
86
86
|
|
87
|
-
#
|
88
|
-
# Provider (ICP) recordal if they want to serve content
|
89
|
-
# alternate domain name, also known as a CNAME, that
|
90
|
-
# CloudFront. AliasICPRecordal provides the ICP
|
91
|
-
# CNAMEs associated with distributions. The status
|
92
|
-
# CloudFront response; you can't configure it
|
87
|
+
# Amazon Web Services services in China customers must file for an
|
88
|
+
# Internet Content Provider (ICP) recordal if they want to serve content
|
89
|
+
# publicly on an alternate domain name, also known as a CNAME, that
|
90
|
+
# they've added to CloudFront. AliasICPRecordal provides the ICP
|
91
|
+
# recordal status for CNAMEs associated with distributions. The status
|
92
|
+
# is returned in the CloudFront response; you can't configure it
|
93
|
+
# yourself.
|
93
94
|
#
|
94
95
|
# For more information about ICP recordals, see [ Signup, Accounts, and
|
95
|
-
# Credentials][1] in *Getting Started with
|
96
|
+
# Credentials][1] in *Getting Started with Amazon Web Services services
|
97
|
+
# in China*.
|
96
98
|
#
|
97
99
|
#
|
98
100
|
#
|
@@ -230,6 +232,31 @@ module Aws::CloudFront
|
|
230
232
|
include Aws::Structure
|
231
233
|
end
|
232
234
|
|
235
|
+
# @note When making an API call, you may pass AssociateAliasRequest
|
236
|
+
# data as a hash:
|
237
|
+
#
|
238
|
+
# {
|
239
|
+
# target_distribution_id: "string", # required
|
240
|
+
# alias: "string", # required
|
241
|
+
# }
|
242
|
+
#
|
243
|
+
# @!attribute [rw] target_distribution_id
|
244
|
+
# The ID of the distribution that you’re associating the alias with.
|
245
|
+
# @return [String]
|
246
|
+
#
|
247
|
+
# @!attribute [rw] alias
|
248
|
+
# The alias (also known as a CNAME) to add to the target distribution.
|
249
|
+
# @return [String]
|
250
|
+
#
|
251
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/AssociateAliasRequest AWS API Documentation
|
252
|
+
#
|
253
|
+
class AssociateAliasRequest < Struct.new(
|
254
|
+
:target_distribution_id,
|
255
|
+
:alias)
|
256
|
+
SENSITIVE = []
|
257
|
+
include Aws::Structure
|
258
|
+
end
|
259
|
+
|
233
260
|
# Invalidation batch specified is too large.
|
234
261
|
#
|
235
262
|
# @!attribute [rw] message
|
@@ -396,16 +423,16 @@ module Aws::CloudFront
|
|
396
423
|
# @!attribute [rw] trusted_signers
|
397
424
|
# We recommend using `TrustedKeyGroups` instead of `TrustedSigners`.
|
398
425
|
#
|
399
|
-
# A list of
|
426
|
+
# A list of account IDs whose public keys CloudFront can use to
|
400
427
|
# validate signed URLs or signed cookies.
|
401
428
|
#
|
402
429
|
# When a cache behavior contains trusted signers, CloudFront requires
|
403
430
|
# signed URLs or signed cookies for all requests that match the cache
|
404
431
|
# behavior. The URLs or cookies must be signed with the private key of
|
405
|
-
# a CloudFront key pair in the trusted signer’s
|
406
|
-
#
|
407
|
-
#
|
408
|
-
#
|
432
|
+
# a CloudFront key pair in the trusted signer’s account. The signed
|
433
|
+
# URL or cookie contains information about which public key CloudFront
|
434
|
+
# should use to verify the signature. For more information, see
|
435
|
+
# [Serving private content][1] in the *Amazon CloudFront Developer
|
409
436
|
# Guide*.
|
410
437
|
#
|
411
438
|
#
|
@@ -508,7 +535,7 @@ module Aws::CloudFront
|
|
508
535
|
# @return [Boolean]
|
509
536
|
#
|
510
537
|
# @!attribute [rw] lambda_function_associations
|
511
|
-
# A complex type that contains zero or more Lambda function
|
538
|
+
# A complex type that contains zero or more Lambda@Edge function
|
512
539
|
# associations for a cache behavior.
|
513
540
|
# @return [Types::LambdaFunctionAssociations]
|
514
541
|
#
|
@@ -1181,8 +1208,8 @@ module Aws::CloudFront
|
|
1181
1208
|
# Contains a cache policy.
|
1182
1209
|
#
|
1183
1210
|
# @!attribute [rw] type
|
1184
|
-
# The type of cache policy, either `managed` (created by
|
1185
|
-
# `custom` (created in this
|
1211
|
+
# The type of cache policy, either `managed` (created by Amazon Web
|
1212
|
+
# Services) or `custom` (created in this account).
|
1186
1213
|
# @return [String]
|
1187
1214
|
#
|
1188
1215
|
# @!attribute [rw] cache_policy
|
@@ -1393,13 +1420,13 @@ module Aws::CloudFront
|
|
1393
1420
|
#
|
1394
1421
|
# @!attribute [rw] quantity
|
1395
1422
|
# The number of CloudFront origin access identities that were created
|
1396
|
-
# by the current
|
1423
|
+
# by the current account.
|
1397
1424
|
# @return [Integer]
|
1398
1425
|
#
|
1399
1426
|
# @!attribute [rw] items
|
1400
1427
|
# A complex type that contains one
|
1401
1428
|
# `CloudFrontOriginAccessIdentitySummary` element for each origin
|
1402
|
-
# access identity that was created by the current
|
1429
|
+
# access identity that was created by the current account.
|
1403
1430
|
# @return [Array<Types::CloudFrontOriginAccessIdentitySummary>]
|
1404
1431
|
#
|
1405
1432
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/CloudFrontOriginAccessIdentityList AWS API Documentation
|
@@ -1443,6 +1470,73 @@ module Aws::CloudFront
|
|
1443
1470
|
include Aws::Structure
|
1444
1471
|
end
|
1445
1472
|
|
1473
|
+
# An alias (also called a CNAME) and the CloudFront distribution and
|
1474
|
+
# Amazon Web Services account ID that it’s associated with. The
|
1475
|
+
# distribution and account IDs are partially hidden, which allows you to
|
1476
|
+
# identify the distributions and accounts that you own, but helps to
|
1477
|
+
# protect the information of ones that you don’t own.
|
1478
|
+
#
|
1479
|
+
# @!attribute [rw] alias
|
1480
|
+
# An alias (also called a CNAME).
|
1481
|
+
# @return [String]
|
1482
|
+
#
|
1483
|
+
# @!attribute [rw] distribution_id
|
1484
|
+
# The (partially hidden) ID of the CloudFront distribution associated
|
1485
|
+
# with the alias.
|
1486
|
+
# @return [String]
|
1487
|
+
#
|
1488
|
+
# @!attribute [rw] account_id
|
1489
|
+
# The (partially hidden) ID of the Amazon Web Services account that
|
1490
|
+
# owns the distribution that’s associated with the alias.
|
1491
|
+
# @return [String]
|
1492
|
+
#
|
1493
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/ConflictingAlias AWS API Documentation
|
1494
|
+
#
|
1495
|
+
class ConflictingAlias < Struct.new(
|
1496
|
+
:alias,
|
1497
|
+
:distribution_id,
|
1498
|
+
:account_id)
|
1499
|
+
SENSITIVE = []
|
1500
|
+
include Aws::Structure
|
1501
|
+
end
|
1502
|
+
|
1503
|
+
# A list of aliases (also called CNAMEs) and the CloudFront
|
1504
|
+
# distributions and Amazon Web Services accounts that they are
|
1505
|
+
# associated with. In the list, the distribution and account IDs are
|
1506
|
+
# partially hidden, which allows you to identify the distributions and
|
1507
|
+
# accounts that you own, but helps to protect the information of ones
|
1508
|
+
# that you don’t own.
|
1509
|
+
#
|
1510
|
+
# @!attribute [rw] next_marker
|
1511
|
+
# If there are more items in the list than are in this response, this
|
1512
|
+
# element is present. It contains the value that you should use in the
|
1513
|
+
# `Marker` field of a subsequent request to continue listing
|
1514
|
+
# conflicting aliases where you left off.
|
1515
|
+
# @return [String]
|
1516
|
+
#
|
1517
|
+
# @!attribute [rw] max_items
|
1518
|
+
# The maximum number of conflicting aliases requested.
|
1519
|
+
# @return [Integer]
|
1520
|
+
#
|
1521
|
+
# @!attribute [rw] quantity
|
1522
|
+
# The number of conflicting aliases returned in the response.
|
1523
|
+
# @return [Integer]
|
1524
|
+
#
|
1525
|
+
# @!attribute [rw] items
|
1526
|
+
# Contains the conflicting aliases in the list.
|
1527
|
+
# @return [Array<Types::ConflictingAlias>]
|
1528
|
+
#
|
1529
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/ConflictingAliasesList AWS API Documentation
|
1530
|
+
#
|
1531
|
+
class ConflictingAliasesList < Struct.new(
|
1532
|
+
:next_marker,
|
1533
|
+
:max_items,
|
1534
|
+
:quantity,
|
1535
|
+
:items)
|
1536
|
+
SENSITIVE = []
|
1537
|
+
include Aws::Structure
|
1538
|
+
end
|
1539
|
+
|
1446
1540
|
# A field-level encryption content type profile.
|
1447
1541
|
#
|
1448
1542
|
# @note When making an API call, you may pass ContentTypeProfile
|
@@ -1663,7 +1757,7 @@ module Aws::CloudFront
|
|
1663
1757
|
#
|
1664
1758
|
# For the current limit on the number of cookie names that you can
|
1665
1759
|
# whitelist for each cache behavior, see [ CloudFront Limits][3] in
|
1666
|
-
# the *
|
1760
|
+
# the *Amazon Web Services General Reference*.
|
1667
1761
|
#
|
1668
1762
|
#
|
1669
1763
|
#
|
@@ -2052,7 +2146,7 @@ module Aws::CloudFront
|
|
2052
2146
|
# iam_certificate_id: "string",
|
2053
2147
|
# acm_certificate_arn: "string",
|
2054
2148
|
# ssl_support_method: "sni-only", # accepts sni-only, vip, static-ip
|
2055
|
-
# minimum_protocol_version: "SSLv3", # accepts SSLv3, TLSv1, TLSv1_2016, TLSv1.1_2016, TLSv1.2_2018, TLSv1.2_2019
|
2149
|
+
# minimum_protocol_version: "SSLv3", # accepts SSLv3, TLSv1, TLSv1_2016, TLSv1.1_2016, TLSv1.2_2018, TLSv1.2_2019, TLSv1.2_2021
|
2056
2150
|
# certificate: "string",
|
2057
2151
|
# certificate_source: "cloudfront", # accepts cloudfront, iam, acm
|
2058
2152
|
# },
|
@@ -2348,7 +2442,7 @@ module Aws::CloudFront
|
|
2348
2442
|
# iam_certificate_id: "string",
|
2349
2443
|
# acm_certificate_arn: "string",
|
2350
2444
|
# ssl_support_method: "sni-only", # accepts sni-only, vip, static-ip
|
2351
|
-
# minimum_protocol_version: "SSLv3", # accepts SSLv3, TLSv1, TLSv1_2016, TLSv1.1_2016, TLSv1.2_2018, TLSv1.2_2019
|
2445
|
+
# minimum_protocol_version: "SSLv3", # accepts SSLv3, TLSv1, TLSv1_2016, TLSv1.1_2016, TLSv1.2_2018, TLSv1.2_2019, TLSv1.2_2021
|
2352
2446
|
# certificate: "string",
|
2353
2447
|
# certificate_source: "cloudfront", # accepts cloudfront, iam, acm
|
2354
2448
|
# },
|
@@ -3458,14 +3552,14 @@ module Aws::CloudFront
|
|
3458
3552
|
# @!attribute [rw] trusted_signers
|
3459
3553
|
# We recommend using `TrustedKeyGroups` instead of `TrustedSigners`.
|
3460
3554
|
#
|
3461
|
-
# A list of
|
3555
|
+
# A list of account IDs whose public keys CloudFront can use to
|
3462
3556
|
# validate signed URLs or signed cookies.
|
3463
3557
|
#
|
3464
3558
|
# When a cache behavior contains trusted signers, CloudFront requires
|
3465
3559
|
# signed URLs or signed cookies for all requests that match the cache
|
3466
3560
|
# behavior. The URLs or cookies must be signed with the private key of
|
3467
|
-
# a CloudFront key pair in a trusted signer’s
|
3468
|
-
#
|
3561
|
+
# a CloudFront key pair in a trusted signer’s account. The signed URL
|
3562
|
+
# or cookie contains information about which public key CloudFront
|
3469
3563
|
# should use to verify the signature. For more information, see
|
3470
3564
|
# [Serving private content][1] in the *Amazon CloudFront Developer
|
3471
3565
|
# Guide*.
|
@@ -3570,7 +3664,7 @@ module Aws::CloudFront
|
|
3570
3664
|
# @return [Boolean]
|
3571
3665
|
#
|
3572
3666
|
# @!attribute [rw] lambda_function_associations
|
3573
|
-
# A complex type that contains zero or more Lambda function
|
3667
|
+
# A complex type that contains zero or more Lambda@Edge function
|
3574
3668
|
# associations for a cache behavior.
|
3575
3669
|
# @return [Types::LambdaFunctionAssociations]
|
3576
3670
|
#
|
@@ -4164,7 +4258,7 @@ module Aws::CloudFront
|
|
4164
4258
|
# @!attribute [rw] arn
|
4165
4259
|
# The ARN (Amazon Resource Name) for the distribution. For example:
|
4166
4260
|
# `arn:aws:cloudfront::123456789012:distribution/EDFDVBD632BHDS5`,
|
4167
|
-
# where `123456789012` is your
|
4261
|
+
# where `123456789012` is your account ID.
|
4168
4262
|
# @return [String]
|
4169
4263
|
#
|
4170
4264
|
# @!attribute [rw] status
|
@@ -4191,8 +4285,8 @@ module Aws::CloudFront
|
|
4191
4285
|
#
|
4192
4286
|
# CloudFront automatically adds this field to the response if you’ve
|
4193
4287
|
# configured a cache behavior in this distribution to serve private
|
4194
|
-
# content using trusted signers. This field contains a list of
|
4195
|
-
#
|
4288
|
+
# content using trusted signers. This field contains a list of account
|
4289
|
+
# IDs and the active CloudFront key pairs in each account that
|
4196
4290
|
# CloudFront can use to verify the signatures of signed URLs or signed
|
4197
4291
|
# cookies.
|
4198
4292
|
# @return [Types::ActiveTrustedSigners]
|
@@ -4212,14 +4306,15 @@ module Aws::CloudFront
|
|
4212
4306
|
# @return [Types::DistributionConfig]
|
4213
4307
|
#
|
4214
4308
|
# @!attribute [rw] alias_icp_recordals
|
4215
|
-
#
|
4216
|
-
# Provider (ICP) recordal if they want to serve
|
4217
|
-
# alternate domain name, also known as a CNAME,
|
4218
|
-
# CloudFront. AliasICPRecordal provides the ICP
|
4219
|
-
# CNAMEs associated with distributions.
|
4309
|
+
# Amazon Web Services services in China customers must file for an
|
4310
|
+
# Internet Content Provider (ICP) recordal if they want to serve
|
4311
|
+
# content publicly on an alternate domain name, also known as a CNAME,
|
4312
|
+
# that they've added to CloudFront. AliasICPRecordal provides the ICP
|
4313
|
+
# recordal status for CNAMEs associated with distributions.
|
4220
4314
|
#
|
4221
4315
|
# For more information about ICP recordals, see [ Signup, Accounts,
|
4222
|
-
# and Credentials][1] in *Getting Started with
|
4316
|
+
# and Credentials][1] in *Getting Started with Amazon Web Services
|
4317
|
+
# services in China*.
|
4223
4318
|
#
|
4224
4319
|
#
|
4225
4320
|
#
|
@@ -4497,7 +4592,7 @@ module Aws::CloudFront
|
|
4497
4592
|
# iam_certificate_id: "string",
|
4498
4593
|
# acm_certificate_arn: "string",
|
4499
4594
|
# ssl_support_method: "sni-only", # accepts sni-only, vip, static-ip
|
4500
|
-
# minimum_protocol_version: "SSLv3", # accepts SSLv3, TLSv1, TLSv1_2016, TLSv1.1_2016, TLSv1.2_2018, TLSv1.2_2019
|
4595
|
+
# minimum_protocol_version: "SSLv3", # accepts SSLv3, TLSv1, TLSv1_2016, TLSv1.1_2016, TLSv1.2_2018, TLSv1.2_2019, TLSv1.2_2021
|
4501
4596
|
# certificate: "string",
|
4502
4597
|
# certificate_source: "cloudfront", # accepts cloudfront, iam, acm
|
4503
4598
|
# },
|
@@ -4656,22 +4751,22 @@ module Aws::CloudFront
|
|
4656
4751
|
# @return [Types::Restrictions]
|
4657
4752
|
#
|
4658
4753
|
# @!attribute [rw] web_acl_id
|
4659
|
-
# A unique identifier that specifies the
|
4754
|
+
# A unique identifier that specifies the WAF web ACL, if any, to
|
4660
4755
|
# associate with this distribution. To specify a web ACL created using
|
4661
|
-
# the latest version of
|
4756
|
+
# the latest version of WAF, use the ACL ARN, for example
|
4662
4757
|
# `arn:aws:wafv2:us-east-1:123456789012:global/webacl/ExampleWebACL/473e64fd-f30b-4765-81a0-62ad96dd167a`.
|
4663
|
-
# To specify a web ACL created using
|
4664
|
-
#
|
4758
|
+
# To specify a web ACL created using WAF Classic, use the ACL ID, for
|
4759
|
+
# example `473e64fd-f30b-4765-81a0-62ad96dd167a`.
|
4665
4760
|
#
|
4666
|
-
#
|
4667
|
-
#
|
4761
|
+
# WAF is a web application firewall that lets you monitor the HTTP and
|
4762
|
+
# HTTPS requests that are forwarded to CloudFront, and lets you
|
4668
4763
|
# control access to your content. Based on conditions that you
|
4669
4764
|
# specify, such as the IP addresses that requests originate from or
|
4670
4765
|
# the values of query strings, CloudFront responds to requests either
|
4671
4766
|
# with the requested content or with an HTTP 403 status code
|
4672
4767
|
# (Forbidden). You can also configure CloudFront to return a custom
|
4673
|
-
# error page when a request is blocked. For more information about
|
4674
|
-
# WAF, see the [
|
4768
|
+
# error page when a request is blocked. For more information about
|
4769
|
+
# WAF, see the [WAF Developer Guide][1].
|
4675
4770
|
#
|
4676
4771
|
#
|
4677
4772
|
#
|
@@ -4712,23 +4807,24 @@ module Aws::CloudFront
|
|
4712
4807
|
# more information, see [Creating a Signed URL Using a Custom
|
4713
4808
|
# Policy][1] in the *Amazon CloudFront Developer Guide*.
|
4714
4809
|
#
|
4715
|
-
# If you're using an
|
4716
|
-
# route traffic to your CloudFront
|
4717
|
-
#
|
4718
|
-
# true:
|
4810
|
+
# If you're using an Route 53 Amazon Web Services Integration alias
|
4811
|
+
# resource record set to route traffic to your CloudFront
|
4812
|
+
# distribution, you need to create a second alias resource record set
|
4813
|
+
# when both of the following are true:
|
4719
4814
|
#
|
4720
4815
|
# * You enable IPv6 for the distribution
|
4721
4816
|
#
|
4722
4817
|
# * You're using alternate domain names in the URLs for your objects
|
4723
4818
|
#
|
4724
4819
|
# For more information, see [Routing Traffic to an Amazon CloudFront
|
4725
|
-
# Web Distribution by Using Your Domain Name][2] in the *
|
4726
|
-
#
|
4820
|
+
# Web Distribution by Using Your Domain Name][2] in the *Route 53
|
4821
|
+
# Amazon Web Services Integration Developer Guide*.
|
4727
4822
|
#
|
4728
|
-
# If you created a CNAME resource record set, either with
|
4729
|
-
#
|
4730
|
-
# A CNAME record will route traffic
|
4731
|
-
# the IP address format of the
|
4823
|
+
# If you created a CNAME resource record set, either with Route 53
|
4824
|
+
# Amazon Web Services Integration or with another DNS service, you
|
4825
|
+
# don't need to make any changes. A CNAME record will route traffic
|
4826
|
+
# to your distribution regardless of the IP address format of the
|
4827
|
+
# viewer request.
|
4732
4828
|
#
|
4733
4829
|
#
|
4734
4830
|
#
|
@@ -5002,7 +5098,7 @@ module Aws::CloudFront
|
|
5002
5098
|
# iam_certificate_id: "string",
|
5003
5099
|
# acm_certificate_arn: "string",
|
5004
5100
|
# ssl_support_method: "sni-only", # accepts sni-only, vip, static-ip
|
5005
|
-
# minimum_protocol_version: "SSLv3", # accepts SSLv3, TLSv1, TLSv1_2016, TLSv1.1_2016, TLSv1.2_2018, TLSv1.2_2019
|
5101
|
+
# minimum_protocol_version: "SSLv3", # accepts SSLv3, TLSv1, TLSv1_2016, TLSv1.1_2016, TLSv1.2_2018, TLSv1.2_2019, TLSv1.2_2021
|
5006
5102
|
# certificate: "string",
|
5007
5103
|
# certificate_source: "cloudfront", # accepts cloudfront, iam, acm
|
5008
5104
|
# },
|
@@ -5112,13 +5208,13 @@ module Aws::CloudFront
|
|
5112
5208
|
# @return [Boolean]
|
5113
5209
|
#
|
5114
5210
|
# @!attribute [rw] quantity
|
5115
|
-
# The number of distributions that were created by the current
|
5211
|
+
# The number of distributions that were created by the current
|
5116
5212
|
# account.
|
5117
5213
|
# @return [Integer]
|
5118
5214
|
#
|
5119
5215
|
# @!attribute [rw] items
|
5120
5216
|
# A complex type that contains one `DistributionSummary` element for
|
5121
|
-
# each distribution that was created by the current
|
5217
|
+
# each distribution that was created by the current account.
|
5122
5218
|
# @return [Array<Types::DistributionSummary>]
|
5123
5219
|
#
|
5124
5220
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/DistributionList AWS API Documentation
|
@@ -5157,7 +5253,7 @@ module Aws::CloudFront
|
|
5157
5253
|
# @!attribute [rw] arn
|
5158
5254
|
# The ARN (Amazon Resource Name) for the distribution. For example:
|
5159
5255
|
# `arn:aws:cloudfront::123456789012:distribution/EDFDVBD632BHDS5`,
|
5160
|
-
# where `123456789012` is your
|
5256
|
+
# where `123456789012` is your account ID.
|
5161
5257
|
# @return [String]
|
5162
5258
|
#
|
5163
5259
|
# @!attribute [rw] status
|
@@ -5247,14 +5343,15 @@ module Aws::CloudFront
|
|
5247
5343
|
# @return [Boolean]
|
5248
5344
|
#
|
5249
5345
|
# @!attribute [rw] alias_icp_recordals
|
5250
|
-
#
|
5251
|
-
# Provider (ICP) recordal if they want to serve
|
5252
|
-
# alternate domain name, also known as a CNAME,
|
5253
|
-
# CloudFront. AliasICPRecordal provides the ICP
|
5254
|
-
# CNAMEs associated with distributions.
|
5346
|
+
# Amazon Web Services services in China customers must file for an
|
5347
|
+
# Internet Content Provider (ICP) recordal if they want to serve
|
5348
|
+
# content publicly on an alternate domain name, also known as a CNAME,
|
5349
|
+
# that they've added to CloudFront. AliasICPRecordal provides the ICP
|
5350
|
+
# recordal status for CNAMEs associated with distributions.
|
5255
5351
|
#
|
5256
5352
|
# For more information about ICP recordals, see [ Signup, Accounts,
|
5257
|
-
# and Credentials][1] in *Getting Started with
|
5353
|
+
# and Credentials][1] in *Getting Started with Amazon Web Services
|
5354
|
+
# services in China*.
|
5258
5355
|
#
|
5259
5356
|
#
|
5260
5357
|
#
|
@@ -5991,7 +6088,7 @@ module Aws::CloudFront
|
|
5991
6088
|
include Aws::Structure
|
5992
6089
|
end
|
5993
6090
|
|
5994
|
-
# A function with the same name already exists in this
|
6091
|
+
# A function with the same name already exists in this account. To
|
5995
6092
|
# create a function, you must provide a unique name. To update an
|
5996
6093
|
# existing function, use `UpdateFunction`.
|
5997
6094
|
#
|
@@ -7357,7 +7454,7 @@ module Aws::CloudFront
|
|
7357
7454
|
include Aws::Structure
|
7358
7455
|
end
|
7359
7456
|
|
7360
|
-
# The specified Lambda function association is invalid.
|
7457
|
+
# The specified Lambda@Edge function association is invalid.
|
7361
7458
|
#
|
7362
7459
|
# @!attribute [rw] message
|
7363
7460
|
# @return [String]
|
@@ -7559,10 +7656,10 @@ module Aws::CloudFront
|
|
7559
7656
|
end
|
7560
7657
|
|
7561
7658
|
# A web ACL ID specified is not valid. To specify a web ACL created
|
7562
|
-
# using the latest version of
|
7659
|
+
# using the latest version of WAF, use the ACL ARN, for example
|
7563
7660
|
# `arn:aws:wafv2:us-east-1:123456789012:global/webacl/ExampleWebACL/473e64fd-f30b-4765-81a0-62ad96dd167a`.
|
7564
|
-
# To specify a web ACL created using
|
7565
|
-
#
|
7661
|
+
# To specify a web ACL created using WAF Classic, use the ACL ID, for
|
7662
|
+
# example `473e64fd-f30b-4765-81a0-62ad96dd167a`.
|
7566
7663
|
#
|
7567
7664
|
# @!attribute [rw] message
|
7568
7665
|
# @return [String]
|
@@ -7692,12 +7789,12 @@ module Aws::CloudFront
|
|
7692
7789
|
#
|
7693
7790
|
# @!attribute [rw] quantity
|
7694
7791
|
# The number of invalidation batches that were created by the current
|
7695
|
-
#
|
7792
|
+
# account.
|
7696
7793
|
# @return [Integer]
|
7697
7794
|
#
|
7698
7795
|
# @!attribute [rw] items
|
7699
7796
|
# A complex type that contains one `InvalidationSummary` element for
|
7700
|
-
# each invalidation batch created by the current
|
7797
|
+
# each invalidation batch created by the current account.
|
7701
7798
|
# @return [Array<Types::InvalidationSummary>]
|
7702
7799
|
#
|
7703
7800
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/InvalidationList AWS API Documentation
|
@@ -7920,9 +8017,9 @@ module Aws::CloudFront
|
|
7920
8017
|
# }
|
7921
8018
|
#
|
7922
8019
|
# @!attribute [rw] role_arn
|
7923
|
-
# The Amazon Resource Name (ARN) of an
|
7924
|
-
#
|
7925
|
-
#
|
8020
|
+
# The Amazon Resource Name (ARN) of an Identity and Access Management
|
8021
|
+
# (IAM) role that CloudFront can use to send real-time log data to
|
8022
|
+
# your Kinesis data stream.
|
7926
8023
|
#
|
7927
8024
|
# For more information the IAM role, see [Real-time log configuration
|
7928
8025
|
# IAM role][1] in the *Amazon CloudFront Developer Guide*.
|
@@ -7946,7 +8043,7 @@ module Aws::CloudFront
|
|
7946
8043
|
include Aws::Structure
|
7947
8044
|
end
|
7948
8045
|
|
7949
|
-
# A complex type that contains a Lambda function association.
|
8046
|
+
# A complex type that contains a Lambda@Edge function association.
|
7950
8047
|
#
|
7951
8048
|
# @note When making an API call, you may pass LambdaFunctionAssociation
|
7952
8049
|
# data as a hash:
|
@@ -7958,13 +8055,13 @@ module Aws::CloudFront
|
|
7958
8055
|
# }
|
7959
8056
|
#
|
7960
8057
|
# @!attribute [rw] lambda_function_arn
|
7961
|
-
# The ARN of the Lambda function. You must specify the ARN of a
|
7962
|
-
# function version; you can't specify
|
8058
|
+
# The ARN of the Lambda@Edge function. You must specify the ARN of a
|
8059
|
+
# function version; you can't specify an alias or $LATEST.
|
7963
8060
|
# @return [String]
|
7964
8061
|
#
|
7965
8062
|
# @!attribute [rw] event_type
|
7966
|
-
# Specifies the event type that triggers a Lambda function
|
7967
|
-
# You can specify the following values:
|
8063
|
+
# Specifies the event type that triggers a Lambda@Edge function
|
8064
|
+
# invocation. You can specify the following values:
|
7968
8065
|
#
|
7969
8066
|
# * `viewer-request`\: The function executes when CloudFront receives
|
7970
8067
|
# a request from a viewer and before it checks to see whether the
|
@@ -7988,9 +8085,9 @@ module Aws::CloudFront
|
|
7988
8085
|
# @return [String]
|
7989
8086
|
#
|
7990
8087
|
# @!attribute [rw] include_body
|
7991
|
-
# A flag that allows a Lambda function to have read access to the
|
7992
|
-
# content. For more information, see [Accessing the Request Body
|
7993
|
-
# Choosing the Include Body Option][1] in the Amazon CloudFront
|
8088
|
+
# A flag that allows a Lambda@Edge function to have read access to the
|
8089
|
+
# body content. For more information, see [Accessing the Request Body
|
8090
|
+
# by Choosing the Include Body Option][1] in the Amazon CloudFront
|
7994
8091
|
# Developer Guide.
|
7995
8092
|
#
|
7996
8093
|
#
|
@@ -8008,18 +8105,19 @@ module Aws::CloudFront
|
|
8008
8105
|
include Aws::Structure
|
8009
8106
|
end
|
8010
8107
|
|
8011
|
-
# A complex type that specifies a list of Lambda functions
|
8012
|
-
# for a cache behavior.
|
8108
|
+
# A complex type that specifies a list of Lambda@Edge functions
|
8109
|
+
# associations for a cache behavior.
|
8013
8110
|
#
|
8014
|
-
# If you want to invoke one or more Lambda functions triggered by
|
8111
|
+
# If you want to invoke one or more Lambda@Edge functions triggered by
|
8015
8112
|
# requests that match the `PathPattern` of the cache behavior, specify
|
8016
8113
|
# the applicable values for `Quantity` and `Items`. Note that there can
|
8017
8114
|
# be up to 4 `LambdaFunctionAssociation` items in this list (one for
|
8018
8115
|
# each possible value of `EventType`) and each `EventType` can be
|
8019
|
-
# associated with
|
8116
|
+
# associated with only one function.
|
8020
8117
|
#
|
8021
|
-
# If you don't want to invoke any Lambda functions for the
|
8022
|
-
# that match `PathPattern`, specify `0` for `Quantity` and omit
|
8118
|
+
# If you don't want to invoke any Lambda@Edge functions for the
|
8119
|
+
# requests that match `PathPattern`, specify `0` for `Quantity` and omit
|
8120
|
+
# `Items`.
|
8023
8121
|
#
|
8024
8122
|
# @note When making an API call, you may pass LambdaFunctionAssociations
|
8025
8123
|
# data as a hash:
|
@@ -8036,7 +8134,8 @@ module Aws::CloudFront
|
|
8036
8134
|
# }
|
8037
8135
|
#
|
8038
8136
|
# @!attribute [rw] quantity
|
8039
|
-
# The number of Lambda function associations for this cache
|
8137
|
+
# The number of Lambda@Edge function associations for this cache
|
8138
|
+
# behavior.
|
8040
8139
|
# @return [Integer]
|
8041
8140
|
#
|
8042
8141
|
# @!attribute [rw] items
|
@@ -8067,9 +8166,10 @@ module Aws::CloudFront
|
|
8067
8166
|
# A filter to return only the specified kinds of cache policies. Valid
|
8068
8167
|
# values are:
|
8069
8168
|
#
|
8070
|
-
# * `managed` – Returns only the managed policies created by
|
8169
|
+
# * `managed` – Returns only the managed policies created by Amazon
|
8170
|
+
# Web Services.
|
8071
8171
|
#
|
8072
|
-
# * `custom` – Returns only the custom policies created in your
|
8172
|
+
# * `custom` – Returns only the custom policies created in your
|
8073
8173
|
# account.
|
8074
8174
|
# @return [String]
|
8075
8175
|
#
|
@@ -8154,6 +8254,61 @@ module Aws::CloudFront
|
|
8154
8254
|
include Aws::Structure
|
8155
8255
|
end
|
8156
8256
|
|
8257
|
+
# @note When making an API call, you may pass ListConflictingAliasesRequest
|
8258
|
+
# data as a hash:
|
8259
|
+
#
|
8260
|
+
# {
|
8261
|
+
# distribution_id: "distributionIdString", # required
|
8262
|
+
# alias: "aliasString", # required
|
8263
|
+
# marker: "string",
|
8264
|
+
# max_items: 1,
|
8265
|
+
# }
|
8266
|
+
#
|
8267
|
+
# @!attribute [rw] distribution_id
|
8268
|
+
# The ID of a distribution in your account that has an attached
|
8269
|
+
# SSL/TLS certificate that includes the provided alias.
|
8270
|
+
# @return [String]
|
8271
|
+
#
|
8272
|
+
# @!attribute [rw] alias
|
8273
|
+
# The alias (also called a CNAME) to search for conflicting aliases.
|
8274
|
+
# @return [String]
|
8275
|
+
#
|
8276
|
+
# @!attribute [rw] marker
|
8277
|
+
# Use this field when paginating results to indicate where to begin in
|
8278
|
+
# the list of conflicting aliases. The response includes conflicting
|
8279
|
+
# aliases in the list that occur after the marker. To get the next
|
8280
|
+
# page of the list, set this field’s value to the value of
|
8281
|
+
# `NextMarker` from the current page’s response.
|
8282
|
+
# @return [String]
|
8283
|
+
#
|
8284
|
+
# @!attribute [rw] max_items
|
8285
|
+
# The maximum number of conflicting aliases that you want in the
|
8286
|
+
# response.
|
8287
|
+
# @return [Integer]
|
8288
|
+
#
|
8289
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/ListConflictingAliasesRequest AWS API Documentation
|
8290
|
+
#
|
8291
|
+
class ListConflictingAliasesRequest < Struct.new(
|
8292
|
+
:distribution_id,
|
8293
|
+
:alias,
|
8294
|
+
:marker,
|
8295
|
+
:max_items)
|
8296
|
+
SENSITIVE = []
|
8297
|
+
include Aws::Structure
|
8298
|
+
end
|
8299
|
+
|
8300
|
+
# @!attribute [rw] conflicting_aliases_list
|
8301
|
+
# A list of conflicting aliases.
|
8302
|
+
# @return [Types::ConflictingAliasesList]
|
8303
|
+
#
|
8304
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/ListConflictingAliasesResult AWS API Documentation
|
8305
|
+
#
|
8306
|
+
class ListConflictingAliasesResult < Struct.new(
|
8307
|
+
:conflicting_aliases_list)
|
8308
|
+
SENSITIVE = []
|
8309
|
+
include Aws::Structure
|
8310
|
+
end
|
8311
|
+
|
8157
8312
|
# @note When making an API call, you may pass ListDistributionsByCachePolicyIdRequest
|
8158
8313
|
# data as a hash:
|
8159
8314
|
#
|
@@ -8357,7 +8512,7 @@ module Aws::CloudFront
|
|
8357
8512
|
end
|
8358
8513
|
|
8359
8514
|
# The request to list distributions that are associated with a specified
|
8360
|
-
#
|
8515
|
+
# WAF web ACL.
|
8361
8516
|
#
|
8362
8517
|
# @note When making an API call, you may pass ListDistributionsByWebACLIdRequest
|
8363
8518
|
# data as a hash:
|
@@ -8384,7 +8539,7 @@ module Aws::CloudFront
|
|
8384
8539
|
# @return [Integer]
|
8385
8540
|
#
|
8386
8541
|
# @!attribute [rw] web_acl_id
|
8387
|
-
# The ID of the
|
8542
|
+
# The ID of the WAF web ACL that you want to list the associated
|
8388
8543
|
# distributions. If you specify "null" for the ID, the request
|
8389
8544
|
# returns a list of the distributions that aren't associated with a
|
8390
8545
|
# web ACL.
|
@@ -8401,7 +8556,7 @@ module Aws::CloudFront
|
|
8401
8556
|
end
|
8402
8557
|
|
8403
8558
|
# The response to a request to list the distributions that are
|
8404
|
-
# associated with a specified
|
8559
|
+
# associated with a specified WAF web ACL.
|
8405
8560
|
#
|
8406
8561
|
# @!attribute [rw] distribution_list
|
8407
8562
|
# The `DistributionList` type.
|
@@ -8705,9 +8860,10 @@ module Aws::CloudFront
|
|
8705
8860
|
# A filter to return only the specified kinds of origin request
|
8706
8861
|
# policies. Valid values are:
|
8707
8862
|
#
|
8708
|
-
# * `managed` – Returns only the managed policies created by
|
8863
|
+
# * `managed` – Returns only the managed policies created by Amazon
|
8864
|
+
# Web Services.
|
8709
8865
|
#
|
8710
|
-
# * `custom` – Returns only the custom policies created in your
|
8866
|
+
# * `custom` – Returns only the custom policies created in your
|
8711
8867
|
# account.
|
8712
8868
|
# @return [String]
|
8713
8869
|
#
|
@@ -9909,8 +10065,8 @@ module Aws::CloudFront
|
|
9909
10065
|
# Contains an origin request policy.
|
9910
10066
|
#
|
9911
10067
|
# @!attribute [rw] type
|
9912
|
-
# The type of origin request policy, either `managed` (created by
|
9913
|
-
# or `custom` (created in this
|
10068
|
+
# The type of origin request policy, either `managed` (created by
|
10069
|
+
# Amazon Web Services) or `custom` (created in this account).
|
9914
10070
|
# @return [String]
|
9915
10071
|
#
|
9916
10072
|
# @!attribute [rw] origin_request_policy
|
@@ -9954,17 +10110,17 @@ module Aws::CloudFront
|
|
9954
10110
|
# @return [Boolean]
|
9955
10111
|
#
|
9956
10112
|
# @!attribute [rw] origin_shield_region
|
9957
|
-
# The
|
10113
|
+
# The Region for Origin Shield.
|
9958
10114
|
#
|
9959
|
-
# Specify the
|
9960
|
-
#
|
10115
|
+
# Specify the Region that has the lowest latency to your origin. To
|
10116
|
+
# specify a region, use the region code, not the region name. For
|
9961
10117
|
# example, specify the US East (Ohio) region as `us-east-2`.
|
9962
10118
|
#
|
9963
|
-
# When you enable CloudFront Origin Shield, you must specify the
|
9964
|
-
# Region for Origin Shield. For the list of
|
10119
|
+
# When you enable CloudFront Origin Shield, you must specify the
|
10120
|
+
# Region for Origin Shield. For the list of Regions that you can
|
9965
10121
|
# specify, and for help choosing the best Region for your origin, see
|
9966
|
-
# [Choosing the
|
9967
|
-
#
|
10122
|
+
# [Choosing the Region for Origin Shield][1] in the *Amazon CloudFront
|
10123
|
+
# Developer Guide*.
|
9968
10124
|
#
|
9969
10125
|
#
|
9970
10126
|
#
|
@@ -10761,7 +10917,7 @@ module Aws::CloudFront
|
|
10761
10917
|
include Aws::Structure
|
10762
10918
|
end
|
10763
10919
|
|
10764
|
-
# The specified real-time log configuration belongs to a different
|
10920
|
+
# The specified real-time log configuration belongs to a different
|
10765
10921
|
# account.
|
10766
10922
|
#
|
10767
10923
|
# @!attribute [rw] message
|
@@ -10980,16 +11136,16 @@ module Aws::CloudFront
|
|
10980
11136
|
include Aws::Structure
|
10981
11137
|
end
|
10982
11138
|
|
10983
|
-
# A list of
|
10984
|
-
#
|
10985
|
-
#
|
11139
|
+
# A list of accounts and the active CloudFront key pairs in each account
|
11140
|
+
# that CloudFront can use to verify the signatures of signed URLs and
|
11141
|
+
# signed cookies.
|
10986
11142
|
#
|
10987
11143
|
# @!attribute [rw] aws_account_number
|
10988
|
-
# An
|
11144
|
+
# An account number that contains active CloudFront key pairs that
|
10989
11145
|
# CloudFront can use to verify the signatures of signed URLs and
|
10990
|
-
# signed cookies. If the
|
10991
|
-
#
|
10992
|
-
#
|
11146
|
+
# signed cookies. If the account that owns the key pairs is the same
|
11147
|
+
# account that owns the CloudFront distribution, the value of this
|
11148
|
+
# field is `self`.
|
10993
11149
|
# @return [String]
|
10994
11150
|
#
|
10995
11151
|
# @!attribute [rw] key_pair_ids
|
@@ -11046,7 +11202,7 @@ module Aws::CloudFront
|
|
11046
11202
|
# @!attribute [rw] arn
|
11047
11203
|
# The ARN (Amazon Resource Name) for the distribution. For example:
|
11048
11204
|
# `arn:aws:cloudfront::123456789012:distribution/EDFDVBD632BHDS5`,
|
11049
|
-
# where `123456789012` is your
|
11205
|
+
# where `123456789012` is your account ID.
|
11050
11206
|
# @return [String]
|
11051
11207
|
#
|
11052
11208
|
# @!attribute [rw] status
|
@@ -11065,17 +11221,17 @@ module Aws::CloudFront
|
|
11065
11221
|
# @return [String]
|
11066
11222
|
#
|
11067
11223
|
# @!attribute [rw] active_trusted_signers
|
11068
|
-
# A complex type that lists the
|
11069
|
-
#
|
11070
|
-
#
|
11071
|
-
#
|
11072
|
-
#
|
11073
|
-
# The `Signer` complex type lists the
|
11074
|
-
#
|
11075
|
-
#
|
11076
|
-
#
|
11077
|
-
#
|
11078
|
-
#
|
11224
|
+
# A complex type that lists the accounts, if any, that you included in
|
11225
|
+
# the `TrustedSigners` complex type for this distribution. These are
|
11226
|
+
# the accounts that you want to allow to create signed URLs for
|
11227
|
+
# private content.
|
11228
|
+
#
|
11229
|
+
# The `Signer` complex type lists the account number of the trusted
|
11230
|
+
# signer or `self` if the signer is the account that created the
|
11231
|
+
# distribution. The `Signer` element also includes the IDs of any
|
11232
|
+
# active CloudFront key pairs that are associated with the trusted
|
11233
|
+
# signer's account. If no `KeyPairId` element appears for a `Signer`,
|
11234
|
+
# that signer can't create signed URLs.
|
11079
11235
|
#
|
11080
11236
|
# For more information, see [Serving Private Content through
|
11081
11237
|
# CloudFront][1] in the *Amazon CloudFront Developer Guide*.
|
@@ -11181,8 +11337,8 @@ module Aws::CloudFront
|
|
11181
11337
|
# @return [Types::StreamingLoggingConfig]
|
11182
11338
|
#
|
11183
11339
|
# @!attribute [rw] trusted_signers
|
11184
|
-
# A complex type that specifies any
|
11185
|
-
#
|
11340
|
+
# A complex type that specifies any accounts that you want to permit
|
11341
|
+
# to create signed URLs for private content. If you want the
|
11186
11342
|
# distribution to use signed URLs, include this element; if you want
|
11187
11343
|
# the distribution to use public URLs, remove this element. For more
|
11188
11344
|
# information, see [Serving Private Content through CloudFront][1] in
|
@@ -11301,12 +11457,12 @@ module Aws::CloudFront
|
|
11301
11457
|
#
|
11302
11458
|
# @!attribute [rw] quantity
|
11303
11459
|
# The number of streaming distributions that were created by the
|
11304
|
-
# current
|
11460
|
+
# current account.
|
11305
11461
|
# @return [Integer]
|
11306
11462
|
#
|
11307
11463
|
# @!attribute [rw] items
|
11308
11464
|
# A complex type that contains one `StreamingDistributionSummary`
|
11309
|
-
# element for each distribution that was created by the current
|
11465
|
+
# element for each distribution that was created by the current
|
11310
11466
|
# account.
|
11311
11467
|
# @return [Array<Types::StreamingDistributionSummary>]
|
11312
11468
|
#
|
@@ -11347,7 +11503,7 @@ module Aws::CloudFront
|
|
11347
11503
|
# The ARN (Amazon Resource Name) for the streaming distribution. For
|
11348
11504
|
# example:
|
11349
11505
|
# `arn:aws:cloudfront::123456789012:streaming-distribution/EDFDVBD632BHDS5`,
|
11350
|
-
# where `123456789012` is your
|
11506
|
+
# where `123456789012` is your account ID.
|
11351
11507
|
# @return [String]
|
11352
11508
|
#
|
11353
11509
|
# @!attribute [rw] status
|
@@ -11377,9 +11533,9 @@ module Aws::CloudFront
|
|
11377
11533
|
# @return [Types::Aliases]
|
11378
11534
|
#
|
11379
11535
|
# @!attribute [rw] trusted_signers
|
11380
|
-
# A complex type that specifies the
|
11381
|
-
#
|
11382
|
-
#
|
11536
|
+
# A complex type that specifies the accounts, if any, that you want to
|
11537
|
+
# allow to create signed URLs for private content. If you want to
|
11538
|
+
# require signed URLs in requests for objects in the target origin
|
11383
11539
|
# that match the `PathPattern` for this cache behavior, specify `true`
|
11384
11540
|
# for `Enabled`, and specify the applicable values for `Quantity` and
|
11385
11541
|
# `Items`.If you don't want to require signed URLs in requests for
|
@@ -11722,7 +11878,7 @@ module Aws::CloudFront
|
|
11722
11878
|
include Aws::Structure
|
11723
11879
|
end
|
11724
11880
|
|
11725
|
-
# You have reached the maximum number of cache policies for this
|
11881
|
+
# You have reached the maximum number of cache policies for this
|
11726
11882
|
# account. For more information, see [Quotas][1] (formerly known as
|
11727
11883
|
# limits) in the *Amazon CloudFront Developer Guide*.
|
11728
11884
|
#
|
@@ -11939,7 +12095,7 @@ module Aws::CloudFront
|
|
11939
12095
|
end
|
11940
12096
|
|
11941
12097
|
# Processing your request would cause the maximum number of
|
11942
|
-
# distributions with Lambda function associations per owner to be
|
12098
|
+
# distributions with Lambda@Edge function associations per owner to be
|
11943
12099
|
# exceeded.
|
11944
12100
|
#
|
11945
12101
|
# @!attribute [rw] message
|
@@ -11954,7 +12110,7 @@ module Aws::CloudFront
|
|
11954
12110
|
end
|
11955
12111
|
|
11956
12112
|
# The maximum number of distributions have been associated with the
|
11957
|
-
# specified Lambda function.
|
12113
|
+
# specified Lambda@Edge function.
|
11958
12114
|
#
|
11959
12115
|
# @!attribute [rw] message
|
11960
12116
|
# @return [String]
|
@@ -12072,7 +12228,7 @@ module Aws::CloudFront
|
|
12072
12228
|
end
|
12073
12229
|
|
12074
12230
|
# You have reached the maximum number of CloudFront functions for this
|
12075
|
-
#
|
12231
|
+
# account. For more information, see [Quotas][1] (formerly known as
|
12076
12232
|
# limits) in the *Amazon CloudFront Developer Guide*.
|
12077
12233
|
#
|
12078
12234
|
#
|
@@ -12155,9 +12311,9 @@ module Aws::CloudFront
|
|
12155
12311
|
include Aws::Structure
|
12156
12312
|
end
|
12157
12313
|
|
12158
|
-
# You have reached the maximum number of key groups for this
|
12159
|
-
#
|
12160
|
-
#
|
12314
|
+
# You have reached the maximum number of key groups for this account.
|
12315
|
+
# For more information, see [Quotas][1] (formerly known as limits) in
|
12316
|
+
# the *Amazon CloudFront Developer Guide*.
|
12161
12317
|
#
|
12162
12318
|
#
|
12163
12319
|
#
|
@@ -12193,7 +12349,7 @@ module Aws::CloudFront
|
|
12193
12349
|
include Aws::Structure
|
12194
12350
|
end
|
12195
12351
|
|
12196
|
-
# Your request contains more Lambda function associations than are
|
12352
|
+
# Your request contains more Lambda@Edge function associations than are
|
12197
12353
|
# allowed per distribution.
|
12198
12354
|
#
|
12199
12355
|
# @!attribute [rw] message
|
@@ -12235,8 +12391,8 @@ module Aws::CloudFront
|
|
12235
12391
|
end
|
12236
12392
|
|
12237
12393
|
# You have reached the maximum number of origin request policies for
|
12238
|
-
# this
|
12239
|
-
#
|
12394
|
+
# this account. For more information, see [Quotas][1] (formerly known as
|
12395
|
+
# limits) in the *Amazon CloudFront Developer Guide*.
|
12240
12396
|
#
|
12241
12397
|
#
|
12242
12398
|
#
|
@@ -12351,7 +12507,7 @@ module Aws::CloudFront
|
|
12351
12507
|
end
|
12352
12508
|
|
12353
12509
|
# You have reached the maximum number of real-time log configurations
|
12354
|
-
# for this
|
12510
|
+
# for this account. For more information, see [Quotas][1] (formerly
|
12355
12511
|
# known as limits) in the *Amazon CloudFront Developer Guide*.
|
12356
12512
|
#
|
12357
12513
|
#
|
@@ -12472,8 +12628,8 @@ module Aws::CloudFront
|
|
12472
12628
|
include Aws::Structure
|
12473
12629
|
end
|
12474
12630
|
|
12475
|
-
# A list of
|
12476
|
-
#
|
12631
|
+
# A list of accounts whose public keys CloudFront can use to verify the
|
12632
|
+
# signatures of signed URLs and signed cookies.
|
12477
12633
|
#
|
12478
12634
|
# @note When making an API call, you may pass TrustedSigners
|
12479
12635
|
# data as a hash:
|
@@ -12485,17 +12641,17 @@ module Aws::CloudFront
|
|
12485
12641
|
# }
|
12486
12642
|
#
|
12487
12643
|
# @!attribute [rw] enabled
|
12488
|
-
# This field is `true` if any of the
|
12489
|
-
#
|
12644
|
+
# This field is `true` if any of the accounts have public keys that
|
12645
|
+
# CloudFront can use to verify the signatures of signed URLs and
|
12490
12646
|
# signed cookies. If not, this field is `false`.
|
12491
12647
|
# @return [Boolean]
|
12492
12648
|
#
|
12493
12649
|
# @!attribute [rw] quantity
|
12494
|
-
# The number of
|
12650
|
+
# The number of accounts in the list.
|
12495
12651
|
# @return [Integer]
|
12496
12652
|
#
|
12497
12653
|
# @!attribute [rw] items
|
12498
|
-
# A list of
|
12654
|
+
# A list of account identifiers.
|
12499
12655
|
# @return [Array<String>]
|
12500
12656
|
#
|
12501
12657
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/TrustedSigners AWS API Documentation
|
@@ -12931,7 +13087,7 @@ module Aws::CloudFront
|
|
12931
13087
|
# iam_certificate_id: "string",
|
12932
13088
|
# acm_certificate_arn: "string",
|
12933
13089
|
# ssl_support_method: "sni-only", # accepts sni-only, vip, static-ip
|
12934
|
-
# minimum_protocol_version: "SSLv3", # accepts SSLv3, TLSv1, TLSv1_2016, TLSv1.1_2016, TLSv1.2_2018, TLSv1.2_2019
|
13090
|
+
# minimum_protocol_version: "SSLv3", # accepts SSLv3, TLSv1, TLSv1_2016, TLSv1.1_2016, TLSv1.2_2018, TLSv1.2_2019, TLSv1.2_2021
|
12935
13091
|
# certificate: "string",
|
12936
13092
|
# certificate_source: "cloudfront", # accepts cloudfront, iam, acm
|
12937
13093
|
# },
|
@@ -13570,9 +13726,9 @@ module Aws::CloudFront
|
|
13570
13726
|
# value for `MinimumProtocolVersion`. For more information, see
|
13571
13727
|
# [Security Policy][2] in the *Amazon CloudFront Developer Guide*.
|
13572
13728
|
#
|
13573
|
-
# * The location of the SSL/TLS certificate, [
|
13574
|
-
# (ACM)][3] (recommended) or [
|
13575
|
-
# IAM)][4]. You specify the location by setting a value in one of the
|
13729
|
+
# * The location of the SSL/TLS certificate, [Certificate Manager
|
13730
|
+
# (ACM)][3] (recommended) or [Identity and Access Management
|
13731
|
+
# (IAM)][4]. You specify the location by setting a value in one of the
|
13576
13732
|
# following fields (not both):
|
13577
13733
|
#
|
13578
13734
|
# * `ACMCertificateArn`
|
@@ -13606,7 +13762,7 @@ module Aws::CloudFront
|
|
13606
13762
|
# iam_certificate_id: "string",
|
13607
13763
|
# acm_certificate_arn: "string",
|
13608
13764
|
# ssl_support_method: "sni-only", # accepts sni-only, vip, static-ip
|
13609
|
-
# minimum_protocol_version: "SSLv3", # accepts SSLv3, TLSv1, TLSv1_2016, TLSv1.1_2016, TLSv1.2_2018, TLSv1.2_2019
|
13765
|
+
# minimum_protocol_version: "SSLv3", # accepts SSLv3, TLSv1, TLSv1_2016, TLSv1.1_2016, TLSv1.2_2018, TLSv1.2_2019, TLSv1.2_2021
|
13610
13766
|
# certificate: "string",
|
13611
13767
|
# certificate_source: "cloudfront", # accepts cloudfront, iam, acm
|
13612
13768
|
# }
|
@@ -13629,9 +13785,8 @@ module Aws::CloudFront
|
|
13629
13785
|
#
|
13630
13786
|
# @!attribute [rw] iam_certificate_id
|
13631
13787
|
# If the distribution uses `Aliases` (alternate domain names or
|
13632
|
-
# CNAMEs) and the SSL/TLS certificate is stored in [
|
13633
|
-
# Access Management (
|
13634
|
-
# certificate.
|
13788
|
+
# CNAMEs) and the SSL/TLS certificate is stored in [Identity and
|
13789
|
+
# Access Management (IAM)][1], provide the ID of the IAM certificate.
|
13635
13790
|
#
|
13636
13791
|
# If you specify an IAM certificate ID, you must also specify values
|
13637
13792
|
# for `MinimumProtocolVersion` and `SSLSupportMethod`.
|
@@ -13643,7 +13798,7 @@ module Aws::CloudFront
|
|
13643
13798
|
#
|
13644
13799
|
# @!attribute [rw] acm_certificate_arn
|
13645
13800
|
# If the distribution uses `Aliases` (alternate domain names or
|
13646
|
-
# CNAMEs) and the SSL/TLS certificate is stored in [
|
13801
|
+
# CNAMEs) and the SSL/TLS certificate is stored in [Certificate
|
13647
13802
|
# Manager (ACM)][1], provide the Amazon Resource Name (ARN) of the ACM
|
13648
13803
|
# certificate. CloudFront only supports ACM certificates in the US
|
13649
13804
|
# East (N. Virginia) Region (`us-east-1`).
|
@@ -13673,8 +13828,8 @@ module Aws::CloudFront
|
|
13673
13828
|
# * `static-ip` - Do not specify this value unless your distribution
|
13674
13829
|
# has been enabled for this feature by the CloudFront team. If you
|
13675
13830
|
# have a use case that requires static IP addresses for a
|
13676
|
-
# distribution, contact CloudFront through the [
|
13677
|
-
# Center][2].
|
13831
|
+
# distribution, contact CloudFront through the [Amazon Web Services
|
13832
|
+
# Support Center][2].
|
13678
13833
|
#
|
13679
13834
|
# If the distribution uses the CloudFront domain name such as
|
13680
13835
|
# `d111111abcdef8.cloudfront.net`, don’t set a value for this field.
|