aws-sdk-cloudfront 1.120.0 → 1.122.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1ef9b4399543f568a93660b1a4b689dbe3675c162a48f5e62e37725bb6baf17e
4
- data.tar.gz: 35c65b45a4f39c1e189a08793f817d0f0304655826582e60fd84ee8f3d450f28
3
+ metadata.gz: 359d308a62d992c40396336c82b9cec4def4e69f8098c3d2cff847eb3849d408
4
+ data.tar.gz: d8169592f55c23b206e34458e89890b827910c05b3e3026ad370e6d7f7810763
5
5
  SHA512:
6
- metadata.gz: 29fedbd5b7e2778aa542ca87c3c35ac061173b30e64636ac8775fc85fcef89a55606bf9a1572d2bd97d10a43087df8cad9c0016d59c84ddefad4d3f5dea5b7e1
7
- data.tar.gz: 1489387cb2d8af3562df0d24518964a4bff522b529f79745474c60ea4091f268d55c9a44799f62a6e425ea57986d80ab4cad40c3ec159446ab7242dd188062d1
6
+ metadata.gz: 4e2bd53c1c3eeb65e9d0aa2b7cc5f5bdd71439170b079cba1ffeb4f3f6da5aabfbd60c438bbdfa0152321a07aa8ca6ac6069935b8f5e0c2d7543e0bb737aa01d
7
+ data.tar.gz: 75d4d1659f7e3be00ef258c488eddc725e7cd55799e96c3fea385dd9ef6ea78ccbe5a9a072b3cf371cd5b21c44c54ee1ac8736dd198a0b9c56c443a2ddb8d57e
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.122.0 (2025-07-30)
5
+ ------------------
6
+
7
+ * Feature - This release adds new origin timeout options: 1) ResponseCompletionTimeout and 2) OriginReadTimeout (for S3 origins)
8
+
9
+ 1.121.0 (2025-07-21)
10
+ ------------------
11
+
12
+ * Feature - Add dualstack endpoint support
13
+
4
14
  1.120.0 (2025-07-17)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.120.0
1
+ 1.122.0
@@ -95,7 +95,7 @@ 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 an instance of any one of the
98
+ # Your AWS credentials used for authentication. This can be an instance of any one of the
99
99
  # following classes:
100
100
  #
101
101
  # * `Aws::Credentials` - Used for configuring static, non-refreshing
@@ -128,18 +128,23 @@ module Aws::CloudFront
128
128
  # locations will be searched for credentials:
129
129
  #
130
130
  # * `Aws.config[:credentials]`
131
+ #
131
132
  # * The `:access_key_id`, `:secret_access_key`, `:session_token`, and
132
133
  # `:account_id` options.
133
- # * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY'],
134
- # ENV['AWS_SESSION_TOKEN'], and ENV['AWS_ACCOUNT_ID']
134
+ #
135
+ # * `ENV['AWS_ACCESS_KEY_ID']`, `ENV['AWS_SECRET_ACCESS_KEY']`,
136
+ # `ENV['AWS_SESSION_TOKEN']`, and `ENV['AWS_ACCOUNT_ID']`.
137
+ #
135
138
  # * `~/.aws/credentials`
139
+ #
136
140
  # * `~/.aws/config`
141
+ #
137
142
  # * EC2/ECS IMDS instance profile - When used by default, the timeouts
138
143
  # are very aggressive. Construct and pass an instance of
139
144
  # `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
140
145
  # enable retries and extended timeouts. Instance profile credential
141
- # fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
142
- # to true.
146
+ # fetching can be disabled by setting `ENV['AWS_EC2_METADATA_DISABLED']`
147
+ # to `true`.
143
148
  #
144
149
  # @option options [required, String] :region
145
150
  # The AWS region to connect to. The configured `:region` is
@@ -167,6 +172,11 @@ module Aws::CloudFront
167
172
  # When false, the request will raise a `RetryCapacityNotAvailableError` and will
168
173
  # not retry instead of sleeping.
169
174
  #
175
+ # @option options [Array<String>] :auth_scheme_preference
176
+ # A list of preferred authentication schemes to use when making a request. Supported values are:
177
+ # `sigv4`, `sigv4a`, `httpBearerAuth`, and `noAuth`. When set using `ENV['AWS_AUTH_SCHEME_PREFERENCE']` or in
178
+ # shared config as `auth_scheme_preference`, the value should be a comma-separated list.
179
+ #
170
180
  # @option options [Boolean] :client_side_monitoring (false)
171
181
  # When `true`, client-side metrics will be collected for all API requests from
172
182
  # this client.
@@ -253,8 +263,8 @@ module Aws::CloudFront
253
263
  # 4 times. Used in `standard` and `adaptive` retry modes.
254
264
  #
255
265
  # @option options [String] :profile ("default")
256
- # Used when loading credentials from the shared credentials file
257
- # at HOME/.aws/credentials. When not specified, 'default' is used.
266
+ # Used when loading credentials from the shared credentials file at `HOME/.aws/credentials`.
267
+ # When not specified, 'default' is used.
258
268
  #
259
269
  # @option options [String] :request_checksum_calculation ("when_supported")
260
270
  # Determines when a checksum will be calculated for request payloads. Values are:
@@ -367,7 +377,7 @@ module Aws::CloudFront
367
377
  # `Aws::Telemetry::OTelProvider` for telemetry provider.
368
378
  #
369
379
  # @option options [Aws::TokenProvider] :token_provider
370
- # A Bearer Token Provider. This can be an instance of any one of the
380
+ # Your Bearer token used for authentication. This can be an instance of any one of the
371
381
  # following classes:
372
382
  #
373
383
  # * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
@@ -713,6 +723,7 @@ module Aws::CloudFront
713
723
  # resp.distribution.distribution_config.origins.items[0].custom_headers.items[0].header_name #=> String
714
724
  # resp.distribution.distribution_config.origins.items[0].custom_headers.items[0].header_value #=> String
715
725
  # resp.distribution.distribution_config.origins.items[0].s3_origin_config.origin_access_identity #=> String
726
+ # resp.distribution.distribution_config.origins.items[0].s3_origin_config.origin_read_timeout #=> Integer
716
727
  # resp.distribution.distribution_config.origins.items[0].custom_origin_config.http_port #=> Integer
717
728
  # resp.distribution.distribution_config.origins.items[0].custom_origin_config.https_port #=> Integer
718
729
  # resp.distribution.distribution_config.origins.items[0].custom_origin_config.origin_protocol_policy #=> String, one of "http-only", "match-viewer", "https-only"
@@ -726,6 +737,7 @@ module Aws::CloudFront
726
737
  # resp.distribution.distribution_config.origins.items[0].vpc_origin_config.origin_keepalive_timeout #=> Integer
727
738
  # resp.distribution.distribution_config.origins.items[0].connection_attempts #=> Integer
728
739
  # resp.distribution.distribution_config.origins.items[0].connection_timeout #=> Integer
740
+ # resp.distribution.distribution_config.origins.items[0].response_completion_timeout #=> Integer
729
741
  # resp.distribution.distribution_config.origins.items[0].origin_shield.enabled #=> Boolean
730
742
  # resp.distribution.distribution_config.origins.items[0].origin_shield.origin_shield_region #=> String
731
743
  # resp.distribution.distribution_config.origins.items[0].origin_access_control_id #=> String
@@ -954,6 +966,11 @@ module Aws::CloudFront
954
966
  # * The default, minimum, and maximum time to live (TTL) values that you
955
967
  # want objects to stay in the CloudFront cache.
956
968
  #
969
+ # If your minimum TTL is greater than 0, CloudFront will cache content
970
+ # for at least the duration specified in the cache policy's minimum
971
+ # TTL, even if the `Cache-Control: no-cache`, `no-store`, or `private`
972
+ # directives are present in the origin headers.
973
+ #
957
974
  # The headers, cookies, and query strings that are included in the cache
958
975
  # key are also included in requests that CloudFront sends to the origin.
959
976
  # CloudFront sends a request when it can't find an object in its cache
@@ -1283,6 +1300,7 @@ module Aws::CloudFront
1283
1300
  # },
1284
1301
  # s3_origin_config: {
1285
1302
  # origin_access_identity: "string", # required
1303
+ # origin_read_timeout: 1,
1286
1304
  # },
1287
1305
  # custom_origin_config: {
1288
1306
  # http_port: 1, # required
@@ -1302,6 +1320,7 @@ module Aws::CloudFront
1302
1320
  # },
1303
1321
  # connection_attempts: 1,
1304
1322
  # connection_timeout: 1,
1323
+ # response_completion_timeout: 1,
1305
1324
  # origin_shield: {
1306
1325
  # enabled: false, # required
1307
1326
  # origin_shield_region: "OriginShieldRegion",
@@ -1505,7 +1524,7 @@ module Aws::CloudFront
1505
1524
  # enabled: false, # required
1506
1525
  # viewer_certificate: {
