aws-sdk-cloudfront 1.82.0 → 1.84.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -1021,6 +1021,19 @@ module Aws::CloudFront
1021
1021
  include Aws::Structure
1022
1022
  end
1023
1023
 
1024
+ # The Key Value Store entity cannot be deleted while it is in use.
1025
+ #
1026
+ # @!attribute [rw] message
1027
+ # @return [String]
1028
+ #
1029
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/CannotDeleteEntityWhileInUse AWS API Documentation
1030
+ #
1031
+ class CannotDeleteEntityWhileInUse < Struct.new(
1032
+ :message)
1033
+ SENSITIVE = []
1034
+ include Aws::Structure
1035
+ end
1036
+
1024
1037
  # CloudFront origin access identity.
1025
1038
  #
1026
1039
  # @!attribute [rw] id
@@ -2091,6 +2104,52 @@ module Aws::CloudFront
2091
2104
  include Aws::Structure
2092
2105
  end
2093
2106
 
2107
+ # @!attribute [rw] name
2108
+ # The name of the Key Value Store. The maximum length of the name is
2109
+ # 32 characters.
2110
+ # @return [String]
2111
+ #
2112
+ # @!attribute [rw] comment
2113
+ # The comment of the Key Value Store.
2114
+ # @return [String]
2115
+ #
2116
+ # @!attribute [rw] import_source
2117
+ # The S3 bucket that provides the source for the import. The source
2118
+ # must be in a valid JSON format.
2119
+ # @return [Types::ImportSource]
2120
+ #
2121
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/CreateKeyValueStoreRequest AWS API Documentation
2122
+ #
2123
+ class CreateKeyValueStoreRequest < Struct.new(
2124
+ :name,
2125
+ :comment,
2126
+ :import_source)
2127
+ SENSITIVE = []
2128
+ include Aws::Structure
2129
+ end
2130
+
2131
+ # @!attribute [rw] key_value_store
2132
+ # The resulting Key Value Store.
2133
+ # @return [Types::KeyValueStore]
2134
+ #
2135
+ # @!attribute [rw] etag
2136
+ # The ETag in the resulting Key Value Store.
2137
+ # @return [String]
2138
+ #
2139
+ # @!attribute [rw] location
2140
+ # The location of the resulting Key Value Store.
2141
+ # @return [String]
2142
+ #
2143
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/CreateKeyValueStoreResult AWS API Documentation
2144
+ #
2145
+ class CreateKeyValueStoreResult < Struct.new(
2146
+ :key_value_store,
2147
+ :etag,
2148
+ :location)
2149
+ SENSITIVE = []
2150
+ include Aws::Structure
2151
+ end
2152
+
2094
2153
  # @!attribute [rw] distribution_id
2095
2154
  # The ID of the distribution that you are enabling metrics for.
2096
2155
  # @return [String]
@@ -3134,6 +3193,23 @@ module Aws::CloudFront
3134
3193
  include Aws::Structure
3135
3194
  end
3136
3195
 
3196
+ # @!attribute [rw] name
3197
+ # The name of the Key Value Store.
3198
+ # @return [String]
3199
+ #
3200
+ # @!attribute [rw] if_match
3201
+ # The Key Value Store to delete, if a match occurs.
3202
+ # @return [String]
3203
+ #
3204
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/DeleteKeyValueStoreRequest AWS API Documentation
3205
+ #
3206
+ class DeleteKeyValueStoreRequest < Struct.new(
3207
+ :name,
3208
+ :if_match)
3209
+ SENSITIVE = []
3210
+ include Aws::Structure
3211
+ end
3212
+
3137
3213
  # @!attribute [rw] distribution_id
3138
3214
  # The ID of the distribution that you are disabling metrics for.
3139
3215
  # @return [String]
@@ -3307,6 +3383,35 @@ module Aws::CloudFront
3307
3383
  include Aws::Structure
3308
3384
  end
3309
3385
 
3386
+ # @!attribute [rw] name
3387
+ # The name of the Key Value Store.
3388
+ # @return [String]
3389
+ #
3390
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/DescribeKeyValueStoreRequest AWS API Documentation
3391
+ #
3392
+ class DescribeKeyValueStoreRequest < Struct.new(
3393
+ :name)
3394
+ SENSITIVE = []
3395
+ include Aws::Structure
3396
+ end
3397
+
3398
+ # @!attribute [rw] key_value_store
3399
+ # The resulting Key Value Store.
3400
+ # @return [Types::KeyValueStore]
3401
+ #
3402
+ # @!attribute [rw] etag
3403
+ # The ETag of the resulting Key Value Store.
3404
+ # @return [String]
3405
+ #
3406
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/DescribeKeyValueStoreResult AWS API Documentation
3407
+ #
3408
+ class DescribeKeyValueStoreResult < Struct.new(
3409
+ :key_value_store,
3410
+ :etag)
3411
+ SENSITIVE = []
3412
+ include Aws::Structure
3413
+ end
3414
+
3310
3415
  # A distribution tells CloudFront where you want content to be delivered
