aws-sdk-cloudfront 1.118.0 → 1.132.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.
@@ -353,11 +353,13 @@ module Aws::CloudFront
353
353
  end
354
354
 
355
355
  # @!attribute [rw] target_distribution_id
356
- # The ID of the distribution that you're associating the alias with.
356
+ # The ID of the standard distribution that you're associating the
357
+ # alias with.
357
358
  # @return [String]
358
359
  #
359
360
  # @!attribute [rw] alias
360
- # The alias (also known as a CNAME) to add to the target distribution.
361
+ # The alias (also known as a CNAME) to add to the target standard
362
+ # distribution.
361
363
  # @return [String]
362
364
  #
363
365
  # @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/AssociateAliasRequest AWS API Documentation
@@ -515,6 +517,11 @@ module Aws::CloudFront
515
517
  # distribution configuration and specify all of the cache behaviors that
516
518
  # you want to include in the updated distribution.
517
519
  #
520
+ # If your minimum TTL is greater than 0, CloudFront will cache content
521
+ # for at least the duration specified in the cache policy's minimum
522
+ # TTL, even if the `Cache-Control: no-cache`, `no-store`, or `private`
523
+ # directives are present in the origin headers.
524
+ #
518
525
  # For more information about cache behaviors, see [Cache Behavior
519
526
  # Settings][3] in the *Amazon CloudFront Developer Guide*.
520
527
  #
@@ -557,6 +564,14 @@ module Aws::CloudFront
557
564
  # @!attribute [rw] trusted_signers
558
565
  # We recommend using `TrustedKeyGroups` instead of `TrustedSigners`.
559
566
  #
567
+ # <note markdown="1"> This field only supports standard
568
+ # distributions. You can't specify
569
+ # this field for multi-tenant distributions. For more information, see
570
+ # [Unsupported features for SaaS Manager for Amazon CloudFront][1] in
571
+ # the *Amazon CloudFront Developer Guide*.
572
+ #
573
+ # </note>
574
+ #
560
575
  # A list of Amazon Web Services account IDs whose public keys
561
576
  # CloudFront can use to validate signed URLs or signed cookies.
562
577
  #
@@ -566,12 +581,13 @@ module Aws::CloudFront
566
581
  # a CloudFront key pair in the trusted signer's Amazon Web Services
567
582
  # account. The signed URL or cookie contains information about which
568
583
  # public key CloudFront should use to verify the signature. For more
569
- # information, see [Serving private content][1] in the *Amazon
584
+ # information, see [Serving private content][2] in the *Amazon
570
585
  # CloudFront Developer Guide*.
571
586
  #
572
587
  #
573
588
  #
574
- # [1]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/PrivateContent.html
589
+ # [1]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/distribution-config-options.html#unsupported-saas
590
+ # [2]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/PrivateContent.html
575
591
  # @return [Types::TrustedSigners]
576
592
  #
577
593
  # @!attribute [rw] trusted_key_groups
@@ -649,12 +665,24 @@ module Aws::CloudFront
649
665
  # @return [Types::AllowedMethods]
650
666
  #
651
667
  # @!attribute [rw] smooth_streaming
652
- # Indicates whether you want to distribute media files in the
668
+ # <note markdown="1"> This field only supports standard distributions.
669
+ # You can't specify
670
+ # this field for multi-tenant distributions. For more information, see
671
+ # [Unsupported features for SaaS Manager for Amazon CloudFront][1] in
672
+ # the *Amazon CloudFront Developer Guide*.
673
+ #
674
+ # </note>
675
+ #
676
+ # Indicates whether you want to distribute media files in the
653
677
  # Microsoft Smooth Streaming format using the origin that is
654
678
  # associated with this cache behavior. If so, specify `true`; if not,
655
679
  # specify `false`. If you specify `true` for `SmoothStreaming`, you
656
680
  # can still distribute other content using this cache behavior if the
657
681
  # content matches the value of `PathPattern`.
682
+ #
683
+ #
684
+ #
685
+ # [1]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/distribution-config-options.html#unsupported-saas
658
686
  # @return [Boolean]
659
687
  #
660
688
  # @!attribute [rw] compress
@@ -762,70 +790,98 @@ module Aws::CloudFront
762
790
  # @return [Types::ForwardedValues]
763
791
  #
764
792
  # @!attribute [rw] min_ttl
765
- # This field is deprecated. We recommend that you use the `MinTTL`
793
+ # <note markdown="1"> This field only supports standard distributions.
794
+ # You can't specify
795
+ # this field for multi-tenant distributions. For more information, see
796
+ # [Unsupported features for SaaS Manager for Amazon CloudFront][1] in
797
+ # the *Amazon CloudFront Developer Guide*.
798
+ #
799
+ # </note>
800
+ #
801
+ # This field is deprecated. We recommend that you use the `MinTTL`
766
802
  # field in a cache policy instead of this field. For more information,
767
- # see [Creating cache policies][1] or [Using the managed cache
768
- # policies][2] in the *Amazon CloudFront Developer Guide*.
803
+ # see [Creating cache policies][2] or [Using the managed cache
804
+ # policies][3] in the *Amazon CloudFront Developer Guide*.
769
805
  #
770
- # The minimum amount of time that you want objects to stay in
806
+ # The minimum amount of time that you want objects to stay in
771
807
  # CloudFront caches before CloudFront forwards another request to your
772
808
  # origin to determine whether the object has been updated. For more
773
809
  # information, see [ Managing How Long Content Stays in an Edge Cache
774
- # (Expiration)][3] in the <i> Amazon CloudFront Developer Guide</i>.
810
+ # (Expiration)][4] in the <i> Amazon CloudFront Developer Guide</i>.
775
811
  #
776
- # You must specify `0` for `MinTTL` if you configure CloudFront to
812
+ # You must specify `0` for `MinTTL` if you configure CloudFront to
777
813
  # forward all headers to your origin (under `Headers`, if you specify
778
814
  # `1` for `Quantity` and `*` for `Name`).
779
815
  #
780
816
  #
781
817
  #
782
- # [1]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/controlling-the-cache-key.html#cache-key-create-cache-policy
783
- # [2]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/using-managed-cache-policies.html
784
- # [3]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/Expiration.html
818
+ # [1]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/distribution-config-options.html#unsupported-saas
819
+ # [2]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/controlling-the-cache-key.html#cache-key-create-cache-policy
820
+ # [3]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/using-managed-cache-policies.html
821
+ # [4]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/Expiration.html
785
822
  # @return [Integer]
786
823
  #
787
824
  # @!attribute [rw] default_ttl
788
- # This field is deprecated. We recommend that you use the `DefaultTTL`
825
+ # <note markdown="1"> This field only supports standard distributions.
826
+ # You can't specify
827
+ # this field for multi-tenant distributions. For more information, see
828
+ # [Unsupported features for SaaS Manager for Amazon CloudFront][1] in
829
+ # the *Amazon CloudFront Developer Guide*.
830
+ #
831
+ # </note>
832
+ #
833
+ # This field is deprecated. We recommend that you use the
834
+ # `DefaultTTL`
789
835
  # field in a cache policy instead of this field. For more information,