1507
1526
  # cloud_front_default_certificate: false,
1508
- # iam_certificate_id: "string",
1527
+ # iam_certificate_id: "ServerCertificateId",
1509
1528
  # acm_certificate_arn: "string",
1510
1529
  # ssl_support_method: "sni-only", # accepts sni-only, vip, static-ip
1511
1530
  # minimum_protocol_version: "SSLv3", # accepts SSLv3, TLSv1, TLSv1_2016, TLSv1.1_2016, TLSv1.2_2018, TLSv1.2_2019, TLSv1.2_2021
@@ -1531,7 +1550,7 @@ module Aws::CloudFront
1531
1550
  # name: "ParameterName", # required
1532
1551
  # definition: { # required
1533
1552
  # string_schema: {
1534
- # comment: "string",
1553
+ # comment: "sensitiveStringType",
1535
1554
  # default_value: "ParameterValue",
1536
1555
  # required: false, # required
1537
1556
  # },
@@ -1580,6 +1599,7 @@ module Aws::CloudFront
1580
1599
  # resp.distribution.distribution_config.origins.items[0].custom_headers.items[0].header_name #=> String
1581
1600
  # resp.distribution.distribution_config.origins.items[0].custom_headers.items[0].header_value #=> String
1582
1601
  # resp.distribution.distribution_config.origins.items[0].s3_origin_config.origin_access_identity #=> String
1602
+ # resp.distribution.distribution_config.origins.items[0].s3_origin_config.origin_read_timeout #=> Integer
1583
1603
  # resp.distribution.distribution_config.origins.items[0].custom_origin_config.http_port #=> Integer
1584
1604
  # resp.distribution.distribution_config.origins.items[0].custom_origin_config.https_port #=> Integer
1585
1605
  # resp.distribution.distribution_config.origins.items[0].custom_origin_config.origin_protocol_policy #=> String, one of "http-only", "match-viewer", "https-only"
@@ -1593,6 +1613,7 @@ module Aws::CloudFront
1593
1613
  # resp.distribution.distribution_config.origins.items[0].vpc_origin_config.origin_keepalive_timeout #=> Integer
1594
1614
  # resp.distribution.distribution_config.origins.items[0].connection_attempts #=> Integer
1595
1615
  # resp.distribution.distribution_config.origins.items[0].connection_timeout #=> Integer
1616
+ # resp.distribution.distribution_config.origins.items[0].response_completion_timeout #=> Integer
1596
1617
  # resp.distribution.distribution_config.origins.items[0].origin_shield.enabled #=> Boolean
1597
1618
  # resp.distribution.distribution_config.origins.items[0].origin_shield.origin_shield_region #=> String
1598
1619
  # resp.distribution.distribution_config.origins.items[0].origin_access_control_id #=> String
@@ -1936,6 +1957,7 @@ module Aws::CloudFront
1936
1957
  # },
1937
1958
  # s3_origin_config: {
1938
1959
  # origin_access_identity: "string", # required
1960
+ # origin_read_timeout: 1,
1939
1961
  # },
1940
1962
  # custom_origin_config: {
1941
1963
  # http_port: 1, # required
@@ -1955,6 +1977,7 @@ module Aws::CloudFront
1955
1977
  # },
1956
1978
  # connection_attempts: 1,
1957
1979
  # connection_timeout: 1,
1980
+ # response_completion_timeout: 1,
1958
1981
  # origin_shield: {
1959
1982
  # enabled: false, # required
1960
1983
  # origin_shield_region: "OriginShieldRegion",
@@ -2158,7 +2181,7 @@ module Aws::CloudFront
2158
2181
  # enabled: false, # required
2159
2182
  # viewer_certificate: {
2160
2183
  # cloud_front_default_certificate: false,
2161
- # iam_certificate_id: "string",
2184
+ # iam_certificate_id: "ServerCertificateId",
2162
2185
  # acm_certificate_arn: "string",
2163
2186
  # ssl_support_method: "sni-only", # accepts sni-only, vip, static-ip
2164
2187
  # minimum_protocol_version: "SSLv3", # accepts SSLv3, TLSv1, TLSv1_2016, TLSv1.1_2016, TLSv1.2_2018, TLSv1.2_2019, TLSv1.2_2021
@@ -2184,7 +2207,7 @@ module Aws::CloudFront
2184
2207
  # name: "ParameterName", # required
2185
2208
  # definition: { # required
2186
2209
  # string_schema: {
2187
- # comment: "string",
2210
+ # comment: "sensitiveStringType",
2188
2211
  # default_value: "ParameterValue",
2189
2212
  # required: false, # required
2190
2213
  # },
@@ -2242,6 +2265,7 @@ module Aws::CloudFront
2242
2265
  # resp.distribution.distribution_config.origins.items[0].custom_headers.items[0].header_name #=> String
2243
2266
  # resp.distribution.distribution_config.origins.items[0].custom_headers.items[0].header_value #=> String
2244
2267
  # resp.distribution.distribution_config.origins.items[0].s3_origin_config.origin_access_identity #=> String
2268
+ # resp.distribution.distribution_config.origins.items[0].s3_origin_config.origin_read_timeout #=> Integer
2245
2269
  # resp.distribution.distribution_config.origins.items[0].custom_origin_config.http_port #=> Integer
2246
2270
  # resp.distribution.distribution_config.origins.items[0].custom_origin_config.https_port #=> Integer
2247
2271
  # resp.distribution.distribution_config.origins.items[0].custom_origin_config.origin_protocol_policy #=> String, one of "http-only", "match-viewer", "https-only"
@@ -2255,6 +2279,7 @@ module Aws::CloudFront
2255
2279
  # resp.distribution.distribution_config.origins.items[0].vpc_origin_config.origin_keepalive_timeout #=> Integer
2256
2280
  # resp.distribution.distribution_config.origins.items[0].connection_attempts #=> Integer
2257
2281
  # resp.distribution.distribution_config.origins.items[0].connection_timeout #=> Integer
2282
+ # resp.distribution.distribution_config.origins.items[0].response_completion_timeout #=> Integer
2258
2283
  # resp.distribution.distribution_config.origins.items[0].origin_shield.enabled #=> Boolean
2259
2284
  # resp.distribution.distribution_config.origins.items[0].origin_shield.origin_shield_region #=> String
2260
2285
  # resp.distribution.distribution_config.origins.items[0].origin_access_control_id #=> String
@@ -4013,7 +4038,7 @@ module Aws::CloudFront
4013
4038
  # @example Request syntax with placeholder values
4014
4039
  #
4015
4040
  # resp = client.delete_function({
4016
- # name: "string", # required
4041
+ # name: "FunctionName", # required
4017
4042
  # if_match: "string", # required
4018
4043
  # })
4019
4044
  #
@@ -4474,7 +4499,7 @@ module Aws::CloudFront
4474
4499
  # @example Request syntax with placeholder values
4475
4500
  #
4476
4501
  # resp = client.describe_function({
4477
- # name: "string", # required
4502
+ # name: "FunctionName", # required
4478
4503
  # stage: "DEVELOPMENT", # accepts DEVELOPMENT, LIVE
4479
4504
  # })
4480
4505
  #
@@ -5079,6 +5104,7 @@ module Aws::CloudFront
5079
5104
  # resp.distribution.distribution_config.origins.items[0].custom_headers.items[0].header_name #=> String
5080
5105
  # resp.distribution.distribution_config.origins.items[0].custom_headers.items[0].header_value #=> String
5081
5106
  # resp.distribution.distribution_config.origins.items[0].s3_origin_config.origin_access_identity #=> String
5107
+ # resp.distribution.distribution_config.origins.items[0].s3_origin_config.origin_read_timeout #=> Integer
5082
5108
  # resp.distribution.distribution_config.origins.items[0].custom_origin_config.http_port #=> Integer
5083
5109
  # resp.distribution.distribution_config.origins.items[0].custom_origin_config.https_port #=> Integer
5084
5110
  # resp.distribution.distribution_config.origins.items[0].custom_origin_config.origin_protocol_policy #=> String, one of "http-only", "match-viewer", "https-only"
@@ -5092,6 +5118,7 @@ module Aws::CloudFront
5092
5118
  # resp.distribution.distribution_config.origins.items[0].vpc_origin_config.origin_keepalive_timeout #=> Integer
5093
5119
  # resp.distribution.distribution_config.origins.items[0].connection_attempts #=> Integer
5094
5120
  # resp.distribution.distribution_config.origins.items[0].connection_timeout #=> Integer
5121
+ # resp.distribution.distribution_config.origins.items[0].response_completion_timeout #=> Integer
5095
5122
  # resp.distribution.distribution_config.origins.items[0].origin_shield.enabled #=> Boolean
5096
5123
  # resp.distribution.distribution_config.origins.items[0].origin_shield.origin_shield_region #=> String
5097
5124
  # resp.distribution.distribution_config.origins.items[0].origin_access_control_id #=> String
