aws-sdk-cloudfront 1.134.0 → 1.136.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.
@@ -517,6 +517,56 @@ module Aws::CloudFront
517
517
  include Aws::Structure
518
518
  end
519
519
 
520
+ # The CA certificates bundle location in Amazon S3.
521
+ #
522
+ # @!attribute [rw] bucket
523
+ # The S3 bucket.
524
+ # @return [String]
525
+ #
526
+ # @!attribute [rw] key
527
+ # The location's key.
528
+ # @return [String]
529
+ #
530
+ # @!attribute [rw] region
531
+ # The location's Region.
532
+ # @return [String]
533
+ #
534
+ # @!attribute [rw] version
535
+ # The location's version.
536
+ # @return [String]
537
+ #
538
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/CaCertificatesBundleS3Location AWS API Documentation
539
+ #
540
+ class CaCertificatesBundleS3Location < Struct.new(
541
+ :bucket,
542
+ :key,
543
+ :region,
544
+ :version)
545
+ SENSITIVE = []
546
+ include Aws::Structure
547
+ end
548
+
549
+ # A CA certificates bundle source.
550
+ #
551
+ # @note CaCertificatesBundleSource is a union - when making an API calls you must set exactly one of the members.
552
+ #
553
+ # @!attribute [rw] ca_certificates_bundle_s3_location
554
+ # The CA certificates bundle location in Amazon S3.
555
+ # @return [Types::CaCertificatesBundleS3Location]
556
+ #
557
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/CaCertificatesBundleSource AWS API Documentation
558
+ #
559
+ class CaCertificatesBundleSource < Struct.new(
560
+ :ca_certificates_bundle_s3_location,
561
+ :unknown)
562
+ SENSITIVE = []
563
+ include Aws::Structure
564
+ include Aws::Structure::Union
565
+
566
+ class CaCertificatesBundleS3Location < CaCertificatesBundleSource; end
567
+ class Unknown < CaCertificatesBundleSource; end
568
+ end
569
+
520
570
  # A complex type that describes how CloudFront processes requests.
521
571
  #
522
572
  # You must create at least as many cache behaviors (including the
@@ -1644,6 +1694,103 @@ module Aws::CloudFront
1644
1694
  include Aws::Structure
1645
1695
  end
1646
1696
 
1697
+ # A connection function association.
1698
+ #
1699
+ # @!attribute [rw] id
1700
+ # The association's ID.
1701
+ # @return [String]
1702
+ #
1703
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/ConnectionFunctionAssociation AWS API Documentation
1704
+ #
1705
+ class ConnectionFunctionAssociation < Struct.new(
1706
+ :id)
1707
+ SENSITIVE = []
1708
+ include Aws::Structure
1709
+ end
1710
+
1711
+ # A connection function summary.
1712
+ #
1713
+ # @!attribute [rw] name
1714
+ # The connection function name.
1715
+ # @return [String]
1716
+ #
1717
+ # @!attribute [rw] id
1718
+ # The connection function ID.
1719
+ # @return [String]
1720
+ #
1721
+ # @!attribute [rw] connection_function_config
1722
+ # Contains configuration information about a CloudFront function.
1723
+ # @return [Types::FunctionConfig]
1724
+ #
1725
+ # @!attribute [rw] connection_function_arn
1726
+ # The connection function Amazon Resource Name (ARN).
1727
+ # @return [String]
1728
+ #
1729
+ # @!attribute [rw] status
1730
+ # The connection function status.
1731
+ # @return [String]
1732
+ #
1733
+ # @!attribute [rw] stage
1734
+ # The connection function stage.
1735
+ # @return [String]
1736
+ #
1737
+ # @!attribute [rw] created_time
1738
+ # The connection function created time.
1739
+ # @return [Time]
1740
+ #
1741
+ # @!attribute [rw] last_modified_time
1742
+ # The connection function last modified time.
1743
+ # @return [Time]
1744
+ #
1745
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/ConnectionFunctionSummary AWS API Documentation
1746
+ #
1747
+ class ConnectionFunctionSummary < Struct.new(
1748
+ :name,
1749
+ :id,
1750
+ :connection_function_config,
1751
+ :connection_function_arn,
1752
+ :status,
1753
+ :stage,
1754
+ :created_time,
1755
+ :last_modified_time)
1756
+ SENSITIVE = []
1757
+ include Aws::Structure
1758
+ end
1759
+
1760
+ # A connection function test result.
1761
+ #
1762
+ # @!attribute [rw] connection_function_summary
1763
+ # The connection function summary.
1764
+ # @return [Types::ConnectionFunctionSummary]
1765
+ #
1766
+ # @!attribute [rw] compute_utilization
1767
+ # The connection function compute utilization.
1768
+ # @return [String]
1769
+ #
1770
+ # @!attribute [rw] connection_function_execution_logs
1771
+ # The connection function execution logs.
1772
+ # @return [Array<String>]
1773
+ #
1774
+ # @!attribute [rw] connection_function_error_message
1775
+ # The connection function error message.
1776
+ # @return [String]
1777
+ #
1778
+ # @!attribute [rw] connection_function_output
1779
+ # The connection function output.
1780
+ # @return [String]
1781
+ #
1782
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/ConnectionFunctionTestResult AWS API Documentation
1783
+ #
1784
+ class ConnectionFunctionTestResult < Struct.new(
1785
+ :connection_function_summary,
1786
+ :compute_utilization,
1787
+ :connection_function_execution_logs,
1788
+ :connection_function_error_message,
1789
+ :connection_function_output)
1790
+ SENSITIVE = [:connection_function_execution_logs, :connection_function_error_message, :connection_function_output]
1791
+ include Aws::Structure
1792
+ end
1793
+
1647
1794
  # The connection group for your distribution tenants. When you first