790
- # see [Creating cache policies][1] or [Using the managed cache
791
- # policies][2] in the *Amazon CloudFront Developer Guide*.
836
+ # see [Creating cache policies][2] or [Using the managed cache
837
+ # policies][3] in the *Amazon CloudFront Developer Guide*.
792
838
  #
793
- # The default amount of time that you want objects to stay in
839
+ # The default amount of time that you want objects to stay in
794
840
  # CloudFront caches before CloudFront forwards another request to your
795
841
  # origin to determine whether the object has been updated. The value
796
842
  # that you specify applies only when your origin does not add HTTP
797
843
  # headers such as `Cache-Control max-age`, `Cache-Control s-maxage`,
798
844
  # and `Expires` to objects. For more information, see [Managing How
799
- # Long Content Stays in an Edge Cache (Expiration)][3] in the *Amazon
845
+ # Long Content Stays in an Edge Cache (Expiration)][4] in the *Amazon
800
846
  # CloudFront Developer Guide*.
801
847
  #
802
848
  #
803
849
  #
804
- # [1]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/controlling-the-cache-key.html#cache-key-create-cache-policy
805
- # [2]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/using-managed-cache-policies.html
806
- # [3]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/Expiration.html
850
+ # [1]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/distribution-config-options.html#unsupported-saas
851
+ # [2]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/controlling-the-cache-key.html#cache-key-create-cache-policy
852
+ # [3]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/using-managed-cache-policies.html
853
+ # [4]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/Expiration.html
807
854
  # @return [Integer]
808
855
  #
809
856
  # @!attribute [rw] max_ttl
810
- # This field is deprecated. We recommend that you use the `MaxTTL`
857
+ # <note markdown="1"> This field only supports standard distributions.
858
+ # You can't specify
859
+ # this field for multi-tenant distributions. For more information, see
860
+ # [Unsupported features for SaaS Manager for Amazon CloudFront][1] in
861
+ # the *Amazon CloudFront Developer Guide*.
862
+ #
863
+ # </note>
864
+ #
865
+ # This field is deprecated. We recommend that you use the `MaxTTL`
811
866
  # field in a cache policy instead of this field. For more information,
812
- # see [Creating cache policies][1] or [Using the managed cache
813
- # policies][2] in the *Amazon CloudFront Developer Guide*.
867
+ # see [Creating cache policies][2] or [Using the managed cache
868
+ # policies][3] in the *Amazon CloudFront Developer Guide*.
814
869
  #
815
- # The maximum amount of time that you want objects to stay in
870
+ # The maximum amount of time that you want objects to stay in
816
871
  # CloudFront caches before CloudFront forwards another request to your
817
872
  # origin to determine whether the object has been updated. The value
818
873
  # that you specify applies only when your origin adds HTTP headers
819
874
  # such as `Cache-Control max-age`, `Cache-Control s-maxage`, and
820
875
  # `Expires` to objects. For more information, see [Managing How Long
821
- # Content Stays in an Edge Cache (Expiration)][3] in the *Amazon
876
+ # Content Stays in an Edge Cache (Expiration)][4] in the *Amazon
822
877
  # CloudFront Developer Guide*.
823
878
  #
824
879
  #
825
880
  #
826
- # [1]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/controlling-the-cache-key.html#cache-key-create-cache-policy
827
- # [2]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/using-managed-cache-policies.html
828
- # [3]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/Expiration.html
881
+ # [1]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/distribution-config-options.html#unsupported-saas
882
+ # [2]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/controlling-the-cache-key.html#cache-key-create-cache-policy
883
+ # [3]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/using-managed-cache-policies.html
884
+ # [4]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/Expiration.html
829
885
  # @return [Integer]
830
886
  #
831
887
  # @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/CacheBehavior AWS API Documentation
@@ -944,6 +1000,11 @@ module Aws::CloudFront
944
1000
  # * The default, minimum, and maximum time to live (TTL) values that you
945
1001
  # want objects to stay in the CloudFront cache.
946
1002
  #
1003
+ # If your minimum TTL is greater than 0, CloudFront will cache content
1004
+ # for at least the duration specified in the cache policy's minimum
1005
+ # TTL, even if the `Cache-Control: no-cache`, `no-store`, or `private`
1006
+ # directives are present in the origin headers.
1007
+ #
947
1008
  # The headers, cookies, and query strings that are included in the cache
948
1009
  # key are also included in requests that CloudFront sends to the origin.
949
1010
  # CloudFront sends a request when it can't find a valid object in its
@@ -1488,24 +1549,25 @@ module Aws::CloudFront
1488
1549
  include Aws::Structure
1489
1550
  end
1490
1551
 
1491
- # An alias (also called a CNAME) and the CloudFront distribution and
1492
- # Amazon Web Services account ID that it's associated with. The
1493
- # distribution and account IDs are partially hidden, which allows you to
1494
- # identify the distributions and accounts that you own, but helps to
1495
- # protect the information of ones that you don't own.
1552
+ # An alias (also called a CNAME) and the CloudFront standard
1553
+ # distribution and Amazon Web Services account ID that it's associated
1554
+ # with. The standard distribution and account IDs are partially hidden,
1555
+ # which allows you to identify the standard distributions and accounts
1556
+ # that you own, and helps to protect the information of ones that you
1557
+ # don't own.
1496
1558
  #
1497
1559
  # @!attribute [rw] alias
1498
1560
  # An alias (also called a CNAME).
1499
1561
  # @return [String]
1500
1562
  #
1501
1563
  # @!attribute [rw] distribution_id
1502
- # The (partially hidden) ID of the CloudFront distribution associated
1503
- # with the alias.
1564
+ # The (partially hidden) ID of the CloudFront standard distribution
1565
+ # associated with the alias.
1504
1566
  # @return [String]
1505
1567
  #
1506
1568
  # @!attribute [rw] account_id
1507
1569
  # The (partially hidden) ID of the Amazon Web Services account that
1508
- # owns the distribution that's associated with the alias.
1570
+ # owns the standard distribution that's associated with the alias.
1509
1571
  # @return [String]
1510
1572
  #
1511
1573
  # @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/ConflictingAlias AWS API Documentation
@@ -1518,12 +1580,12 @@ module Aws::CloudFront
1518
1580
  include Aws::Structure
1519
1581
  end
1520
1582
 
1521
- # A list of aliases (also called CNAMEs) and the CloudFront
1583
+ # A list of aliases (also called CNAMEs) and the CloudFront standard
1522
1584
  # distributions and Amazon Web Services accounts that they are
1523
- # associated with. In the list, the distribution and account IDs are
1524
- # partially hidden, which allows you to identify the distributions and
1525
- # accounts that you own, but helps to protect the information of ones
1526
- # that you don't own.
1585
+ # associated with. In the list, the standard distribution and account
1586
+ # IDs are partially hidden, which allows you to identify the standard
1587
+ # distributions and accounts that you own, but helps to protect the
1588
+ # information of ones that you don't own.
1527
1589
  #
1528
1590
  # @!attribute [rw] next_marker