3311
3416
  # from, and the details about how to track and manage content delivery.
3312
3417
  #
@@ -4023,6 +4128,59 @@ module Aws::CloudFront
4023
4128
  include Aws::Structure
4024
4129
  end
4025
4130
 
4131
+ # The Key Value Store entity already exists. You must provide a unique
4132
+ # Key Value Store entity.
4133
+ #
4134
+ # @!attribute [rw] message
4135
+ # @return [String]
4136
+ #
4137
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/EntityAlreadyExists AWS API Documentation
4138
+ #
4139
+ class EntityAlreadyExists < Struct.new(
4140
+ :message)
4141
+ SENSITIVE = []
4142
+ include Aws::Structure
4143
+ end
4144
+
4145
+ # The Key Value Store entity limit has been exceeded.
4146
+ #
4147
+ # @!attribute [rw] message
4148
+ # @return [String]
4149
+ #
4150
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/EntityLimitExceeded AWS API Documentation
4151
+ #
4152
+ class EntityLimitExceeded < Struct.new(
4153
+ :message)
4154
+ SENSITIVE = []
4155
+ include Aws::Structure
4156
+ end
4157
+
4158
+ # The Key Value Store entity was not found.
4159
+ #
4160
+ # @!attribute [rw] message
4161
+ # @return [String]
4162
+ #
4163
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/EntityNotFound AWS API Documentation
4164
+ #
4165
+ class EntityNotFound < Struct.new(
4166
+ :message)
4167
+ SENSITIVE = []
4168
+ include Aws::Structure
4169
+ end
4170
+
4171
+ # The Key Value Store entity size limit was exceeded.
4172
+ #
4173
+ # @!attribute [rw] message
4174
+ # @return [String]
4175
+ #
4176
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/EntitySizeLimitExceeded AWS API Documentation
4177
+ #
4178
+ class EntitySizeLimitExceeded < Struct.new(
4179
+ :message)
4180
+ SENSITIVE = []
4181
+ include Aws::Structure
4182
+ end
4183
+
4026
4184
  # A complex data type that includes the profile configurations and other
4027
4185
  # options specified for field-level encryption.
4028
4186
  #
@@ -4112,7 +4270,7 @@ module Aws::CloudFront
4112
4270
  include Aws::Structure
4113
4271
  end
4114
4272
 
4115
- # List of field-level encrpytion configurations.
4273
+ # List of field-level encryption configurations.
4116
4274
  #
4117
4275
  # @!attribute [rw] next_marker
4118
4276
  # If there are more elements to be listed, this element is present and
@@ -4281,8 +4439,8 @@ module Aws::CloudFront
4281
4439
  # @return [String]
4282
4440
  #
4283
4441
  # @!attribute [rw] last_modified_time
4284
- # The time when the the field-level encryption profile summary was
4285
- # last updated.
4442
+ # The time when the field-level encryption profile summary was last
4443
+ # updated.
4286
4444
  # @return [Time]
4287
4445
  #
4288
4446
  # @!attribute [rw] name
@@ -4590,14 +4748,19 @@ module Aws::CloudFront
4590
4748
  # @return [String]
4591
4749
  #
4592
4750
  # @!attribute [rw] runtime
4593
- # The function's runtime environment verion.
4751
+ # The function's runtime environment version.
4594
4752
  # @return [String]
4595
4753
  #
4754
+ # @!attribute [rw] key_value_store_associations
4755
+ # The configuration for the Key Value Store associations.
4756
+ # @return [Types::KeyValueStoreAssociations]
4757
+ #
4596
4758
  # @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/FunctionConfig AWS API Documentation
4597
4759
  #
4598
4760
  class FunctionConfig < Struct.new(
4599
4761
  :comment,
4600
- :runtime)
4762
+ :runtime,
4763
+ :key_value_store_associations)
4601
4764
  SENSITIVE = []
4602
4765
  include Aws::Structure
4603
4766
  end
@@ -5772,6 +5935,26 @@ module Aws::CloudFront
5772
5935
  include Aws::Structure
5773
5936
  end
5774
5937
 