1648
1795
  # create a distribution tenant and you don't specify a connection
1649
1796
  # group, CloudFront will automatically create a default connection group
@@ -2373,6 +2520,56 @@ module Aws::CloudFront
2373
2520
  include Aws::Structure
2374
2521
  end
2375
2522
 
2523
+ # @!attribute [rw] name
2524
+ # A name for the connection function.
2525
+ # @return [String]
2526
+ #
2527
+ # @!attribute [rw] connection_function_config
2528
+ # Contains configuration information about a CloudFront function.
2529
+ # @return [Types::FunctionConfig]
2530
+ #
2531
+ # @!attribute [rw] connection_function_code
2532
+ # The code for the connection function.
2533
+ # @return [String]
2534
+ #
2535
+ # @!attribute [rw] tags
2536
+ # A complex type that contains zero or more `Tag` elements.
2537
+ # @return [Types::Tags]
2538
+ #
2539
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/CreateConnectionFunctionRequest AWS API Documentation
2540
+ #
2541
+ class CreateConnectionFunctionRequest < Struct.new(
2542
+ :name,
2543
+ :connection_function_config,
2544
+ :connection_function_code,
2545
+ :tags)
2546
+ SENSITIVE = [:connection_function_code]
2547
+ include Aws::Structure
2548
+ end
2549
+
2550
+ # @!attribute [rw] connection_function_summary
2551
+ # The summary for the connection function.
2552
+ # @return [Types::ConnectionFunctionSummary]
2553
+ #
2554
+ # @!attribute [rw] location
2555
+ # The location of the connection function.
2556
+ # @return [String]
2557
+ #
2558
+ # @!attribute [rw] etag
2559
+ # The version identifier for the current version of the connection
2560
+ # function.
2561
+ # @return [String]
2562
+ #
2563
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/CreateConnectionFunctionResult AWS API Documentation
2564
+ #
2565
+ class CreateConnectionFunctionResult < Struct.new(
2566
+ :connection_function_summary,
2567
+ :location,
2568
+ :etag)
2569
+ SENSITIVE = []
2570
+ include Aws::Structure
2571
+ end
2572
+
2376
2573
  # @!attribute [rw] name
2377
2574
  # The name of the connection group. Enter a friendly identifier that
2378
2575
  # is unique within your Amazon Web Services account. This name can't
@@ -3206,6 +3403,45 @@ module Aws::CloudFront
3206
3403
  include Aws::Structure
3207
3404
  end
3208
3405
 
3406
+ # @!attribute [rw] name
3407
+ # A name for the trust store.
3408
+ # @return [String]
3409
+ #
3410
+ # @!attribute [rw] ca_certificates_bundle_source
3411
+ # The CA certificates bundle source for the trust store.
3412
+ # @return [Types::CaCertificatesBundleSource]
3413
+ #
3414
+ # @!attribute [rw] tags
3415
+ # A complex type that contains zero or more `Tag` elements.
3416
+ # @return [Types::Tags]
3417
+ #
3418
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/CreateTrustStoreRequest AWS API Documentation
3419
+ #
3420
+ class CreateTrustStoreRequest < Struct.new(
3421
+ :name,
3422
+ :ca_certificates_bundle_source,
3423
+ :tags)
3424
+ SENSITIVE = []
3425
+ include Aws::Structure
3426
+ end
3427
+
3428
+ # @!attribute [rw] trust_store
3429
+ # The trust store.
3430
+ # @return [Types::TrustStore]
3431
+ #
3432
+ # @!attribute [rw] etag
3433
+ # The version identifier for the current version of the trust store.
3434
+ # @return [String]
3435
+ #
3436
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/CreateTrustStoreResult AWS API Documentation
3437
+ #
3438
+ class CreateTrustStoreResult < Struct.new(
3439
+ :trust_store,
3440
+ :etag)
3441
+ SENSITIVE = []
3442
+ include Aws::Structure
3443
+ end
3444
+
3209
3445
  # @!attribute [rw] vpc_origin_endpoint_config