1529
1591
  # If there are more items in the list than are in this response, this
@@ -3336,26 +3398,26 @@ module Aws::CloudFront
3336
3398
  #
3337
3399
  #
3338
3400
  #
3339
- # [1]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/distribution-web-values-specify.html#DownloadDistValuesOriginSSLProtocols
3401
+ # [1]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/DownloadDistValuesOrigin.html#DownloadDistValuesOriginSSLProtocols
3340
3402
  # @return [Types::OriginSslProtocols]
3341
3403
  #
3342
3404
  # @!attribute [rw] origin_read_timeout
3343
3405
  # Specifies how long, in seconds, CloudFront waits for a response from
3344
3406
  # the origin. This is also known as the *origin response timeout*. The
3345
- # minimum timeout is 1 second, the maximum is 60 seconds, and the
3407
+ # minimum timeout is 1 second, the maximum is 120 seconds, and the
3346
3408
  # default (if you don't specify otherwise) is 30 seconds.
3347
3409
  #
3348
- # For more information, see [Response timeout (custom origins
3349
- # only)][1] in the *Amazon CloudFront Developer Guide*.
3410
+ # For more information, see [Response timeout][1] in the *Amazon
3411
+ # CloudFront Developer Guide*.
3350
3412
  #
3351
3413
  #
3352
3414
  #
3353
- # [1]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/distribution-web-values-specify.html#DownloadDistValuesOriginResponseTimeout
3415
+ # [1]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/DownloadDistValuesOrigin.html#DownloadDistValuesOriginResponseTimeout
3354
3416
  # @return [Integer]
3355
3417
  #
3356
3418
  # @!attribute [rw] origin_keepalive_timeout
3357
3419
  # Specifies how long, in seconds, CloudFront persists its connection
3358
- # to the origin. The minimum timeout is 1 second, the maximum is 60
3420
+ # to the origin. The minimum timeout is 1 second, the maximum is 120
3359
3421
  # seconds, and the default (if you don't specify otherwise) is 5
3360
3422
  # seconds.
3361
3423
  #
@@ -3364,9 +3426,15 @@ module Aws::CloudFront
3364
3426
  #
3365
3427
  #
3366
3428
  #
3367
- # [1]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/distribution-web-values-specify.html#DownloadDistValuesOriginKeepaliveTimeout
3429
+ # [1]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/DownloadDistValuesOrigin.html#DownloadDistValuesOriginKeepaliveTimeout
3368
3430
  # @return [Integer]
3369
3431
  #
3432
+ # @!attribute [rw] ip_address_type
3433
+ # Specifies which IP protocol CloudFront uses when connecting to your
3434
+ # origin. If your origin uses both IPv4 and IPv6 protocols, you can
3435
+ # choose `dualstack` to help optimize reliability.
3436
+ # @return [String]
3437
+ #
3370
3438
  # @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/CustomOriginConfig AWS API Documentation
3371
3439
  #
3372
3440
  class CustomOriginConfig < Struct.new(
@@ -3375,7 +3443,8 @@ module Aws::CloudFront
3375
3443
  :origin_protocol_policy,
3376
3444
  :origin_ssl_protocols,
3377
3445
  :origin_read_timeout,
3378
- :origin_keepalive_timeout)
3446
+ :origin_keepalive_timeout,
3447
+ :ip_address_type)
3379
3448
  SENSITIVE = []
3380
3449
  include Aws::Structure
3381
3450
  end
@@ -3414,6 +3483,11 @@ module Aws::CloudFront
3414
3483
  # of the values of `PathPattern` in `CacheBehavior` elements. You must
3415
3484
  # create exactly one default cache behavior.
3416
3485
  #
3486
+ # If your minimum TTL is greater than 0, CloudFront will cache content
3487
+ # for at least the duration specified in the cache policy's minimum
3488
+ # TTL, even if the `Cache-Control: no-cache`, `no-store`, or `private`
3489
+ # directives are present in the origin headers.
3490
+ #
3417
3491
  # @!attribute [rw] target_origin_id
3418
3492
  # The value of `ID` for the origin that you want CloudFront to route
3419
3493
  # requests to when they use the default cache behavior.
@@ -3422,6 +3496,14 @@ module Aws::CloudFront
3422
3496
  # @!attribute [rw] trusted_signers
3423
3497
  # We recommend using `TrustedKeyGroups` instead of `TrustedSigners`.
3424
3498
  #
3499
+ # <note markdown="1"> This field only supports standard
3500
+ # distributions. You can't specify
3501
+ # this field for multi-tenant distributions. For more information, see
3502
+ # [Unsupported features for SaaS Manager for Amazon CloudFront][1] in
3503
+ # the *Amazon CloudFront Developer Guide*.
3504
+ #
3505
+ # </note>
3506
+ #
3425
3507
  # A list of Amazon Web Services account IDs whose public keys
3426
3508
  # CloudFront can use to validate signed URLs or signed cookies.
3427
3509
  #
@@ -3431,12 +3513,13 @@ module Aws::CloudFront
3431
3513
  # a CloudFront key pair in a trusted signer's Amazon Web Services
3432
3514
  # account. The signed URL or cookie contains information about which
3433
3515
  # public key CloudFront should use to verify the signature. For more
3434
- # information, see [Serving private content][1] in the *Amazon
3516
+ # information, see [Serving private content][2] in the *Amazon
3435
3517
  # CloudFront Developer Guide*.
3436
3518
  #
3437
3519
  #
3438
3520
  #
3439
- # [1]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/PrivateContent.html
3521
+ # [1]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/distribution-config-options.html#unsupported-saas
3522
+ # [2]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/PrivateContent.html
3440
3523
  # @return [Types::TrustedSigners]
3441
3524
  #
3442
3525
  # @!attribute [rw] trusted_key_groups
@@ -3514,12 +3597,24 @@ module Aws::CloudFront
3514
3597
  # @return [Types::AllowedMethods]
3515
3598
  #
3516
3599
  # @!attribute [rw] smooth_streaming
3517
- # Indicates whether you want to distribute media files in the
3600
+ # <note markdown="1"> This field only supports standard distributions.
3601
+ # You can't specify
3602
+ # this field for multi-tenant distributions. For more information, see
3603
+ # [Unsupported features for SaaS Manager for Amazon CloudFront][1] in
3604
+ # the *Amazon CloudFront Developer Guide*.
3605
+ #
3606
+ # </note>
3607
+ #
3608
+ # Indicates whether you want to distribute media files in the
3518
3609
  # Microsoft Smooth Streaming format using the origin that is
3519
3610
  # associated with this cache behavior. If so, specify `true`; if not,
3520
3611
  # specify `false`. If you specify `true` for `SmoothStreaming`, you
3521
3612
  # can still distribute other content using this cache behavior if the
3522
3613
  # content matches the value of `PathPattern`.
3614
+ #
3615
+ #
3616
+ #
3617
+ # [1]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/distribution-config-options.html#unsupported-saas
3523
3618
  # @return [Boolean]
3524
3619
  #
3525
3620
  # @!attribute [rw] compress
@@ -3627,70 +3722,98 @@ module Aws::CloudFront
3627
3722
  # @return [Types::ForwardedValues]
3628
3723
  #
3629
3724
  # @!attribute [rw] min_ttl
3630
- # This field is deprecated. We recommend that you use the `MinTTL`
3725
+ # <note markdown="1"> This field only supports standard distributions.
3726
+ # You can't specify
3727
+ # this field for multi-tenant distributions. For more information, see
3728
+ # [Unsupported features for SaaS Manager for Amazon CloudFront][1] in
3729
+ # the *Amazon CloudFront Developer Guide*.
3730
+ #
3731
+ # </note>
3732
+ #
3733
+ # This field is deprecated. We recommend that you use the `MinTTL`
3631
3734
  # field in a cache policy instead of this field. For more information,
3632
- # see [Creating cache policies][1] or [Using the managed cache
3633
- # policies][2] in the *Amazon CloudFront Developer Guide*.
3735
+ # see [Creating cache policies][2] or [Using the managed cache
3736
+ # policies][3] in the *Amazon CloudFront Developer Guide*.
3634
3737
  #
3635
- # The minimum amount of time that you want objects to stay in
3738
+ # The minimum amount of time that you want objects to stay in
3636
3739
  # CloudFront caches before CloudFront forwards another request to your
3637
3740
  # origin to determine whether the object has been updated. For more
3638
3741
  # information, see [Managing How Long Content Stays in an Edge Cache
3639
- # (Expiration)][3] in the *Amazon CloudFront Developer Guide*.
3742
+ # (Expiration)][4] in the *Amazon CloudFront Developer Guide*.
3640
3743
  #
3641
- # You must specify `0` for `MinTTL` if you configure CloudFront to
3744
+ # You must specify `0` for `MinTTL` if you configure CloudFront to
3642
3745
  # forward all headers to your origin (under `Headers`, if you specify
3643
3746
  # `1` for `Quantity` and `*` for `Name`).
3644
3747
  #
3645
3748
  #
3646
3749
  #
3647
- # [1]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/controlling-the-cache-key.html#cache-key-create-cache-policy
3648
- # [2]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/using-managed-cache-policies.html
3649
- # [3]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/Expiration.html
3750
+ # [1]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/distribution-config-options.html#unsupported-saas
3751
+ # [2]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/controlling-the-cache-key.html#cache-key-create-cache-policy
3752
+ # [3]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/using-managed-cache-policies.html
3753
+ # [4]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/Expiration.html
3650
3754
  # @return [Integer]
3651
3755
  #
3652
3756
  # @!attribute [rw] default_ttl
3653
- # This field is deprecated. We recommend that you use the `DefaultTTL`
3757
+ # <note markdown="1"> This field only supports standard distributions.
3758
+ # You can't specify
3759
+ # this field for multi-tenant distributions. For more information, see
3760
+ # [Unsupported features for SaaS Manager for Amazon CloudFront][1] in
3761
+ # the *Amazon CloudFront Developer Guide*.
3762
+ #
3763
+ # </note>
3764
+ #
3765
+ # This field is deprecated. We recommend that you use the
3766
+ # `DefaultTTL`
3654
3767
  # field in a cache policy instead of this field. For more information,
3655
- # see [Creating cache policies][1] or [Using the managed cache
3656
- # policies][2] in the *Amazon CloudFront Developer Guide*.
3768
+ # see [Creating cache policies][2] or [Using the managed cache
3769
+ # policies][3] in the *Amazon CloudFront Developer Guide*.
3657
3770
  #
3658
- # The default amount of time that you want objects to stay in
3771
+ # The default amount of time that you want objects to stay in
3659
3772
  # CloudFront caches before CloudFront forwards another request to your
3660
3773
  # origin to determine whether the object has been updated. The value
3661
3774
  # that you specify applies only when your origin does not add HTTP
3662
3775
  # headers such as `Cache-Control max-age`, `Cache-Control s-maxage`,
3663
3776
  # and `Expires` to objects. For more information, see [Managing How
3664
- # Long Content Stays in an Edge Cache (Expiration)][3] in the *Amazon
3777
+ # Long Content Stays in an Edge Cache (Expiration)][4] in the *Amazon
3665
3778
  # CloudFront Developer Guide*.
3666
3779
  #
3667
3780
  #
3668
3781
  #
3669
- # [1]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/controlling-the-cache-key.html#cache-key-create-cache-policy
3670
- # [2]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/using-managed-cache-policies.html
3671
- # [3]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/Expiration.html
3782
+ # [1]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/distribution-config-options.html#unsupported-saas
3783
+ # [2]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/controlling-the-cache-key.html#cache-key-create-cache-policy
3784
+ # [3]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/using-managed-cache-policies.html
3785
+ # [4]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/Expiration.html
3672
3786
  # @return [Integer]
3673
3787
  #
3674
3788
  # @!attribute [rw] max_ttl
3675
- # This field is deprecated. We recommend that you use the `MaxTTL`
3789
+ # <note markdown="1"> This field only supports standard distributions.
3790
+ # You can't specify
3791
+ # this field for multi-tenant distributions. For more information, see
3792
+ # [Unsupported features for SaaS Manager for Amazon CloudFront][1] in
3793
+ # the *Amazon CloudFront Developer Guide*.
3794
+ #
3795
+ # </note>
3796
+ #
3797
+ # This field is deprecated. We recommend that you use the `MaxTTL`
3676
3798
  # field in a cache policy instead of this field. For more information,
3677
- # see [Creating cache policies][1] or [Using the managed cache
3678
- # policies][2] in the *Amazon CloudFront Developer Guide*.
3799
+ # see [Creating cache policies][2] or [Using the managed cache
3800
+ # policies][3] in the *Amazon CloudFront Developer Guide*.
3679
3801
  #
3680
- # The maximum amount of time that you want objects to stay in
3802
+ # The maximum amount of time that you want objects to stay in
3681
3803
  # CloudFront caches before CloudFront forwards another request to your
3682
3804
  # origin to determine whether the object has been updated. The value
3683
3805
  # that you specify applies only when your origin adds HTTP headers
3684
3806
  # such as `Cache-Control max-age`, `Cache-Control s-maxage`, and
3685
3807
  # `Expires` to objects. For more information, see [Managing How Long
3686
- # Content Stays in an Edge Cache (Expiration)][3] in the *Amazon
3808
+ # Content Stays in an Edge Cache (Expiration)][4] in the *Amazon
3687
3809
  # CloudFront Developer Guide*.
3688
3810
  #
3689
3811
  #
3690
3812
  #
3691
- # [1]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/controlling-the-cache-key.html#cache-key-create-cache-policy
3692
- # [2]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/using-managed-cache-policies.html
3693
- # [3]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/Expiration.html
3813
+ # [1]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/distribution-config-options.html#unsupported-saas
3814
+ # [2]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/controlling-the-cache-key.html#cache-key-create-cache-policy
3815
+ # [3]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/using-managed-cache-policies.html
3816
+ # [4]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/Expiration.html
3694
3817
  # @return [Integer]