@@ -5291,6 +5318,7 @@ module Aws::CloudFront
5291
5318
  # resp.distribution_config.origins.items[0].custom_headers.items[0].header_name #=> String
5292
5319
  # resp.distribution_config.origins.items[0].custom_headers.items[0].header_value #=> String
5293
5320
  # resp.distribution_config.origins.items[0].s3_origin_config.origin_access_identity #=> String
5321
+ # resp.distribution_config.origins.items[0].s3_origin_config.origin_read_timeout #=> Integer
5294
5322
  # resp.distribution_config.origins.items[0].custom_origin_config.http_port #=> Integer
5295
5323
  # resp.distribution_config.origins.items[0].custom_origin_config.https_port #=> Integer
5296
5324
  # resp.distribution_config.origins.items[0].custom_origin_config.origin_protocol_policy #=> String, one of "http-only", "match-viewer", "https-only"
@@ -5304,6 +5332,7 @@ module Aws::CloudFront
5304
5332
  # resp.distribution_config.origins.items[0].vpc_origin_config.origin_keepalive_timeout #=> Integer
5305
5333
  # resp.distribution_config.origins.items[0].connection_attempts #=> Integer
5306
5334
  # resp.distribution_config.origins.items[0].connection_timeout #=> Integer
5335
+ # resp.distribution_config.origins.items[0].response_completion_timeout #=> Integer
5307
5336
  # resp.distribution_config.origins.items[0].origin_shield.enabled #=> Boolean
5308
5337
  # resp.distribution_config.origins.items[0].origin_shield.origin_shield_region #=> String
5309
5338
  # resp.distribution_config.origins.items[0].origin_access_control_id #=> String
@@ -5758,7 +5787,7 @@ module Aws::CloudFront
5758
5787
  # @example Request syntax with placeholder values
5759
5788
  #
5760
5789
  # resp = client.get_function({
5761
- # name: "string", # required
5790
+ # name: "FunctionName", # required
5762
5791
  # stage: "DEVELOPMENT", # accepts DEVELOPMENT, LIVE
5763
5792
  # })
5764
5793
  #
@@ -7237,6 +7266,7 @@ module Aws::CloudFront
7237
7266
  # resp.distribution_list.items[0].origins.items[0].custom_headers.items[0].header_name #=> String
7238
7267
  # resp.distribution_list.items[0].origins.items[0].custom_headers.items[0].header_value #=> String
7239
7268
  # resp.distribution_list.items[0].origins.items[0].s3_origin_config.origin_access_identity #=> String
7269
+ # resp.distribution_list.items[0].origins.items[0].s3_origin_config.origin_read_timeout #=> Integer
7240
7270
  # resp.distribution_list.items[0].origins.items[0].custom_origin_config.http_port #=> Integer
7241
7271
  # resp.distribution_list.items[0].origins.items[0].custom_origin_config.https_port #=> Integer
7242
7272
  # resp.distribution_list.items[0].origins.items[0].custom_origin_config.origin_protocol_policy #=> String, one of "http-only", "match-viewer", "https-only"
@@ -7250,6 +7280,7 @@ module Aws::CloudFront
7250
7280
  # resp.distribution_list.items[0].origins.items[0].vpc_origin_config.origin_keepalive_timeout #=> Integer
7251
7281
  # resp.distribution_list.items[0].origins.items[0].connection_attempts #=> Integer
7252
7282
  # resp.distribution_list.items[0].origins.items[0].connection_timeout #=> Integer
7283
+ # resp.distribution_list.items[0].origins.items[0].response_completion_timeout #=> Integer
7253
7284
  # resp.distribution_list.items[0].origins.items[0].origin_shield.enabled #=> Boolean
7254
7285
  # resp.distribution_list.items[0].origins.items[0].origin_shield.origin_shield_region #=> String
7255
7286
  # resp.distribution_list.items[0].origins.items[0].origin_access_control_id #=> String
@@ -7454,6 +7485,7 @@ module Aws::CloudFront
7454
7485
  # resp.distribution_list.items[0].origins.items[0].custom_headers.items[0].header_name #=> String
7455
7486
  # resp.distribution_list.items[0].origins.items[0].custom_headers.items[0].header_value #=> String
7456
7487
  # resp.distribution_list.items[0].origins.items[0].s3_origin_config.origin_access_identity #=> String
7488
+ # resp.distribution_list.items[0].origins.items[0].s3_origin_config.origin_read_timeout #=> Integer
7457
7489
  # resp.distribution_list.items[0].origins.items[0].custom_origin_config.http_port #=> Integer
7458
7490
  # resp.distribution_list.items[0].origins.items[0].custom_origin_config.https_port #=> Integer
7459
7491
  # resp.distribution_list.items[0].origins.items[0].custom_origin_config.origin_protocol_policy #=> String, one of "http-only", "match-viewer", "https-only"
@@ -7467,6 +7499,7 @@ module Aws::CloudFront
7467
7499
  # resp.distribution_list.items[0].origins.items[0].vpc_origin_config.origin_keepalive_timeout #=> Integer
7468
7500
  # resp.distribution_list.items[0].origins.items[0].connection_attempts #=> Integer
7469
7501
  # resp.distribution_list.items[0].origins.items[0].connection_timeout #=> Integer
7502
+ # resp.distribution_list.items[0].origins.items[0].response_completion_timeout #=> Integer
7470
7503
  # resp.distribution_list.items[0].origins.items[0].origin_shield.enabled #=> Boolean
7471
7504
  # resp.distribution_list.items[0].origins.items[0].origin_shield.origin_shield_region #=> String
7472
7505
  # resp.distribution_list.items[0].origins.items[0].origin_access_control_id #=> String
@@ -7682,7 +7715,7 @@ module Aws::CloudFront
7682
7715
  # @option params [required, String] :connection_mode
7683
7716
  # This field specifies whether the connection mode is through a standard
7684
7717
  # distribution (direct) or a multi-tenant distribution with distribution
7685
- # tenants(tenant-only).
7718
+ # tenants (tenant-only).
7686
7719
  #
7687
7720
  # @return [Types::ListDistributionsByConnectionModeResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
7688
7721
  #
@@ -7725,6 +7758,7 @@ module Aws::CloudFront
7725
7758
  # resp.distribution_list.items[0].origins.items[0].custom_headers.items[0].header_name #=> String
7726
7759
  # resp.distribution_list.items[0].origins.items[0].custom_headers.items[0].header_value #=> String
7727
7760
  # resp.distribution_list.items[0].origins.items[0].s3_origin_config.origin_access_identity #=> String
7761
+ # resp.distribution_list.items[0].origins.items[0].s3_origin_config.origin_read_timeout #=> Integer
7728
7762
  # resp.distribution_list.items[0].origins.items[0].custom_origin_config.http_port #=> Integer
7729
7763
  # resp.distribution_list.items[0].origins.items[0].custom_origin_config.https_port #=> Integer
7730
7764
  # resp.distribution_list.items[0].origins.items[0].custom_origin_config.origin_protocol_policy #=> String, one of "http-only", "match-viewer", "https-only"
@@ -7738,6 +7772,7 @@ module Aws::CloudFront
7738
7772
  # resp.distribution_list.items[0].origins.items[0].vpc_origin_config.origin_keepalive_timeout #=> Integer
7739
7773
  # resp.distribution_list.items[0].origins.items[0].connection_attempts #=> Integer
7740
7774
  # resp.distribution_list.items[0].origins.items[0].connection_timeout #=> Integer
7775
+ # resp.distribution_list.items[0].origins.items[0].response_completion_timeout #=> Integer
7741
7776
  # resp.distribution_list.items[0].origins.items[0].origin_shield.enabled #=> Boolean
7742
7777
  # resp.distribution_list.items[0].origins.items[0].origin_shield.origin_shield_region #=> String
7743
7778
  # resp.distribution_list.items[0].origins.items[0].origin_access_control_id #=> String
@@ -8070,6 +8105,7 @@ module Aws::CloudFront
8070
8105
  # resp.distribution_list.items[0].origins.items[0].custom_headers.items[0].header_name #=> String
8071
8106
  # resp.distribution_list.items[0].origins.items[0].custom_headers.items[0].header_value #=> String
8072
8107
  # resp.distribution_list.items[0].origins.items[0].s3_origin_config.origin_access_identity #=> String
8108
+ # resp.distribution_list.items[0].origins.items[0].s3_origin_config.origin_read_timeout #=> Integer
8073
8109
  # resp.distribution_list.items[0].origins.items[0].custom_origin_config.http_port #=> Integer
8074
8110
  # resp.distribution_list.items[0].origins.items[0].custom_origin_config.https_port #=> Integer
8075
8111
  # resp.distribution_list.items[0].origins.items[0].custom_origin_config.origin_protocol_policy #=> String, one of "http-only", "match-viewer", "https-only"
@@ -8083,6 +8119,7 @@ module Aws::CloudFront
8083
8119
  # resp.distribution_list.items[0].origins.items[0].vpc_origin_config.origin_keepalive_timeout #=> Integer
8084
8120
  # resp.distribution_list.items[0].origins.items[0].connection_attempts #=> Integer
8085
8121
  # resp.distribution_list.items[0].origins.items[0].connection_timeout #=> Integer
8122
+ # resp.distribution_list.items[0].origins.items[0].response_completion_timeout #=> Integer
8086
8123
  # resp.distribution_list.items[0].origins.items[0].origin_shield.enabled #=> Boolean
8087
8124
  # resp.distribution_list.items[0].origins.items[0].origin_shield.origin_shield_region #=> String
8088
8125
  # resp.distribution_list.items[0].origins.items[0].origin_access_control_id #=> String
@@ -8417,6 +8454,7 @@ module Aws::CloudFront
8417
8454
  # resp.distribution_list.items[0].origins.items[0].custom_headers.items[0].header_name #=> String
8418
8455
  # resp.distribution_list.items[0].origins.items[0].custom_headers.items[0].header_value #=> String
8419
8456
  # resp.distribution_list.items[0].origins.items[0].s3_origin_config.origin_access_identity #=> String
8457
+ # resp.distribution_list.items[0].origins.items[0].s3_origin_config.origin_read_timeout #=> Integer
8420
8458
  # resp.distribution_list.items[0].origins.items[0].custom_origin_config.http_port #=> Integer
8421
8459
  # resp.distribution_list.items[0].origins.items[0].custom_origin_config.https_port #=> Integer
8422
8460
  # resp.distribution_list.items[0].origins.items[0].custom_origin_config.origin_protocol_policy #=> String, one of "http-only", "match-viewer", "https-only"
@@ -8430,6 +8468,7 @@ module Aws::CloudFront
8430
8468
  # resp.distribution_list.items[0].origins.items[0].vpc_origin_config.origin_keepalive_timeout #=> Integer
8431
8469
  # resp.distribution_list.items[0].origins.items[0].connection_attempts #=> Integer
8432
8470
  # resp.distribution_list.items[0].origins.items[0].connection_timeout #=> Integer
8471
+ # resp.distribution_list.items[0].origins.items[0].response_completion_timeout #=> Integer
8433
8472
  # resp.distribution_list.items[0].origins.items[0].origin_shield.enabled #=> Boolean
8434
8473
  # resp.distribution_list.items[0].origins.items[0].origin_shield.origin_shield_region #=> String
8435
8474
  # resp.distribution_list.items[0].origins.items[0].origin_access_control_id #=> String
@@ -9112,6 +9151,8 @@ module Aws::CloudFront
9112
9151
  #
9113
9152
  # * {Types::ListOriginAccessControlsResult#origin_access_control_list #origin_access_control_list} => Types::OriginAccessControlList
9114
9153
  #
9154
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
9155
+ #
9115
9156
  # @example Request syntax with placeholder values
9116
9157
  #
9117
9158
  # resp = client.list_origin_access_controls({
@@ -9625,7 +9666,7 @@ module Aws::CloudFront
9625
9666
  # @example Request syntax with placeholder values
9626
9667
  #
9627
9668
  # resp = client.publish_function({
9628
- # name: "string", # required
9669
+ # name: "FunctionName", # required
9629
9670
  # if_match: "string", # required
9630
9671
  # })
9631
9672
  #
@@ -9736,7 +9777,7 @@ module Aws::CloudFront
9736
9777
  # @example Request syntax with placeholder values
9737
9778
  #
9738
9779
  # resp = client.test_function({
9739
- # name: "string", # required
9780
+ # name: "FunctionName", # required
9740
9781
  # if_match: "string", # required
9741
9782
  # stage: "DEVELOPMENT", # accepts DEVELOPMENT, LIVE
9742
9783
  # event_object: "data", # required
@@ -9820,6 +9861,11 @@ module Aws::CloudFront
9820
9861
  # configuration, including the fields that you modified and those
9821
9862
  # that you didn't.
9822
9863
  #
9864
+ # If your minimum TTL is greater than 0, CloudFront will cache content
9865
+ # for at least the duration specified in the cache policy's minimum
9866
+ # TTL, even if the `Cache-Control: no-cache`, `no-store`, or `private`
9867
+ # directives are present in the origin headers.
9868
+ #
9823
9869
  # @option params [required, Types::CachePolicyConfig] :cache_policy_config
9824
9870
  # A cache policy configuration.
9825
9871
  #
@@ -10180,6 +10226,7 @@ module Aws::CloudFront
10180
10226
  # },
10181
10227
  # s3_origin_config: {
10182
10228
  # origin_access_identity: "string", # required
10229
+ # origin_read_timeout: 1,
10183
10230
  # },
10184
10231
  # custom_origin_config: {
10185
10232
  # http_port: 1, # required
@@ -10199,6 +10246,7 @@ module Aws::CloudFront
10199
10246
  # },
10200
10247
  # connection_attempts: 1,
10201
10248
  # connection_timeout: 1,
10249
+ # response_completion_timeout: 1,
10202
10250
  # origin_shield: {
10203
10251
  # enabled: false, # required
10204
10252
  # origin_shield_region: "OriginShieldRegion",
@@ -10402,7 +10450,7 @@ module Aws::CloudFront
10402
10450
  # enabled: false, # required
10403
10451
  # viewer_certificate: {
10404
10452
  # cloud_front_default_certificate: false,
10405
- # iam_certificate_id: "string",
10453
+ # iam_certificate_id: "ServerCertificateId",
10406
10454
  # acm_certificate_arn: "string",
10407
10455
  # ssl_support_method: "sni-only", # accepts sni-only, vip, static-ip
10408
10456
  # minimum_protocol_version: "SSLv3", # accepts SSLv3, TLSv1, TLSv1_2016, TLSv1.1_2016, TLSv1.2_2018, TLSv1.2_2019, TLSv1.2_2021
@@ -10428,7 +10476,7 @@ module Aws::CloudFront
10428
10476
  # name: "ParameterName", # required
10429
10477
  # definition: { # required
10430
10478
  # string_schema: {
10431
- # comment: "string",
10479
+ # comment: "sensitiveStringType",
10432
10480
  # default_value: "ParameterValue",
10433
10481
  # required: false, # required
10434
10482
  # },
@@ -10479,6 +10527,7 @@ module Aws::CloudFront
10479
10527
  # resp.distribution.distribution_config.origins.items[0].custom_headers.items[0].header_name #=> String
10480
10528
  # resp.distribution.distribution_config.origins.items[0].custom_headers.items[0].header_value #=> String
10481
10529
  # resp.distribution.distribution_config.origins.items[0].s3_origin_config.origin_access_identity #=> String
10530
+ # resp.distribution.distribution_config.origins.items[0].s3_origin_config.origin_read_timeout #=> Integer
10482
10531
  # resp.distribution.distribution_config.origins.items[0].custom_origin_config.http_port #=> Integer
10483
10532
  # resp.distribution.distribution_config.origins.items[0].custom_origin_config.https_port #=> Integer
10484
10533
  # resp.distribution.distribution_config.origins.items[0].custom_origin_config.origin_protocol_policy #=> String, one of "http-only", "match-viewer", "https-only"
@@ -10492,6 +10541,7 @@ module Aws::CloudFront
10492
10541
  # resp.distribution.distribution_config.origins.items[0].vpc_origin_config.origin_keepalive_timeout #=> Integer
10493
10542
  # resp.distribution.distribution_config.origins.items[0].connection_attempts #=> Integer
10494
10543
  # resp.distribution.distribution_config.origins.items[0].connection_timeout #=> Integer
10544
+ # resp.distribution.distribution_config.origins.items[0].response_completion_timeout #=> Integer
10495
10545
  # resp.distribution.distribution_config.origins.items[0].origin_shield.enabled #=> Boolean
10496
10546
  # resp.distribution.distribution_config.origins.items[0].origin_shield.origin_shield_region #=> String
10497
10547
  # resp.distribution.distribution_config.origins.items[0].origin_access_control_id #=> String
@@ -10867,6 +10917,7 @@ module Aws::CloudFront
10867
10917
  # resp.distribution.distribution_config.origins.items[0].custom_headers.items[0].header_name #=> String
10868
10918
  # resp.distribution.distribution_config.origins.items[0].custom_headers.items[0].header_value #=> String
10869
10919
  # resp.distribution.distribution_config.origins.items[0].s3_origin_config.origin_access_identity #=> String
10920
+ # resp.distribution.distribution_config.origins.items[0].s3_origin_config.origin_read_timeout #=> Integer
10870
10921
  # resp.distribution.distribution_config.origins.items[0].custom_origin_config.http_port #=> Integer
10871
10922
  # resp.distribution.distribution_config.origins.items[0].custom_origin_config.https_port #=> Integer