3210
3446
  # The VPC origin endpoint configuration.
3211
3447
  # @return [Types::VpcOriginEndpointConfig]
@@ -3946,6 +4182,24 @@ module Aws::CloudFront
3946
4182
  include Aws::Structure
3947
4183
  end
3948
4184
 
4185
+ # @!attribute [rw] id
4186
+ # The connection function's ID.
4187
+ # @return [String]
4188
+ #
4189
+ # @!attribute [rw] if_match
4190
+ # The current version (`ETag` value) of the connection function you
4191
+ # are deleting.
4192
+ # @return [String]
4193
+ #
4194
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/DeleteConnectionFunctionRequest AWS API Documentation
4195
+ #
4196
+ class DeleteConnectionFunctionRequest < Struct.new(
4197
+ :id,
4198
+ :if_match)
4199
+ SENSITIVE = []
4200
+ include Aws::Structure
4201
+ end
4202
+
3949
4203
  # @!attribute [rw] id
3950
4204
  # The ID of the connection group to delete.
3951
4205
  # @return [String]
@@ -4305,6 +4559,24 @@ module Aws::CloudFront
4305
4559
  include Aws::Structure
4306
4560
  end
4307
4561
 
4562
+ # @!attribute [rw] id
4563
+ # The trust store's ID.
4564
+ # @return [String]
4565
+ #
4566
+ # @!attribute [rw] if_match
4567
+ # The current version (`ETag` value) of the trust store you are
4568
+ # deleting.
4569
+ # @return [String]
4570
+ #
4571
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/DeleteTrustStoreRequest AWS API Documentation
4572
+ #
4573
+ class DeleteTrustStoreRequest < Struct.new(
4574
+ :id,
4575
+ :if_match)
4576
+ SENSITIVE = []
4577
+ include Aws::Structure
4578
+ end
4579
+
4308
4580
  # @!attribute [rw] id
4309
4581
  # The VPC origin ID.
4310
4582
  # @return [String]
@@ -4340,6 +4612,41 @@ module Aws::CloudFront
4340
4612
  include Aws::Structure
4341
4613
  end
4342
4614
 
4615
+ # @!attribute [rw] identifier
4616
+ # The connection function's identifier.
4617
+ # @return [String]
4618
+ #
4619
+ # @!attribute [rw] stage
4620
+ # The connection function's stage.
4621
+ # @return [String]
4622
+ #
4623
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/DescribeConnectionFunctionRequest AWS API Documentation
4624
+ #
4625
+ class DescribeConnectionFunctionRequest < Struct.new(
4626
+ :identifier,
4627
+ :stage)
4628
+ SENSITIVE = []
4629
+ include Aws::Structure
4630
+ end
4631
+
4632
+ # @!attribute [rw] connection_function_summary
4633
+ # The connection function's summary.
4634
+ # @return [Types::ConnectionFunctionSummary]
4635
+ #
4636
+ # @!attribute [rw] etag
4637
+ # The version identifier for the current version of the connection
4638
+ # function.
4639
+ # @return [String]
4640
+ #
4641
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/DescribeConnectionFunctionResult AWS API Documentation
4642
+ #
4643
+ class DescribeConnectionFunctionResult < Struct.new(
4644
+ :connection_function_summary,
4645
+ :etag)
4646
+ SENSITIVE = []
4647
+ include Aws::Structure
4648
+ end
4649
+
4343
4650
  # @!attribute [rw] name
4344
4651
  # The name of the function that you are getting information about.
4345
4652
  # @return [String]
@@ -4918,6 +5225,14 @@ module Aws::CloudFront
4918
5225
  # distribution tenants (tenant-only).
4919
5226
  # @return [String]
4920
5227
  #
5228
+ # @!attribute [rw] viewer_mtls_config
5229
+ # The distribution's viewer mTLS configuration.
5230
+ # @return [Types::ViewerMtlsConfig]
5231
+ #
5232
+ # @!attribute [rw] connection_function_association
5233
+ # The distribution's connection function association.
5234
+ # @return [Types::ConnectionFunctionAssociation]
5235
+ #
4921
5236
  # @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/DistributionConfig AWS API Documentation
4922
5237
  #
4923
5238
  class DistributionConfig < Struct.new(
@@ -4942,7 +5257,9 @@ module Aws::CloudFront
4942
5257
  :staging,
4943
5258
  :anycast_ip_list_id,
4944
5259
  :tenant_config,
4945
- :connection_mode)
5260
+ :connection_mode,
5261
+ :viewer_mtls_config,
5262
+ :connection_function_association)
4946
5263
  SENSITIVE = [:comment]
4947
5264
  include Aws::Structure
4948
5265
  end
@@ -5309,6 +5626,14 @@ module Aws::CloudFront
5309
5626
  # distribution.
5310
5627
  # @return [String]