3695
3818
  #
3696
3819
  # @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/DefaultCacheBehavior AWS API Documentation
@@ -4406,8 +4529,20 @@ module Aws::CloudFront
4406
4529
  # @return [String]
4407
4530
  #
4408
4531
  # @!attribute [rw] aliases
4409
- # A complex type that contains information about CNAMEs (alternate
4532
+ # <note markdown="1"> This field only supports standard distributions.
4533
+ # You can't specify
4534
+ # this field for multi-tenant distributions. For more information, see
4535
+ # [Unsupported features for SaaS Manager for Amazon CloudFront][1] in
4536
+ # the *Amazon CloudFront Developer Guide*.
4537
+ #
4538
+ # </note>
4539
+ #
4540
+ # A complex type that contains information about CNAMEs (alternate
4410
4541
  # domain names), if any, for this distribution.
4542
+ #
4543
+ #
4544
+ #
4545
+ # [1]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/distribution-config-options.html#unsupported-saas
4411
4546
  # @return [Types::Aliases]
4412
4547
  #
4413
4548
  # @!attribute [rw] default_root_object
@@ -4501,27 +4636,37 @@ module Aws::CloudFront
4501
4636
  # @return [Types::LoggingConfig]
4502
4637
  #
4503
4638
  # @!attribute [rw] price_class
4504
- # The price class that corresponds with the maximum price that you
4639
+ # <note markdown="1"> This field only supports standard distributions.
4640
+ # You can't specify
4641
+ # this field for multi-tenant distributions. For more information, see
4642
+ # [Unsupported features for SaaS Manager for Amazon CloudFront][1] in
4643
+ # the *Amazon CloudFront Developer Guide*.
4644
+ #
4645
+ # </note>
4646
+ #
4647
+ # The price class that corresponds with the maximum price that you
4505
4648
  # want to pay for CloudFront service. If you specify `PriceClass_All`,
4506
4649
  # CloudFront responds to requests for your objects from all CloudFront
4507
4650
  # edge locations.
4508
4651
  #
4509
- # If you specify a price class other than `PriceClass_All`, CloudFront
4652
+ # If you specify a price class other than `PriceClass_All`,
4653
+ # CloudFront
4510
4654
  # serves your objects from the CloudFront edge location that has the
4511
4655
  # lowest latency among the edge locations in your price class. Viewers
4512
4656
  # who are in or near regions that are excluded from your specified
4513
4657
  # price class may encounter slower performance.
4514
4658
  #
4515
- # For more information about price classes, see [Choosing the Price
4516
- # Class for a CloudFront Distribution][1] in the *Amazon CloudFront
4659
+ # For more information about price classes, see [Choosing the Price
4660
+ # Class for a CloudFront Distribution][2] in the *Amazon CloudFront
4517
4661
  # Developer Guide*. For information about CloudFront pricing,
4518
4662
  # including how price classes (such as Price Class 100) map to
4519
- # CloudFront regions, see [Amazon CloudFront Pricing][2].
4663
+ # CloudFront regions, see [Amazon CloudFront Pricing][3].
4520
4664
  #
4521
4665
  #
4522
4666
  #
4523
- # [1]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/PriceClass.html
4524
- # [2]: http://aws.amazon.com/cloudfront/pricing/
4667
+ # [1]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/distribution-config-options.html#unsupported-saas
4668
+ # [2]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/PriceClass.html
4669
+ # [3]: http://aws.amazon.com/cloudfront/pricing/
4525
4670
  # @return [String]
4526
4671
  #
4527
4672
  # @!attribute [rw] enabled
@@ -4540,14 +4685,20 @@ module Aws::CloudFront
4540
4685
  # @return [Types::Restrictions]
4541
4686
  #
4542
4687
  # @!attribute [rw] web_acl_id
4543
- # A unique identifier that specifies the WAF web ACL, if any, to
4688
+ # <note markdown="1"> Multi-tenant distributions only support WAF V2
4689
+ # web ACLs.
4690
+ #
4691
+ # </note>
4692
+ #
4693
+ # A unique identifier that specifies the WAF web ACL, if any, to
4544
4694
  # associate with this distribution. To specify a web ACL created using
4545
4695
  # the latest version of WAF, use the ACL ARN, for example
4546
4696
  # `arn:aws:wafv2:us-east-1:123456789012:global/webacl/ExampleWebACL/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111`.
4547
4697
  # To specify a web ACL created using WAF Classic, use the ACL ID, for
4548
4698
  # example `a1b2c3d4-5678-90ab-cdef-EXAMPLE11111`.
4549
4699
  #
4550
- # WAF is a web application firewall that lets you monitor the HTTP and
4700
+ # WAF is a web application firewall that lets you monitor the HTTP
4701
+ # and
4551
4702
  # HTTPS requests that are forwarded to CloudFront, and lets you
4552
4703
  # control access to your content. Based on conditions that you
4553
4704
  # specify, such as the IP addresses that requests originate from or
@@ -4586,14 +4737,20 @@ module Aws::CloudFront
4586
4737
  # @return [String]
4587
4738
  #
4588
4739
  # @!attribute [rw] is_ipv6_enabled
4589
- # If you want CloudFront to respond to IPv6 DNS requests with an IPv6
4740
+ # <note markdown="1"> To use this field for a multi-tenant
4741
+ # distribution, use a connection
4742
+ # group instead. For more information, see [ConnectionGroup][1].
4743
+ #
4744
+ # </note>
4745
+ #
4746
+ # If you want CloudFront to respond to IPv6 DNS requests with an IPv6
4590
4747
  # address for your distribution, specify `true`. If you specify
4591
4748
  # `false`, CloudFront responds to IPv6 DNS requests with the DNS
4592
4749
  # response code `NOERROR` and with no IP addresses. This allows
4593
4750
  # viewers to submit a second request, for an IPv4 address for your
4594
4751
  # distribution.
4595
4752
  #
4596
- # In general, you should enable IPv6 if you have users on IPv6
4753
+ # In general, you should enable IPv6 if you have users on IPv6
4597
4754
  # networks who want to access your content. However, if you're using
4598
4755
  # signed URLs or signed cookies to restrict access to your content,
4599
4756
  # and if you're using a custom policy that includes the `IpAddress`
@@ -4602,22 +4759,22 @@ module Aws::CloudFront
4602
4759
  # by IP address and not restrict access to other content (or restrict
4603
4760
  # access but not by IP address), you can create two distributions. For
4604
4761
  # more information, see [Creating a Signed URL Using a Custom
4605
- # Policy][1] in the *Amazon CloudFront Developer Guide*.
4762
+ # Policy][2] in the *Amazon CloudFront Developer Guide*.
4606
4763
  #
4607
- # If you're using an Route 53 Amazon Web Services Integration alias
4764
+ # If you're using an Route 53 Amazon Web Services Integration alias
4608
4765
  # resource record set to route traffic to your CloudFront
4609
4766
  # distribution, you need to create a second alias resource record set
4610
4767
  # when both of the following are true:
4611
4768
  #
