aws-sdk-cloudfront 1.10.1 → 1.11.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/lib/aws-sdk-cloudfront.rb +1 -1
- data/lib/aws-sdk-cloudfront/client.rb +184 -49
- data/lib/aws-sdk-cloudfront/client_api.rb +155 -111
- data/lib/aws-sdk-cloudfront/types.rb +537 -411
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8c3f1cf9a1352def4a893bfca76277ae5aa2084f
|
4
|
+
data.tar.gz: 6dde134bd9bb8aae892b0a7ea7ee419b4219d941
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7900c1d29ca8a4faaf3686e7526e66c1c7e4e8e7ab5644b4a38a18d4b96cffe8d9a1a39cf6a4bcb37a3b334614cb99c93f560a02b1544698cc6e23ecd70d6652
|
7
|
+
data.tar.gz: 0afa4fb1b6592b2363c73c52813c21193220d1f1f7e4d662af58f77570bb0b866b6cdbd099d7f089078d8c0a56e1de1198d3142df01f6e0c2f9ed3b74a34bb36
|
data/lib/aws-sdk-cloudfront.rb
CHANGED
@@ -16,6 +16,7 @@ require 'aws-sdk-core/plugins/retry_errors.rb'
|
|
16
16
|
require 'aws-sdk-core/plugins/global_configuration.rb'
|
17
17
|
require 'aws-sdk-core/plugins/regional_endpoint.rb'
|
18
18
|
require 'aws-sdk-core/plugins/endpoint_discovery.rb'
|
19
|
+
require 'aws-sdk-core/plugins/endpoint_pattern.rb'
|
19
20
|
require 'aws-sdk-core/plugins/response_paging.rb'
|
20
21
|
require 'aws-sdk-core/plugins/stub_responses.rb'
|
21
22
|
require 'aws-sdk-core/plugins/idempotency_token.rb'
|
@@ -47,6 +48,7 @@ module Aws::CloudFront
|
|
47
48
|
add_plugin(Aws::Plugins::GlobalConfiguration)
|
48
49
|
add_plugin(Aws::Plugins::RegionalEndpoint)
|
49
50
|
add_plugin(Aws::Plugins::EndpointDiscovery)
|
51
|
+
add_plugin(Aws::Plugins::EndpointPattern)
|
50
52
|
add_plugin(Aws::Plugins::ResponsePaging)
|
51
53
|
add_plugin(Aws::Plugins::StubResponses)
|
52
54
|
add_plugin(Aws::Plugins::IdempotencyToken)
|
@@ -124,6 +126,10 @@ module Aws::CloudFront
|
|
124
126
|
# When `true`, an attempt is made to coerce request parameters into
|
125
127
|
# the required types.
|
126
128
|
#
|
129
|
+
# @option options [Boolean] :disable_host_prefix_injection (false)
|
130
|
+
# Set to true to disable SDK automatically adding host prefix
|
131
|
+
# to default service endpoint when available.
|
132
|
+
#
|
127
133
|
# @option options [String] :endpoint
|
128
134
|
# The client endpoint is normally constructed from the `:region`
|
129
135
|
# option. You should only configure an `:endpoint` when connecting
|
@@ -237,7 +243,7 @@ module Aws::CloudFront
|
|
237
243
|
# resp.location #=> String
|
238
244
|
# resp.etag #=> String
|
239
245
|
#
|
240
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2018-
|
246
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2018-11-05/CreateCloudFrontOriginAccessIdentity2018_11_05 AWS API Documentation
|
241
247
|
#
|
242
248
|
# @overload create_cloud_front_origin_access_identity(params = {})
|
243
249
|
# @param [Hash] params ({})
|
@@ -290,7 +296,7 @@ module Aws::CloudFront
|
|
290
296
|
# default_root_object: "string",
|
291
297
|
# origins: { # required
|
292
298
|
# quantity: 1, # required
|
293
|
-
# items: [
|
299
|
+
# items: [ # required
|
294
300
|
# {
|
295
301
|
# id: "string", # required
|
296
302
|
# domain_name: "string", # required
|
@@ -321,6 +327,28 @@ module Aws::CloudFront
|
|
321
327
|
# },
|
322
328
|
# ],
|
323
329
|
# },
|
330
|
+
# origin_groups: {
|
331
|
+
# quantity: 1, # required
|
332
|
+
# items: [
|
333
|
+
# {
|
334
|
+
# id: "string", # required
|
335
|
+
# failover_criteria: { # required
|
336
|
+
# status_codes: { # required
|
337
|
+
# quantity: 1, # required
|
338
|
+
# items: [1], # required
|
339
|
+
# },
|
340
|
+
# },
|
341
|
+
# members: { # required
|
342
|
+
# quantity: 1, # required
|
343
|
+
# items: [ # required
|
344
|
+
# {
|
345
|
+
# origin_id: "string", # required
|
346
|
+
# },
|
347
|
+
# ],
|
348
|
+
# },
|
349
|
+
# },
|
350
|
+
# ],
|
351
|
+
# },
|
324
352
|
# default_cache_behavior: { # required
|
325
353
|
# target_origin_id: "string", # required
|
326
354
|
# forwarded_values: { # required
|
@@ -509,6 +537,15 @@ module Aws::CloudFront
|
|
509
537
|
# resp.distribution.distribution_config.origins.items[0].custom_origin_config.origin_ssl_protocols.items[0] #=> String, one of "SSLv3", "TLSv1", "TLSv1.1", "TLSv1.2"
|
510
538
|
# resp.distribution.distribution_config.origins.items[0].custom_origin_config.origin_read_timeout #=> Integer
|
511
539
|
# resp.distribution.distribution_config.origins.items[0].custom_origin_config.origin_keepalive_timeout #=> Integer
|
540
|
+
# resp.distribution.distribution_config.origin_groups.quantity #=> Integer
|
541
|
+
# resp.distribution.distribution_config.origin_groups.items #=> Array
|
542
|
+
# resp.distribution.distribution_config.origin_groups.items[0].id #=> String
|
543
|
+
# resp.distribution.distribution_config.origin_groups.items[0].failover_criteria.status_codes.quantity #=> Integer
|
544
|
+
# resp.distribution.distribution_config.origin_groups.items[0].failover_criteria.status_codes.items #=> Array
|
545
|
+
# resp.distribution.distribution_config.origin_groups.items[0].failover_criteria.status_codes.items[0] #=> Integer
|
546
|
+
# resp.distribution.distribution_config.origin_groups.items[0].members.quantity #=> Integer
|
547
|
+
# resp.distribution.distribution_config.origin_groups.items[0].members.items #=> Array
|
548
|
+
# resp.distribution.distribution_config.origin_groups.items[0].members.items[0].origin_id #=> String
|
512
549
|
# resp.distribution.distribution_config.default_cache_behavior.target_origin_id #=> String
|
513
550
|
# resp.distribution.distribution_config.default_cache_behavior.forwarded_values.query_string #=> Boolean
|
514
551
|
# resp.distribution.distribution_config.default_cache_behavior.forwarded_values.cookies.forward #=> String, one of "none", "whitelist", "all"
|
@@ -610,7 +647,7 @@ module Aws::CloudFront
|
|
610
647
|
# resp.location #=> String
|
611
648
|
# resp.etag #=> String
|
612
649
|
#
|
613
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2018-
|
650
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2018-11-05/CreateDistribution2018_11_05 AWS API Documentation
|
614
651
|
#
|
615
652
|
# @overload create_distribution(params = {})
|
616
653
|
# @param [Hash] params ({})
|
@@ -643,7 +680,7 @@ module Aws::CloudFront
|
|
643
680
|
# default_root_object: "string",
|
644
681
|
# origins: { # required
|
645
682
|
# quantity: 1, # required
|
646
|
-
# items: [
|
683
|
+
# items: [ # required
|
647
684
|
# {
|
648
685
|
# id: "string", # required
|
649
686
|
# domain_name: "string", # required
|
@@ -674,6 +711,28 @@ module Aws::CloudFront
|
|
674
711
|
# },
|
675
712
|
# ],
|
676
713
|
# },
|
714
|
+
# origin_groups: {
|
715
|
+
# quantity: 1, # required
|
716
|
+
# items: [
|
717
|
+
# {
|
718
|
+
# id: "string", # required
|
719
|
+
# failover_criteria: { # required
|
720
|
+
# status_codes: { # required
|
721
|
+
# quantity: 1, # required
|
722
|
+
# items: [1], # required
|
723
|
+
# },
|
724
|
+
# },
|
725
|
+
# members: { # required
|
726
|
+
# quantity: 1, # required
|
727
|
+
# items: [ # required
|
728
|
+
# {
|
729
|
+
# origin_id: "string", # required
|
730
|
+
# },
|
731
|
+
# ],
|
732
|
+
# },
|
733
|
+
# },
|
734
|
+
# ],
|
735
|
+
# },
|
677
736
|
# default_cache_behavior: { # required
|
678
737
|
# target_origin_id: "string", # required
|
679
738
|
# forwarded_values: { # required
|
@@ -871,6 +930,15 @@ module Aws::CloudFront
|
|
871
930
|
# resp.distribution.distribution_config.origins.items[0].custom_origin_config.origin_ssl_protocols.items[0] #=> String, one of "SSLv3", "TLSv1", "TLSv1.1", "TLSv1.2"
|
872
931
|
# resp.distribution.distribution_config.origins.items[0].custom_origin_config.origin_read_timeout #=> Integer
|
873
932
|
# resp.distribution.distribution_config.origins.items[0].custom_origin_config.origin_keepalive_timeout #=> Integer
|
933
|
+
# resp.distribution.distribution_config.origin_groups.quantity #=> Integer
|
934
|
+
# resp.distribution.distribution_config.origin_groups.items #=> Array
|
935
|
+
# resp.distribution.distribution_config.origin_groups.items[0].id #=> String
|
936
|
+
# resp.distribution.distribution_config.origin_groups.items[0].failover_criteria.status_codes.quantity #=> Integer
|
937
|
+
# resp.distribution.distribution_config.origin_groups.items[0].failover_criteria.status_codes.items #=> Array
|
938
|
+
# resp.distribution.distribution_config.origin_groups.items[0].failover_criteria.status_codes.items[0] #=> Integer
|
939
|
+
# resp.distribution.distribution_config.origin_groups.items[0].members.quantity #=> Integer
|
940
|
+
# resp.distribution.distribution_config.origin_groups.items[0].members.items #=> Array
|
941
|
+
# resp.distribution.distribution_config.origin_groups.items[0].members.items[0].origin_id #=> String
|
874
942
|
# resp.distribution.distribution_config.default_cache_behavior.target_origin_id #=> String
|
875
943
|
# resp.distribution.distribution_config.default_cache_behavior.forwarded_values.query_string #=> Boolean
|
876
944
|
# resp.distribution.distribution_config.default_cache_behavior.forwarded_values.cookies.forward #=> String, one of "none", "whitelist", "all"
|
@@ -972,7 +1040,7 @@ module Aws::CloudFront
|
|
972
1040
|
# resp.location #=> String
|
973
1041
|
# resp.etag #=> String
|
974
1042
|
#
|
975
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2018-
|
1043
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2018-11-05/CreateDistributionWithTags2018_11_05 AWS API Documentation
|
976
1044
|
#
|
977
1045
|
# @overload create_distribution_with_tags(params = {})
|
978
1046
|
# @param [Hash] params ({})
|
@@ -1046,7 +1114,7 @@ module Aws::CloudFront
|
|
1046
1114
|
# resp.location #=> String
|
1047
1115
|
# resp.etag #=> String
|
1048
1116
|
#
|
1049
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2018-
|
1117
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2018-11-05/CreateFieldLevelEncryptionConfig2018_11_05 AWS API Documentation
|
1050
1118
|
#
|
1051
1119
|
# @overload create_field_level_encryption_config(params = {})
|
1052
1120
|
# @param [Hash] params ({})
|
@@ -1106,7 +1174,7 @@ module Aws::CloudFront
|
|
1106
1174
|
# resp.location #=> String
|
1107
1175
|
# resp.etag #=> String
|
1108
1176
|
#
|
1109
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2018-
|
1177
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2018-11-05/CreateFieldLevelEncryptionProfile2018_11_05 AWS API Documentation
|
1110
1178
|
#
|
1111
1179
|
# @overload create_field_level_encryption_profile(params = {})
|
1112
1180
|
# @param [Hash] params ({})
|
@@ -1152,7 +1220,7 @@ module Aws::CloudFront
|
|
1152
1220
|
# resp.invalidation.invalidation_batch.paths.items[0] #=> String
|
1153
1221
|
# resp.invalidation.invalidation_batch.caller_reference #=> String
|
1154
1222
|
#
|
1155
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2018-
|
1223
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2018-11-05/CreateInvalidation2018_11_05 AWS API Documentation
|
1156
1224
|
#
|
1157
1225
|
# @overload create_invalidation(params = {})
|
1158
1226
|
# @param [Hash] params ({})
|
@@ -1196,7 +1264,7 @@ module Aws::CloudFront
|
|
1196
1264
|
# resp.location #=> String
|
1197
1265
|
# resp.etag #=> String
|
1198
1266
|
#
|
1199
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2018-
|
1267
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2018-11-05/CreatePublicKey2018_11_05 AWS API Documentation
|
1200
1268
|
#
|
1201
1269
|
# @overload create_public_key(params = {})
|
1202
1270
|
# @param [Hash] params ({})
|
@@ -1311,7 +1379,7 @@ module Aws::CloudFront
|
|
1311
1379
|
# resp.location #=> String
|
1312
1380
|
# resp.etag #=> String
|
1313
1381
|
#
|
1314
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2018-
|
1382
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2018-11-05/CreateStreamingDistribution2018_11_05 AWS API Documentation
|
1315
1383
|
#
|
1316
1384
|
# @overload create_streaming_distribution(params = {})
|
1317
1385
|
# @param [Hash] params ({})
|
@@ -1403,7 +1471,7 @@ module Aws::CloudFront
|
|
1403
1471
|
# resp.location #=> String
|
1404
1472
|
# resp.etag #=> String
|
1405
1473
|
#
|
1406
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2018-
|
1474
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2018-11-05/CreateStreamingDistributionWithTags2018_11_05 AWS API Documentation
|
1407
1475
|
#
|
1408
1476
|
# @overload create_streaming_distribution_with_tags(params = {})
|
1409
1477
|
# @param [Hash] params ({})
|
@@ -1430,7 +1498,7 @@ module Aws::CloudFront
|
|
1430
1498
|
# if_match: "string",
|
1431
1499
|
# })
|
1432
1500
|
#
|
1433
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2018-
|
1501
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2018-11-05/DeleteCloudFrontOriginAccessIdentity2018_11_05 AWS API Documentation
|
1434
1502
|
#
|
1435
1503
|
# @overload delete_cloud_front_origin_access_identity(params = {})
|
1436
1504
|
# @param [Hash] params ({})
|
@@ -1457,7 +1525,7 @@ module Aws::CloudFront
|
|
1457
1525
|
# if_match: "string",
|
1458
1526
|
# })
|
1459
1527
|
#
|
1460
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2018-
|
1528
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2018-11-05/DeleteDistribution2018_11_05 AWS API Documentation
|
1461
1529
|
#
|
1462
1530
|
# @overload delete_distribution(params = {})
|
1463
1531
|
# @param [Hash] params ({})
|
@@ -1484,7 +1552,7 @@ module Aws::CloudFront
|
|
1484
1552
|
# if_match: "string",
|
1485
1553
|
# })
|
1486
1554
|
#
|
1487
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2018-
|
1555
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2018-11-05/DeleteFieldLevelEncryptionConfig2018_11_05 AWS API Documentation
|
1488
1556
|
#
|
1489
1557
|
# @overload delete_field_level_encryption_config(params = {})
|
1490
1558
|
# @param [Hash] params ({})
|
@@ -1511,7 +1579,7 @@ module Aws::CloudFront
|
|
1511
1579
|
# if_match: "string",
|
1512
1580
|
# })
|
1513
1581
|
#
|
1514
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2018-
|
1582
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2018-11-05/DeleteFieldLevelEncryptionProfile2018_11_05 AWS API Documentation
|
1515
1583
|
#
|
1516
1584
|
# @overload delete_field_level_encryption_profile(params = {})
|
1517
1585
|
# @param [Hash] params ({})
|
@@ -1538,7 +1606,7 @@ module Aws::CloudFront
|
|
1538
1606
|
# if_match: "string",
|
1539
1607
|
# })
|
1540
1608
|
#
|
1541
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2018-
|
1609
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2018-11-05/DeletePublicKey2018_11_05 AWS API Documentation
|
1542
1610
|
#
|
1543
1611
|
# @overload delete_public_key(params = {})
|
1544
1612
|
# @param [Hash] params ({})
|
@@ -1608,7 +1676,7 @@ module Aws::CloudFront
|
|
1608
1676
|
# if_match: "string",
|
1609
1677
|
# })
|
1610
1678
|
#
|
1611
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2018-
|
1679
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2018-11-05/DeleteStreamingDistribution2018_11_05 AWS API Documentation
|
1612
1680
|
#
|
1613
1681
|
# @overload delete_streaming_distribution(params = {})
|
1614
1682
|
# @param [Hash] params ({})
|
@@ -1641,7 +1709,7 @@ module Aws::CloudFront
|
|
1641
1709
|
# resp.cloud_front_origin_access_identity.cloud_front_origin_access_identity_config.comment #=> String
|
1642
1710
|
# resp.etag #=> String
|
1643
1711
|
#
|
1644
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2018-
|
1712
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2018-11-05/GetCloudFrontOriginAccessIdentity2018_11_05 AWS API Documentation
|
1645
1713
|
#
|
1646
1714
|
# @overload get_cloud_front_origin_access_identity(params = {})
|
1647
1715
|
# @param [Hash] params ({})
|
@@ -1672,7 +1740,7 @@ module Aws::CloudFront
|
|
1672
1740
|
# resp.cloud_front_origin_access_identity_config.comment #=> String
|
1673
1741
|
# resp.etag #=> String
|
1674
1742
|
#
|
1675
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2018-
|
1743
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2018-11-05/GetCloudFrontOriginAccessIdentityConfig2018_11_05 AWS API Documentation
|
1676
1744
|
#
|
1677
1745
|
# @overload get_cloud_front_origin_access_identity_config(params = {})
|
1678
1746
|
# @param [Hash] params ({})
|
@@ -1735,6 +1803,15 @@ module Aws::CloudFront
|
|
1735
1803
|
# resp.distribution.distribution_config.origins.items[0].custom_origin_config.origin_ssl_protocols.items[0] #=> String, one of "SSLv3", "TLSv1", "TLSv1.1", "TLSv1.2"
|
1736
1804
|
# resp.distribution.distribution_config.origins.items[0].custom_origin_config.origin_read_timeout #=> Integer
|
1737
1805
|
# resp.distribution.distribution_config.origins.items[0].custom_origin_config.origin_keepalive_timeout #=> Integer
|
1806
|
+
# resp.distribution.distribution_config.origin_groups.quantity #=> Integer
|
1807
|
+
# resp.distribution.distribution_config.origin_groups.items #=> Array
|
1808
|
+
# resp.distribution.distribution_config.origin_groups.items[0].id #=> String
|
1809
|
+
# resp.distribution.distribution_config.origin_groups.items[0].failover_criteria.status_codes.quantity #=> Integer
|
1810
|
+
# resp.distribution.distribution_config.origin_groups.items[0].failover_criteria.status_codes.items #=> Array
|
1811
|
+
# resp.distribution.distribution_config.origin_groups.items[0].failover_criteria.status_codes.items[0] #=> Integer
|
1812
|
+
# resp.distribution.distribution_config.origin_groups.items[0].members.quantity #=> Integer
|
1813
|
+
# resp.distribution.distribution_config.origin_groups.items[0].members.items #=> Array
|
1814
|
+
# resp.distribution.distribution_config.origin_groups.items[0].members.items[0].origin_id #=> String
|
1738
1815
|
# resp.distribution.distribution_config.default_cache_behavior.target_origin_id #=> String
|
1739
1816
|
# resp.distribution.distribution_config.default_cache_behavior.forwarded_values.query_string #=> Boolean
|
1740
1817
|
# resp.distribution.distribution_config.default_cache_behavior.forwarded_values.cookies.forward #=> String, one of "none", "whitelist", "all"
|
@@ -1835,7 +1912,7 @@ module Aws::CloudFront
|
|
1835
1912
|
# resp.distribution.distribution_config.is_ipv6_enabled #=> Boolean
|
1836
1913
|
# resp.etag #=> String
|
1837
1914
|
#
|
1838
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2018-
|
1915
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2018-11-05/GetDistribution2018_11_05 AWS API Documentation
|
1839
1916
|
#
|
1840
1917
|
# @overload get_distribution(params = {})
|
1841
1918
|
# @param [Hash] params ({})
|
@@ -1885,6 +1962,15 @@ module Aws::CloudFront
|
|
1885
1962
|
# resp.distribution_config.origins.items[0].custom_origin_config.origin_ssl_protocols.items[0] #=> String, one of "SSLv3", "TLSv1", "TLSv1.1", "TLSv1.2"
|
1886
1963
|
# resp.distribution_config.origins.items[0].custom_origin_config.origin_read_timeout #=> Integer
|
1887
1964
|
# resp.distribution_config.origins.items[0].custom_origin_config.origin_keepalive_timeout #=> Integer
|
1965
|
+
# resp.distribution_config.origin_groups.quantity #=> Integer
|
1966
|
+
# resp.distribution_config.origin_groups.items #=> Array
|
1967
|
+
# resp.distribution_config.origin_groups.items[0].id #=> String
|
1968
|
+
# resp.distribution_config.origin_groups.items[0].failover_criteria.status_codes.quantity #=> Integer
|
1969
|
+
# resp.distribution_config.origin_groups.items[0].failover_criteria.status_codes.items #=> Array
|
1970
|
+
# resp.distribution_config.origin_groups.items[0].failover_criteria.status_codes.items[0] #=> Integer
|
1971
|
+
# resp.distribution_config.origin_groups.items[0].members.quantity #=> Integer
|
1972
|
+
# resp.distribution_config.origin_groups.items[0].members.items #=> Array
|
1973
|
+
# resp.distribution_config.origin_groups.items[0].members.items[0].origin_id #=> String
|
1888
1974
|
# resp.distribution_config.default_cache_behavior.target_origin_id #=> String
|
1889
1975
|
# resp.distribution_config.default_cache_behavior.forwarded_values.query_string #=> Boolean
|
1890
1976
|
# resp.distribution_config.default_cache_behavior.forwarded_values.cookies.forward #=> String, one of "none", "whitelist", "all"
|
@@ -1985,7 +2071,7 @@ module Aws::CloudFront
|
|
1985
2071
|
# resp.distribution_config.is_ipv6_enabled #=> Boolean
|
1986
2072
|
# resp.etag #=> String
|
1987
2073
|
#
|
1988
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2018-
|
2074
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2018-11-05/GetDistributionConfig2018_11_05 AWS API Documentation
|
1989
2075
|
#
|
1990
2076
|
# @overload get_distribution_config(params = {})
|
1991
2077
|
# @param [Hash] params ({})
|
@@ -2030,7 +2116,7 @@ module Aws::CloudFront
|
|
2030
2116
|
# resp.field_level_encryption.field_level_encryption_config.content_type_profile_config.content_type_profiles.items[0].content_type #=> String
|
2031
2117
|
# resp.etag #=> String
|
2032
2118
|
#
|
2033
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2018-
|
2119
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2018-11-05/GetFieldLevelEncryption2018_11_05 AWS API Documentation
|
2034
2120
|
#
|
2035
2121
|
# @overload get_field_level_encryption(params = {})
|
2036
2122
|
# @param [Hash] params ({})
|
@@ -2073,7 +2159,7 @@ module Aws::CloudFront
|
|
2073
2159
|
# resp.field_level_encryption_config.content_type_profile_config.content_type_profiles.items[0].content_type #=> String
|
2074
2160
|
# resp.etag #=> String
|
2075
2161
|
#
|
2076
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2018-
|
2162
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2018-11-05/GetFieldLevelEncryptionConfig2018_11_05 AWS API Documentation
|
2077
2163
|
#
|
2078
2164
|
# @overload get_field_level_encryption_config(params = {})
|
2079
2165
|
# @param [Hash] params ({})
|
@@ -2114,7 +2200,7 @@ module Aws::CloudFront
|
|
2114
2200
|
# resp.field_level_encryption_profile.field_level_encryption_profile_config.encryption_entities.items[0].field_patterns.items[0] #=> String
|
2115
2201
|
# resp.etag #=> String
|
2116
2202
|
#
|
2117
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2018-
|
2203
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2018-11-05/GetFieldLevelEncryptionProfile2018_11_05 AWS API Documentation
|
2118
2204
|
#
|
2119
2205
|
# @overload get_field_level_encryption_profile(params = {})
|
2120
2206
|
# @param [Hash] params ({})
|
@@ -2154,7 +2240,7 @@ module Aws::CloudFront
|
|
2154
2240
|
# resp.field_level_encryption_profile_config.encryption_entities.items[0].field_patterns.items[0] #=> String
|
2155
2241
|
# resp.etag #=> String
|
2156
2242
|
#
|
2157
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2018-
|
2243
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2018-11-05/GetFieldLevelEncryptionProfileConfig2018_11_05 AWS API Documentation
|
2158
2244
|
#
|
2159
2245
|
# @overload get_field_level_encryption_profile_config(params = {})
|
2160
2246
|
# @param [Hash] params ({})
|
@@ -2193,7 +2279,7 @@ module Aws::CloudFront
|
|
2193
2279
|
# resp.invalidation.invalidation_batch.paths.items[0] #=> String
|
2194
2280
|
# resp.invalidation.invalidation_batch.caller_reference #=> String
|
2195
2281
|
#
|
2196
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2018-
|
2282
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2018-11-05/GetInvalidation2018_11_05 AWS API Documentation
|
2197
2283
|
#
|
2198
2284
|
# @overload get_invalidation(params = {})
|
2199
2285
|
# @param [Hash] params ({})
|
@@ -2228,7 +2314,7 @@ module Aws::CloudFront
|
|
2228
2314
|
# resp.public_key.public_key_config.comment #=> String
|
2229
2315
|
# resp.etag #=> String
|
2230
2316
|
#
|
2231
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2018-
|
2317
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2018-11-05/GetPublicKey2018_11_05 AWS API Documentation
|
2232
2318
|
#
|
2233
2319
|
# @overload get_public_key(params = {})
|
2234
2320
|
# @param [Hash] params ({})
|
@@ -2261,7 +2347,7 @@ module Aws::CloudFront
|
|
2261
2347
|
# resp.public_key_config.comment #=> String
|
2262
2348
|
# resp.etag #=> String
|
2263
2349
|
#
|
2264
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2018-
|
2350
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2018-11-05/GetPublicKeyConfig2018_11_05 AWS API Documentation
|
2265
2351
|
#
|
2266
2352
|
# @overload get_public_key_config(params = {})
|
2267
2353
|
# @param [Hash] params ({})
|
@@ -2319,7 +2405,7 @@ module Aws::CloudFront
|
|
2319
2405
|
# resp.streaming_distribution.streaming_distribution_config.enabled #=> Boolean
|
2320
2406
|
# resp.etag #=> String
|
2321
2407
|
#
|
2322
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2018-
|
2408
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2018-11-05/GetStreamingDistribution2018_11_05 AWS API Documentation
|
2323
2409
|
#
|
2324
2410
|
# @overload get_streaming_distribution(params = {})
|
2325
2411
|
# @param [Hash] params ({})
|
@@ -2364,7 +2450,7 @@ module Aws::CloudFront
|
|
2364
2450
|
# resp.streaming_distribution_config.enabled #=> Boolean
|
2365
2451
|
# resp.etag #=> String
|
2366
2452
|
#
|
2367
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2018-
|
2453
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2018-11-05/GetStreamingDistributionConfig2018_11_05 AWS API Documentation
|
2368
2454
|
#
|
2369
2455
|
# @overload get_streaming_distribution_config(params = {})
|
2370
2456
|
# @param [Hash] params ({})
|
@@ -2410,7 +2496,7 @@ module Aws::CloudFront
|
|
2410
2496
|
# resp.cloud_front_origin_access_identity_list.items[0].s3_canonical_user_id #=> String
|
2411
2497
|
# resp.cloud_front_origin_access_identity_list.items[0].comment #=> String
|
2412
2498
|
#
|
2413
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2018-
|
2499
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2018-11-05/ListCloudFrontOriginAccessIdentities2018_11_05 AWS API Documentation
|
2414
2500
|
#
|
2415
2501
|
# @overload list_cloud_front_origin_access_identities(params = {})
|
2416
2502
|
# @param [Hash] params ({})
|
@@ -2476,6 +2562,15 @@ module Aws::CloudFront
|
|
2476
2562
|
# 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"
|
2477
2563
|
# resp.distribution_list.items[0].origins.items[0].custom_origin_config.origin_read_timeout #=> Integer
|
2478
2564
|
# resp.distribution_list.items[0].origins.items[0].custom_origin_config.origin_keepalive_timeout #=> Integer
|
2565
|
+
# resp.distribution_list.items[0].origin_groups.quantity #=> Integer
|
2566
|
+
# resp.distribution_list.items[0].origin_groups.items #=> Array
|
2567
|
+
# resp.distribution_list.items[0].origin_groups.items[0].id #=> String
|
2568
|
+
# resp.distribution_list.items[0].origin_groups.items[0].failover_criteria.status_codes.quantity #=> Integer
|
2569
|
+
# resp.distribution_list.items[0].origin_groups.items[0].failover_criteria.status_codes.items #=> Array
|
2570
|
+
# resp.distribution_list.items[0].origin_groups.items[0].failover_criteria.status_codes.items[0] #=> Integer
|
2571
|
+
# resp.distribution_list.items[0].origin_groups.items[0].members.quantity #=> Integer
|
2572
|
+
# resp.distribution_list.items[0].origin_groups.items[0].members.items #=> Array
|
2573
|
+
# resp.distribution_list.items[0].origin_groups.items[0].members.items[0].origin_id #=> String
|
2479
2574
|
# resp.distribution_list.items[0].default_cache_behavior.target_origin_id #=> String
|
2480
2575
|
# resp.distribution_list.items[0].default_cache_behavior.forwarded_values.query_string #=> Boolean
|
2481
2576
|
# resp.distribution_list.items[0].default_cache_behavior.forwarded_values.cookies.forward #=> String, one of "none", "whitelist", "all"
|
@@ -2571,7 +2666,7 @@ module Aws::CloudFront
|
|
2571
2666
|
# resp.distribution_list.items[0].http_version #=> String, one of "http1.1", "http2"
|
2572
2667
|
# resp.distribution_list.items[0].is_ipv6_enabled #=> Boolean
|
2573
2668
|
#
|
2574
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2018-
|
2669
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2018-11-05/ListDistributions2018_11_05 AWS API Documentation
|
2575
2670
|
#
|
2576
2671
|
# @overload list_distributions(params = {})
|
2577
2672
|
# @param [Hash] params ({})
|
@@ -2646,6 +2741,15 @@ module Aws::CloudFront
|
|
2646
2741
|
# 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"
|
2647
2742
|
# resp.distribution_list.items[0].origins.items[0].custom_origin_config.origin_read_timeout #=> Integer
|
2648
2743
|
# resp.distribution_list.items[0].origins.items[0].custom_origin_config.origin_keepalive_timeout #=> Integer
|
2744
|
+
# resp.distribution_list.items[0].origin_groups.quantity #=> Integer
|
2745
|
+
# resp.distribution_list.items[0].origin_groups.items #=> Array
|
2746
|
+
# resp.distribution_list.items[0].origin_groups.items[0].id #=> String
|
2747
|
+
# resp.distribution_list.items[0].origin_groups.items[0].failover_criteria.status_codes.quantity #=> Integer
|
2748
|
+
# resp.distribution_list.items[0].origin_groups.items[0].failover_criteria.status_codes.items #=> Array
|
2749
|
+
# resp.distribution_list.items[0].origin_groups.items[0].failover_criteria.status_codes.items[0] #=> Integer
|
2750
|
+
# resp.distribution_list.items[0].origin_groups.items[0].members.quantity #=> Integer
|
2751
|
+
# resp.distribution_list.items[0].origin_groups.items[0].members.items #=> Array
|
2752
|
+
# resp.distribution_list.items[0].origin_groups.items[0].members.items[0].origin_id #=> String
|
2649
2753
|
# resp.distribution_list.items[0].default_cache_behavior.target_origin_id #=> String
|
2650
2754
|
# resp.distribution_list.items[0].default_cache_behavior.forwarded_values.query_string #=> Boolean
|
2651
2755
|
# resp.distribution_list.items[0].default_cache_behavior.forwarded_values.cookies.forward #=> String, one of "none", "whitelist", "all"
|
@@ -2741,7 +2845,7 @@ module Aws::CloudFront
|
|
2741
2845
|
# resp.distribution_list.items[0].http_version #=> String, one of "http1.1", "http2"
|
2742
2846
|
# resp.distribution_list.items[0].is_ipv6_enabled #=> Boolean
|
2743
2847
|
#
|
2744
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2018-
|
2848
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2018-11-05/ListDistributionsByWebACLId2018_11_05 AWS API Documentation
|
2745
2849
|
#
|
2746
2850
|
# @overload list_distributions_by_web_acl_id(params = {})
|
2747
2851
|
# @param [Hash] params ({})
|
@@ -2797,7 +2901,7 @@ module Aws::CloudFront
|
|
2797
2901
|
# resp.field_level_encryption_list.items[0].content_type_profile_config.content_type_profiles.items[0].profile_id #=> String
|
2798
2902
|
# resp.field_level_encryption_list.items[0].content_type_profile_config.content_type_profiles.items[0].content_type #=> String
|
2799
2903
|
#
|
2800
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2018-
|
2904
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2018-11-05/ListFieldLevelEncryptionConfigs2018_11_05 AWS API Documentation
|
2801
2905
|
#
|
2802
2906
|
# @overload list_field_level_encryption_configs(params = {})
|
2803
2907
|
# @param [Hash] params ({})
|
@@ -2849,7 +2953,7 @@ module Aws::CloudFront
|
|
2849
2953
|
# resp.field_level_encryption_profile_list.items[0].encryption_entities.items[0].field_patterns.items[0] #=> String
|
2850
2954
|
# resp.field_level_encryption_profile_list.items[0].comment #=> String
|
2851
2955
|
#
|
2852
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2018-
|
2956
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2018-11-05/ListFieldLevelEncryptionProfiles2018_11_05 AWS API Documentation
|
2853
2957
|
#
|
2854
2958
|
# @overload list_field_level_encryption_profiles(params = {})
|
2855
2959
|
# @param [Hash] params ({})
|
@@ -2901,7 +3005,7 @@ module Aws::CloudFront
|
|
2901
3005
|
# resp.invalidation_list.items[0].create_time #=> Time
|
2902
3006
|
# resp.invalidation_list.items[0].status #=> String
|
2903
3007
|
#
|
2904
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2018-
|
3008
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2018-11-05/ListInvalidations2018_11_05 AWS API Documentation
|
2905
3009
|
#
|
2906
3010
|
# @overload list_invalidations(params = {})
|
2907
3011
|
# @param [Hash] params ({})
|
@@ -2946,7 +3050,7 @@ module Aws::CloudFront
|
|
2946
3050
|
# resp.public_key_list.items[0].encoded_key #=> String
|
2947
3051
|
# resp.public_key_list.items[0].comment #=> String
|
2948
3052
|
#
|
2949
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2018-
|
3053
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2018-11-05/ListPublicKeys2018_11_05 AWS API Documentation
|
2950
3054
|
#
|
2951
3055
|
# @overload list_public_keys(params = {})
|
2952
3056
|
# @param [Hash] params ({})
|
@@ -3000,7 +3104,7 @@ module Aws::CloudFront
|
|
3000
3104
|
# resp.streaming_distribution_list.items[0].price_class #=> String, one of "PriceClass_100", "PriceClass_200", "PriceClass_All"
|
3001
3105
|
# resp.streaming_distribution_list.items[0].enabled #=> Boolean
|
3002
3106
|
#
|
3003
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2018-
|
3107
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2018-11-05/ListStreamingDistributions2018_11_05 AWS API Documentation
|
3004
3108
|
#
|
3005
3109
|
# @overload list_streaming_distributions(params = {})
|
3006
3110
|
# @param [Hash] params ({})
|
@@ -3030,7 +3134,7 @@ module Aws::CloudFront
|
|
3030
3134
|
# resp.tags.items[0].key #=> String
|
3031
3135
|
# resp.tags.items[0].value #=> String
|
3032
3136
|
#
|
3033
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2018-
|
3137
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2018-11-05/ListTagsForResource2018_11_05 AWS API Documentation
|
3034
3138
|
#
|
3035
3139
|
# @overload list_tags_for_resource(params = {})
|
3036
3140
|
# @param [Hash] params ({})
|
@@ -3063,7 +3167,7 @@ module Aws::CloudFront
|
|
3063
3167
|
# },
|
3064
3168
|
# })
|
3065
3169
|
#
|
3066
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2018-
|
3170
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2018-11-05/TagResource2018_11_05 AWS API Documentation
|
3067
3171
|
#
|
3068
3172
|
# @overload tag_resource(params = {})
|
3069
3173
|
# @param [Hash] params ({})
|
@@ -3091,7 +3195,7 @@ module Aws::CloudFront
|
|
3091
3195
|
# },
|
3092
3196
|
# })
|
3093
3197
|
#
|
3094
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2018-
|
3198
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2018-11-05/UntagResource2018_11_05 AWS API Documentation
|
3095
3199
|
#
|
3096
3200
|
# @overload untag_resource(params = {})
|
3097
3201
|
# @param [Hash] params ({})
|
@@ -3136,7 +3240,7 @@ module Aws::CloudFront
|
|
3136
3240
|
# resp.cloud_front_origin_access_identity.cloud_front_origin_access_identity_config.comment #=> String
|
3137
3241
|
# resp.etag #=> String
|
3138
3242
|
#
|
3139
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2018-
|
3243
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2018-11-05/UpdateCloudFrontOriginAccessIdentity2018_11_05 AWS API Documentation
|
3140
3244
|
#
|
3141
3245
|
# @overload update_cloud_front_origin_access_identity(params = {})
|
3142
3246
|
# @param [Hash] params ({})
|
@@ -3247,7 +3351,7 @@ module Aws::CloudFront
|
|
3247
3351
|
# default_root_object: "string",
|
3248
3352
|
# origins: { # required
|
3249
3353
|
# quantity: 1, # required
|
3250
|
-
# items: [
|
3354
|
+
# items: [ # required
|
3251
3355
|
# {
|
3252
3356
|
# id: "string", # required
|
3253
3357
|
# domain_name: "string", # required
|
@@ -3278,6 +3382,28 @@ module Aws::CloudFront
|
|
3278
3382
|
# },
|
3279
3383
|
# ],
|
3280
3384
|
# },
|
3385
|
+
# origin_groups: {
|
3386
|
+
# quantity: 1, # required
|
3387
|
+
# items: [
|
3388
|
+
# {
|
3389
|
+
# id: "string", # required
|
3390
|
+
# failover_criteria: { # required
|
3391
|
+
# status_codes: { # required
|
3392
|
+
# quantity: 1, # required
|
3393
|
+
# items: [1], # required
|
3394
|
+
# },
|
3395
|
+
# },
|
3396
|
+
# members: { # required
|
3397
|
+
# quantity: 1, # required
|
3398
|
+
# items: [ # required
|
3399
|
+
# {
|
3400
|
+
# origin_id: "string", # required
|
3401
|
+
# },
|
3402
|
+
# ],
|
3403
|
+
# },
|
3404
|
+
# },
|
3405
|
+
# ],
|
3406
|
+
# },
|
3281
3407
|
# default_cache_behavior: { # required
|
3282
3408
|
# target_origin_id: "string", # required
|
3283
3409
|
# forwarded_values: { # required
|
@@ -3468,6 +3594,15 @@ module Aws::CloudFront
|
|
3468
3594
|
# resp.distribution.distribution_config.origins.items[0].custom_origin_config.origin_ssl_protocols.items[0] #=> String, one of "SSLv3", "TLSv1", "TLSv1.1", "TLSv1.2"
|
3469
3595
|
# resp.distribution.distribution_config.origins.items[0].custom_origin_config.origin_read_timeout #=> Integer
|
3470
3596
|
# resp.distribution.distribution_config.origins.items[0].custom_origin_config.origin_keepalive_timeout #=> Integer
|
3597
|
+
# resp.distribution.distribution_config.origin_groups.quantity #=> Integer
|
3598
|
+
# resp.distribution.distribution_config.origin_groups.items #=> Array
|
3599
|
+
# resp.distribution.distribution_config.origin_groups.items[0].id #=> String
|
3600
|
+
# resp.distribution.distribution_config.origin_groups.items[0].failover_criteria.status_codes.quantity #=> Integer
|
3601
|
+
# resp.distribution.distribution_config.origin_groups.items[0].failover_criteria.status_codes.items #=> Array
|
3602
|
+
# resp.distribution.distribution_config.origin_groups.items[0].failover_criteria.status_codes.items[0] #=> Integer
|
3603
|
+
# resp.distribution.distribution_config.origin_groups.items[0].members.quantity #=> Integer
|
3604
|
+
# resp.distribution.distribution_config.origin_groups.items[0].members.items #=> Array
|
3605
|
+
# resp.distribution.distribution_config.origin_groups.items[0].members.items[0].origin_id #=> String
|
3471
3606
|
# resp.distribution.distribution_config.default_cache_behavior.target_origin_id #=> String
|
3472
3607
|
# resp.distribution.distribution_config.default_cache_behavior.forwarded_values.query_string #=> Boolean
|
3473
3608
|
# resp.distribution.distribution_config.default_cache_behavior.forwarded_values.cookies.forward #=> String, one of "none", "whitelist", "all"
|
@@ -3568,7 +3703,7 @@ module Aws::CloudFront
|
|
3568
3703
|
# resp.distribution.distribution_config.is_ipv6_enabled #=> Boolean
|
3569
3704
|
# resp.etag #=> String
|
3570
3705
|
#
|
3571
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2018-
|
3706
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2018-11-05/UpdateDistribution2018_11_05 AWS API Documentation
|
3572
3707
|
#
|
3573
3708
|
# @overload update_distribution(params = {})
|
3574
3709
|
# @param [Hash] params ({})
|
@@ -3649,7 +3784,7 @@ module Aws::CloudFront
|
|
3649
3784
|
# resp.field_level_encryption.field_level_encryption_config.content_type_profile_config.content_type_profiles.items[0].content_type #=> String
|
3650
3785
|
# resp.etag #=> String
|
3651
3786
|
#
|
3652
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2018-
|
3787
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2018-11-05/UpdateFieldLevelEncryptionConfig2018_11_05 AWS API Documentation
|
3653
3788
|
#
|
3654
3789
|
# @overload update_field_level_encryption_config(params = {})
|
3655
3790
|
# @param [Hash] params ({})
|
@@ -3716,7 +3851,7 @@ module Aws::CloudFront
|
|
3716
3851
|
# resp.field_level_encryption_profile.field_level_encryption_profile_config.encryption_entities.items[0].field_patterns.items[0] #=> String
|
3717
3852
|
# resp.etag #=> String
|
3718
3853
|
#
|
3719
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2018-
|
3854
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2018-11-05/UpdateFieldLevelEncryptionProfile2018_11_05 AWS API Documentation
|
3720
3855
|
#
|
3721
3856
|
# @overload update_field_level_encryption_profile(params = {})
|
3722
3857
|
# @param [Hash] params ({})
|
@@ -3766,7 +3901,7 @@ module Aws::CloudFront
|
|
3766
3901
|
# resp.public_key.public_key_config.comment #=> String
|
3767
3902
|
# resp.etag #=> String
|
3768
3903
|
#
|
3769
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2018-
|
3904
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2018-11-05/UpdatePublicKey2018_11_05 AWS API Documentation
|
3770
3905
|
#
|
3771
3906
|
# @overload update_public_key(params = {})
|
3772
3907
|
# @param [Hash] params ({})
|
@@ -3856,7 +3991,7 @@ module Aws::CloudFront
|
|
3856
3991
|
# resp.streaming_distribution.streaming_distribution_config.enabled #=> Boolean
|
3857
3992
|
# resp.etag #=> String
|
3858
3993
|
#
|
3859
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2018-
|
3994
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2018-11-05/UpdateStreamingDistribution2018_11_05 AWS API Documentation
|
3860
3995
|
#
|
3861
3996
|
# @overload update_streaming_distribution(params = {})
|
3862
3997
|
# @param [Hash] params ({})
|
@@ -3878,7 +4013,7 @@ module Aws::CloudFront
|
|
3878
4013
|
params: params,
|
3879
4014
|
config: config)
|
3880
4015
|
context[:gem_name] = 'aws-sdk-cloudfront'
|
3881
|
-
context[:gem_version] = '1.
|
4016
|
+
context[:gem_version] = '1.11.0'
|
3882
4017
|
Seahorse::Client::Request.new(handlers, context)
|
3883
4018
|
end
|
3884
4019
|
|