10872
10923
  # resp.distribution.distribution_config.origins.items[0].custom_origin_config.origin_protocol_policy #=> String, one of "http-only", "match-viewer", "https-only"
@@ -10880,6 +10931,7 @@ module Aws::CloudFront
10880
10931
  # resp.distribution.distribution_config.origins.items[0].vpc_origin_config.origin_keepalive_timeout #=> Integer
10881
10932
  # resp.distribution.distribution_config.origins.items[0].connection_attempts #=> Integer
10882
10933
  # resp.distribution.distribution_config.origins.items[0].connection_timeout #=> Integer
10934
+ # resp.distribution.distribution_config.origins.items[0].response_completion_timeout #=> Integer
10883
10935
  # resp.distribution.distribution_config.origins.items[0].origin_shield.enabled #=> Boolean
10884
10936
  # resp.distribution.distribution_config.origins.items[0].origin_shield.origin_shield_region #=> String
10885
10937
  # resp.distribution.distribution_config.origins.items[0].origin_access_control_id #=> String
@@ -11346,7 +11398,7 @@ module Aws::CloudFront
11346
11398
  # @example Request syntax with placeholder values
11347
11399
  #
11348
11400
  # resp = client.update_function({
11349
- # name: "string", # required
11401
+ # name: "FunctionName", # required
11350
11402
  # if_match: "string", # required
11351
11403
  # function_config: { # required
11352
11404
  # comment: "string", # required
@@ -12232,7 +12284,7 @@ module Aws::CloudFront
12232
12284
  tracer: tracer
12233
12285
  )
12234
12286
  context[:gem_name] = 'aws-sdk-cloudfront'
12235
- context[:gem_version] = '1.120.0'
12287
+ context[:gem_version] = '1.122.0'
12236
12288
  Seahorse::Client::Request.new(handlers, context)
12237
12289
  end
12238
12290
 
@@ -618,6 +618,7 @@ module Aws::CloudFront
618
618
  S3OriginConfig = Shapes::StructureShape.new(name: 'S3OriginConfig')
619
619
  SSLSupportMethod = Shapes::StringShape.new(name: 'SSLSupportMethod')
620
620
  SamplingRate = Shapes::FloatShape.new(name: 'SamplingRate')
621
+ ServerCertificateId = Shapes::StringShape.new(name: 'ServerCertificateId')
621
622
  SessionStickinessConfig = Shapes::StructureShape.new(name: 'SessionStickinessConfig')
622
623
  Signer = Shapes::StructureShape.new(name: 'Signer')
623
624
  SignerList = Shapes::ListShape.new(name: 'SignerList')
@@ -1485,7 +1486,7 @@ module Aws::CloudFront
1485
1486
  DeleteFieldLevelEncryptionProfileRequest.add_member(:if_match, Shapes::ShapeRef.new(shape: string, location: "header", location_name: "If-Match"))
1486
1487
  DeleteFieldLevelEncryptionProfileRequest.struct_class = Types::DeleteFieldLevelEncryptionProfileRequest
1487
1488
 
1488
- DeleteFunctionRequest.add_member(:name, Shapes::ShapeRef.new(shape: string, required: true, location: "uri", location_name: "Name"))
1489
+ DeleteFunctionRequest.add_member(:name, Shapes::ShapeRef.new(shape: FunctionName, required: true, location: "uri", location_name: "Name"))
1489
1490
  DeleteFunctionRequest.add_member(:if_match, Shapes::ShapeRef.new(shape: string, required: true, location: "header", location_name: "If-Match"))
1490
1491
  DeleteFunctionRequest.struct_class = Types::DeleteFunctionRequest
1491
1492
 
@@ -1536,7 +1537,7 @@ module Aws::CloudFront
1536
1537
  DeleteVpcOriginResult[:payload] = :vpc_origin
1537
1538
  DeleteVpcOriginResult[:payload_member] = DeleteVpcOriginResult.member(:vpc_origin)
1538
1539
 
1539
- DescribeFunctionRequest.add_member(:name, Shapes::ShapeRef.new(shape: string, required: true, location: "uri", location_name: "Name"))
1540
+ DescribeFunctionRequest.add_member(:name, Shapes::ShapeRef.new(shape: FunctionName, required: true, location: "uri", location_name: "Name"))
1540
1541
  DescribeFunctionRequest.add_member(:stage, Shapes::ShapeRef.new(shape: FunctionStage, location: "querystring", location_name: "Stage"))
1541
1542
  DescribeFunctionRequest.struct_class = Types::DescribeFunctionRequest
1542
1543
 
@@ -1651,7 +1652,7 @@ module Aws::CloudFront
1651
1652
  DistributionSummary.add_member(:default_cache_behavior, Shapes::ShapeRef.new(shape: DefaultCacheBehavior, required: true, location_name: "DefaultCacheBehavior"))
1652
1653
  DistributionSummary.add_member(:cache_behaviors, Shapes::ShapeRef.new(shape: CacheBehaviors, required: true, location_name: "CacheBehaviors"))
1653
1654
  DistributionSummary.add_member(:custom_error_responses, Shapes::ShapeRef.new(shape: CustomErrorResponses, required: true, location_name: "CustomErrorResponses"))
1654
- DistributionSummary.add_member(:comment, Shapes::ShapeRef.new(shape: string, required: true, location_name: "Comment"))
1655
+ DistributionSummary.add_member(:comment, Shapes::ShapeRef.new(shape: sensitiveStringType, required: true, location_name: "Comment"))
1655
1656
  DistributionSummary.add_member(:price_class, Shapes::ShapeRef.new(shape: PriceClass, required: true, location_name: "PriceClass"))
1656
1657
  DistributionSummary.add_member(:enabled, Shapes::ShapeRef.new(shape: boolean, required: true, location_name: "Enabled"))
1657
1658
  DistributionSummary.add_member(:viewer_certificate, Shapes::ShapeRef.new(shape: ViewerCertificate, required: true, location_name: "ViewerCertificate"))
@@ -2046,7 +2047,7 @@ module Aws::CloudFront
2046
2047
  GetFieldLevelEncryptionResult[:payload] = :field_level_encryption
2047
2048
  GetFieldLevelEncryptionResult[:payload_member] = GetFieldLevelEncryptionResult.member(:field_level_encryption)
2048
2049
 
2049
- GetFunctionRequest.add_member(:name, Shapes::ShapeRef.new(shape: string, required: true, location: "uri", location_name: "Name"))
2050
+ GetFunctionRequest.add_member(:name, Shapes::ShapeRef.new(shape: FunctionName, required: true, location: "uri", location_name: "Name"))
2050
2051
  GetFunctionRequest.add_member(:stage, Shapes::ShapeRef.new(shape: FunctionStage, location: "querystring", location_name: "Stage"))
2051
2052
  GetFunctionRequest.struct_class = Types::GetFunctionRequest
2052
2053
 
@@ -2841,6 +2842,7 @@ module Aws::CloudFront
2841
2842
  Origin.add_member(:vpc_origin_config, Shapes::ShapeRef.new(shape: VpcOriginConfig, location_name: "VpcOriginConfig"))
2842
2843
  Origin.add_member(:connection_attempts, Shapes::ShapeRef.new(shape: integer, location_name: "ConnectionAttempts"))
2843
2844
  Origin.add_member(:connection_timeout, Shapes::ShapeRef.new(shape: integer, location_name: "ConnectionTimeout"))
2845
+ Origin.add_member(:response_completion_timeout, Shapes::ShapeRef.new(shape: integer, location_name: "ResponseCompletionTimeout"))
2844
2846
  Origin.add_member(:origin_shield, Shapes::ShapeRef.new(shape: OriginShield, location_name: "OriginShield"))
2845
2847
  Origin.add_member(:origin_access_control_id, Shapes::ShapeRef.new(shape: string, location_name: "OriginAccessControlId"))
2846
2848
  Origin.struct_class = Types::Origin
@@ -3031,7 +3033,7 @@ module Aws::CloudFront
3031
3033
 
3032
3034
  PublicKeySummaryList.member = Shapes::ShapeRef.new(shape: PublicKeySummary, location_name: "PublicKeySummary")
3033
3035
 
3034
- PublishFunctionRequest.add_member(:name, Shapes::ShapeRef.new(shape: string, required: true, location: "uri", location_name: "Name"))
3036
+ PublishFunctionRequest.add_member(:name, Shapes::ShapeRef.new(shape: FunctionName, required: true, location: "uri", location_name: "Name"))
3035
3037
  PublishFunctionRequest.add_member(:if_match, Shapes::ShapeRef.new(shape: string, required: true, location: "header", location_name: "If-Match"))
3036
3038
  PublishFunctionRequest.struct_class = Types::PublishFunctionRequest
3037
3039
 
@@ -3227,6 +3229,7 @@ module Aws::CloudFront
3227
3229
  S3Origin.struct_class = Types::S3Origin
3228
3230
 
3229
3231
  S3OriginConfig.add_member(:origin_access_identity, Shapes::ShapeRef.new(shape: string, required: true, location_name: "OriginAccessIdentity"))
3232
+ S3OriginConfig.add_member(:origin_read_timeout, Shapes::ShapeRef.new(shape: integer, location_name: "OriginReadTimeout"))
3230
3233
  S3OriginConfig.struct_class = Types::S3OriginConfig
3231
3234
 
3232
3235
  SessionStickinessConfig.add_member(:idle_ttl, Shapes::ShapeRef.new(shape: integer, required: true, location_name: "IdleTTL"))
@@ -3313,7 +3316,7 @@ module Aws::CloudFront
3313
3316
  StreamingLoggingConfig.add_member(:prefix, Shapes::ShapeRef.new(shape: string, required: true, location_name: "Prefix"))
3314
3317
  StreamingLoggingConfig.struct_class = Types::StreamingLoggingConfig
3315
3318
 
3316
- StringSchemaConfig.add_member(:comment, Shapes::ShapeRef.new(shape: string, location_name: "Comment"))
3319
+ StringSchemaConfig.add_member(:comment, Shapes::ShapeRef.new(shape: sensitiveStringType, location_name: "Comment"))
3317
3320
  StringSchemaConfig.add_member(:default_value, Shapes::ShapeRef.new(shape: ParameterValue, location_name: "DefaultValue"))
3318
3321
  StringSchemaConfig.add_member(:required, Shapes::ShapeRef.new(shape: boolean, required: true, location_name: "Required"))
3319
3322
  StringSchemaConfig.struct_class = Types::StringSchemaConfig
@@ -3344,7 +3347,7 @@ module Aws::CloudFront
3344
3347
  TestFunctionFailed.add_member(:message, Shapes::ShapeRef.new(shape: string, location_name: "Message"))
3345
3348
  TestFunctionFailed.struct_class = Types::TestFunctionFailed
3346
3349
 
3347
- TestFunctionRequest.add_member(:name, Shapes::ShapeRef.new(shape: string, required: true, location: "uri", location_name: "Name"))
3350
+ TestFunctionRequest.add_member(:name, Shapes::ShapeRef.new(shape: FunctionName, required: true, location: "uri", location_name: "Name"))
3348
3351
  TestFunctionRequest.add_member(:if_match, Shapes::ShapeRef.new(shape: string, required: true, location: "header", location_name: "If-Match"))
3349
3352
  TestFunctionRequest.add_member(:stage, Shapes::ShapeRef.new(shape: FunctionStage, location_name: "Stage"))
3350
3353
  TestFunctionRequest.add_member(:event_object, Shapes::ShapeRef.new(shape: FunctionEventObject, required: true, location_name: "EventObject"))
@@ -3679,7 +3682,7 @@ module Aws::CloudFront
3679
3682
  UpdateFieldLevelEncryptionProfileResult[:payload] = :field_level_encryption_profile
3680
3683
  UpdateFieldLevelEncryptionProfileResult[:payload_member] = UpdateFieldLevelEncryptionProfileResult.member(:field_level_encryption_profile)
3681
3684
 
3682
- UpdateFunctionRequest.add_member(:name, Shapes::ShapeRef.new(shape: string, required: true, location: "uri", location_name: "Name"))
3685
+ UpdateFunctionRequest.add_member(:name, Shapes::ShapeRef.new(shape: FunctionName, required: true, location: "uri", location_name: "Name"))
3683
3686
  UpdateFunctionRequest.add_member(:if_match, Shapes::ShapeRef.new(shape: string, required: true, location: "header", location_name: "If-Match"))
3684
3687
  UpdateFunctionRequest.add_member(:function_config, Shapes::ShapeRef.new(shape: FunctionConfig, required: true, location_name: "FunctionConfig"))
3685
3688
  UpdateFunctionRequest.add_member(:function_code, Shapes::ShapeRef.new(shape: FunctionBlob, required: true, location_name: "FunctionCode"))
@@ -3818,7 +3821,7 @@ module Aws::CloudFront
3818
3821
  VerifyDnsConfigurationResult.struct_class = Types::VerifyDnsConfigurationResult
3819
3822
 
3820
3823
  ViewerCertificate.add_member(:cloud_front_default_certificate, Shapes::ShapeRef.new(shape: boolean, location_name: "CloudFrontDefaultCertificate"))
3821
- ViewerCertificate.add_member(:iam_certificate_id, Shapes::ShapeRef.new(shape: string, location_name: "IAMCertificateId"))
3824
+ ViewerCertificate.add_member(:iam_certificate_id, Shapes::ShapeRef.new(shape: ServerCertificateId, location_name: "IAMCertificateId"))
3822
3825
  ViewerCertificate.add_member(:acm_certificate_arn, Shapes::ShapeRef.new(shape: string, location_name: "ACMCertificateArn"))
3823
3826
  ViewerCertificate.add_member(:ssl_support_method, Shapes::ShapeRef.new(shape: SSLSupportMethod, location_name: "SSLSupportMethod"))
3824
3827
  ViewerCertificate.add_member(:minimum_protocol_version, Shapes::ShapeRef.new(shape: MinimumProtocolVersion, location_name: "MinimumProtocolVersion"))
@@ -5585,6 +5588,12 @@ module Aws::CloudFront
5585
5588
  o.input = Shapes::ShapeRef.new(shape: ListOriginAccessControlsRequest)
5586
5589
  o.output = Shapes::ShapeRef.new(shape: ListOriginAccessControlsResult)
5587
5590
  o.errors << Shapes::ShapeRef.new(shape: InvalidArgument)
5591
+ o[:pager] = Aws::Pager.new(
5592
+ limit_key: "max_items",
5593
+ tokens: {
5594
+ "origin_access_control_list.next_marker" => "marker"
5595
+ }
5596
+ )
5588
5597
  end)
5589
5598
 
5590
5599
  api.add_operation(:list_origin_request_policies, Seahorse::Model::Operation.new.tap do |o|
@@ -10,11 +10,6 @@
10
10
  module Aws::CloudFront
11
11
  # Endpoint parameters used to influence endpoints per request.
12
12
  #
13
- # @!attribute region
14
- # The AWS region used to dispatch the request.
15
- #
16
- # @return [String]
17
- #
18
13
  # @!attribute use_dual_stack
19
14
  # When true, use the dual-stack endpoint. If the configured endpoint does not support dual-stack, dispatching the request MAY return an error.
20
15
  #
@@ -30,39 +25,44 @@ module Aws::CloudFront
30
25
  #
31
26
  # @return [String]
32
27
  #
28
+ # @!attribute region
29
+ # The AWS region used to dispatch the request.
30
+ #
31
+ # @return [String]
32
+ #
33
33
  EndpointParameters = Struct.new(
34
- :region,
35
34
  :use_dual_stack,
36
35
  :use_fips,
37
36
  :endpoint,
37
+ :region,
38
38
  ) do
39
39
  include Aws::Structure
40
40
 
41
41
  # @api private
42
42
  class << self
43
43
  PARAM_MAP = {
44
- 'Region' => :region,
45
44
  'UseDualStack' => :use_dual_stack,
46
45
  'UseFIPS' => :use_fips,
47
46
  'Endpoint' => :endpoint,
47
+ 'Region' => :region,
48
48
  }.freeze
49
49
  end
50
50
 
51
51
  def initialize(options = {})
52
- self[:region] = options[:region]
53
52
  self[:use_dual_stack] = options[:use_dual_stack]
54
53
  self[:use_dual_stack] = false if self[:use_dual_stack].nil?
55
54
  self[:use_fips] = options[:use_fips]
56
55
  self[:use_fips] = false if self[:use_fips].nil?
57
56
  self[:endpoint] = options[:endpoint]
57
+ self[:region] = options[:region]
58
58
  end
59
59
 
60
60
  def self.create(config, options={})
61
61
  new({
62
- region: config.region,
63
62
  use_dual_stack: config.use_dualstack_endpoint,
64
63
  use_fips: config.use_fips_endpoint,
65
64
  endpoint: (config.endpoint.to_s unless config.regional_endpoint),
65
+ region: config.region,
66
66
  }.merge(options))
67
67
  end
68
68
  end
@@ -21,34 +21,37 @@ module Aws::CloudFront
21
21
  end
22
22
  if Aws::Endpoints::Matchers.set?(parameters.region)
23
23
  if (partition_result = Aws::Endpoints::Matchers.aws_partition(parameters.region))
24
- if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws") && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, false) && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, false)
25
- return Aws::Endpoints::Endpoint.new(url: "https://cloudfront.amazonaws.com", headers: {}, properties: {"authSchemes" => [{"name" => "sigv4", "signingName" => "cloudfront", "signingRegion" => "us-east-1"}]})
24
+ if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws") && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, false) && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, true)
25
+ return Aws::Endpoints::Endpoint.new(url: "https://cloudfront.global.api.aws", headers: {}, properties: {"authSchemes" => [{"name" => "sigv4", "signingRegion" => "us-east-1"}]})
26
26
  end
27
- if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws") && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, false)
28
- return Aws::Endpoints::Endpoint.new(url: "https://cloudfront-fips.amazonaws.com", headers: {}, properties: {"authSchemes" => [{"name" => "sigv4", "signingName" => "cloudfront", "signingRegion" => "us-east-1"}]})
27
+ if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws") && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, true)
28
+ return Aws::Endpoints::Endpoint.new(url: "https://cloudfront-fips.global.api.aws", headers: {}, properties: {"authSchemes" => [{"name" => "sigv4", "signingRegion" => "us-east-1"}]})
29
29
  end
30
30
  if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-cn") && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, false) && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, false)
31
- return Aws::Endpoints::Endpoint.new(url: "https://cloudfront.cn-northwest-1.amazonaws.com.cn", headers: {}, properties: {"authSchemes" => [{"name" => "sigv4", "signingName" => "cloudfront", "signingRegion" => "cn-northwest-1"}]})
31
+ return Aws::Endpoints::Endpoint.new(url: "https://cloudfront.cn-northwest-1.amazonaws.com.cn", headers: {}, properties: {"authSchemes" => [{"name" => "sigv4", "signingRegion" => "cn-northwest-1"}]})
32
+ end
33
+ if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-cn") && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, false)
34
+ return Aws::Endpoints::Endpoint.new(url: "https://cloudfront-fips.cn-northwest-1.amazonaws.com.cn", headers: {}, properties: {"authSchemes" => [{"name" => "sigv4", "signingRegion" => "cn-northwest-1"}]})
32
35
  end
33
36
  if Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, true)