4612
- # * You enable IPv6 for the distribution
4769
+ # * You enable IPv6 for the distribution
4613
4770
  #
4614
4771
  # * You're using alternate domain names in the URLs for your objects
4615
4772
  #
4616
- # For more information, see [Routing Traffic to an Amazon CloudFront
4617
- # Web Distribution by Using Your Domain Name][2] in the *Route 53
4773
+ # For more information, see [Routing Traffic to an Amazon CloudFront
4774
+ # Web Distribution by Using Your Domain Name][3] in the *Route 53
4618
4775
  # Amazon Web Services Integration Developer Guide*.
4619
4776
  #
4620
- # If you created a CNAME resource record set, either with Route 53
4777
+ # If you created a CNAME resource record set, either with Route 53
4621
4778
  # Amazon Web Services Integration or with another DNS service, you
4622
4779
  # don't need to make any changes. A CNAME record will route traffic
4623
4780
  # to your distribution regardless of the IP address format of the
@@ -4625,32 +4782,81 @@ module Aws::CloudFront
4625
4782
  #
4626
4783
  #
4627
4784
  #
4628
- # [1]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/private-content-creating-signed-url-custom-policy.html
4629
- # [2]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/routing-to-cloudfront-distribution.html
4785
+ # [1]: https://docs.aws.amazon.com/cloudfront/latest/APIReference/API_ConnectionGroup.html
4786
+ # [2]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/private-content-creating-signed-url-custom-policy.html
4787
+ # [3]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/routing-to-cloudfront-distribution.html
4630
4788
  # @return [Boolean]
4631
4789
  #
4632
4790
  # @!attribute [rw] continuous_deployment_policy_id
4633
- # The identifier of a continuous deployment policy. For more
4791
+ # <note markdown="1"> This field only supports standard distributions.
4792
+ # You can't specify
4793
+ # this field for multi-tenant distributions. For more information, see
4794
+ # [Unsupported features for SaaS Manager for Amazon CloudFront][1] in
4795
+ # the *Amazon CloudFront Developer Guide*.
4796
+ #
4797
+ # </note>
4798
+ #
4799
+ # The identifier of a continuous deployment policy. For more
4634
4800
  # information, see `CreateContinuousDeploymentPolicy`.
4801
+ #
4802
+ #
4803
+ #
4804
+ # [1]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/distribution-config-options.html#unsupported-saas
4635
4805
  # @return [String]
4636
4806
  #
4637
4807
  # @!attribute [rw] staging
4638
- # A Boolean that indicates whether this is a staging distribution.
4808
+ # <note markdown="1"> This field only supports standard distributions.
4809
+ # You can't specify
4810
+ # this field for multi-tenant distributions. For more information, see
4811
+ # [Unsupported features for SaaS Manager for Amazon CloudFront][1] in
4812
+ # the *Amazon CloudFront Developer Guide*.
4813
+ #
4814
+ # </note>
4815
+ #
4816
+ # A Boolean that indicates whether this is a staging distribution.
4639
4817
  # When this value is `true`, this is a staging distribution. When this
4640
4818
  # value is `false`, this is not a staging distribution.
4819
+ #
4820
+ #
4821
+ #
4822
+ # [1]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/distribution-config-options.html#unsupported-saas
4641
4823
  # @return [Boolean]
4642
4824
  #
4643
4825
  # @!attribute [rw] anycast_ip_list_id
4644
- # ID of the Anycast static IP list that is associated with the
4826
+ # <note markdown="1"> To use this field for a multi-tenant
4827
+ # distribution, use a connection
4828
+ # group instead. For more information, see [ConnectionGroup][1].
4829
+ #
4830
+ # </note>
4831
+ #
4832
+ # ID of the Anycast static IP list that is associated with the
4645
4833
  # distribution.
4834
+ #
4835
+ #
4836
+ #
4837
+ # [1]: https://docs.aws.amazon.com/cloudfront/latest/APIReference/API_ConnectionGroup.html
4646
4838
  # @return [String]
4647
4839
  #
4648
4840
  # @!attribute [rw] tenant_config
4649
- # A distribution tenant configuration.
4841
+ # <note markdown="1"> This field only supports multi-tenant
4842
+ # distributions. You can't
4843
+ # specify this field for standard distributions. For more information,
4844
+ # see [Unsupported features for SaaS Manager for Amazon CloudFront][1]
4845
+ # in the *Amazon CloudFront Developer Guide*.
4846
+ #
4847
+ # </note>
4848
+ #
4849
+ # A distribution tenant configuration.
4850
+ #
4851
+ #
4852
+ #
4853
+ # [1]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/distribution-config-options.html#unsupported-saas
4650
4854
  # @return [Types::TenantConfig]
4651
4855
  #
4652
4856
  # @!attribute [rw] connection_mode
4653
- # The connection mode to filter distributions by.
4857
+ # This field specifies whether the connection mode is through a
4858
+ # standard distribution (direct) or a multi-tenant distribution with
4859
+ # distribution tenants (tenant-only).
4654
4860
  # @return [String]
4655
4861
  #
4656
4862
  # @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/DistributionConfig AWS API Documentation
@@ -4893,8 +5099,20 @@ module Aws::CloudFront
4893
5099
  # @return [String]
4894
5100
  #
4895
5101
  # @!attribute [rw] price_class
4896
- # A complex type that contains information about price class for this
5102
+ # <note markdown="1"> This field only supports standard distributions.
5103
+ # You can't specify
5104
+ # this field for multi-tenant distributions. For more information, see
5105
+ # [Unsupported features for SaaS Manager for Amazon CloudFront][1] in
5106
+ # the *Amazon CloudFront Developer Guide*.
5107
+ #
5108
+ # </note>
5109
+ #
5110
+ # A complex type that contains information about price class for this
4897
5111
  # streaming distribution.
5112
+ #
5113
+ #
5114
+ #
5115
+ # [1]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/distribution-config-options.html#unsupported-saas
4898
5116
  # @return [String]
4899
5117
  #
4900
5118
  # @!attribute [rw] enabled
@@ -4951,7 +5169,9 @@ module Aws::CloudFront
4951
5169
  # @return [Boolean]
4952
5170
  #
4953
5171
  # @!attribute [rw] connection_mode
4954
- # The connection mode to filter distributions by.
5172
+ # This field specifies whether the connection mode is through a
5173
+ # standard distribution (direct) or a multi-tenant distribution with
5174
+ # distribution tenants (tenant-only).
4955
5175
  # @return [String]
4956
5176
  #
4957
5177
  # @!attribute [rw] anycast_ip_list_id
@@ -4986,7 +5206,7 @@ module Aws::CloudFront
4986
5206
  :staging,
4987
5207
  :connection_mode,
4988
5208
  :anycast_ip_list_id)
4989
- SENSITIVE = []
5209
+ SENSITIVE = [:comment]
4990
5210
  include Aws::Structure
4991
5211
  end
4992
5212
 
@@ -5750,25 +5970,34 @@ module Aws::CloudFront
5750
5970
  include Aws::Structure
5751
5971
  end
5752
5972
 