5311
5628
  #
5629
+ # @!attribute [rw] viewer_mtls_config
5630
+ # The distribution's viewer mTLS configuration.
5631
+ # @return [Types::ViewerMtlsConfig]
5632
+ #
5633
+ # @!attribute [rw] connection_function_association
5634
+ # The distribution's connection function association.
5635
+ # @return [Types::ConnectionFunctionAssociation]
5636
+ #
5312
5637
  # @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/DistributionSummary AWS API Documentation
5313
5638
  #
5314
5639
  class DistributionSummary < Struct.new(
@@ -5335,7 +5660,9 @@ module Aws::CloudFront
5335
5660
  :alias_icp_recordals,
5336
5661
  :staging,
5337
5662
  :connection_mode,
5338
- :anycast_ip_list_id)
5663
+ :anycast_ip_list_id,
5664
+ :viewer_mtls_config,
5665
+ :connection_function_association)
5339
5666
  SENSITIVE = [:comment]
5340
5667
  include Aws::Structure
5341
5668
  end
@@ -6727,6 +7054,46 @@ module Aws::CloudFront
6727
7054
  include Aws::Structure
6728
7055
  end
6729
7056
 
7057
+ # @!attribute [rw] identifier
7058
+ # The connection function's identifier.
7059
+ # @return [String]
7060
+ #
7061
+ # @!attribute [rw] stage
7062
+ # The connection function's stage.
7063
+ # @return [String]
7064
+ #
7065
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/GetConnectionFunctionRequest AWS API Documentation
7066
+ #
7067
+ class GetConnectionFunctionRequest < Struct.new(
7068
+ :identifier,
7069
+ :stage)
7070
+ SENSITIVE = []
7071
+ include Aws::Structure
7072
+ end
7073
+
7074
+ # @!attribute [rw] connection_function_code
7075
+ # The connection function's code.
7076
+ # @return [String]
7077
+ #
7078
+ # @!attribute [rw] etag
7079
+ # The version identifier for the current version of the connection
7080
+ # function.
7081
+ # @return [String]
7082
+ #
7083
+ # @!attribute [rw] content_type
7084
+ # The connection function's content type.
7085
+ # @return [String]
7086
+ #
7087
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/GetConnectionFunctionResult AWS API Documentation
7088
+ #
7089
+ class GetConnectionFunctionResult < Struct.new(
7090
+ :connection_function_code,
7091
+ :etag,
7092
+ :content_type)
7093
+ SENSITIVE = [:connection_function_code]
7094
+ include Aws::Structure
7095
+ end
7096
+
6730
7097
  # @!attribute [rw] routing_endpoint
6731
7098
  # The routing endpoint for the target connection group, such as
6732
7099
  # d111111abcdef8.cloudfront.net.
@@ -7713,6 +8080,35 @@ module Aws::CloudFront
7713
8080
  include Aws::Structure
7714
8081
  end
7715
8082
 
8083
+ # @!attribute [rw] identifier
8084
+ # The trust store's identifier.
8085
+ # @return [String]
8086
+ #
8087
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/GetTrustStoreRequest AWS API Documentation
8088
+ #
8089
+ class GetTrustStoreRequest < Struct.new(
8090
+ :identifier)
8091
+ SENSITIVE = []
8092
+ include Aws::Structure
8093
+ end
8094
+
8095
+ # @!attribute [rw] trust_store
8096
+ # The trust store.
8097
+ # @return [Types::TrustStore]
8098
+ #
8099
+ # @!attribute [rw] etag
8100
+ # The version identifier for the current version of the trust store.
8101
+ # @return [String]
8102
+ #
8103
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/GetTrustStoreResult AWS API Documentation
8104
+ #
8105
+ class GetTrustStoreResult < Struct.new(
8106
+ :trust_store,
8107
+ :etag)
8108
+ SENSITIVE = []
8109
+ include Aws::Structure
8110
+ end
8111
+
7716
8112
  # @!attribute [rw] id
7717
8113
  # The VPC origin ID.
7718
8114
  # @return [String]
@@ -8996,13 +9392,59 @@ module Aws::CloudFront
8996
9392
  include Aws::Structure
8997
9393
  end
8998
9394
 
8999
- # @!attribute [rw] association_filter
9000
- # Filter by associated Anycast IP list ID.
9001
- # @return [Types::ConnectionGroupAssociationFilter]
9002
- #
9003
9395
  # @!attribute [rw] marker
