aws-sdk-cloudfront 1.94.0 → 1.95.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 868fcfa686305dda20a2590b7fae6da42abd7bce9fe622c78a22e5070c66c5d2
4
- data.tar.gz: f85e41440b5838874c0a4f024162fe9a998c4a93f2a043c62253fdec1d23e975
3
+ metadata.gz: d5cac8b60d19c3be7bffedf3a377d64cf5ec5e5b7fa04c4db289021652f1a5ec
4
+ data.tar.gz: b974400ab6f8bb00fdac3c6a92800e8d71a75b821554a3c50f3a37cb85688595
5
5
  SHA512:
6
- metadata.gz: e1cad826fb84568d9618a1b221c5dcefcfc29ce346fac93057740adeddc6bf98f02da3bc158f5c931fa406e24dd4cacb55b0b3854ecc8575e46690a3d96736d5
7
- data.tar.gz: 2a699f2d361df6e5c7e61de17ab5ec5379de13863395aa850f76045aa199c33ac42c74df94c6b023c12d46e3203d38505e8090de532a7bb5f76ae23398b83f4a
6
+ metadata.gz: bc63616be8ddd45aae81638e242a7ef6f03da1cb881ecd617361879c9df243451ea45d37b9b8a0a6f0367c57299737d8dbe06f5a9d5f6534d481de57eddbb9bc
7
+ data.tar.gz: 6e98a0b12cb040c322b349dcc0e0dc0f64327ea430c31248413278b983b34dac1992a8f5d114b83f00bf1bace964f1e98beafa0584c76328c11bff602c4e2f42
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.95.0 (2024-06-27)
5
+ ------------------
6
+
7
+ * Feature - Doc only update for CloudFront that fixes customer-reported issue
8
+
4
9
  1.94.0 (2024-06-25)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.94.0
1
+ 1.95.0
@@ -7248,7 +7248,13 @@ module Aws::CloudFront
7248
7248
  req.send_request(options)
7249
7249
  end
7250
7250
 
7251
- # List tags for a CloudFront resource.
7251
+ # List tags for a CloudFront resource. For more information, see
7252
+ # [Tagging a distribution][1] in the *Amazon CloudFront Developer
7253
+ # Guide*.
7254
+ #
7255
+ #
7256
+ #
7257
+ # [1]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/tagging.html
7252
7258
  #
7253
7259
  # @option params [required, String] :resource
7254
7260
  # An ARN of a CloudFront resource.
@@ -7332,7 +7338,12 @@ module Aws::CloudFront
7332
7338
  req.send_request(options)
7333
7339
  end
7334
7340
 
7335
- # Add tags to a CloudFront resource.
7341
+ # Add tags to a CloudFront resource. For more information, see [Tagging
7342
+ # a distribution][1] in the *Amazon CloudFront Developer Guide*.
7343
+ #
7344
+ #
7345
+ #
7346
+ # [1]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/tagging.html
7336
7347
  #
7337
7348
  # @option params [required, String] :resource
7338
7349
  # An ARN of a CloudFront resource.
@@ -7445,7 +7456,13 @@ module Aws::CloudFront
7445
7456
  req.send_request(options)
7446
7457
  end
7447
7458
 
7448
- # Remove tags from a CloudFront resource.
7459
+ # Remove tags from a CloudFront resource. For more information, see
7460
+ # [Tagging a distribution][1] in the *Amazon CloudFront Developer
7461
+ # Guide*.
7462
+ #
7463
+ #
7464
+ #
7465
+ # [1]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/tagging.html
7449
7466
  #
7450
7467
  # @option params [required, String] :resource
7451
7468
  # An ARN of a CloudFront resource.
@@ -9431,7 +9448,7 @@ module Aws::CloudFront
9431
9448
  params: params,
9432
9449
  config: config)
9433
9450
  context[:gem_name] = 'aws-sdk-cloudfront'
9434
- context[:gem_version] = '1.94.0'
9451
+ context[:gem_version] = '1.95.0'
9435
9452
  Seahorse::Client::Request.new(handlers, context)
9436
9453
  end
9437
9454
 
@@ -3154,6 +3154,7 @@ module Aws::CloudFront
3154
3154
 
3155
3155
  api.metadata = {
3156
3156
  "apiVersion" => "2020-05-31",
3157
+ "auth" => ["aws.auth#sigv4"],
3157
3158
  "endpointPrefix" => "cloudfront",
3158
3159
  "globalEndpoint" => "cloudfront.amazonaws.com",
3159
3160
  "protocol" => "rest-xml",
@@ -269,9 +269,9 @@ module Aws::CloudFront
269
269
  # *Amazon CloudFront Developer Guide*.
270
270
  #
271
271
  # If you don't want to specify any cache behaviors, include only an
272
- # empty `CacheBehaviors` element. For more information, see
273
- # [CacheBehaviors][2]. Don't include an empty `CacheBehavior` element
274
- # because this is invalid.
272
+ # empty `CacheBehaviors` element. Don't specify an empty individual
273
+ # `CacheBehavior` element, because this is invalid. For more
274
+ # information, see [CacheBehaviors][2].
275
275
  #
276
276
  # To delete all cache behaviors in an existing distribution, update the
277
277
  # distribution configuration and include only an empty `CacheBehaviors`
@@ -998,7 +998,9 @@ module Aws::CloudFront
998
998
  #
999
999
  # @!attribute [rw] items
1000
1000
  # A complex type that contains the HTTP methods that you want
1001
- # CloudFront to cache responses to.
1001
+ # CloudFront to cache responses to. Valid values for `CachedMethods`
1002
+ # include `GET`, `HEAD`, and `OPTIONS`, depending on which caching
1003
+ # option you choose. For more information, see the preceding section.
1002
1004
  # @return [Array<String>]
1003
1005
  #
1004
1006
  # @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/CachedMethods AWS API Documentation
@@ -53,6 +53,6 @@ require_relative 'aws-sdk-cloudfront/customizations'
53
53
  # @!group service
54
54
  module Aws::CloudFront
55
55
 
56
- GEM_VERSION = '1.94.0'
56
+ GEM_VERSION = '1.95.0'
57
57
 
58
58
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-cloudfront
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.94.0
4
+ version: 1.95.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-06-25 00:00:00.000000000 Z
11
+ date: 2024-06-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core