5753
- # This field is deprecated. We recommend that you use a cache policy or
5973
+ # <note markdown="1"> This field only supports standard distributions.
5974
+ # You can't specify
5975
+ # this field for multi-tenant distributions. For more information, see
5976
+ # [Unsupported features for SaaS Manager for Amazon CloudFront][1] in
5977
+ # the *Amazon CloudFront Developer Guide*.
5978
+ #
5979
+ # </note>
5980
+ #
5981
+ # This field is deprecated. We recommend that you use a cache policy or
5754
5982
  # an origin request policy instead of this field.
5755
5983
  #
5756
- # If you want to include values in the cache key, use a cache policy.
5757
- # For more information, see [Creating cache policies][1] in the *Amazon
5984
+ # If you want to include values in the cache key, use a cache policy.
5985
+ # For more information, see [Creating cache policies][2] in the *Amazon
5758
5986
  # CloudFront Developer Guide*.
5759
5987
  #
5760
- # If you want to send values to the origin but not include them in the
5988
+ # If you want to send values to the origin but not include them in the
5761
5989
  # cache key, use an origin request policy. For more information, see
5762
- # [Creating origin request policies][2] in the *Amazon CloudFront
5990
+ # [Creating origin request policies][3] in the *Amazon CloudFront
5763
5991
  # Developer Guide*.
5764
5992
  #
5765
- # A complex type that specifies how CloudFront handles query strings,
5993
+ # A complex type that specifies how CloudFront handles query strings,
5766
5994
  # cookies, and HTTP headers.
5767
5995
  #
5768
5996
  #
5769
5997
  #
5770
- # [1]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/controlling-the-cache-key.html#cache-key-create-cache-policy
5771
- # [2]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/controlling-origin-requests.html#origin-request-create-origin-request-policy
5998
+ # [1]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/distribution-config-options.html#unsupported-saas
5999
+ # [2]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/controlling-the-cache-key.html#cache-key-create-cache-policy
6000
+ # [3]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/controlling-origin-requests.html#origin-request-create-origin-request-policy
5772
6001
  #
5773
6002
  # @!attribute [rw] query_string
5774
6003
  # This field is deprecated. We recommend that you use a cache policy
@@ -8507,8 +8736,8 @@ module Aws::CloudFront
8507
8736
  end
8508
8737
 
8509
8738
  # @!attribute [rw] distribution_id
8510
- # The ID of a distribution in your account that has an attached
8511
- # SSL/TLS certificate that includes the provided alias.
8739
+ # The ID of a standard distribution in your account that has an
8740
+ # attached TLS certificate that includes the provided alias.
8512
8741
  # @return [String]
8513
8742
  #
8514
8743
  # @!attribute [rw] alias
@@ -8802,7 +9031,9 @@ module Aws::CloudFront
8802
9031
  # @return [Integer]
8803
9032
  #
8804
9033
  # @!attribute [rw] connection_mode
8805
- # The connection mode to filter distributions by.
9034
+ # This field specifies whether the connection mode is through a
9035
+ # standard distribution (direct) or a multi-tenant distribution with
9036
+ # distribution tenants (tenant-only).
8806
9037
  # @return [String]
8807
9038
  #
8808
9039
  # @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/ListDistributionsByConnectionModeRequest AWS API Documentation
@@ -9125,9 +9356,9 @@ module Aws::CloudFront
9125
9356
  # @return [String]
9126
9357
  #
9127
9358
  # @!attribute [rw] domain_control_validation_resource
9128
- # The distribution resource identifier. This can be the distribution
9129
- # or distribution tenant that has a valid certificate, which covers
9130
- # the domain that you specify.
9359
+ # The distribution resource identifier. This can be the standard
9360
+ # distribution or distribution tenant that has a valid certificate,
9361
+ # which covers the domain that you specify.
9131
9362
  # @return [Types::DistributionResourceId]
9132
9363
  #
9133
9364
  # @!attribute [rw] max_items
@@ -10285,6 +10516,25 @@ module Aws::CloudFront
10285
10516
  # [1]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/distribution-web-values-specify.html#origin-connection-timeout
10286
10517
  # @return [Integer]
10287
10518
  #
10519
+ # @!attribute [rw] response_completion_timeout
10520
+ # The time (in seconds) that a request from CloudFront to the origin
10521
+ # can stay open and wait for a response. If the complete response
10522
+ # isn't received from the origin by this time, CloudFront ends the
10523
+ # connection.
10524
+ #
10525
+ # The value for `ResponseCompletionTimeout` must be equal to or
10526
+ # greater than the value for `OriginReadTimeout`. If you don't set a
10527
+ # value for `ResponseCompletionTimeout`, CloudFront doesn't enforce a
10528
+ # maximum value.
10529
+ #
10530
+ # For more information, see [Response completion timeout][1] in the
10531
+ # *Amazon CloudFront Developer Guide*.
10532
+ #
10533
+ #
10534
+ #
10535
+ # [1]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/DownloadDistValuesOrigin.html#response-completion-timeout
10536
+ # @return [Integer]
10537
+ #
10288
10538
  # @!attribute [rw] origin_shield
10289
10539
  # CloudFront Origin Shield. Using Origin Shield can help reduce the
10290
10540
  # load on your origin.
@@ -10320,6 +10570,7 @@ module Aws::CloudFront
10320
10570
  :vpc_origin_config,
10321
10571
  :connection_attempts,
10322
10572
  :connection_timeout,
10573
+ :response_completion_timeout,
10323
10574
  :origin_shield,
10324
10575
  :origin_access_control_id)
10325
10576
  SENSITIVE = []
@@ -11301,6 +11552,10 @@ module Aws::CloudFront
11301
11552
  # A public key that you can use with [signed URLs and signed
11302
11553
  # cookies][1], or with [field-level encryption][2].
11303
11554
  #
11555
+ # CloudFront supports signed URLs and signed cookies with RSA 2048 or
11556
+ # ECDSA 256 key signatures. Field-level encryption is only compatible
11557
+ # with RSA 2048 key signatures.
11558
+ #
11304
11559
  #
11305
11560
  #
11306
11561
  # [1]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/PrivateContent.html
@@ -11352,6 +11607,10 @@ module Aws::CloudFront
11352
11607
  # [signed URLs and signed cookies][1], or with [field-level
11353
11608
  # encryption][2].
11354
11609
  #
11610
+ # CloudFront supports signed URLs and signed cookies with RSA 2048 or
11611
+ # ECDSA 256 key signatures. Field-level encryption is only compatible
11612
+ # with RSA 2048 key signatures.
11613
+ #
11355
11614
  #
11356
11615
  #
11357
11616
  # [1]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/PrivateContent.html
@@ -12823,10 +13082,25 @@ module Aws::CloudFront
12823
13082
  # [2]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/PrivateContent.html
12824
13083
  # @return [String]
12825
13084
  #
