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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +70 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-cloudfront/client.rb +254 -103
- data/lib/aws-sdk-cloudfront/client_api.rb +20 -9
- data/lib/aws-sdk-cloudfront/customizations.rb +0 -1
- data/lib/aws-sdk-cloudfront/endpoint_parameters.rb +12 -12
- data/lib/aws-sdk-cloudfront/endpoint_provider.rb +14 -11
- data/lib/aws-sdk-cloudfront/signer.rb +14 -20
- data/lib/aws-sdk-cloudfront/types.rb +435 -139
- data/lib/aws-sdk-cloudfront.rb +1 -1
- data/sig/client.rbs +19 -9
- data/sig/resource.rbs +1 -0
- data/sig/types.rbs +6 -3
- metadata +4 -4
|
@@ -95,8 +95,8 @@ module Aws::CloudFront
|
|
|
95
95
|
# class name or an instance of a plugin class.
|
|
96
96
|
#
|
|
97
97
|
# @option options [required, Aws::CredentialProvider] :credentials
|
|
98
|
-
# Your AWS credentials. This can be
|
|
99
|
-
# following classes:
|
|
98
|
+
# Your AWS credentials used for authentication. This can be any class that includes and implements
|
|
99
|
+
# `Aws::CredentialProvider`, or instance of any one of the following classes:
|
|
100
100
|
#
|
|
101
101
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
|
102
102
|
# credentials.
|
|
@@ -124,22 +124,24 @@ module Aws::CloudFront
|
|
|
124
124
|
# * `Aws::CognitoIdentityCredentials` - Used for loading credentials
|
|
125
125
|
# from the Cognito Identity service.
|
|
126
126
|
#
|
|
127
|
-
# When `:credentials` are not configured directly, the following
|
|
128
|
-
# locations will be searched for credentials:
|
|
127
|
+
# When `:credentials` are not configured directly, the following locations will be searched for credentials:
|
|
129
128
|
#
|
|
130
129
|
# * `Aws.config[:credentials]`
|
|
130
|
+
#
|
|
131
131
|
# * The `:access_key_id`, `:secret_access_key`, `:session_token`, and
|
|
132
132
|
# `:account_id` options.
|
|
133
|
-
#
|
|
134
|
-
#
|
|
133
|
+
#
|
|
134
|
+
# * `ENV['AWS_ACCESS_KEY_ID']`, `ENV['AWS_SECRET_ACCESS_KEY']`,
|
|
135
|
+
# `ENV['AWS_SESSION_TOKEN']`, and `ENV['AWS_ACCOUNT_ID']`.
|
|
136
|
+
#
|
|
135
137
|
# * `~/.aws/credentials`
|
|
138
|
+
#
|
|
136
139
|
# * `~/.aws/config`
|
|
137
|
-
#
|
|
138
|
-
#
|
|
139
|
-
# `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
|
|
140
|
-
# enable retries and extended timeouts. Instance profile credential
|
|
141
|
-
#
|
|
142
|
-
# to true.
|
|
140
|
+
#
|
|
141
|
+
# * EC2/ECS IMDS instance profile - When used by default, the timeouts are very aggressive.
|
|
142
|
+
# Construct and pass an instance of `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
|
|
143
|
+
# enable retries and extended timeouts. Instance profile credential fetching can be disabled by
|
|
144
|
+
# setting `ENV['AWS_EC2_METADATA_DISABLED']` to `true`.
|
|
143
145
|
#
|
|
144
146
|
# @option options [required, String] :region
|
|
145
147
|
# The AWS region to connect to. The configured `:region` is
|
|
@@ -167,6 +169,11 @@ module Aws::CloudFront
|
|
|
167
169
|
# When false, the request will raise a `RetryCapacityNotAvailableError` and will
|
|
168
170
|
# not retry instead of sleeping.
|
|
169
171
|
#
|
|
172
|
+
# @option options [Array<String>] :auth_scheme_preference
|
|
173
|
+
# A list of preferred authentication schemes to use when making a request. Supported values are:
|
|
174
|
+
# `sigv4`, `sigv4a`, `httpBearerAuth`, and `noAuth`. When set using `ENV['AWS_AUTH_SCHEME_PREFERENCE']` or in
|
|
175
|
+
# shared config as `auth_scheme_preference`, the value should be a comma-separated list.
|
|
176
|
+
#
|
|
170
177
|
# @option options [Boolean] :client_side_monitoring (false)
|
|
171
178
|
# When `true`, client-side metrics will be collected for all API requests from
|
|
172
179
|
# this client.
|
|
@@ -253,8 +260,8 @@ module Aws::CloudFront
|
|
|
253
260
|
# 4 times. Used in `standard` and `adaptive` retry modes.
|
|
254
261
|
#
|
|
255
262
|
# @option options [String] :profile ("default")
|
|
256
|
-
# Used when loading credentials from the shared credentials file
|
|
257
|
-
#
|
|
263
|
+
# Used when loading credentials from the shared credentials file at `HOME/.aws/credentials`.
|
|
264
|
+
# When not specified, 'default' is used.
|
|
258
265
|
#
|
|
259
266
|
# @option options [String] :request_checksum_calculation ("when_supported")
|
|
260
267
|
# Determines when a checksum will be calculated for request payloads. Values are:
|
|
@@ -367,8 +374,8 @@ module Aws::CloudFront
|
|
|
367
374
|
# `Aws::Telemetry::OTelProvider` for telemetry provider.
|
|
368
375
|
#
|
|
369
376
|
# @option options [Aws::TokenProvider] :token_provider
|
|
370
|
-
#
|
|
371
|
-
# following classes:
|
|
377
|
+
# Your Bearer token used for authentication. This can be any class that includes and implements
|
|
378
|
+
# `Aws::TokenProvider`, or instance of any one of the following classes:
|
|
372
379
|
#
|
|
373
380
|
# * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
|
|
374
381
|
# tokens.
|
|
@@ -469,31 +476,45 @@ module Aws::CloudFront
|
|
|
469
476
|
|
|
470
477
|
# @!group API Operations
|
|
471
478
|
|
|
472
|
-
#
|
|
473
|
-
#
|
|
479
|
+
# <note markdown="1"> The `AssociateAlias` API operation only supports
|
|
480
|
+
# standard
|
|
481
|
+
# distributions. To move domains between distribution tenants and/or
|
|
482
|
+
# standard distributions, we recommend that you use the
|
|
483
|
+
# [UpdateDomainAssociation][1] API operation instead.
|
|
484
|
+
#
|
|
485
|
+
# </note>
|
|
474
486
|
#
|
|
475
|
-
#
|
|
476
|
-
#
|
|
487
|
+
# Associates an alias with a CloudFront standard distribution. An alias
|
|
488
|
+
# is commonly known as a custom domain or vanity domain. It can also be
|
|
489
|
+
# called a CNAME or alternate domain name.
|
|
490
|
+
#
|
|
491
|
+
# With this operation, you can move an alias that's already used for a
|
|
492
|
+
# standard distribution to a different standard distribution. This
|
|
477
493
|
# prevents the downtime that could occur if you first remove the alias
|
|
478
|
-
# from one distribution and then separately add the alias to
|
|
479
|
-
# distribution.
|
|
494
|
+
# from one standard distribution and then separately add the alias to
|
|
495
|
+
# another standard distribution.
|
|
480
496
|
#
|
|
481
|
-
#
|
|
482
|
-
#
|
|
483
|
-
# For more information, including how to set up the target distribution,
|
|
484
|
-
# prerequisites that you must complete, and other restrictions, see
|
|
485
|
-
# [Moving an alternate domain name to a different distribution][1] in
|
|
486
|
-
# the *Amazon CloudFront Developer Guide*.
|
|
497
|
+
# To use this operation, specify the alias and the ID of the target
|
|
498
|
+
# standard distribution.
|
|
487
499
|
#
|
|
500
|
+
# For more information, including how to set up the target standard
|
|
501
|
+
# distribution, prerequisites that you must complete, and other
|
|
502
|
+
# restrictions, see [Moving an alternate domain name to a different
|
|
503
|
+
# standard distribution or distribution tenant][2] in the *Amazon
|
|
504
|
+
# CloudFront Developer Guide*.
|
|
488
505
|
#
|
|
489
506
|
#
|
|
490
|
-
#
|
|
507
|
+
#
|
|
508
|
+
# [1]: https://docs.aws.amazon.com/cloudfront/latest/APIReference/API_UpdateDomainAssociation.html
|
|
509
|
+
# [2]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/CNAMEs.html#alternate-domain-names-move
|
|
491
510
|
#
|
|
492
511
|
# @option params [required, String] :target_distribution_id
|
|
493
|
-
# The ID of the distribution that you're associating the alias
|
|
512
|
+
# The ID of the standard distribution that you're associating the alias
|
|
513
|
+
# with.
|
|
494
514
|
#
|
|
495
515
|
# @option params [required, String] :alias
|
|
496
|
-
# The alias (also known as a CNAME) to add to the target
|
|
516
|
+
# The alias (also known as a CNAME) to add to the target standard
|
|
517
|
+
# distribution.
|
|
497
518
|
#
|
|
498
519
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
|
499
520
|
#
|
|
@@ -699,6 +720,7 @@ module Aws::CloudFront
|
|
|
699
720
|
# resp.distribution.distribution_config.origins.items[0].custom_headers.items[0].header_name #=> String
|
|
700
721
|
# resp.distribution.distribution_config.origins.items[0].custom_headers.items[0].header_value #=> String
|
|
701
722
|
# resp.distribution.distribution_config.origins.items[0].s3_origin_config.origin_access_identity #=> String
|
|
723
|
+
# resp.distribution.distribution_config.origins.items[0].s3_origin_config.origin_read_timeout #=> Integer
|
|
702
724
|
# resp.distribution.distribution_config.origins.items[0].custom_origin_config.http_port #=> Integer
|
|
703
725
|
# resp.distribution.distribution_config.origins.items[0].custom_origin_config.https_port #=> Integer
|
|
704
726
|
# resp.distribution.distribution_config.origins.items[0].custom_origin_config.origin_protocol_policy #=> String, one of "http-only", "match-viewer", "https-only"
|
|
@@ -707,11 +729,13 @@ module Aws::CloudFront
|
|
|
707
729
|
# resp.distribution.distribution_config.origins.items[0].custom_origin_config.origin_ssl_protocols.items[0] #=> String, one of "SSLv3", "TLSv1", "TLSv1.1", "TLSv1.2"
|
|
708
730
|
# resp.distribution.distribution_config.origins.items[0].custom_origin_config.origin_read_timeout #=> Integer
|
|
709
731
|
# resp.distribution.distribution_config.origins.items[0].custom_origin_config.origin_keepalive_timeout #=> Integer
|
|
732
|
+
# resp.distribution.distribution_config.origins.items[0].custom_origin_config.ip_address_type #=> String, one of "ipv4", "ipv6", "dualstack"
|
|
710
733
|
# resp.distribution.distribution_config.origins.items[0].vpc_origin_config.vpc_origin_id #=> String
|
|
711
734
|
# resp.distribution.distribution_config.origins.items[0].vpc_origin_config.origin_read_timeout #=> Integer
|
|
712
735
|
# resp.distribution.distribution_config.origins.items[0].vpc_origin_config.origin_keepalive_timeout #=> Integer
|
|
713
736
|
# resp.distribution.distribution_config.origins.items[0].connection_attempts #=> Integer
|
|
714
737
|
# resp.distribution.distribution_config.origins.items[0].connection_timeout #=> Integer
|
|
738
|
+
# resp.distribution.distribution_config.origins.items[0].response_completion_timeout #=> Integer
|
|
715
739
|
# resp.distribution.distribution_config.origins.items[0].origin_shield.enabled #=> Boolean
|
|
716
740
|
# resp.distribution.distribution_config.origins.items[0].origin_shield.origin_shield_region #=> String
|
|
717
741
|
# resp.distribution.distribution_config.origins.items[0].origin_access_control_id #=> String
|
|
@@ -839,7 +863,7 @@ module Aws::CloudFront
|
|
|
839
863
|
# resp.distribution.distribution_config.viewer_certificate.iam_certificate_id #=> String
|
|
840
864
|
# resp.distribution.distribution_config.viewer_certificate.acm_certificate_arn #=> String
|
|
841
865
|
# resp.distribution.distribution_config.viewer_certificate.ssl_support_method #=> String, one of "sni-only", "vip", "static-ip"
|
|
842
|
-
# resp.distribution.distribution_config.viewer_certificate.minimum_protocol_version #=> String, one of "SSLv3", "TLSv1", "TLSv1_2016", "TLSv1.1_2016", "TLSv1.2_2018", "TLSv1.2_2019", "TLSv1.2_2021"
|
|
866
|
+
# resp.distribution.distribution_config.viewer_certificate.minimum_protocol_version #=> String, one of "SSLv3", "TLSv1", "TLSv1_2016", "TLSv1.1_2016", "TLSv1.2_2018", "TLSv1.2_2019", "TLSv1.2_2021", "TLSv1.3_2025", "TLSv1.2_2025"
|
|
843
867
|
# resp.distribution.distribution_config.viewer_certificate.certificate #=> String
|
|
844
868
|
# resp.distribution.distribution_config.viewer_certificate.certificate_source #=> String, one of "cloudfront", "iam", "acm"
|
|
845
869
|
# resp.distribution.distribution_config.restrictions.geo_restriction.restriction_type #=> String, one of "blacklist", "whitelist", "none"
|
|
@@ -940,6 +964,11 @@ module Aws::CloudFront
|
|
|
940
964
|
# * The default, minimum, and maximum time to live (TTL) values that you
|
|
941
965
|
# want objects to stay in the CloudFront cache.
|
|
942
966
|
#
|
|
967
|
+
# If your minimum TTL is greater than 0, CloudFront will cache content
|
|
968
|
+
# for at least the duration specified in the cache policy's minimum
|
|
969
|
+
# TTL, even if the `Cache-Control: no-cache`, `no-store`, or `private`
|
|
970
|
+
# directives are present in the origin headers.
|
|
971
|
+
#
|
|
943
972
|
# The headers, cookies, and query strings that are included in the cache
|
|
944
973
|
# key are also included in requests that CloudFront sends to the origin.
|
|
945
974
|
# CloudFront sends a request when it can't find an object in its cache
|
|
@@ -1269,6 +1298,7 @@ module Aws::CloudFront
|
|
|
1269
1298
|
# },
|
|
1270
1299
|
# s3_origin_config: {
|
|
1271
1300
|
# origin_access_identity: "string", # required
|
|
1301
|
+
# origin_read_timeout: 1,
|
|
1272
1302
|
# },
|
|
1273
1303
|
# custom_origin_config: {
|
|
1274
1304
|
# http_port: 1, # required
|
|
@@ -1280,6 +1310,7 @@ module Aws::CloudFront
|
|
|
1280
1310
|
# },
|
|
1281
1311
|
# origin_read_timeout: 1,
|
|
1282
1312
|
# origin_keepalive_timeout: 1,
|
|
1313
|
+
# ip_address_type: "ipv4", # accepts ipv4, ipv6, dualstack
|
|
1283
1314
|
# },
|
|
1284
1315
|
# vpc_origin_config: {
|
|
1285
1316
|
# vpc_origin_id: "string", # required
|
|
@@ -1288,6 +1319,7 @@ module Aws::CloudFront
|
|
|
1288
1319
|
# },
|
|
1289
1320
|
# connection_attempts: 1,
|
|
1290
1321
|
# connection_timeout: 1,
|
|
1322
|
+
# response_completion_timeout: 1,
|
|
1291
1323
|
# origin_shield: {
|
|
1292
1324
|
# enabled: false, # required
|
|
1293
1325
|
# origin_shield_region: "OriginShieldRegion",
|
|
@@ -1491,10 +1523,10 @@ module Aws::CloudFront
|
|
|
1491
1523
|
# enabled: false, # required
|
|
1492
1524
|
# viewer_certificate: {
|
|
1493
1525
|
# cloud_front_default_certificate: false,
|
|
1494
|
-
# iam_certificate_id: "
|
|
1526
|
+
# iam_certificate_id: "ServerCertificateId",
|
|
1495
1527
|
# acm_certificate_arn: "string",
|
|
1496
1528
|
# ssl_support_method: "sni-only", # accepts sni-only, vip, static-ip
|
|
1497
|
-
# minimum_protocol_version: "SSLv3", # accepts SSLv3, TLSv1, TLSv1_2016, TLSv1.1_2016, TLSv1.2_2018, TLSv1.2_2019, TLSv1.2_2021
|
|
1529
|
+
# minimum_protocol_version: "SSLv3", # accepts SSLv3, TLSv1, TLSv1_2016, TLSv1.1_2016, TLSv1.2_2018, TLSv1.2_2019, TLSv1.2_2021, TLSv1.3_2025, TLSv1.2_2025
|
|
1498
1530
|
# certificate: "string",
|
|
1499
1531
|
# certificate_source: "cloudfront", # accepts cloudfront, iam, acm
|
|
1500
1532
|
# },
|
|
@@ -1517,7 +1549,7 @@ module Aws::CloudFront
|
|
|
1517
1549
|
# name: "ParameterName", # required
|
|
1518
1550
|
# definition: { # required
|
|
1519
1551
|
# string_schema: {
|
|
1520
|
-
# comment: "
|
|
1552
|
+
# comment: "sensitiveStringType",
|
|
1521
1553
|
# default_value: "ParameterValue",
|
|
1522
1554
|
# required: false, # required
|
|
1523
1555
|
# },
|
|
@@ -1566,6 +1598,7 @@ module Aws::CloudFront
|
|
|
1566
1598
|
# resp.distribution.distribution_config.origins.items[0].custom_headers.items[0].header_name #=> String
|
|
1567
1599
|
# resp.distribution.distribution_config.origins.items[0].custom_headers.items[0].header_value #=> String
|
|
1568
1600
|
# resp.distribution.distribution_config.origins.items[0].s3_origin_config.origin_access_identity #=> String
|
|
1601
|
+
# resp.distribution.distribution_config.origins.items[0].s3_origin_config.origin_read_timeout #=> Integer
|
|
1569
1602
|
# resp.distribution.distribution_config.origins.items[0].custom_origin_config.http_port #=> Integer
|
|
1570
1603
|
# resp.distribution.distribution_config.origins.items[0].custom_origin_config.https_port #=> Integer
|
|
1571
1604
|
# resp.distribution.distribution_config.origins.items[0].custom_origin_config.origin_protocol_policy #=> String, one of "http-only", "match-viewer", "https-only"
|
|
@@ -1574,11 +1607,13 @@ module Aws::CloudFront
|
|
|
1574
1607
|
# resp.distribution.distribution_config.origins.items[0].custom_origin_config.origin_ssl_protocols.items[0] #=> String, one of "SSLv3", "TLSv1", "TLSv1.1", "TLSv1.2"
|
|
1575
1608
|
# resp.distribution.distribution_config.origins.items[0].custom_origin_config.origin_read_timeout #=> Integer
|
|
1576
1609
|
# resp.distribution.distribution_config.origins.items[0].custom_origin_config.origin_keepalive_timeout #=> Integer
|
|
1610
|
+
# resp.distribution.distribution_config.origins.items[0].custom_origin_config.ip_address_type #=> String, one of "ipv4", "ipv6", "dualstack"
|
|
1577
1611
|
# resp.distribution.distribution_config.origins.items[0].vpc_origin_config.vpc_origin_id #=> String
|
|
1578
1612
|
# resp.distribution.distribution_config.origins.items[0].vpc_origin_config.origin_read_timeout #=> Integer
|
|
1579
1613
|
# resp.distribution.distribution_config.origins.items[0].vpc_origin_config.origin_keepalive_timeout #=> Integer
|
|
1580
1614
|
# resp.distribution.distribution_config.origins.items[0].connection_attempts #=> Integer
|
|
1581
1615
|
# resp.distribution.distribution_config.origins.items[0].connection_timeout #=> Integer
|
|
1616
|
+
# resp.distribution.distribution_config.origins.items[0].response_completion_timeout #=> Integer
|
|
1582
1617
|
# resp.distribution.distribution_config.origins.items[0].origin_shield.enabled #=> Boolean
|
|
1583
1618
|
# resp.distribution.distribution_config.origins.items[0].origin_shield.origin_shield_region #=> String
|
|
1584
1619
|
# resp.distribution.distribution_config.origins.items[0].origin_access_control_id #=> String
|
|
@@ -1706,7 +1741,7 @@ module Aws::CloudFront
|
|
|
1706
1741
|
# resp.distribution.distribution_config.viewer_certificate.iam_certificate_id #=> String
|
|
1707
1742
|
# resp.distribution.distribution_config.viewer_certificate.acm_certificate_arn #=> String
|
|
1708
1743
|
# resp.distribution.distribution_config.viewer_certificate.ssl_support_method #=> String, one of "sni-only", "vip", "static-ip"
|
|
1709
|
-
# resp.distribution.distribution_config.viewer_certificate.minimum_protocol_version #=> String, one of "SSLv3", "TLSv1", "TLSv1_2016", "TLSv1.1_2016", "TLSv1.2_2018", "TLSv1.2_2019", "TLSv1.2_2021"
|
|
1744
|
+
# resp.distribution.distribution_config.viewer_certificate.minimum_protocol_version #=> String, one of "SSLv3", "TLSv1", "TLSv1_2016", "TLSv1.1_2016", "TLSv1.2_2018", "TLSv1.2_2019", "TLSv1.2_2021", "TLSv1.3_2025", "TLSv1.2_2025"
|
|
1710
1745
|
# resp.distribution.distribution_config.viewer_certificate.certificate #=> String
|
|
1711
1746
|
# resp.distribution.distribution_config.viewer_certificate.certificate_source #=> String, one of "cloudfront", "iam", "acm"
|
|
1712
1747
|
# resp.distribution.distribution_config.restrictions.geo_restriction.restriction_type #=> String, one of "blacklist", "whitelist", "none"
|
|
@@ -1922,6 +1957,7 @@ module Aws::CloudFront
|
|
|
1922
1957
|
# },
|
|
1923
1958
|
# s3_origin_config: {
|
|
1924
1959
|
# origin_access_identity: "string", # required
|
|
1960
|
+
# origin_read_timeout: 1,
|
|
1925
1961
|
# },
|
|
1926
1962
|
# custom_origin_config: {
|
|
1927
1963
|
# http_port: 1, # required
|
|
@@ -1933,6 +1969,7 @@ module Aws::CloudFront
|
|
|
1933
1969
|
# },
|
|
1934
1970
|
# origin_read_timeout: 1,
|
|
1935
1971
|
# origin_keepalive_timeout: 1,
|
|
1972
|
+
# ip_address_type: "ipv4", # accepts ipv4, ipv6, dualstack
|
|
1936
1973
|
# },
|
|
1937
1974
|
# vpc_origin_config: {
|
|
1938
1975
|
# vpc_origin_id: "string", # required
|
|
@@ -1941,6 +1978,7 @@ module Aws::CloudFront
|
|
|
1941
1978
|
# },
|
|
1942
1979
|
# connection_attempts: 1,
|
|
1943
1980
|
# connection_timeout: 1,
|
|
1981
|
+
# response_completion_timeout: 1,
|
|
1944
1982
|
# origin_shield: {
|
|
1945
1983
|
# enabled: false, # required
|
|
1946
1984
|
# origin_shield_region: "OriginShieldRegion",
|
|
@@ -2144,10 +2182,10 @@ module Aws::CloudFront
|
|
|
2144
2182
|
# enabled: false, # required
|
|
2145
2183
|
# viewer_certificate: {
|
|
2146
2184
|
# cloud_front_default_certificate: false,
|
|
2147
|
-
# iam_certificate_id: "
|
|
2185
|
+
# iam_certificate_id: "ServerCertificateId",
|
|
2148
2186
|
# acm_certificate_arn: "string",
|
|
2149
2187
|
# ssl_support_method: "sni-only", # accepts sni-only, vip, static-ip
|
|
2150
|
-
# minimum_protocol_version: "SSLv3", # accepts SSLv3, TLSv1, TLSv1_2016, TLSv1.1_2016, TLSv1.2_2018, TLSv1.2_2019, TLSv1.2_2021
|
|
2188
|
+
# minimum_protocol_version: "SSLv3", # accepts SSLv3, TLSv1, TLSv1_2016, TLSv1.1_2016, TLSv1.2_2018, TLSv1.2_2019, TLSv1.2_2021, TLSv1.3_2025, TLSv1.2_2025
|
|
2151
2189
|
# certificate: "string",
|
|
2152
2190
|
# certificate_source: "cloudfront", # accepts cloudfront, iam, acm
|
|
2153
2191
|
# },
|
|
@@ -2170,7 +2208,7 @@ module Aws::CloudFront
|
|
|
2170
2208
|
# name: "ParameterName", # required
|
|
2171
2209
|
# definition: { # required
|
|
2172
2210
|
# string_schema: {
|
|
2173
|
-
# comment: "
|
|
2211
|
+
# comment: "sensitiveStringType",
|
|
2174
2212
|
# default_value: "ParameterValue",
|
|
2175
2213
|
# required: false, # required
|
|
2176
2214
|
# },
|
|
@@ -2228,6 +2266,7 @@ module Aws::CloudFront
|
|
|
2228
2266
|
# resp.distribution.distribution_config.origins.items[0].custom_headers.items[0].header_name #=> String
|
|
2229
2267
|
# resp.distribution.distribution_config.origins.items[0].custom_headers.items[0].header_value #=> String
|
|
2230
2268
|
# resp.distribution.distribution_config.origins.items[0].s3_origin_config.origin_access_identity #=> String
|
|
2269
|
+
# resp.distribution.distribution_config.origins.items[0].s3_origin_config.origin_read_timeout #=> Integer
|
|
2231
2270
|
# resp.distribution.distribution_config.origins.items[0].custom_origin_config.http_port #=> Integer
|
|
2232
2271
|
# resp.distribution.distribution_config.origins.items[0].custom_origin_config.https_port #=> Integer
|
|
2233
2272
|
# resp.distribution.distribution_config.origins.items[0].custom_origin_config.origin_protocol_policy #=> String, one of "http-only", "match-viewer", "https-only"
|
|
@@ -2236,11 +2275,13 @@ module Aws::CloudFront
|
|
|
2236
2275
|
# resp.distribution.distribution_config.origins.items[0].custom_origin_config.origin_ssl_protocols.items[0] #=> String, one of "SSLv3", "TLSv1", "TLSv1.1", "TLSv1.2"
|
|
2237
2276
|
# resp.distribution.distribution_config.origins.items[0].custom_origin_config.origin_read_timeout #=> Integer
|
|
2238
2277
|
# resp.distribution.distribution_config.origins.items[0].custom_origin_config.origin_keepalive_timeout #=> Integer
|
|
2278
|
+
# resp.distribution.distribution_config.origins.items[0].custom_origin_config.ip_address_type #=> String, one of "ipv4", "ipv6", "dualstack"
|
|
2239
2279
|
# resp.distribution.distribution_config.origins.items[0].vpc_origin_config.vpc_origin_id #=> String
|
|
2240
2280
|
# resp.distribution.distribution_config.origins.items[0].vpc_origin_config.origin_read_timeout #=> Integer
|
|
2241
2281
|
# resp.distribution.distribution_config.origins.items[0].vpc_origin_config.origin_keepalive_timeout #=> Integer
|
|
2242
2282
|
# resp.distribution.distribution_config.origins.items[0].connection_attempts #=> Integer
|
|
2243
2283
|
# resp.distribution.distribution_config.origins.items[0].connection_timeout #=> Integer
|
|
2284
|
+
# resp.distribution.distribution_config.origins.items[0].response_completion_timeout #=> Integer
|
|
2244
2285
|
# resp.distribution.distribution_config.origins.items[0].origin_shield.enabled #=> Boolean
|
|
2245
2286
|
# resp.distribution.distribution_config.origins.items[0].origin_shield.origin_shield_region #=> String
|
|
2246
2287
|
# resp.distribution.distribution_config.origins.items[0].origin_access_control_id #=> String
|
|
@@ -2368,7 +2409,7 @@ module Aws::CloudFront
|
|
|
2368
2409
|
# resp.distribution.distribution_config.viewer_certificate.iam_certificate_id #=> String
|
|
2369
2410
|
# resp.distribution.distribution_config.viewer_certificate.acm_certificate_arn #=> String
|
|
2370
2411
|
# resp.distribution.distribution_config.viewer_certificate.ssl_support_method #=> String, one of "sni-only", "vip", "static-ip"
|
|
2371
|
-
# resp.distribution.distribution_config.viewer_certificate.minimum_protocol_version #=> String, one of "SSLv3", "TLSv1", "TLSv1_2016", "TLSv1.1_2016", "TLSv1.2_2018", "TLSv1.2_2019", "TLSv1.2_2021"
|
|
2412
|
+
# resp.distribution.distribution_config.viewer_certificate.minimum_protocol_version #=> String, one of "SSLv3", "TLSv1", "TLSv1_2016", "TLSv1.1_2016", "TLSv1.2_2018", "TLSv1.2_2019", "TLSv1.2_2021", "TLSv1.3_2025", "TLSv1.2_2025"
|
|
2372
2413
|
# resp.distribution.distribution_config.viewer_certificate.certificate #=> String
|
|
2373
2414
|
# resp.distribution.distribution_config.viewer_certificate.certificate_source #=> String, one of "cloudfront", "iam", "acm"
|
|
2374
2415
|
# resp.distribution.distribution_config.restrictions.geo_restriction.restriction_type #=> String, one of "blacklist", "whitelist", "none"
|
|
@@ -3999,7 +4040,7 @@ module Aws::CloudFront
|
|
|
3999
4040
|
# @example Request syntax with placeholder values
|
|
4000
4041
|
#
|
|
4001
4042
|
# resp = client.delete_function({
|
|
4002
|
-
# name: "
|
|
4043
|
+
# name: "FunctionName", # required
|
|
4003
4044
|
# if_match: "string", # required
|
|
4004
4045
|
# })
|
|
4005
4046
|
#
|
|
@@ -4460,7 +4501,7 @@ module Aws::CloudFront
|
|
|
4460
4501
|
# @example Request syntax with placeholder values
|
|
4461
4502
|
#
|
|
4462
4503
|
# resp = client.describe_function({
|
|
4463
|
-
# name: "
|
|
4504
|
+
# name: "FunctionName", # required
|
|
4464
4505
|
# stage: "DEVELOPMENT", # accepts DEVELOPMENT, LIVE
|
|
4465
4506
|
# })
|
|
4466
4507
|
#
|
|
@@ -5065,6 +5106,7 @@ module Aws::CloudFront
|
|
|
5065
5106
|
# resp.distribution.distribution_config.origins.items[0].custom_headers.items[0].header_name #=> String
|
|
5066
5107
|
# resp.distribution.distribution_config.origins.items[0].custom_headers.items[0].header_value #=> String
|
|
5067
5108
|
# resp.distribution.distribution_config.origins.items[0].s3_origin_config.origin_access_identity #=> String
|
|
5109
|
+
# resp.distribution.distribution_config.origins.items[0].s3_origin_config.origin_read_timeout #=> Integer
|
|
5068
5110
|
# resp.distribution.distribution_config.origins.items[0].custom_origin_config.http_port #=> Integer
|
|
5069
5111
|
# resp.distribution.distribution_config.origins.items[0].custom_origin_config.https_port #=> Integer
|
|
5070
5112
|
# resp.distribution.distribution_config.origins.items[0].custom_origin_config.origin_protocol_policy #=> String, one of "http-only", "match-viewer", "https-only"
|
|
@@ -5073,11 +5115,13 @@ module Aws::CloudFront
|
|
|
5073
5115
|
# resp.distribution.distribution_config.origins.items[0].custom_origin_config.origin_ssl_protocols.items[0] #=> String, one of "SSLv3", "TLSv1", "TLSv1.1", "TLSv1.2"
|
|
5074
5116
|
# resp.distribution.distribution_config.origins.items[0].custom_origin_config.origin_read_timeout #=> Integer
|
|
5075
5117
|
# resp.distribution.distribution_config.origins.items[0].custom_origin_config.origin_keepalive_timeout #=> Integer
|
|
5118
|
+
# resp.distribution.distribution_config.origins.items[0].custom_origin_config.ip_address_type #=> String, one of "ipv4", "ipv6", "dualstack"
|
|
5076
5119
|
# resp.distribution.distribution_config.origins.items[0].vpc_origin_config.vpc_origin_id #=> String
|
|
5077
5120
|
# resp.distribution.distribution_config.origins.items[0].vpc_origin_config.origin_read_timeout #=> Integer
|
|
5078
5121
|
# resp.distribution.distribution_config.origins.items[0].vpc_origin_config.origin_keepalive_timeout #=> Integer
|
|
5079
5122
|
# resp.distribution.distribution_config.origins.items[0].connection_attempts #=> Integer
|
|
5080
5123
|
# resp.distribution.distribution_config.origins.items[0].connection_timeout #=> Integer
|
|
5124
|
+
# resp.distribution.distribution_config.origins.items[0].response_completion_timeout #=> Integer
|
|
5081
5125
|
# resp.distribution.distribution_config.origins.items[0].origin_shield.enabled #=> Boolean
|
|
5082
5126
|
# resp.distribution.distribution_config.origins.items[0].origin_shield.origin_shield_region #=> String
|
|
5083
5127
|
# resp.distribution.distribution_config.origins.items[0].origin_access_control_id #=> String
|
|
@@ -5205,7 +5249,7 @@ module Aws::CloudFront
|
|
|
5205
5249
|
# resp.distribution.distribution_config.viewer_certificate.iam_certificate_id #=> String
|
|
5206
5250
|
# resp.distribution.distribution_config.viewer_certificate.acm_certificate_arn #=> String
|
|
5207
5251
|
# resp.distribution.distribution_config.viewer_certificate.ssl_support_method #=> String, one of "sni-only", "vip", "static-ip"
|
|
5208
|
-
# resp.distribution.distribution_config.viewer_certificate.minimum_protocol_version #=> String, one of "SSLv3", "TLSv1", "TLSv1_2016", "TLSv1.1_2016", "TLSv1.2_2018", "TLSv1.2_2019", "TLSv1.2_2021"
|
|
5252
|
+
# resp.distribution.distribution_config.viewer_certificate.minimum_protocol_version #=> String, one of "SSLv3", "TLSv1", "TLSv1_2016", "TLSv1.1_2016", "TLSv1.2_2018", "TLSv1.2_2019", "TLSv1.2_2021", "TLSv1.3_2025", "TLSv1.2_2025"
|
|
5209
5253
|
# resp.distribution.distribution_config.viewer_certificate.certificate #=> String
|
|
5210
5254
|
# resp.distribution.distribution_config.viewer_certificate.certificate_source #=> String, one of "cloudfront", "iam", "acm"
|
|
5211
5255
|
# resp.distribution.distribution_config.restrictions.geo_restriction.restriction_type #=> String, one of "blacklist", "whitelist", "none"
|
|
@@ -5277,6 +5321,7 @@ module Aws::CloudFront
|
|
|
5277
5321
|
# resp.distribution_config.origins.items[0].custom_headers.items[0].header_name #=> String
|
|
5278
5322
|
# resp.distribution_config.origins.items[0].custom_headers.items[0].header_value #=> String
|
|
5279
5323
|
# resp.distribution_config.origins.items[0].s3_origin_config.origin_access_identity #=> String
|
|
5324
|
+
# resp.distribution_config.origins.items[0].s3_origin_config.origin_read_timeout #=> Integer
|
|
5280
5325
|
# resp.distribution_config.origins.items[0].custom_origin_config.http_port #=> Integer
|
|
5281
5326
|
# resp.distribution_config.origins.items[0].custom_origin_config.https_port #=> Integer
|
|
5282
5327
|
# resp.distribution_config.origins.items[0].custom_origin_config.origin_protocol_policy #=> String, one of "http-only", "match-viewer", "https-only"
|
|
@@ -5285,11 +5330,13 @@ module Aws::CloudFront
|
|
|
5285
5330
|
# resp.distribution_config.origins.items[0].custom_origin_config.origin_ssl_protocols.items[0] #=> String, one of "SSLv3", "TLSv1", "TLSv1.1", "TLSv1.2"
|
|
5286
5331
|
# resp.distribution_config.origins.items[0].custom_origin_config.origin_read_timeout #=> Integer
|
|
5287
5332
|
# resp.distribution_config.origins.items[0].custom_origin_config.origin_keepalive_timeout #=> Integer
|
|
5333
|
+
# resp.distribution_config.origins.items[0].custom_origin_config.ip_address_type #=> String, one of "ipv4", "ipv6", "dualstack"
|
|
5288
5334
|
# resp.distribution_config.origins.items[0].vpc_origin_config.vpc_origin_id #=> String
|
|
5289
5335
|
# resp.distribution_config.origins.items[0].vpc_origin_config.origin_read_timeout #=> Integer
|
|
5290
5336
|
# resp.distribution_config.origins.items[0].vpc_origin_config.origin_keepalive_timeout #=> Integer
|
|
5291
5337
|
# resp.distribution_config.origins.items[0].connection_attempts #=> Integer
|
|
5292
5338
|
# resp.distribution_config.origins.items[0].connection_timeout #=> Integer
|
|
5339
|
+
# resp.distribution_config.origins.items[0].response_completion_timeout #=> Integer
|
|
5293
5340
|
# resp.distribution_config.origins.items[0].origin_shield.enabled #=> Boolean
|
|
5294
5341
|
# resp.distribution_config.origins.items[0].origin_shield.origin_shield_region #=> String
|
|
5295
5342
|
# resp.distribution_config.origins.items[0].origin_access_control_id #=> String
|
|
@@ -5417,7 +5464,7 @@ module Aws::CloudFront
|
|
|
5417
5464
|
# resp.distribution_config.viewer_certificate.iam_certificate_id #=> String
|
|
5418
5465
|
# resp.distribution_config.viewer_certificate.acm_certificate_arn #=> String
|
|
5419
5466
|
# resp.distribution_config.viewer_certificate.ssl_support_method #=> String, one of "sni-only", "vip", "static-ip"
|
|
5420
|
-
# resp.distribution_config.viewer_certificate.minimum_protocol_version #=> String, one of "SSLv3", "TLSv1", "TLSv1_2016", "TLSv1.1_2016", "TLSv1.2_2018", "TLSv1.2_2019", "TLSv1.2_2021"
|
|
5467
|
+
# resp.distribution_config.viewer_certificate.minimum_protocol_version #=> String, one of "SSLv3", "TLSv1", "TLSv1_2016", "TLSv1.1_2016", "TLSv1.2_2018", "TLSv1.2_2019", "TLSv1.2_2021", "TLSv1.3_2025", "TLSv1.2_2025"
|
|
5421
5468
|
# resp.distribution_config.viewer_certificate.certificate #=> String
|
|
5422
5469
|
# resp.distribution_config.viewer_certificate.certificate_source #=> String, one of "cloudfront", "iam", "acm"
|
|
5423
5470
|
# resp.distribution_config.restrictions.geo_restriction.restriction_type #=> String, one of "blacklist", "whitelist", "none"
|
|
@@ -5744,7 +5791,7 @@ module Aws::CloudFront
|
|
|
5744
5791
|
# @example Request syntax with placeholder values
|
|
5745
5792
|
#
|
|
5746
5793
|
# resp = client.get_function({
|
|
5747
|
-
# name: "
|
|
5794
|
+
# name: "FunctionName", # required
|
|
5748
5795
|
# stage: "DEVELOPMENT", # accepts DEVELOPMENT, LIVE
|
|
5749
5796
|
# })
|
|
5750
5797
|
#
|
|
@@ -6834,44 +6881,54 @@ module Aws::CloudFront
|
|
|
6834
6881
|
req.send_request(options)
|
|
6835
6882
|
end
|
|
6836
6883
|
|
|
6837
|
-
#
|
|
6838
|
-
#
|
|
6839
|
-
#
|
|
6840
|
-
#
|
|
6841
|
-
#
|
|
6842
|
-
#
|
|
6884
|
+
# <note markdown="1"> The `ListConflictingAliases` API operation only
|
|
6885
|
+
# supports standard
|
|
6886
|
+
# distributions. To list domain conflicts for both standard
|
|
6887
|
+
# distributions and distribution tenants, we recommend that you use the
|
|
6888
|
+
# [ListDomainConflicts][1] API operation instead.
|
|
6889
|
+
#
|
|
6890
|
+
# </note>
|
|
6891
|
+
#
|
|
6892
|
+
# Gets a list of aliases that conflict or overlap with the provided
|
|
6893
|
+
# alias, and the associated CloudFront standard distribution and Amazon
|
|
6894
|
+
# Web Services accounts for each conflicting alias. An alias is commonly
|
|
6895
|
+
# known as a custom domain or vanity domain. It can also be called a
|
|
6896
|
+
# CNAME or alternate domain name.
|
|
6897
|
+
#
|
|
6898
|
+
# In the returned list, the standard distribution and account IDs are
|
|
6899
|
+
# partially hidden, which allows you to identify the standard
|
|
6900
|
+
# distribution and accounts that you own, and helps to protect the
|
|
6843
6901
|
# information of ones that you don't own.
|
|
6844
6902
|
#
|
|
6845
|
-
#
|
|
6903
|
+
# Use this operation to find aliases that are in use in CloudFront that
|
|
6846
6904
|
# conflict or overlap with the provided alias. For example, if you
|
|
6847
6905
|
# provide `www.example.com` as input, the returned list can include
|
|
6848
6906
|
# `www.example.com` and the overlapping wildcard alternate domain name
|
|
6849
|
-
# (
|
|
6850
|
-
# input, the returned list can include
|
|
6851
|
-
# domain names covered by that wildcard
|
|
6852
|
-
#
|
|
6853
|
-
#
|
|
6854
|
-
#
|
|
6855
|
-
#
|
|
6856
|
-
#
|
|
6857
|
-
#
|
|
6858
|
-
#
|
|
6859
|
-
#
|
|
6860
|
-
#
|
|
6861
|
-
#
|
|
6862
|
-
# the response.
|
|
6863
|
-
#
|
|
6864
|
-
#
|
|
6865
|
-
#
|
|
6866
|
-
#
|
|
6867
|
-
#
|
|
6868
|
-
#
|
|
6869
|
-
#
|
|
6870
|
-
# [1]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/CNAMEs.html#alternate-domain-names-move
|
|
6907
|
+
# (`.example.com</code>), if they exist. If you provide
|
|
6908
|
+
# </em>.example.com as input, the returned list can include
|
|
6909
|
+
# *.example.com and any alternate domain names covered by that wildcard
|
|
6910
|
+
# (for example, www.example.com, test.example.com, dev.example.com, and
|
|
6911
|
+
# so on), if they exist.</p> To list conflicting aliases, specify the
|
|
6912
|
+
# alias to search and the ID of a standard distribution in your account
|
|
6913
|
+
# that has an attached TLS certificate that includes the provided alias.
|
|
6914
|
+
# For more information, including how to set up the standard
|
|
6915
|
+
# distribution and certificate, see Moving an alternate domain name to a
|
|
6916
|
+
# different standard distribution or distribution tenant in the Amazon
|
|
6917
|
+
# CloudFront Developer Guide. You can optionally specify the maximum
|
|
6918
|
+
# number of items to receive in the response. If the total number of
|
|
6919
|
+
# items in the list exceeds the maximum that you specify, or the default
|
|
6920
|
+
# maximum, the response is paginated. To get the next page of items,
|
|
6921
|
+
# send a subsequent request that specifies the NextMarker value from the
|
|
6922
|
+
# current response as the Marker value in the subsequent request.</p>
|
|
6923
|
+
# `
|
|
6924
|
+
#
|
|
6925
|
+
#
|
|
6926
|
+
#
|
|
6927
|
+
# [1]: https://docs.aws.amazon.com/cloudfront/latest/APIReference/API_ListDomainConflicts.html
|
|
6871
6928
|
#
|
|
6872
6929
|
# @option params [required, String] :distribution_id
|
|
6873
|
-
# The ID of a distribution in your account that has an attached
|
|
6874
|
-
# certificate that includes the provided alias.
|
|
6930
|
+
# The ID of a standard distribution in your account that has an attached
|
|
6931
|
+
# TLS certificate that includes the provided alias.
|
|
6875
6932
|
#
|
|
6876
6933
|
# @option params [required, String] :alias
|
|
6877
6934
|
# The alias (also called a CNAME) to search for conflicting aliases.
|
|
@@ -7213,6 +7270,7 @@ module Aws::CloudFront
|
|
|
7213
7270
|
# resp.distribution_list.items[0].origins.items[0].custom_headers.items[0].header_name #=> String
|
|
7214
7271
|
# resp.distribution_list.items[0].origins.items[0].custom_headers.items[0].header_value #=> String
|
|
7215
7272
|
# resp.distribution_list.items[0].origins.items[0].s3_origin_config.origin_access_identity #=> String
|
|
7273
|
+
# resp.distribution_list.items[0].origins.items[0].s3_origin_config.origin_read_timeout #=> Integer
|
|
7216
7274
|
# resp.distribution_list.items[0].origins.items[0].custom_origin_config.http_port #=> Integer
|
|
7217
7275
|
# resp.distribution_list.items[0].origins.items[0].custom_origin_config.https_port #=> Integer
|
|
7218
7276
|
# resp.distribution_list.items[0].origins.items[0].custom_origin_config.origin_protocol_policy #=> String, one of "http-only", "match-viewer", "https-only"
|
|
@@ -7221,11 +7279,13 @@ module Aws::CloudFront
|
|
|
7221
7279
|
# resp.distribution_list.items[0].origins.items[0].custom_origin_config.origin_ssl_protocols.items[0] #=> String, one of "SSLv3", "TLSv1", "TLSv1.1", "TLSv1.2"
|
|
7222
7280
|
# resp.distribution_list.items[0].origins.items[0].custom_origin_config.origin_read_timeout #=> Integer
|
|
7223
7281
|
# resp.distribution_list.items[0].origins.items[0].custom_origin_config.origin_keepalive_timeout #=> Integer
|
|
7282
|
+
# resp.distribution_list.items[0].origins.items[0].custom_origin_config.ip_address_type #=> String, one of "ipv4", "ipv6", "dualstack"
|
|
7224
7283
|
# resp.distribution_list.items[0].origins.items[0].vpc_origin_config.vpc_origin_id #=> String
|
|
7225
7284
|
# resp.distribution_list.items[0].origins.items[0].vpc_origin_config.origin_read_timeout #=> Integer
|
|
7226
7285
|
# resp.distribution_list.items[0].origins.items[0].vpc_origin_config.origin_keepalive_timeout #=> Integer
|
|
7227
7286
|
# resp.distribution_list.items[0].origins.items[0].connection_attempts #=> Integer
|
|
7228
7287
|
# resp.distribution_list.items[0].origins.items[0].connection_timeout #=> Integer
|
|
7288
|
+
# resp.distribution_list.items[0].origins.items[0].response_completion_timeout #=> Integer
|
|
7229
7289
|
# resp.distribution_list.items[0].origins.items[0].origin_shield.enabled #=> Boolean
|
|
7230
7290
|
# resp.distribution_list.items[0].origins.items[0].origin_shield.origin_shield_region #=> String
|
|
7231
7291
|
# resp.distribution_list.items[0].origins.items[0].origin_access_control_id #=> String
|
|
@@ -7349,7 +7409,7 @@ module Aws::CloudFront
|
|
|
7349
7409
|
# resp.distribution_list.items[0].viewer_certificate.iam_certificate_id #=> String
|
|
7350
7410
|
# resp.distribution_list.items[0].viewer_certificate.acm_certificate_arn #=> String
|
|
7351
7411
|
# resp.distribution_list.items[0].viewer_certificate.ssl_support_method #=> String, one of "sni-only", "vip", "static-ip"
|
|
7352
|
-
# resp.distribution_list.items[0].viewer_certificate.minimum_protocol_version #=> String, one of "SSLv3", "TLSv1", "TLSv1_2016", "TLSv1.1_2016", "TLSv1.2_2018", "TLSv1.2_2019", "TLSv1.2_2021"
|
|
7412
|
+
# resp.distribution_list.items[0].viewer_certificate.minimum_protocol_version #=> String, one of "SSLv3", "TLSv1", "TLSv1_2016", "TLSv1.1_2016", "TLSv1.2_2018", "TLSv1.2_2019", "TLSv1.2_2021", "TLSv1.3_2025", "TLSv1.2_2025"
|
|
7353
7413
|
# resp.distribution_list.items[0].viewer_certificate.certificate #=> String
|
|
7354
7414
|
# resp.distribution_list.items[0].viewer_certificate.certificate_source #=> String, one of "cloudfront", "iam", "acm"
|
|
7355
7415
|
# resp.distribution_list.items[0].restrictions.geo_restriction.restriction_type #=> String, one of "blacklist", "whitelist", "none"
|
|
@@ -7430,6 +7490,7 @@ module Aws::CloudFront
|
|
|
7430
7490
|
# resp.distribution_list.items[0].origins.items[0].custom_headers.items[0].header_name #=> String
|
|
7431
7491
|
# resp.distribution_list.items[0].origins.items[0].custom_headers.items[0].header_value #=> String
|
|
7432
7492
|
# resp.distribution_list.items[0].origins.items[0].s3_origin_config.origin_access_identity #=> String
|
|
7493
|
+
# resp.distribution_list.items[0].origins.items[0].s3_origin_config.origin_read_timeout #=> Integer
|
|
7433
7494
|
# resp.distribution_list.items[0].origins.items[0].custom_origin_config.http_port #=> Integer
|
|
7434
7495
|
# resp.distribution_list.items[0].origins.items[0].custom_origin_config.https_port #=> Integer
|
|
7435
7496
|
# resp.distribution_list.items[0].origins.items[0].custom_origin_config.origin_protocol_policy #=> String, one of "http-only", "match-viewer", "https-only"
|
|
@@ -7438,11 +7499,13 @@ module Aws::CloudFront
|
|
|
7438
7499
|
# resp.distribution_list.items[0].origins.items[0].custom_origin_config.origin_ssl_protocols.items[0] #=> String, one of "SSLv3", "TLSv1", "TLSv1.1", "TLSv1.2"
|
|
7439
7500
|
# resp.distribution_list.items[0].origins.items[0].custom_origin_config.origin_read_timeout #=> Integer
|
|
7440
7501
|
# resp.distribution_list.items[0].origins.items[0].custom_origin_config.origin_keepalive_timeout #=> Integer
|
|
7502
|
+
# resp.distribution_list.items[0].origins.items[0].custom_origin_config.ip_address_type #=> String, one of "ipv4", "ipv6", "dualstack"
|
|
7441
7503
|
# resp.distribution_list.items[0].origins.items[0].vpc_origin_config.vpc_origin_id #=> String
|
|
7442
7504
|
# resp.distribution_list.items[0].origins.items[0].vpc_origin_config.origin_read_timeout #=> Integer
|
|
7443
7505
|
# resp.distribution_list.items[0].origins.items[0].vpc_origin_config.origin_keepalive_timeout #=> Integer
|
|
7444
7506
|
# resp.distribution_list.items[0].origins.items[0].connection_attempts #=> Integer
|
|
7445
7507
|
# resp.distribution_list.items[0].origins.items[0].connection_timeout #=> Integer
|
|
7508
|
+
# resp.distribution_list.items[0].origins.items[0].response_completion_timeout #=> Integer
|
|
7446
7509
|
# resp.distribution_list.items[0].origins.items[0].origin_shield.enabled #=> Boolean
|
|
7447
7510
|
# resp.distribution_list.items[0].origins.items[0].origin_shield.origin_shield_region #=> String
|
|
7448
7511
|
# resp.distribution_list.items[0].origins.items[0].origin_access_control_id #=> String
|
|
@@ -7566,7 +7629,7 @@ module Aws::CloudFront
|
|
|
7566
7629
|
# resp.distribution_list.items[0].viewer_certificate.iam_certificate_id #=> String
|
|
7567
7630
|
# resp.distribution_list.items[0].viewer_certificate.acm_certificate_arn #=> String
|
|
7568
7631
|
# resp.distribution_list.items[0].viewer_certificate.ssl_support_method #=> String, one of "sni-only", "vip", "static-ip"
|
|
7569
|
-
# resp.distribution_list.items[0].viewer_certificate.minimum_protocol_version #=> String, one of "SSLv3", "TLSv1", "TLSv1_2016", "TLSv1.1_2016", "TLSv1.2_2018", "TLSv1.2_2019", "TLSv1.2_2021"
|
|
7632
|
+
# resp.distribution_list.items[0].viewer_certificate.minimum_protocol_version #=> String, one of "SSLv3", "TLSv1", "TLSv1_2016", "TLSv1.1_2016", "TLSv1.2_2018", "TLSv1.2_2019", "TLSv1.2_2021", "TLSv1.3_2025", "TLSv1.2_2025"
|
|
7570
7633
|
# resp.distribution_list.items[0].viewer_certificate.certificate #=> String
|
|
7571
7634
|
# resp.distribution_list.items[0].viewer_certificate.certificate_source #=> String, one of "cloudfront", "iam", "acm"
|
|
7572
7635
|
# resp.distribution_list.items[0].restrictions.geo_restriction.restriction_type #=> String, one of "blacklist", "whitelist", "none"
|
|
@@ -7656,7 +7719,9 @@ module Aws::CloudFront
|
|
|
7656
7719
|
# The maximum number of distributions to return.
|
|
7657
7720
|
#
|
|
7658
7721
|
# @option params [required, String] :connection_mode
|
|
7659
|
-
#
|
|
7722
|
+
# This field specifies whether the connection mode is through a standard
|
|
7723
|
+
# distribution (direct) or a multi-tenant distribution with distribution
|
|
7724
|
+
# tenants (tenant-only).
|
|
7660
7725
|
#
|
|
7661
7726
|
# @return [Types::ListDistributionsByConnectionModeResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
7662
7727
|
#
|
|
@@ -7699,6 +7764,7 @@ module Aws::CloudFront
|
|
|
7699
7764
|
# resp.distribution_list.items[0].origins.items[0].custom_headers.items[0].header_name #=> String
|
|
7700
7765
|
# resp.distribution_list.items[0].origins.items[0].custom_headers.items[0].header_value #=> String
|
|
7701
7766
|
# resp.distribution_list.items[0].origins.items[0].s3_origin_config.origin_access_identity #=> String
|
|
7767
|
+
# resp.distribution_list.items[0].origins.items[0].s3_origin_config.origin_read_timeout #=> Integer
|
|
7702
7768
|
# resp.distribution_list.items[0].origins.items[0].custom_origin_config.http_port #=> Integer
|
|
7703
7769
|
# resp.distribution_list.items[0].origins.items[0].custom_origin_config.https_port #=> Integer
|
|
7704
7770
|
# resp.distribution_list.items[0].origins.items[0].custom_origin_config.origin_protocol_policy #=> String, one of "http-only", "match-viewer", "https-only"
|
|
@@ -7707,11 +7773,13 @@ module Aws::CloudFront
|
|
|
7707
7773
|
# resp.distribution_list.items[0].origins.items[0].custom_origin_config.origin_ssl_protocols.items[0] #=> String, one of "SSLv3", "TLSv1", "TLSv1.1", "TLSv1.2"
|
|
7708
7774
|
# resp.distribution_list.items[0].origins.items[0].custom_origin_config.origin_read_timeout #=> Integer
|
|
7709
7775
|
# resp.distribution_list.items[0].origins.items[0].custom_origin_config.origin_keepalive_timeout #=> Integer
|
|
7776
|
+
# resp.distribution_list.items[0].origins.items[0].custom_origin_config.ip_address_type #=> String, one of "ipv4", "ipv6", "dualstack"
|
|
7710
7777
|
# resp.distribution_list.items[0].origins.items[0].vpc_origin_config.vpc_origin_id #=> String
|
|
7711
7778
|
# resp.distribution_list.items[0].origins.items[0].vpc_origin_config.origin_read_timeout #=> Integer
|
|
7712
7779
|
# resp.distribution_list.items[0].origins.items[0].vpc_origin_config.origin_keepalive_timeout #=> Integer
|
|
7713
7780
|
# resp.distribution_list.items[0].origins.items[0].connection_attempts #=> Integer
|
|
7714
7781
|
# resp.distribution_list.items[0].origins.items[0].connection_timeout #=> Integer
|
|
7782
|
+
# resp.distribution_list.items[0].origins.items[0].response_completion_timeout #=> Integer
|
|
7715
7783
|
# resp.distribution_list.items[0].origins.items[0].origin_shield.enabled #=> Boolean
|
|
7716
7784
|
# resp.distribution_list.items[0].origins.items[0].origin_shield.origin_shield_region #=> String
|
|
7717
7785
|
# resp.distribution_list.items[0].origins.items[0].origin_access_control_id #=> String
|
|
@@ -7835,7 +7903,7 @@ module Aws::CloudFront
|
|
|
7835
7903
|
# resp.distribution_list.items[0].viewer_certificate.iam_certificate_id #=> String
|
|
7836
7904
|
# resp.distribution_list.items[0].viewer_certificate.acm_certificate_arn #=> String
|
|
7837
7905
|
# resp.distribution_list.items[0].viewer_certificate.ssl_support_method #=> String, one of "sni-only", "vip", "static-ip"
|
|
7838
|
-
# resp.distribution_list.items[0].viewer_certificate.minimum_protocol_version #=> String, one of "SSLv3", "TLSv1", "TLSv1_2016", "TLSv1.1_2016", "TLSv1.2_2018", "TLSv1.2_2019", "TLSv1.2_2021"
|
|
7906
|
+
# resp.distribution_list.items[0].viewer_certificate.minimum_protocol_version #=> String, one of "SSLv3", "TLSv1", "TLSv1_2016", "TLSv1.1_2016", "TLSv1.2_2018", "TLSv1.2_2019", "TLSv1.2_2021", "TLSv1.3_2025", "TLSv1.2_2025"
|
|
7839
7907
|
# resp.distribution_list.items[0].viewer_certificate.certificate #=> String
|
|
7840
7908
|
# resp.distribution_list.items[0].viewer_certificate.certificate_source #=> String, one of "cloudfront", "iam", "acm"
|
|
7841
7909
|
# resp.distribution_list.items[0].restrictions.geo_restriction.restriction_type #=> String, one of "blacklist", "whitelist", "none"
|
|
@@ -8044,6 +8112,7 @@ module Aws::CloudFront
|
|
|
8044
8112
|
# resp.distribution_list.items[0].origins.items[0].custom_headers.items[0].header_name #=> String
|
|
8045
8113
|
# resp.distribution_list.items[0].origins.items[0].custom_headers.items[0].header_value #=> String
|
|
8046
8114
|
# resp.distribution_list.items[0].origins.items[0].s3_origin_config.origin_access_identity #=> String
|
|
8115
|
+
# resp.distribution_list.items[0].origins.items[0].s3_origin_config.origin_read_timeout #=> Integer
|
|
8047
8116
|
# resp.distribution_list.items[0].origins.items[0].custom_origin_config.http_port #=> Integer
|
|
8048
8117
|
# resp.distribution_list.items[0].origins.items[0].custom_origin_config.https_port #=> Integer
|
|
8049
8118
|
# resp.distribution_list.items[0].origins.items[0].custom_origin_config.origin_protocol_policy #=> String, one of "http-only", "match-viewer", "https-only"
|
|
@@ -8052,11 +8121,13 @@ module Aws::CloudFront
|
|
|
8052
8121
|
# resp.distribution_list.items[0].origins.items[0].custom_origin_config.origin_ssl_protocols.items[0] #=> String, one of "SSLv3", "TLSv1", "TLSv1.1", "TLSv1.2"
|
|
8053
8122
|
# resp.distribution_list.items[0].origins.items[0].custom_origin_config.origin_read_timeout #=> Integer
|
|
8054
8123
|
# resp.distribution_list.items[0].origins.items[0].custom_origin_config.origin_keepalive_timeout #=> Integer
|
|
8124
|
+
# resp.distribution_list.items[0].origins.items[0].custom_origin_config.ip_address_type #=> String, one of "ipv4", "ipv6", "dualstack"
|
|
8055
8125
|
# resp.distribution_list.items[0].origins.items[0].vpc_origin_config.vpc_origin_id #=> String
|
|
8056
8126
|
# resp.distribution_list.items[0].origins.items[0].vpc_origin_config.origin_read_timeout #=> Integer
|
|
8057
8127
|
# resp.distribution_list.items[0].origins.items[0].vpc_origin_config.origin_keepalive_timeout #=> Integer
|
|
8058
8128
|
# resp.distribution_list.items[0].origins.items[0].connection_attempts #=> Integer
|
|
8059
8129
|
# resp.distribution_list.items[0].origins.items[0].connection_timeout #=> Integer
|
|
8130
|
+
# resp.distribution_list.items[0].origins.items[0].response_completion_timeout #=> Integer
|
|
8060
8131
|
# resp.distribution_list.items[0].origins.items[0].origin_shield.enabled #=> Boolean
|
|
8061
8132
|
# resp.distribution_list.items[0].origins.items[0].origin_shield.origin_shield_region #=> String
|
|
8062
8133
|
# resp.distribution_list.items[0].origins.items[0].origin_access_control_id #=> String
|
|
@@ -8180,7 +8251,7 @@ module Aws::CloudFront
|
|
|
8180
8251
|
# resp.distribution_list.items[0].viewer_certificate.iam_certificate_id #=> String
|
|
8181
8252
|
# resp.distribution_list.items[0].viewer_certificate.acm_certificate_arn #=> String
|
|
8182
8253
|
# resp.distribution_list.items[0].viewer_certificate.ssl_support_method #=> String, one of "sni-only", "vip", "static-ip"
|
|
8183
|
-
# resp.distribution_list.items[0].viewer_certificate.minimum_protocol_version #=> String, one of "SSLv3", "TLSv1", "TLSv1_2016", "TLSv1.1_2016", "TLSv1.2_2018", "TLSv1.2_2019", "TLSv1.2_2021"
|
|
8254
|
+
# resp.distribution_list.items[0].viewer_certificate.minimum_protocol_version #=> String, one of "SSLv3", "TLSv1", "TLSv1_2016", "TLSv1.1_2016", "TLSv1.2_2018", "TLSv1.2_2019", "TLSv1.2_2021", "TLSv1.3_2025", "TLSv1.2_2025"
|
|
8184
8255
|
# resp.distribution_list.items[0].viewer_certificate.certificate #=> String
|
|
8185
8256
|
# resp.distribution_list.items[0].viewer_certificate.certificate_source #=> String, one of "cloudfront", "iam", "acm"
|
|
8186
8257
|
# resp.distribution_list.items[0].restrictions.geo_restriction.restriction_type #=> String, one of "blacklist", "whitelist", "none"
|
|
@@ -8391,6 +8462,7 @@ module Aws::CloudFront
|
|
|
8391
8462
|
# resp.distribution_list.items[0].origins.items[0].custom_headers.items[0].header_name #=> String
|
|
8392
8463
|
# resp.distribution_list.items[0].origins.items[0].custom_headers.items[0].header_value #=> String
|
|
8393
8464
|
# resp.distribution_list.items[0].origins.items[0].s3_origin_config.origin_access_identity #=> String
|
|
8465
|
+
# resp.distribution_list.items[0].origins.items[0].s3_origin_config.origin_read_timeout #=> Integer
|
|
8394
8466
|
# resp.distribution_list.items[0].origins.items[0].custom_origin_config.http_port #=> Integer
|
|
8395
8467
|
# resp.distribution_list.items[0].origins.items[0].custom_origin_config.https_port #=> Integer
|
|
8396
8468
|
# resp.distribution_list.items[0].origins.items[0].custom_origin_config.origin_protocol_policy #=> String, one of "http-only", "match-viewer", "https-only"
|
|
@@ -8399,11 +8471,13 @@ module Aws::CloudFront
|
|
|
8399
8471
|
# resp.distribution_list.items[0].origins.items[0].custom_origin_config.origin_ssl_protocols.items[0] #=> String, one of "SSLv3", "TLSv1", "TLSv1.1", "TLSv1.2"
|
|
8400
8472
|
# resp.distribution_list.items[0].origins.items[0].custom_origin_config.origin_read_timeout #=> Integer
|
|
8401
8473
|
# resp.distribution_list.items[0].origins.items[0].custom_origin_config.origin_keepalive_timeout #=> Integer
|
|
8474
|
+
# resp.distribution_list.items[0].origins.items[0].custom_origin_config.ip_address_type #=> String, one of "ipv4", "ipv6", "dualstack"
|
|
8402
8475
|
# resp.distribution_list.items[0].origins.items[0].vpc_origin_config.vpc_origin_id #=> String
|
|
8403
8476
|
# resp.distribution_list.items[0].origins.items[0].vpc_origin_config.origin_read_timeout #=> Integer
|
|
8404
8477
|
# resp.distribution_list.items[0].origins.items[0].vpc_origin_config.origin_keepalive_timeout #=> Integer
|
|
8405
8478
|
# resp.distribution_list.items[0].origins.items[0].connection_attempts #=> Integer
|
|
8406
8479
|
# resp.distribution_list.items[0].origins.items[0].connection_timeout #=> Integer
|
|
8480
|
+
# resp.distribution_list.items[0].origins.items[0].response_completion_timeout #=> Integer
|
|
8407
8481
|
# resp.distribution_list.items[0].origins.items[0].origin_shield.enabled #=> Boolean
|
|
8408
8482
|
# resp.distribution_list.items[0].origins.items[0].origin_shield.origin_shield_region #=> String
|
|
8409
8483
|
# resp.distribution_list.items[0].origins.items[0].origin_access_control_id #=> String
|
|
@@ -8527,7 +8601,7 @@ module Aws::CloudFront
|
|
|
8527
8601
|
# resp.distribution_list.items[0].viewer_certificate.iam_certificate_id #=> String
|
|
8528
8602
|
# resp.distribution_list.items[0].viewer_certificate.acm_certificate_arn #=> String
|
|
8529
8603
|
# resp.distribution_list.items[0].viewer_certificate.ssl_support_method #=> String, one of "sni-only", "vip", "static-ip"
|
|
8530
|
-
# resp.distribution_list.items[0].viewer_certificate.minimum_protocol_version #=> String, one of "SSLv3", "TLSv1", "TLSv1_2016", "TLSv1.1_2016", "TLSv1.2_2018", "TLSv1.2_2019", "TLSv1.2_2021"
|
|
8604
|
+
# resp.distribution_list.items[0].viewer_certificate.minimum_protocol_version #=> String, one of "SSLv3", "TLSv1", "TLSv1_2016", "TLSv1.1_2016", "TLSv1.2_2018", "TLSv1.2_2019", "TLSv1.2_2021", "TLSv1.3_2025", "TLSv1.2_2025"
|
|
8531
8605
|
# resp.distribution_list.items[0].viewer_certificate.certificate #=> String
|
|
8532
8606
|
# resp.distribution_list.items[0].viewer_certificate.certificate_source #=> String, one of "cloudfront", "iam", "acm"
|
|
8533
8607
|
# resp.distribution_list.items[0].restrictions.geo_restriction.restriction_type #=> String, one of "blacklist", "whitelist", "none"
|
|
@@ -8553,20 +8627,55 @@ module Aws::CloudFront
|
|
|
8553
8627
|
req.send_request(options)
|
|
8554
8628
|
end
|
|
8555
8629
|
|
|
8556
|
-
#
|
|
8630
|
+
# <note markdown="1"> We recommend that you use the
|
|
8631
|
+
# `ListDomainConflicts` API operation to
|
|
8632
|
+
# check for domain conflicts, as it supports both standard distributions
|
|
8633
|
+
# and distribution tenants. [ListConflictingAliases][1] performs similar
|
|
8634
|
+
# checks but only supports standard distributions.
|
|
8635
|
+
#
|
|
8636
|
+
# </note>
|
|
8637
|
+
#
|
|
8638
|
+
# Lists existing domain associations that conflict with the domain that
|
|
8557
8639
|
# you specify.
|
|
8558
8640
|
#
|
|
8559
|
-
#
|
|
8560
|
-
#
|
|
8561
|
-
# before they can be
|
|
8641
|
+
# You can use this API operation to identify potential domain conflicts
|
|
8642
|
+
# when moving domains between standard distributions and/or distribution
|
|
8643
|
+
# tenants. Domain conflicts must be resolved first before they can be
|
|
8644
|
+
# moved.
|
|
8645
|
+
#
|
|
8646
|
+
# For example, if you provide `www.example.com` as input, the returned
|
|
8647
|
+
# list can include `www.example.com` and the overlapping wildcard
|
|
8648
|
+
# alternate domain name (`.example.com</code>), if they exist. If you
|
|
8649
|
+
# provide </em>.example.com as input, the returned list can include
|
|
8650
|
+
# *.example.com and any alternate domain names covered by that wildcard
|
|
8651
|
+
# (for example, www.example.com, test.example.com, dev.example.com, and
|
|
8652
|
+
# so on), if they exist.</p> To list conflicting domains, specify the
|
|
8653
|
+
# following: The domain to search for The ID of a standard
|
|
8654
|
+
# distribution or distribution tenant in your account that has an
|
|
8655
|
+
# attached TLS certificate, which covers the specified domain For more
|
|
8656
|
+
# information, including how to set up the standard distribution or
|
|
8657
|
+
# distribution tenant, and the certificate, see Moving an alternate
|
|
8658
|
+
# domain name to a different standard distribution or distribution
|
|
8659
|
+
# tenant in the Amazon CloudFront Developer Guide. You can optionally
|
|
8660
|
+
# specify the maximum number of items to receive in the response. If the
|
|
8661
|
+
# total number of items in the list exceeds the maximum that you
|
|
8662
|
+
# specify, or the default maximum, the response is paginated. To get the
|
|
8663
|
+
# next page of items, send a subsequent request that specifies the
|
|
8664
|
+
# NextMarker value from the current response as the Marker value in the
|
|
8665
|
+
# subsequent request.</p>
|
|
8666
|
+
# `
|
|
8667
|
+
#
|
|
8668
|
+
#
|
|
8669
|
+
#
|
|
8670
|
+
# [1]: https://docs.aws.amazon.com/cloudfront/latest/APIReference/API_ListConflictingAliases.html
|
|
8562
8671
|
#
|
|
8563
8672
|
# @option params [required, String] :domain
|
|
8564
8673
|
# The domain to check for conflicts.
|
|
8565
8674
|
#
|
|
8566
8675
|
# @option params [required, Types::DistributionResourceId] :domain_control_validation_resource
|
|
8567
|
-
# The distribution resource identifier. This can be the
|
|
8568
|
-
# distribution tenant that has a valid certificate,
|
|
8569
|
-
# domain that you specify.
|
|
8676
|
+
# The distribution resource identifier. This can be the standard
|
|
8677
|
+
# distribution or distribution tenant that has a valid certificate,
|
|
8678
|
+
# which covers the domain that you specify.
|
|
8570
8679
|
#
|
|
8571
8680
|
# @option params [Integer] :max_items
|
|
8572
8681
|
# The maximum number of domain conflicts to return.
|
|
@@ -9051,6 +9160,8 @@ module Aws::CloudFront
|
|
|
9051
9160
|
#
|
|
9052
9161
|
# * {Types::ListOriginAccessControlsResult#origin_access_control_list #origin_access_control_list} => Types::OriginAccessControlList
|
|
9053
9162
|
#
|
|
9163
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
|
9164
|
+
#
|
|
9054
9165
|
# @example Request syntax with placeholder values
|
|
9055
9166
|
#
|
|
9056
9167
|
# resp = client.list_origin_access_controls({
|
|
@@ -9564,7 +9675,7 @@ module Aws::CloudFront
|
|
|
9564
9675
|
# @example Request syntax with placeholder values
|
|
9565
9676
|
#
|
|
9566
9677
|
# resp = client.publish_function({
|
|
9567
|
-
# name: "
|
|
9678
|
+
# name: "FunctionName", # required
|
|
9568
9679
|
# if_match: "string", # required
|
|
9569
9680
|
# })
|
|
9570
9681
|
#
|
|
@@ -9675,7 +9786,7 @@ module Aws::CloudFront
|
|
|
9675
9786
|
# @example Request syntax with placeholder values
|
|
9676
9787
|
#
|
|
9677
9788
|
# resp = client.test_function({
|
|
9678
|
-
# name: "
|
|
9789
|
+
# name: "FunctionName", # required
|
|
9679
9790
|
# if_match: "string", # required
|
|
9680
9791
|
# stage: "DEVELOPMENT", # accepts DEVELOPMENT, LIVE
|
|
9681
9792
|
# event_object: "data", # required
|
|
@@ -9759,6 +9870,11 @@ module Aws::CloudFront
|
|
|
9759
9870
|
# configuration, including the fields that you modified and those
|
|
9760
9871
|
# that you didn't.
|
|
9761
9872
|
#
|
|
9873
|
+
# If your minimum TTL is greater than 0, CloudFront will cache content
|
|
9874
|
+
# for at least the duration specified in the cache policy's minimum
|
|
9875
|
+
# TTL, even if the `Cache-Control: no-cache`, `no-store`, or `private`
|
|
9876
|
+
# directives are present in the origin headers.
|
|
9877
|
+
#
|
|
9762
9878
|
# @option params [required, Types::CachePolicyConfig] :cache_policy_config
|
|
9763
9879
|
# A cache policy configuration.
|
|
9764
9880
|
#
|
|
@@ -10119,6 +10235,7 @@ module Aws::CloudFront
|
|
|
10119
10235
|
# },
|
|
10120
10236
|
# s3_origin_config: {
|
|
10121
10237
|
# origin_access_identity: "string", # required
|
|
10238
|
+
# origin_read_timeout: 1,
|
|
10122
10239
|
# },
|
|
10123
10240
|
# custom_origin_config: {
|
|
10124
10241
|
# http_port: 1, # required
|
|
@@ -10130,6 +10247,7 @@ module Aws::CloudFront
|
|
|
10130
10247
|
# },
|
|
10131
10248
|
# origin_read_timeout: 1,
|
|
10132
10249
|
# origin_keepalive_timeout: 1,
|
|
10250
|
+
# ip_address_type: "ipv4", # accepts ipv4, ipv6, dualstack
|
|
10133
10251
|
# },
|
|
10134
10252
|
# vpc_origin_config: {
|
|
10135
10253
|
# vpc_origin_id: "string", # required
|
|
@@ -10138,6 +10256,7 @@ module Aws::CloudFront
|
|
|
10138
10256
|
# },
|
|
10139
10257
|
# connection_attempts: 1,
|
|
10140
10258
|
# connection_timeout: 1,
|
|
10259
|
+
# response_completion_timeout: 1,
|
|
10141
10260
|
# origin_shield: {
|
|
10142
10261
|
# enabled: false, # required
|
|
10143
10262
|
# origin_shield_region: "OriginShieldRegion",
|
|
@@ -10341,10 +10460,10 @@ module Aws::CloudFront
|
|
|
10341
10460
|
# enabled: false, # required
|
|
10342
10461
|
# viewer_certificate: {
|
|
10343
10462
|
# cloud_front_default_certificate: false,
|
|
10344
|
-
# iam_certificate_id: "
|
|
10463
|
+
# iam_certificate_id: "ServerCertificateId",
|
|
10345
10464
|
# acm_certificate_arn: "string",
|
|
10346
10465
|
# ssl_support_method: "sni-only", # accepts sni-only, vip, static-ip
|
|
10347
|
-
# minimum_protocol_version: "SSLv3", # accepts SSLv3, TLSv1, TLSv1_2016, TLSv1.1_2016, TLSv1.2_2018, TLSv1.2_2019, TLSv1.2_2021
|
|
10466
|
+
# minimum_protocol_version: "SSLv3", # accepts SSLv3, TLSv1, TLSv1_2016, TLSv1.1_2016, TLSv1.2_2018, TLSv1.2_2019, TLSv1.2_2021, TLSv1.3_2025, TLSv1.2_2025
|
|
10348
10467
|
# certificate: "string",
|
|
10349
10468
|
# certificate_source: "cloudfront", # accepts cloudfront, iam, acm
|
|
10350
10469
|
# },
|
|
@@ -10367,7 +10486,7 @@ module Aws::CloudFront
|
|
|
10367
10486
|
# name: "ParameterName", # required
|
|
10368
10487
|
# definition: { # required
|
|
10369
10488
|
# string_schema: {
|
|
10370
|
-
# comment: "
|
|
10489
|
+
# comment: "sensitiveStringType",
|
|
10371
10490
|
# default_value: "ParameterValue",
|
|
10372
10491
|
# required: false, # required
|
|
10373
10492
|
# },
|
|
@@ -10418,6 +10537,7 @@ module Aws::CloudFront
|
|
|
10418
10537
|
# resp.distribution.distribution_config.origins.items[0].custom_headers.items[0].header_name #=> String
|
|
10419
10538
|
# resp.distribution.distribution_config.origins.items[0].custom_headers.items[0].header_value #=> String
|
|
10420
10539
|
# resp.distribution.distribution_config.origins.items[0].s3_origin_config.origin_access_identity #=> String
|
|
10540
|
+
# resp.distribution.distribution_config.origins.items[0].s3_origin_config.origin_read_timeout #=> Integer
|
|
10421
10541
|
# resp.distribution.distribution_config.origins.items[0].custom_origin_config.http_port #=> Integer
|
|
10422
10542
|
# resp.distribution.distribution_config.origins.items[0].custom_origin_config.https_port #=> Integer
|
|
10423
10543
|
# resp.distribution.distribution_config.origins.items[0].custom_origin_config.origin_protocol_policy #=> String, one of "http-only", "match-viewer", "https-only"
|
|
@@ -10426,11 +10546,13 @@ module Aws::CloudFront
|
|
|
10426
10546
|
# resp.distribution.distribution_config.origins.items[0].custom_origin_config.origin_ssl_protocols.items[0] #=> String, one of "SSLv3", "TLSv1", "TLSv1.1", "TLSv1.2"
|
|
10427
10547
|
# resp.distribution.distribution_config.origins.items[0].custom_origin_config.origin_read_timeout #=> Integer
|
|
10428
10548
|
# resp.distribution.distribution_config.origins.items[0].custom_origin_config.origin_keepalive_timeout #=> Integer
|
|
10549
|
+
# resp.distribution.distribution_config.origins.items[0].custom_origin_config.ip_address_type #=> String, one of "ipv4", "ipv6", "dualstack"
|
|
10429
10550
|
# resp.distribution.distribution_config.origins.items[0].vpc_origin_config.vpc_origin_id #=> String
|
|
10430
10551
|
# resp.distribution.distribution_config.origins.items[0].vpc_origin_config.origin_read_timeout #=> Integer
|
|
10431
10552
|
# resp.distribution.distribution_config.origins.items[0].vpc_origin_config.origin_keepalive_timeout #=> Integer
|
|
10432
10553
|
# resp.distribution.distribution_config.origins.items[0].connection_attempts #=> Integer
|
|
10433
10554
|
# resp.distribution.distribution_config.origins.items[0].connection_timeout #=> Integer
|
|
10555
|
+
# resp.distribution.distribution_config.origins.items[0].response_completion_timeout #=> Integer
|
|
10434
10556
|
# resp.distribution.distribution_config.origins.items[0].origin_shield.enabled #=> Boolean
|
|
10435
10557
|
# resp.distribution.distribution_config.origins.items[0].origin_shield.origin_shield_region #=> String
|
|
10436
10558
|
# resp.distribution.distribution_config.origins.items[0].origin_access_control_id #=> String
|
|
@@ -10558,7 +10680,7 @@ module Aws::CloudFront
|
|
|
10558
10680
|
# resp.distribution.distribution_config.viewer_certificate.iam_certificate_id #=> String
|
|
10559
10681
|
# resp.distribution.distribution_config.viewer_certificate.acm_certificate_arn #=> String
|
|
10560
10682
|
# resp.distribution.distribution_config.viewer_certificate.ssl_support_method #=> String, one of "sni-only", "vip", "static-ip"
|
|
10561
|
-
# resp.distribution.distribution_config.viewer_certificate.minimum_protocol_version #=> String, one of "SSLv3", "TLSv1", "TLSv1_2016", "TLSv1.1_2016", "TLSv1.2_2018", "TLSv1.2_2019", "TLSv1.2_2021"
|
|
10683
|
+
# resp.distribution.distribution_config.viewer_certificate.minimum_protocol_version #=> String, one of "SSLv3", "TLSv1", "TLSv1_2016", "TLSv1.1_2016", "TLSv1.2_2018", "TLSv1.2_2019", "TLSv1.2_2021", "TLSv1.3_2025", "TLSv1.2_2025"
|
|
10562
10684
|
# resp.distribution.distribution_config.viewer_certificate.certificate #=> String
|
|
10563
10685
|
# resp.distribution.distribution_config.viewer_certificate.certificate_source #=> String, one of "cloudfront", "iam", "acm"
|
|
10564
10686
|
# resp.distribution.distribution_config.restrictions.geo_restriction.restriction_type #=> String, one of "blacklist", "whitelist", "none"
|
|
@@ -10806,6 +10928,7 @@ module Aws::CloudFront
|
|
|
10806
10928
|
# resp.distribution.distribution_config.origins.items[0].custom_headers.items[0].header_name #=> String
|
|
10807
10929
|
# resp.distribution.distribution_config.origins.items[0].custom_headers.items[0].header_value #=> String
|
|
10808
10930
|
# resp.distribution.distribution_config.origins.items[0].s3_origin_config.origin_access_identity #=> String
|
|
10931
|
+
# resp.distribution.distribution_config.origins.items[0].s3_origin_config.origin_read_timeout #=> Integer
|
|
10809
10932
|
# resp.distribution.distribution_config.origins.items[0].custom_origin_config.http_port #=> Integer
|
|
10810
10933
|
# resp.distribution.distribution_config.origins.items[0].custom_origin_config.https_port #=> Integer
|
|
10811
10934
|
# resp.distribution.distribution_config.origins.items[0].custom_origin_config.origin_protocol_policy #=> String, one of "http-only", "match-viewer", "https-only"
|
|
@@ -10814,11 +10937,13 @@ module Aws::CloudFront
|
|
|
10814
10937
|
# resp.distribution.distribution_config.origins.items[0].custom_origin_config.origin_ssl_protocols.items[0] #=> String, one of "SSLv3", "TLSv1", "TLSv1.1", "TLSv1.2"
|
|
10815
10938
|
# resp.distribution.distribution_config.origins.items[0].custom_origin_config.origin_read_timeout #=> Integer
|
|
10816
10939
|
# resp.distribution.distribution_config.origins.items[0].custom_origin_config.origin_keepalive_timeout #=> Integer
|
|
10940
|
+
# resp.distribution.distribution_config.origins.items[0].custom_origin_config.ip_address_type #=> String, one of "ipv4", "ipv6", "dualstack"
|
|
10817
10941
|
# resp.distribution.distribution_config.origins.items[0].vpc_origin_config.vpc_origin_id #=> String
|
|
10818
10942
|
# resp.distribution.distribution_config.origins.items[0].vpc_origin_config.origin_read_timeout #=> Integer
|
|
10819
10943
|
# resp.distribution.distribution_config.origins.items[0].vpc_origin_config.origin_keepalive_timeout #=> Integer
|
|
10820
10944
|
# resp.distribution.distribution_config.origins.items[0].connection_attempts #=> Integer
|
|
10821
10945
|
# resp.distribution.distribution_config.origins.items[0].connection_timeout #=> Integer
|
|
10946
|
+
# resp.distribution.distribution_config.origins.items[0].response_completion_timeout #=> Integer
|
|
10822
10947
|
# resp.distribution.distribution_config.origins.items[0].origin_shield.enabled #=> Boolean
|
|
10823
10948
|
# resp.distribution.distribution_config.origins.items[0].origin_shield.origin_shield_region #=> String
|
|
10824
10949
|
# resp.distribution.distribution_config.origins.items[0].origin_access_control_id #=> String
|
|
@@ -10946,7 +11071,7 @@ module Aws::CloudFront
|
|
|
10946
11071
|
# resp.distribution.distribution_config.viewer_certificate.iam_certificate_id #=> String
|
|
10947
11072
|
# resp.distribution.distribution_config.viewer_certificate.acm_certificate_arn #=> String
|
|
10948
11073
|
# resp.distribution.distribution_config.viewer_certificate.ssl_support_method #=> String, one of "sni-only", "vip", "static-ip"
|
|
10949
|
-
# resp.distribution.distribution_config.viewer_certificate.minimum_protocol_version #=> String, one of "SSLv3", "TLSv1", "TLSv1_2016", "TLSv1.1_2016", "TLSv1.2_2018", "TLSv1.2_2019", "TLSv1.2_2021"
|
|
11074
|
+
# resp.distribution.distribution_config.viewer_certificate.minimum_protocol_version #=> String, one of "SSLv3", "TLSv1", "TLSv1_2016", "TLSv1.1_2016", "TLSv1.2_2018", "TLSv1.2_2019", "TLSv1.2_2021", "TLSv1.3_2025", "TLSv1.2_2025"
|
|
10950
11075
|
# resp.distribution.distribution_config.viewer_certificate.certificate #=> String
|
|
10951
11076
|
# resp.distribution.distribution_config.viewer_certificate.certificate_source #=> String, one of "cloudfront", "iam", "acm"
|
|
10952
11077
|
# resp.distribution.distribution_config.restrictions.geo_restriction.restriction_type #=> String, one of "blacklist", "whitelist", "none"
|
|
@@ -10979,18 +11104,44 @@ module Aws::CloudFront
|
|
|
10979
11104
|
req.send_request(options)
|
|
10980
11105
|
end
|
|
10981
11106
|
|
|
10982
|
-
#
|
|
10983
|
-
#
|
|
11107
|
+
# <note markdown="1"> We recommend that you use the
|
|
11108
|
+
# `UpdateDomainAssociation` API operation
|
|
11109
|
+
# to move a domain association, as it supports both standard
|
|
11110
|
+
# distributions and distribution tenants. [AssociateAlias][1] performs
|
|
11111
|
+
# similar checks but only supports standard distributions.
|
|
11112
|
+
#
|
|
11113
|
+
# </note>
|
|
11114
|
+
#
|
|
11115
|
+
# Moves a domain from its current standard distribution or distribution
|
|
11116
|
+
# tenant to another one.
|
|
11117
|
+
#
|
|
11118
|
+
# You must first disable the source distribution (standard distribution
|
|
11119
|
+
# or distribution tenant) and then separately call this operation to
|
|
11120
|
+
# move the domain to another target distribution (standard distribution
|
|
11121
|
+
# or distribution tenant).
|
|
11122
|
+
#
|
|
11123
|
+
# To use this operation, specify the domain and the ID of the target
|
|
11124
|
+
# resource (standard distribution or distribution tenant). For more
|
|
11125
|
+
# information, including how to set up the target resource,
|
|
11126
|
+
# prerequisites that you must complete, and other restrictions, see
|
|
11127
|
+
# [Moving an alternate domain name to a different standard distribution
|
|
11128
|
+
# or distribution tenant][2] in the *Amazon CloudFront Developer Guide*.
|
|
11129
|
+
#
|
|
11130
|
+
#
|
|
11131
|
+
#
|
|
11132
|
+
# [1]: https://docs.aws.amazon.com/cloudfront/latest/APIReference/API_AssociateAlias.html
|
|
11133
|
+
# [2]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/CNAMEs.html#alternate-domain-names-move
|
|
10984
11134
|
#
|
|
10985
11135
|
# @option params [required, String] :domain
|
|
10986
11136
|
# The domain to update.
|
|
10987
11137
|
#
|
|
10988
11138
|
# @option params [required, Types::DistributionResourceId] :target_resource
|
|
10989
|
-
# The target distribution
|
|
10990
|
-
# either `DistributionId` or
|
|
11139
|
+
# The target standard distribution or distribution tenant resource for
|
|
11140
|
+
# the domain. You can specify either `DistributionId` or
|
|
11141
|
+
# `DistributionTenantId`, but not both.
|
|
10991
11142
|
#
|
|
10992
11143
|
# @option params [String] :if_match
|
|
10993
|
-
# The value of the `ETag` identifier for the distribution or
|
|
11144
|
+
# The value of the `ETag` identifier for the standard distribution or
|
|
10994
11145
|
# distribution tenant that will be associated with the domain.
|
|
10995
11146
|
#
|
|
10996
11147
|
# @return [Types::UpdateDomainAssociationResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
@@ -11259,7 +11410,7 @@ module Aws::CloudFront
|
|
|
11259
11410
|
# @example Request syntax with placeholder values
|
|
11260
11411
|
#
|
|
11261
11412
|
# resp = client.update_function({
|
|
11262
|
-
# name: "
|
|
11413
|
+
# name: "FunctionName", # required
|
|
11263
11414
|
# if_match: "string", # required
|
|
11264
11415
|
# function_config: { # required
|
|
11265
11416
|
# comment: "string", # required
|
|
@@ -12145,7 +12296,7 @@ module Aws::CloudFront
|
|
|
12145
12296
|
tracer: tracer
|
|
12146
12297
|
)
|
|
12147
12298
|
context[:gem_name] = 'aws-sdk-cloudfront'
|
|
12148
|
-
context[:gem_version] = '1.
|
|
12299
|
+
context[:gem_version] = '1.132.0'
|
|
12149
12300
|
Seahorse::Client::Request.new(handlers, context)
|
|
12150
12301
|
end
|
|
12151
12302
|
|