9004
- # The marker for the next set of connection groups to retrieve.
9005
- # @return [String]
9396
+ # Use this field when paginating results to indicate where to begin in
9397
+ # your list. The response includes items in the list that occur after
9398
+ # the marker. To get the next page of the list, set this field's
9399
+ # value to the value of `NextMarker` from the current page's
9400
+ # response.
9401
+ # @return [String]
9402
+ #
9403
+ # @!attribute [rw] max_items
9404
+ # The maximum number of connection functions that you want returned in
9405
+ # the response.
9406
+ # @return [Integer]
9407
+ #
9408
+ # @!attribute [rw] stage
9409
+ # The connection function's stage.
9410
+ # @return [String]
9411
+ #
9412
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/ListConnectionFunctionsRequest AWS API Documentation
9413
+ #
9414
+ class ListConnectionFunctionsRequest < Struct.new(
9415
+ :marker,
9416
+ :max_items,
9417
+ :stage)
9418
+ SENSITIVE = []
9419
+ include Aws::Structure
9420
+ end
9421
+
9422
+ # @!attribute [rw] next_marker
9423
+ # Indicates the next page of connection functions. To get the next
9424
+ # page of the list, use this value in the `Marker` field of your
9425
+ # request.
9426
+ # @return [String]
9427
+ #
9428
+ # @!attribute [rw] connection_functions
9429
+ # A list of connection functions.
9430
+ # @return [Array<Types::ConnectionFunctionSummary>]
9431
+ #
9432
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/ListConnectionFunctionsResult AWS API Documentation
9433
+ #
9434
+ class ListConnectionFunctionsResult < Struct.new(
9435
+ :next_marker,
9436
+ :connection_functions)
9437
+ SENSITIVE = []
9438
+ include Aws::Structure
9439
+ end
9440
+
9441
+ # @!attribute [rw] association_filter
9442
+ # Filter by associated Anycast IP list ID.
9443
+ # @return [Types::ConnectionGroupAssociationFilter]
9444
+ #
9445
+ # @!attribute [rw] marker
9446
+ # The marker for the next set of connection groups to retrieve.
9447
+ # @return [String]
9006
9448
  #
9007
9449
  # @!attribute [rw] max_items
9008
9450
  # The maximum number of connection groups to return.
@@ -9238,6 +9680,45 @@ module Aws::CloudFront
9238
9680
  include Aws::Structure
9239
9681
  end
9240
9682
 
9683
+ # @!attribute [rw] marker
9684
+ # Use this field when paginating results to indicate where to begin in
9685
+ # your list. The response includes items in the list that occur after
9686
+ # the marker. To get the next page of the list, set this field's
9687
+ # value to the value of `NextMarker` from the current page's
9688
+ # response.
9689
+ # @return [String]
9690
+ #
9691
+ # @!attribute [rw] max_items
9692
+ # The maximum number of distributions that you want returned in the
9693
+ # response.
9694
+ # @return [Integer]
9695
+ #
9696
+ # @!attribute [rw] connection_function_identifier
9697
+ # The distributions by connection function identifier.
9698
+ # @return [String]
9699
+ #
9700
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/ListDistributionsByConnectionFunctionRequest AWS API Documentation
9701
+ #
9702
+ class ListDistributionsByConnectionFunctionRequest < Struct.new(
9703
+ :marker,
9704
+ :max_items,
9705
+ :connection_function_identifier)
9706
+ SENSITIVE = []
9707
+ include Aws::Structure
9708
+ end
9709
+
9710
+ # @!attribute [rw] distribution_list
9711
+ # A distribution list.
9712
+ # @return [Types::DistributionList]
9713
+ #
9714
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/ListDistributionsByConnectionFunctionResult AWS API Documentation
9715
+ #
9716
+ class ListDistributionsByConnectionFunctionResult < Struct.new(
9717
+ :distribution_list)
9718
+ SENSITIVE = []
9719
+ include Aws::Structure
9720
+ end
9721
+
9241
9722
  # @!attribute [rw] marker
9242
9723
  # The marker for the next set of distributions to retrieve.
9243
9724
  # @return [String]
@@ -9478,6 +9959,45 @@ module Aws::CloudFront
9478
9959
  include Aws::Structure
9479
9960
  end
9480
9961
 
9962
+ # @!attribute [rw] trust_store_identifier
9963
+ # The distributions by trust store identifier.
9964
+ # @return [String]
9965
+ #
9966
+ # @!attribute [rw] marker
9967
+ # Use this field when paginating results to indicate where to begin in
9968
+ # your list. The response includes items in the list that occur after
9969
+ # the marker. To get the next page of the list, set this field's
9970
+ # value to the value of `NextMarker` from the current page's
9971
+ # response.
9972
+ # @return [String]
9973
+ #
9974
+ # @!attribute [rw] max_items
9975
+ # The maximum number of distributions that you want returned in the
9976
+ # response.
9977
+ # @return [Integer]
9978
+ #
9979
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/ListDistributionsByTrustStoreRequest AWS API Documentation
9980
+ #
9981
+ class ListDistributionsByTrustStoreRequest < Struct.new(
9982
+ :trust_store_identifier,
9983
+ :marker,
9984
+ :max_items)
9985
+ SENSITIVE = []
9986
+ include Aws::Structure
9987
+ end
9988
+
9989
+ # @!attribute [rw] distribution_list
9990
+ # A distribution list.
9991
+ # @return [Types::DistributionList]
9992
+ #
9993
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/ListDistributionsByTrustStoreResult AWS API Documentation
9994
+ #
9995
+ class ListDistributionsByTrustStoreResult < Struct.new(
9996
+ :distribution_list)
9997
+ SENSITIVE = []
9998
+ include Aws::Structure
9999
+ end
10000
+
9481
10001
  # @!attribute [rw] marker