13085
+ # @!attribute [rw] origin_read_timeout
13086
+ # Specifies how long, in seconds, CloudFront waits for a response from
13087
+ # the origin. This is also known as the *origin response timeout*. The
13088
+ # minimum timeout is 1 second, the maximum is 120 seconds, and the
13089
+ # default (if you don't specify otherwise) is 30 seconds.
13090
+ #
13091
+ # For more information, see [Response timeout][1] in the *Amazon
13092
+ # CloudFront Developer Guide*.
13093
+ #
13094
+ #
13095
+ #
13096
+ # [1]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/DownloadDistValuesOrigin.html#DownloadDistValuesOriginResponseTimeout
13097
+ # @return [Integer]
13098
+ #
12826
13099
  # @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/S3OriginConfig AWS API Documentation
12827
13100
  #
12828
13101
  class S3OriginConfig < Struct.new(
12829
- :origin_access_identity)
13102
+ :origin_access_identity,
13103
+ :origin_read_timeout)
12830
13104
  SENSITIVE = []
12831
13105
  include Aws::Structure
12832
13106
  end
@@ -13328,7 +13602,7 @@ module Aws::CloudFront
13328
13602
  :comment,
13329
13603
  :default_value,
13330
13604
  :required)
13331
- SENSITIVE = []
13605
+ SENSITIVE = [:comment]
13332
13606
  include Aws::Structure
13333
13607
  end
13334
13608
 
@@ -13406,7 +13680,19 @@ module Aws::CloudFront
13406
13680
  include Aws::Structure
13407
13681
  end
13408
13682
 
13409
- # The configuration for a distribution tenant.
13683
+ # <note markdown="1"> This field only supports multi-tenant
13684
+ # distributions. You can't
13685
+ # specify this field for standard distributions. For more information,
13686
+ # see [Unsupported features for SaaS Manager for Amazon CloudFront][1]
13687
+ # in the *Amazon CloudFront Developer Guide*.
13688
+ #
13689
+ # </note>
13690
+ #
13691
+ # The configuration for a distribution tenant.
13692
+ #
13693
+ #
13694
+ #
13695
+ # [1]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/distribution-config-options.html#unsupported-saas
13410
13696
  #
13411
13697
  # @!attribute [rw] parameter_definitions
13412
13698
  # The parameters that you specify for a distribution tenant.
@@ -14895,12 +15181,13 @@ module Aws::CloudFront
14895
15181
  # @return [String]
14896
15182
  #
14897
15183
  # @!attribute [rw] target_resource
14898
- # The target distribution resource for the domain. You can specify
14899
- # either `DistributionId` or `DistributionTenantId`, but not both.
15184
+ # The target standard distribution or distribution tenant resource for
15185
+ # the domain. You can specify either `DistributionId` or
15186
+ # `DistributionTenantId`, but not both.
14900
15187
  # @return [Types::DistributionResourceId]
14901
15188
  #
14902
15189
  # @!attribute [rw] if_match
14903
- # The value of the `ETag` identifier for the distribution or
15190
+ # The value of the `ETag` identifier for the standard distribution or
14904
15191
  # distribution tenant that will be associated with the domain.
14905
15192
  # @return [String]
14906
15193
  #
@@ -14923,8 +15210,8 @@ module Aws::CloudFront
14923
15210
  # @return [String]
14924
15211
  #
14925
15212
  # @!attribute [rw] etag
14926
- # The current version of the target distribution or distribution
14927
- # tenant that was associated with the domain.
15213
+ # The current version of the target standard distribution or
15214
+ # distribution tenant that was associated with the domain.
14928
15215
  # @return [String]
14929
15216
  #
14930
15217
  # @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/UpdateDomainAssociationResult AWS API Documentation
@@ -15589,16 +15876,25 @@ module Aws::CloudFront
15589
15876
  # @return [Boolean]
15590
15877
  #
15591
15878
  # @!attribute [rw] iam_certificate_id
15592
- # If the distribution uses `Aliases` (alternate domain names or
15879
+ # <note markdown="1"> This field only supports standard distributions.
15880
+ # You can't specify
15881
+ # this field for multi-tenant distributions. For more information, see
15882
+ # [Unsupported features for SaaS Manager for Amazon CloudFront][1] in
15883
+ # the *Amazon CloudFront Developer Guide*.
15884
+ #
15885
+ # </note>
15886
+ #
15887
+ # If the distribution uses `Aliases` (alternate domain names or
15593
15888
  # CNAMEs) and the SSL/TLS certificate is stored in [Identity and
15594
- # Access Management (IAM)][1], provide the ID of the IAM certificate.
15889
+ # Access Management (IAM)][2], provide the ID of the IAM certificate.
15595
15890
  #
15596
- # If you specify an IAM certificate ID, you must also specify values
15891
+ # If you specify an IAM certificate ID, you must also specify values
15597
15892
  # for `MinimumProtocolVersion` and `SSLSupportMethod`.
15598
15893
  #
15599
15894
  #
15600
15895
  #
15601
- # [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_server-certs.html
15896
+ # [1]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/distribution-config-options.html#unsupported-saas
15897
+ # [2]: https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_server-certs.html
15602
15898
  # @return [String]
15603
15899
  #
15604
15900
  # @!attribute [rw] acm_certificate_arn
@@ -15763,20 +16059,20 @@ module Aws::CloudFront
15763
16059
  # @!attribute [rw] origin_read_timeout
15764
16060
  # Specifies how long, in seconds, CloudFront waits for a response from
15765
16061
  # the origin. This is also known as the *origin response timeout*. The
15766
- # minimum timeout is 1 second, the maximum is 60 seconds, and the
16062
+ # minimum timeout is 1 second, the maximum is 120 seconds, and the
15767
16063
  # default (if you don't specify otherwise) is 30 seconds.
15768
16064
  #
15769
- # For more information, see [Response timeout (custom origins
15770
- # only)][1] in the *Amazon CloudFront Developer Guide*.
16065
+ # For more information, see [Response timeout][1] in the *Amazon
16066
+ # CloudFront Developer Guide*.
15771
16067
  #
15772
16068
  #
15773
16069
  #
15774
- # [1]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/distribution-web-values-specify.html#DownloadDistValuesOriginResponseTimeout
16070
+ # [1]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/DownloadDistValuesOrigin.html#DownloadDistValuesOriginResponseTimeout
15775
16071
  # @return [Integer]
15776
16072
  #
15777
16073
  # @!attribute [rw] origin_keepalive_timeout
15778
16074
  # Specifies how long, in seconds, CloudFront persists its connection
15779
- # to the origin. The minimum timeout is 1 second, the maximum is 60
16075
+ # to the origin. The minimum timeout is 1 second, the maximum is 120
15780
16076
  # seconds, and the default (if you don't specify otherwise) is 5
15781
16077
  # seconds.
15782
16078
  #
@@ -15785,7 +16081,7 @@ module Aws::CloudFront
15785
16081
  #
15786
16082
  #
15787
16083
  #
15788
- # [1]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/distribution-web-values-specify.html#DownloadDistValuesOriginKeepaliveTimeout
16084
+ # [1]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/DownloadDistValuesOrigin.html#DownloadDistValuesOriginKeepaliveTimeout
15789
16085
  # @return [Integer]
15790
16086
  #
15791
16087
  # @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/VpcOriginConfig AWS API Documentation