34
37
  if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
35
- return Aws::Endpoints::Endpoint.new(url: "https://cloudfront-fips.#{parameters.region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
38
+ return Aws::Endpoints::Endpoint.new(url: "https://cloudfront-fips.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {"authSchemes" => [{"name" => "sigv4", "signingRegion" => "#{partition_result['implicitGlobalRegion']}"}]})
36
39
  end
37
40
  raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
38
41
  end
39
- if Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, true)
42
+ if Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, false)
40
43
  if Aws::Endpoints::Matchers.boolean_equals?(Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"), true)
41
- return Aws::Endpoints::Endpoint.new(url: "https://cloudfront-fips.#{parameters.region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
44
+ return Aws::Endpoints::Endpoint.new(url: "https://cloudfront-fips.#{partition_result['dnsSuffix']}", headers: {}, properties: {"authSchemes" => [{"name" => "sigv4", "signingRegion" => "#{partition_result['implicitGlobalRegion']}"}]})
42
45
  end
43
46
  raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
44
47
  end
45
- if Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, true)
48
+ if Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, false) && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, true)
46
49
  if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
47
- return Aws::Endpoints::Endpoint.new(url: "https://cloudfront.#{parameters.region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
50
+ return Aws::Endpoints::Endpoint.new(url: "https://cloudfront.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {"authSchemes" => [{"name" => "sigv4", "signingRegion" => "#{partition_result['implicitGlobalRegion']}"}]})
48
51
  end
49
52
  raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
50
53
  end
51
- return Aws::Endpoints::Endpoint.new(url: "https://cloudfront.#{parameters.region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
54
+ return Aws::Endpoints::Endpoint.new(url: "https://cloudfront.#{partition_result['dnsSuffix']}", headers: {}, properties: {"authSchemes" => [{"name" => "sigv4", "signingRegion" => "#{partition_result['implicitGlobalRegion']}"}]})
52
55
  end
53
56
  end
54
57
  raise ArgumentError, "Invalid Configuration: Missing Region"
@@ -517,6 +517,11 @@ module Aws::CloudFront
517
517
  # distribution configuration and specify all of the cache behaviors that
518
518
  # you want to include in the updated distribution.
519
519
  #
520
+ # If your minimum TTL is greater than 0, CloudFront will cache content
521
+ # for at least the duration specified in the cache policy's minimum
522
+ # TTL, even if the `Cache-Control: no-cache`, `no-store`, or `private`
523
+ # directives are present in the origin headers.
524
+ #
520
525
  # For more information about cache behaviors, see [Cache Behavior
521
526
  # Settings][3] in the *Amazon CloudFront Developer Guide*.
522
527
  #
@@ -995,6 +1000,11 @@ module Aws::CloudFront
995
1000
  # * The default, minimum, and maximum time to live (TTL) values that you
996
1001
  # want objects to stay in the CloudFront cache.
997
1002
  #
1003
+ # If your minimum TTL is greater than 0, CloudFront will cache content
1004
+ # for at least the duration specified in the cache policy's minimum
1005
+ # TTL, even if the `Cache-Control: no-cache`, `no-store`, or `private`
1006
+ # directives are present in the origin headers.
1007
+ #
998
1008
  # The headers, cookies, and query strings that are included in the cache
999
1009
  # key are also included in requests that CloudFront sends to the origin.
1000
1010
  # CloudFront sends a request when it can't find a valid object in its
@@ -3397,8 +3407,8 @@ module Aws::CloudFront
3397
3407
  # minimum timeout is 1 second, the maximum is 120 seconds, and the
3398
3408
  # default (if you don't specify otherwise) is 30 seconds.
3399
3409
  #
3400
- # For more information, see [Response timeout (custom origins
3401
- # only)][1] in the *Amazon CloudFront Developer Guide*.
3410
+ # For more information, see [Response timeout][1] in the *Amazon
3411
+ # CloudFront Developer Guide*.
3402
3412
  #
3403
3413
  #
3404
3414
  #
@@ -3466,6 +3476,11 @@ module Aws::CloudFront
3466
3476
  # of the values of `PathPattern` in `CacheBehavior` elements. You must
3467
3477
  # create exactly one default cache behavior.
3468
3478
  #
3479
+ # If your minimum TTL is greater than 0, CloudFront will cache content
3480
+ # for at least the duration specified in the cache policy's minimum
3481
+ # TTL, even if the `Cache-Control: no-cache`, `no-store`, or `private`
3482
+ # directives are present in the origin headers.
3483
+ #
3469
3484
  # @!attribute [rw] target_origin_id
3470
3485
  # The value of `ID` for the origin that you want CloudFront to route
3471
3486
  # requests to when they use the default cache behavior.
@@ -4834,7 +4849,7 @@ module Aws::CloudFront
4834
4849
  # @!attribute [rw] connection_mode
4835
4850
  # This field specifies whether the connection mode is through a
4836
4851
  # standard distribution (direct) or a multi-tenant distribution with
4837
- # distribution tenants(tenant-only).
4852
+ # distribution tenants (tenant-only).
4838
4853
  # @return [String]
4839
4854
  #
4840
4855
  # @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/DistributionConfig AWS API Documentation
@@ -5149,7 +5164,7 @@ module Aws::CloudFront
5149
5164
  # @!attribute [rw] connection_mode
5150
5165
  # This field specifies whether the connection mode is through a
5151
5166
  # standard distribution (direct) or a multi-tenant distribution with
5152
- # distribution tenants(tenant-only).
5167
+ # distribution tenants (tenant-only).
5153
5168
  # @return [String]
5154
5169
  #
5155
5170
  # @!attribute [rw] anycast_ip_list_id
@@ -5184,7 +5199,7 @@ module Aws::CloudFront
5184
5199
  :staging,
5185
5200
  :connection_mode,
5186
5201
  :anycast_ip_list_id)
5187
- SENSITIVE = []
5202
+ SENSITIVE = [:comment]
5188
5203
  include Aws::Structure
5189
5204
  end
5190
5205
 
@@ -9011,7 +9026,7 @@ module Aws::CloudFront
9011
9026
  # @!attribute [rw] connection_mode
9012
9027
  # This field specifies whether the connection mode is through a
9013
9028
  # standard distribution (direct) or a multi-tenant distribution with
9014
- # distribution tenants(tenant-only).
9029
+ # distribution tenants (tenant-only).
9015
9030
  # @return [String]
9016
9031
  #
9017
9032
  # @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/ListDistributionsByConnectionModeRequest AWS API Documentation
@@ -10494,6 +10509,25 @@ module Aws::CloudFront
10494
10509
  # [1]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/distribution-web-values-specify.html#origin-connection-timeout
10495
10510
  # @return [Integer]
10496
10511
  #
10512
+ # @!attribute [rw] response_completion_timeout
10513
+ # The time (in seconds) that a request from CloudFront to the origin
10514
+ # can stay open and wait for a response. If the complete response
10515
+ # isn't received from the origin by this time, CloudFront ends the
10516
+ # connection.
10517
+ #
10518
+ # The value for `ResponseCompletionTimeout` must be equal to or
10519
+ # greater than the value for `OriginReadTimeout`. If you don't set a
10520
+ # value for `ResponseCompletionTimeout`, CloudFront doesn't enforce a
10521
+ # maximum value.
10522
+ #
10523
+ # For more information, see [Response completion timeout][1] in the
10524
+ # *Amazon CloudFront Developer Guide*.
10525
+ #
10526
+ #
10527
+ #
10528
+ # [1]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/DownloadDistValuesOrigin.html#response-completion-timeout
10529
+ # @return [Integer]
10530
+ #
10497
10531
  # @!attribute [rw] origin_shield
10498
10532
  # CloudFront Origin Shield. Using Origin Shield can help reduce the
10499
10533
  # load on your origin.
@@ -10529,6 +10563,7 @@ module Aws::CloudFront
10529
10563
  :vpc_origin_config,
10530
10564
  :connection_attempts,
10531
10565
  :connection_timeout,
10566
+ :response_completion_timeout,
10532
10567
  :origin_shield,
10533
10568
  :origin_access_control_id)
10534
10569
  SENSITIVE = []
@@ -13032,10 +13067,25 @@ module Aws::CloudFront
13032
13067
  # [2]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/PrivateContent.html
13033
13068
  # @return [String]
13034
13069
  #
13070
+ # @!attribute [rw] origin_read_timeout
13071
+ # Specifies how long, in seconds, CloudFront waits for a response from
13072
+ # the origin. This is also known as the *origin response timeout*. The
13073
+ # minimum timeout is 1 second, the maximum is 120 seconds, and the
13074
+ # default (if you don't specify otherwise) is 30 seconds.
13075
+ #
13076
+ # For more information, see [Response timeout][1] in the *Amazon
13077
+ # CloudFront Developer Guide*.
13078
+ #
13079
+ #
13080
+ #
13081
+ # [1]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/DownloadDistValuesOrigin.html#DownloadDistValuesOriginResponseTimeout
13082
+ # @return [Integer]
13083
+ #
13035
13084
  # @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/S3OriginConfig AWS API Documentation
13036
13085
  #
13037
13086
  class S3OriginConfig < Struct.new(
13038
- :origin_access_identity)
13087
+ :origin_access_identity,
13088
+ :origin_read_timeout)
13039
13089
  SENSITIVE = []
13040
13090
  include Aws::Structure
13041
13091
  end
@@ -13537,7 +13587,7 @@ module Aws::CloudFront
13537
13587
  :comment,
13538
13588
  :default_value,
13539
13589
  :required)
13540
- SENSITIVE = []
13590
+ SENSITIVE = [:comment]
13541
13591
  include Aws::Structure
13542
13592
  end
13543
13593
 
@@ -15997,8 +16047,8 @@ module Aws::CloudFront
15997
16047
  # minimum timeout is 1 second, the maximum is 120 seconds, and the
15998
16048
  # default (if you don't specify otherwise) is 30 seconds.
15999
16049
  #
16000
- # For more information, see [Response timeout (custom origins
16001
- # only)][1] in the *Amazon CloudFront Developer Guide*.
16050
+ # For more information, see [Response timeout][1] in the *Amazon
16051
+ # CloudFront Developer Guide*.
16002
16052
  #
16003
16053
  #
16004
16054
  #
@@ -55,7 +55,7 @@ module Aws::CloudFront
55
55
  autoload :EndpointProvider, 'aws-sdk-cloudfront/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-cloudfront/endpoints'
57
57
 
58
- GEM_VERSION = '1.120.0'
58
+ GEM_VERSION = '1.122.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -18,6 +18,7 @@ module Aws
18
18
  ?account_id: String,
19
19
  ?active_endpoint_cache: bool,
20
20
  ?adaptive_retry_wait_to_fill: bool,
21
+ ?auth_scheme_preference: Array[String],
21
22
  ?client_side_monitoring: bool,
22
23
  ?client_side_monitoring_client_id: String,
23
24
  ?client_side_monitoring_host: String,
@@ -292,7 +293,8 @@ module Aws
292
293
  ]?
293
294
  }?,
294
295
  s3_origin_config: {
295
- origin_access_identity: ::String
296
+ origin_access_identity: ::String,
297
+ origin_read_timeout: ::Integer?
296
298
  }?,
297
299
  custom_origin_config: {
298
300
  http_port: ::Integer,
@@ -312,6 +314,7 @@ module Aws
312
314
  }?,
313
315
  connection_attempts: ::Integer?,
314
316
  connection_timeout: ::Integer?,
317
+ response_completion_timeout: ::Integer?,
315
318
  origin_shield: {
316
319
  enabled: bool,
317
320
  origin_shield_region: ::String?
@@ -638,7 +641,8 @@ module Aws
638
641
  ]?
639
642
  }?,
640
643
  s3_origin_config: {
641
- origin_access_identity: ::String
644
+ origin_access_identity: ::String,
645
+ origin_read_timeout: ::Integer?
642
646
  }?,
643
647
  custom_origin_config: {
644
648
  http_port: ::Integer,
@@ -658,6 +662,7 @@ module Aws
658
662
  }?,
659
663
  connection_attempts: ::Integer?,
660
664
  connection_timeout: ::Integer?,
665
+ response_completion_timeout: ::Integer?,
661
666
  origin_shield: {
662
667
  enabled: bool,
663
668
  origin_shield_region: ::String?
@@ -2562,7 +2567,8 @@ module Aws
2562
2567
  ]?
2563
2568
  }?,
2564
2569
  s3_origin_config: {
2565
- origin_access_identity: ::String
2570
+ origin_access_identity: ::String,
2571
+ origin_read_timeout: ::Integer?
2566
2572
  }?,
2567
2573
  custom_origin_config: {
2568
2574
  http_port: ::Integer,
@@ -2582,6 +2588,7 @@ module Aws
2582
2588
  }?,
2583
2589
  connection_attempts: ::Integer?,
2584
2590
  connection_timeout: ::Integer?,
2591
+ response_completion_timeout: ::Integer?,
2585
2592
  origin_shield: {
2586
2593
  enabled: bool,
2587
2594
  origin_shield_region: ::String?
data/sig/resource.rbs CHANGED
@@ -18,6 +18,7 @@ module Aws
18
18
  ?account_id: String,
19
19
  ?active_endpoint_cache: bool,
20
20
  ?adaptive_retry_wait_to_fill: bool,
21
+ ?auth_scheme_preference: Array[String],
21
22
  ?client_side_monitoring: bool,
22
23
  ?client_side_monitoring_client_id: String,
23
24
  ?client_side_monitoring_host: String,
data/sig/types.rbs CHANGED
@@ -1069,7 +1069,7 @@ module Aws::CloudFront
1069
1069
  attr_accessor staging: bool
1070
1070
  attr_accessor connection_mode: ("direct" | "tenant-only")
1071
1071
  attr_accessor anycast_ip_list_id: ::String
1072
- SENSITIVE: []
1072
+ SENSITIVE: [:comment]
1073
1073
  end
1074
1074
 
1075
1075
  class DistributionTenant
@@ -2581,6 +2581,7 @@ module Aws::CloudFront
2581
2581
  attr_accessor vpc_origin_config: Types::VpcOriginConfig
2582
2582
  attr_accessor connection_attempts: ::Integer
2583
2583
  attr_accessor connection_timeout: ::Integer
2584
+ attr_accessor response_completion_timeout: ::Integer
2584
2585
  attr_accessor origin_shield: Types::OriginShield
2585
2586
  attr_accessor origin_access_control_id: ::String
2586
2587
  SENSITIVE: []
@@ -3085,6 +3086,7 @@ module Aws::CloudFront
3085
3086
 
3086
3087
  class S3OriginConfig
3087
3088
  attr_accessor origin_access_identity: ::String
3089
+ attr_accessor origin_read_timeout: ::Integer
3088
3090
  SENSITIVE: []
3089
3091
  end
3090
3092
 
@@ -3192,7 +3194,7 @@ module Aws::CloudFront
3192
3194
  attr_accessor comment: ::String
3193
3195
  attr_accessor default_value: ::String
3194
3196
  attr_accessor required: bool
3195
- SENSITIVE: []
3197
+ SENSITIVE: [:comment]
3196
3198
  end
3197
3199
 
3198
3200
  class Tag
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-cloudfront
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.120.0
4
+ version: 1.122.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
@@ -18,7 +18,7 @@ dependencies:
18
18
  version: '3'
19
19
  - - ">="
20
20
  - !ruby/object:Gem::Version
21
- version: 3.225.0
21
+ version: 3.227.0
22
22
  type: :runtime
23
23
  prerelease: false
24
24
  version_requirements: !ruby/object:Gem::Requirement
@@ -28,7 +28,7 @@ dependencies:
28
28
  version: '3'
29
29
  - - ">="
30
30
  - !ruby/object:Gem::Version
31
- version: 3.225.0
31
+ version: 3.227.0
32
32
  - !ruby/object:Gem::Dependency
33
33
  name: aws-sigv4
34
34
  requirement: !ruby/object:Gem::Requirement