9482
10002
  # The marker associated with the VPC origin distributions list.
9483
10003
  # @return [String]
@@ -10182,6 +10702,46 @@ module Aws::CloudFront
10182
10702
  include Aws::Structure
10183
10703
  end
10184
10704
 
10705
+ # @!attribute [rw] marker
10706
+ # Use this field when paginating results to indicate where to begin in
10707
+ # your list. The response includes items in the list that occur after
10708
+ # the marker. To get the next page of the list, set this field's
10709
+ # value to the value of `NextMarker` from the current page's
10710
+ # response.
10711
+ # @return [String]
10712
+ #
10713
+ # @!attribute [rw] max_items
10714
+ # The maximum number of trust stores that you want returned in the
10715
+ # response.
10716
+ # @return [Integer]
10717
+ #
10718
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/ListTrustStoresRequest AWS API Documentation
10719
+ #
10720
+ class ListTrustStoresRequest < Struct.new(
10721
+ :marker,
10722
+ :max_items)
10723
+ SENSITIVE = []
10724
+ include Aws::Structure
10725
+ end
10726
+
10727
+ # @!attribute [rw] next_marker
10728
+ # Indicates the next page of trust stores. To get the next page of the
10729
+ # list, use this value in the `Marker` field of your request.
10730
+ # @return [String]
10731
+ #
10732
+ # @!attribute [rw] trust_store_list
10733
+ # The trust store list.
10734
+ # @return [Array<Types::TrustStoreSummary>]
10735
+ #
10736
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/ListTrustStoresResult AWS API Documentation
10737
+ #
10738
+ class ListTrustStoresResult < Struct.new(
10739
+ :next_marker,
10740
+ :trust_store_list)
10741
+ SENSITIVE = []
10742
+ include Aws::Structure
10743
+ end
10744
+
10185
10745
  # @!attribute [rw] marker
10186
10746
  # The marker associated with the VPC origins list.
10187
10747
  # @return [String]
@@ -11991,6 +12551,35 @@ module Aws::CloudFront
11991
12551
  include Aws::Structure
11992
12552
  end
11993
12553
 
12554
+ # @!attribute [rw] id
12555
+ # The connection function ID.
12556
+ # @return [String]
12557
+ #
12558
+ # @!attribute [rw] if_match
12559
+ # The current version (`ETag` value) of the connection function.
12560
+ # @return [String]
12561
+ #
12562
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/PublishConnectionFunctionRequest AWS API Documentation
12563
+ #
12564
+ class PublishConnectionFunctionRequest < Struct.new(
12565
+ :id,
12566
+ :if_match)
12567
+ SENSITIVE = []
12568
+ include Aws::Structure
12569
+ end
12570
+
12571
+ # @!attribute [rw] connection_function_summary
12572
+ # The connection function summary.
12573
+ # @return [Types::ConnectionFunctionSummary]
12574
+ #
12575
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/PublishConnectionFunctionResult AWS API Documentation
12576
+ #
12577
+ class PublishConnectionFunctionResult < Struct.new(
12578
+ :connection_function_summary)
12579
+ SENSITIVE = []
12580
+ include Aws::Structure
12581
+ end
12582
+
11994
12583
  # @!attribute [rw] name
11995
12584
  # The name of the function that you are publishing.
11996
12585
  # @return [String]
@@ -13992,6 +14581,45 @@ module Aws::CloudFront
13992
14581
  include Aws::Structure
13993
14582
  end
13994
14583
 
14584
+ # @!attribute [rw] id
14585
+ # The connection function ID.
14586
+ # @return [String]
14587
+ #
14588
+ # @!attribute [rw] if_match
14589
+ # The current version (`ETag` value) of the connection function.
14590
+ # @return [String]
14591
+ #
14592
+ # @!attribute [rw] stage
14593
+ # The connection function stage.
14594
+ # @return [String]
14595
+ #
14596
+ # @!attribute [rw] connection_object
14597
+ # The connection object.
14598
+ # @return [String]
14599
+ #
14600
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/TestConnectionFunctionRequest AWS API Documentation
14601
+ #
14602
+ class TestConnectionFunctionRequest < Struct.new(
14603
+ :id,
14604
+ :if_match,
14605
+ :stage,
14606
+ :connection_object)
14607
+ SENSITIVE = [:connection_object]
14608
+ include Aws::Structure
14609
+ end
14610
+
14611
+ # @!attribute [rw] connection_function_test_result
14612
+ # The connection function test result.
14613
+ # @return [Types::ConnectionFunctionTestResult]
14614
+ #
14615
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/TestConnectionFunctionResult AWS API Documentation
14616
+ #
14617
+ class TestConnectionFunctionResult < Struct.new(
14618
+ :connection_function_test_result)
14619
+ SENSITIVE = []
14620
+ include Aws::Structure
14621
+ end
14622
+
13995
14623
  # The CloudFront function failed.
13996
14624
  #
13997
14625
  # @!attribute [rw] message
@@ -14989,6 +15617,123 @@ module Aws::CloudFront
14989
15617
  include Aws::Structure
14990
15618
  end
14991
15619
 
15620
+ # A trust store.
15621
+ #
15622
+ # @!attribute [rw] id
15623
+ # The trust store's ID.
15624
+ # @return [String]
15625
+ #
15626
+ # @!attribute [rw] arn
15627
+ # The trust store's Amazon Resource Name (ARN).
15628
+ # @return [String]
15629
+ #
15630
+ # @!attribute [rw] name
15631
+ # The trust store's name.
15632
+ # @return [String]
15633
+ #
15634
+ # @!attribute [rw] status
15635
+ # The trust store's status.
15636
+ # @return [String]
15637
+ #
15638
+ # @!attribute [rw] number_of_ca_certificates
15639
+ # The trust store's number of CA certificates.
15640
+ # @return [Integer]
15641
+ #
15642
+ # @!attribute [rw] last_modified_time
15643
+ # The trust store's last modified time.
15644
+ # @return [Time]
15645
+ #
15646
+ # @!attribute [rw] reason
15647
+ # The trust store's reason.
15648
+ # @return [String]
15649
+ #
15650
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/TrustStore AWS API Documentation
15651
+ #
15652
+ class TrustStore < Struct.new(
15653
+ :id,
15654
+ :arn,
15655
+ :name,
15656
+ :status,
15657
+ :number_of_ca_certificates,
15658
+ :last_modified_time,
15659
+ :reason)
15660
+ SENSITIVE = []
15661
+ include Aws::Structure
15662
+ end
15663
+
15664
+ # A trust store configuration.
15665
+ #
15666
+ # @!attribute [rw] trust_store_id
15667
+ # The trust store ID.
15668
+ # @return [String]
15669
+ #
15670
+ # @!attribute [rw] advertise_trust_store_ca_names
15671
+ # The configuration to use to advertise trust store CA names.
15672
+ # @return [Boolean]
15673
+ #
15674
+ # @!attribute [rw] ignore_certificate_expiry
15675
+ # The configuration to use to ignore certificate expiration.
15676
+ # @return [Boolean]
15677
+ #
15678
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/TrustStoreConfig AWS API Documentation
15679
+ #
15680
+ class TrustStoreConfig < Struct.new(
15681
+ :trust_store_id,
15682
+ :advertise_trust_store_ca_names,
15683
+ :ignore_certificate_expiry)
15684
+ SENSITIVE = []
15685
+ include Aws::Structure
15686
+ end
15687
+
15688
+ # A trust store summary.
15689
+ #
15690
+ # @!attribute [rw] id
15691
+ # The trust store's ID.
15692
+ # @return [String]
15693
+ #
15694
+ # @!attribute [rw] arn
15695
+ # The trust store's Amazon Resource Name (ARN).
15696
+ # @return [String]
15697
+ #
15698
+ # @!attribute [rw] name
15699
+ # The trust store's name.
15700
+ # @return [String]
15701
+ #
15702
+ # @!attribute [rw] status
15703
+ # The trust store's status.
15704
+ # @return [String]
15705
+ #
15706
+ # @!attribute [rw] number_of_ca_certificates
15707
+ # The trust store's number of CA certificates.
15708
+ # @return [Integer]
15709
+ #
15710
+ # @!attribute [rw] last_modified_time
15711
+ # The trust store's last modified time.
15712
+ # @return [Time]
15713
+ #
15714
+ # @!attribute [rw] reason
15715
+ # The trust store's reason.
15716
+ # @return [String]
15717
+ #
15718
+ # @!attribute [rw] etag
15719
+ # The version identifier for the current version of the trust store.
15720
+ # @return [String]
15721
+ #
15722
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/TrustStoreSummary AWS API Documentation
15723
+ #
15724
+ class TrustStoreSummary < Struct.new(
15725
+ :id,
15726
+ :arn,
15727
+ :name,
15728
+ :status,
15729
+ :number_of_ca_certificates,
15730
+ :last_modified_time,
15731
+ :reason,
15732
+ :etag)
15733
+ SENSITIVE = []
15734
+ include Aws::Structure
15735
+ end
15736
+
14992
15737
  # The specified key group does not exist.
14993
15738
  #
14994
15739
  # @!attribute [rw] message
@@ -15242,6 +15987,52 @@ module Aws::CloudFront
15242
15987
  include Aws::Structure
15243
15988
  end
15244
15989
 
15990
+ # @!attribute [rw] id
15991
+ # The connection function ID.
15992
+ # @return [String]
15993
+ #
15994
+ # @!attribute [rw] if_match
15995
+ # The current version (`ETag` value) of the connection function you
15996
+ # are updating.
15997
+ # @return [String]
15998
+ #
15999
+ # @!attribute [rw] connection_function_config
16000
+ # Contains configuration information about a CloudFront function.
16001
+ # @return [Types::FunctionConfig]
16002
+ #
16003
+ # @!attribute [rw] connection_function_code
16004
+ # The connection function code.
16005
+ # @return [String]
16006
+ #
16007
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/UpdateConnectionFunctionRequest AWS API Documentation
16008
+ #
16009
+ class UpdateConnectionFunctionRequest < Struct.new(
16010
+ :id,
16011
+ :if_match,
16012
+ :connection_function_config,
16013
+ :connection_function_code)
16014
+ SENSITIVE = [:connection_function_code]
16015
+ include Aws::Structure
16016
+ end
16017
+
16018
+ # @!attribute [rw] connection_function_summary
16019
+ # The connection function summary.
16020
+ # @return [Types::ConnectionFunctionSummary]
16021
+ #
16022
+ # @!attribute [rw] etag
16023
+ # The version identifier for the current version of the connection
16024
+ # function.
16025
+ # @return [String]
16026
+ #
16027
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/UpdateConnectionFunctionResult AWS API Documentation
16028
+ #
16029
+ class UpdateConnectionFunctionResult < Struct.new(
16030
+ :connection_function_summary,
16031
+ :etag)
16032
+ SENSITIVE = []
16033
+ include Aws::Structure
16034
+ end
16035
+
15245
16036
  # @!attribute [rw] id
15246
16037
  # The ID of the connection group.
15247
16038
  # @return [String]
@@ -16046,6 +16837,46 @@ module Aws::CloudFront
16046
16837
  include Aws::Structure
16047
16838
  end
16048
16839
 
16840
+ # @!attribute [rw] id
16841
+ # The trust store ID.
16842
+ # @return [String]
16843
+ #
16844
+ # @!attribute [rw] ca_certificates_bundle_source
16845
+ # The CA certificates bundle source.
16846
+ # @return [Types::CaCertificatesBundleSource]
16847
+ #
16848
+ # @!attribute [rw] if_match
16849
+ # The current version (`ETag` value) of the trust store you are
16850
+ # updating.
16851
+ # @return [String]
16852
+ #
16853
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/UpdateTrustStoreRequest AWS API Documentation
16854
+ #
16855
+ class UpdateTrustStoreRequest < Struct.new(
16856
+ :id,
16857
+ :ca_certificates_bundle_source,
16858
+ :if_match)
16859
+ SENSITIVE = []
16860
+ include Aws::Structure
16861
+ end
16862
+
16863
+ # @!attribute [rw] trust_store
16864
+ # The trust store.
16865
+ # @return [Types::TrustStore]
16866
+ #
16867
+ # @!attribute [rw] etag
16868
+ # The version identifier for the current version of the trust store.
16869
+ # @return [String]
16870
+ #
16871
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/UpdateTrustStoreResult AWS API Documentation
16872
+ #
16873
+ class UpdateTrustStoreResult < Struct.new(
16874
+ :trust_store,
16875
+ :etag)
16876
+ SENSITIVE = []
16877
+ include Aws::Structure
16878
+ end
16879
+
16049
16880
  # @!attribute [rw] vpc_origin_endpoint_config
16050
16881
  # The VPC origin endpoint configuration.
16051
16882
  # @return [Types::VpcOriginEndpointConfig]
@@ -16350,6 +17181,26 @@ module Aws::CloudFront
16350
17181
  include Aws::Structure
16351
17182
  end
16352
17183
 
17184
+ # A viewer mTLS configuration.
17185
+ #
17186
+ # @!attribute [rw] mode
17187
+ # The viewer mTLS mode.
17188
+ # @return [String]
17189
+ #
17190
+ # @!attribute [rw] trust_store_config
17191
+ # The trust store configuration associated with the viewer mTLS
17192
+ # configuration.
17193
+ # @return [Types::TrustStoreConfig]
17194
+ #
17195
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/ViewerMtlsConfig AWS API Documentation
17196
+ #
17197
+ class ViewerMtlsConfig < Struct.new(
17198
+ :mode,
17199
+ :trust_store_config)
17200
+ SENSITIVE = []
17201
+ include Aws::Structure
17202
+ end
17203
+
16353
17204
  # An Amazon CloudFront VPC origin.
16354
17205
  #
16355
17206
  # @!attribute [rw] id