5938
+ # The import source for the Key Value Store.
5939
+ #
5940
+ # @!attribute [rw] source_type
5941
+ # The source type of the import source for the Key Value Store.
5942
+ # @return [String]
5943
+ #
5944
+ # @!attribute [rw] source_arn
5945
+ # The Amazon Resource Name (ARN) of the import source for the Key
5946
+ # Value Store.
5947
+ # @return [String]
5948
+ #
5949
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/ImportSource AWS API Documentation
5950
+ #
5951
+ class ImportSource < Struct.new(
5952
+ :source_type,
5953
+ :source_arn)
5954
+ SENSITIVE = []
5955
+ include Aws::Structure
5956
+ end
5957
+
5775
5958
  # The value of `Quantity` and the size of `Items` don't match.
5776
5959
  #
5777
5960
  # @!attribute [rw] message
@@ -6452,6 +6635,110 @@ module Aws::CloudFront
6452
6635
  include Aws::Structure
6453
6636
  end
6454
6637
 
6638
+ # The Key Value Store. Use this to separate data from function code,
6639
+ # allowing you to update data without having to publish a new version of
6640
+ # a function. The Key Value Store holds keys and their corresponding
6641
+ # values.
6642
+ #
6643
+ # @!attribute [rw] name
6644
+ # The name of the Key Value Store.
6645
+ # @return [String]
6646
+ #
6647
+ # @!attribute [rw] id
6648
+ # The unique Id for the Key Value Store.
6649
+ # @return [String]
6650
+ #
6651
+ # @!attribute [rw] comment
6652
+ # A comment for the Key Value Store.
6653
+ # @return [String]
6654
+ #
6655
+ # @!attribute [rw] arn
6656
+ # The Amazon Resource Name (ARN) of the Key Value Store.
6657
+ # @return [String]
6658
+ #
6659
+ # @!attribute [rw] status
6660
+ # The status of the Key Value Store.
6661
+ # @return [String]
6662
+ #
6663
+ # @!attribute [rw] last_modified_time
6664
+ # The last-modified time of the Key Value Store.
6665
+ # @return [Time]
6666
+ #
6667
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/KeyValueStore AWS API Documentation
6668
+ #
6669
+ class KeyValueStore < Struct.new(
6670
+ :name,
6671
+ :id,
6672
+ :comment,
6673
+ :arn,
6674
+ :status,
6675
+ :last_modified_time)
6676
+ SENSITIVE = []
6677
+ include Aws::Structure
6678
+ end
6679
+
6680
+ # The Key Value Store association.
6681
+ #
6682
+ # @!attribute [rw] key_value_store_arn
6683
+ # The Amazon Resource Name (ARN) of the Key Value Store association.
6684
+ # @return [String]
6685
+ #
6686
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/KeyValueStoreAssociation AWS API Documentation
6687
+ #
6688
+ class KeyValueStoreAssociation < Struct.new(
6689
+ :key_value_store_arn)
6690
+ SENSITIVE = []
6691
+ include Aws::Structure
6692
+ end
6693
+
6694
+ # The Key Value Store associations.
6695
+ #
6696
+ # @!attribute [rw] quantity
6697
+ # The quantity of Key Value Store associations.
6698
+ # @return [Integer]
6699
+ #
6700
+ # @!attribute [rw] items
6701
+ # The items of the Key Value Store association.
6702
+ # @return [Array<Types::KeyValueStoreAssociation>]
6703
+ #
6704
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/KeyValueStoreAssociations AWS API Documentation
6705
+ #
6706
+ class KeyValueStoreAssociations < Struct.new(
6707
+ :quantity,
6708
+ :items)
6709
+ SENSITIVE = []
6710
+ include Aws::Structure
6711
+ end
6712
+
6713
+ # The Key Value Store list.
6714
+ #
6715
+ # @!attribute [rw] next_marker
6716
+ # The next marker associated with the Key Value Store list.
6717
+ # @return [String]
6718
+ #
6719
+ # @!attribute [rw] max_items
6720
+ # The maximum number of items in the Key Value Store list.
6721
+ # @return [Integer]
6722
+ #
6723
+ # @!attribute [rw] quantity
6724
+ # The quantity of the Key Value Store list.
6725
+ # @return [Integer]
6726
+ #
6727
+ # @!attribute [rw] items
6728
+ # The items of the Key Value Store list.
6729
+ # @return [Array<Types::KeyValueStore>]
6730
+ #
6731
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/KeyValueStoreList AWS API Documentation
6732
+ #
6733
+ class KeyValueStoreList < Struct.new(
6734
+ :next_marker,
6735
+ :max_items,
6736
+ :quantity,
6737
+ :items)
6738
+ SENSITIVE = []
6739
+ include Aws::Structure
6740
+ end
6741
+
6455
6742
  # Contains information about the Amazon Kinesis data stream where you
6456
6743
  # are sending real-time log data.
6457
6744
  #
@@ -7214,6 +7501,40 @@ module Aws::CloudFront
7214
7501
  include Aws::Structure
7215
7502
  end
7216
7503
 
7504
+ # @!attribute [rw] marker
7505
+ # The marker associated with the Key Value Stores list.
7506
+ # @return [String]
7507
+ #
7508
+ # @!attribute [rw] max_items
7509
+ # The maximum number of items in the Key Value Stores list.
7510
+ # @return [Integer]
7511
+ #
7512
+ # @!attribute [rw] status
7513
+ # The status of the request for the Key Value Stores list.
7514
+ # @return [String]
7515
+ #
7516
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/ListKeyValueStoresRequest AWS API Documentation
7517
+ #
7518
+ class ListKeyValueStoresRequest < Struct.new(
7519
+ :marker,
7520
+ :max_items,
7521
+ :status)
7522
+ SENSITIVE = []
7523
+ include Aws::Structure
7524
+ end
7525
+
7526
+ # @!attribute [rw] key_value_store_list
7527
+ # The resulting Key Value Stores list.
7528
+ # @return [Types::KeyValueStoreList]
7529
+ #
7530
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/ListKeyValueStoresResult AWS API Documentation
7531
+ #
7532
+ class ListKeyValueStoresResult < Struct.new(
7533
+ :key_value_store_list)
7534
+ SENSITIVE = []
7535
+ include Aws::Structure
7536
+ end
7537
+
7217
7538
  # @!attribute [rw] marker
7218
7539
  # Use this field when paginating results to indicate where to begin in
7219
7540
  # your list of origin access controls. The response includes the items
@@ -7798,9 +8119,9 @@ module Aws::CloudFront
7798
8119
  #
7799
8120
  # * An Elastic Load Balancing load balancer
7800
8121
  #
7801
- # * An AWS Elemental MediaPackage endpoint
8122
+ # * An Elemental MediaPackage endpoint
7802
8123
  #
7803
- # * An AWS Elemental MediaStore container
8124
+ # * An Elemental MediaStore container
7804
8125
  #
7805
8126
  # * Any other HTTP server, running on an Amazon EC2 instance or any
7806
8127
  # other kind of host
@@ -8181,7 +8502,7 @@ module Aws::CloudFront
8181
8502
  # An origin group includes two origins (a primary origin and a second
8182
8503
  # origin to failover to) and a failover criteria that you specify. You
8183
8504
  # create an origin group to support origin failover in CloudFront. When
8184
- # you create or update a distribution, you can specifiy the origin group
8505
+ # you create or update a distribution, you can specify the origin group
8185
8506
  # instead of a single origin, and CloudFront will failover from the
8186
8507
  # primary origin to the second origin under the failover conditions that
8187
8508
  # you've chosen.
@@ -12409,6 +12730,45 @@ module Aws::CloudFront
12409
12730
  include Aws::Structure
12410
12731
  end
12411
12732
 
12733
+ # @!attribute [rw] name
12734
+ # The name of the Key Value Store to update.
12735
+ # @return [String]
12736
+ #
12737
+ # @!attribute [rw] comment
12738
+ # The comment of the Key Value Store to update.
12739
+ # @return [String]
12740
+ #
12741
+ # @!attribute [rw] if_match
12742
+ # The Key Value Store to update, if a match occurs.
12743
+ # @return [String]
12744
+ #
12745
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/UpdateKeyValueStoreRequest AWS API Documentation
12746
+ #
12747
+ class UpdateKeyValueStoreRequest < Struct.new(
12748
+ :name,
12749
+ :comment,
12750
+ :if_match)
12751
+ SENSITIVE = []
12752
+ include Aws::Structure
12753
+ end
12754
+
12755
+ # @!attribute [rw] key_value_store
12756
+ # The resulting Key Value Store to update.
12757
+ # @return [Types::KeyValueStore]
12758
+ #
12759
+ # @!attribute [rw] etag
12760
+ # The ETag of the resulting Key Value Store.
12761
+ # @return [String]
12762
+ #
12763
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/UpdateKeyValueStoreResult AWS API Documentation
12764
+ #
12765
+ class UpdateKeyValueStoreResult < Struct.new(
12766
+ :key_value_store,
12767
+ :etag)
12768
+ SENSITIVE = []
12769
+ include Aws::Structure
12770
+ end
12771
+
12412
12772
  # @!attribute [rw] origin_access_control_config
12413
12773
  # An origin access control.
12414
12774
  # @return [Types::OriginAccessControlConfig]
@@ -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.82.0'
56
+ GEM_VERSION = '1.84.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.82.0
4
+ version: 1.84.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: 2023-07-28 00:00:00.000000000 Z
11
+ date: 2023-11-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.177.0
22
+ version: 3.184.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.177.0
32
+ version: 3.184.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement