aws-sdk-cloudfront 1.29.0 → 1.34.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 +3 -1
- data/lib/aws-sdk-cloudfront/client.rb +16 -12
- data/lib/aws-sdk-cloudfront/client_api.rb +2 -0
- data/lib/aws-sdk-cloudfront/cookie_signer.rb +2 -0
- data/lib/aws-sdk-cloudfront/customizations.rb +2 -0
- data/lib/aws-sdk-cloudfront/errors.rb +2 -0
- data/lib/aws-sdk-cloudfront/resource.rb +2 -0
- data/lib/aws-sdk-cloudfront/signer.rb +2 -0
- data/lib/aws-sdk-cloudfront/types.rb +271 -32
- data/lib/aws-sdk-cloudfront/url_signer.rb +2 -0
- data/lib/aws-sdk-cloudfront/waiters.rb +2 -0
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 15db99cc14682373f35aa90f1320584234ae291da8d2a645ffd8b134f11faed5
|
|
4
|
+
data.tar.gz: fca0af0c8874617185b879837a05a893f61d10c83d3a4296a00aeb7aa8e2207c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9c7304752f85df984824d05a5c769e4b9f0914671ee64531b09b45523f7ce11f468b4145adc27187c3adc93daf4d335c72a03fcb61d9c1b1a807b35e41890de2
|
|
7
|
+
data.tar.gz: e73f78a7ff6a6a92fe518a9c82b1d3121be7f167eebec1a3e0492a67c0763703ce394854f6e4eccc5d3663413b1ee60d417fdaf55de5b4ac9f740bc259a39aab
|
data/lib/aws-sdk-cloudfront.rb
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
|
2
4
|
#
|
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
|
@@ -46,6 +48,6 @@ require_relative 'aws-sdk-cloudfront/customizations'
|
|
|
46
48
|
# @service
|
|
47
49
|
module Aws::CloudFront
|
|
48
50
|
|
|
49
|
-
GEM_VERSION = '1.
|
|
51
|
+
GEM_VERSION = '1.34.0'
|
|
50
52
|
|
|
51
53
|
end
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
|
2
4
|
#
|
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
|
@@ -24,6 +26,7 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
|
|
24
26
|
require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
|
25
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
|
26
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
|
29
|
+
require 'aws-sdk-core/plugins/http_checksum.rb'
|
|
27
30
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
|
28
31
|
require 'aws-sdk-core/plugins/protocols/rest_xml.rb'
|
|
29
32
|
|
|
@@ -69,6 +72,7 @@ module Aws::CloudFront
|
|
|
69
72
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
|
70
73
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
|
71
74
|
add_plugin(Aws::Plugins::TransferEncoding)
|
|
75
|
+
add_plugin(Aws::Plugins::HttpChecksum)
|
|
72
76
|
add_plugin(Aws::Plugins::SignatureV4)
|
|
73
77
|
add_plugin(Aws::Plugins::Protocols::RestXml)
|
|
74
78
|
|
|
@@ -161,7 +165,7 @@ module Aws::CloudFront
|
|
|
161
165
|
# @option options [String] :endpoint
|
|
162
166
|
# The client endpoint is normally constructed from the `:region`
|
|
163
167
|
# option. You should only configure an `:endpoint` when connecting
|
|
164
|
-
# to test endpoints. This should be a valid HTTP(S) URI.
|
|
168
|
+
# to test or custom endpoints. This should be a valid HTTP(S) URI.
|
|
165
169
|
#
|
|
166
170
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
|
167
171
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
|
@@ -584,7 +588,7 @@ module Aws::CloudFront
|
|
|
584
588
|
# iam_certificate_id: "string",
|
|
585
589
|
# acm_certificate_arn: "string",
|
|
586
590
|
# ssl_support_method: "sni-only", # accepts sni-only, vip
|
|
587
|
-
# minimum_protocol_version: "SSLv3", # accepts SSLv3, TLSv1, TLSv1_2016, TLSv1.1_2016, TLSv1.2_2018
|
|
591
|
+
# minimum_protocol_version: "SSLv3", # accepts SSLv3, TLSv1, TLSv1_2016, TLSv1.1_2016, TLSv1.2_2018, TLSv1.2_2019
|
|
588
592
|
# certificate: "string",
|
|
589
593
|
# certificate_source: "cloudfront", # accepts cloudfront, iam, acm
|
|
590
594
|
# },
|
|
@@ -738,7 +742,7 @@ module Aws::CloudFront
|
|
|
738
742
|
# resp.distribution.distribution_config.viewer_certificate.iam_certificate_id #=> String
|
|
739
743
|
# resp.distribution.distribution_config.viewer_certificate.acm_certificate_arn #=> String
|
|
740
744
|
# resp.distribution.distribution_config.viewer_certificate.ssl_support_method #=> String, one of "sni-only", "vip"
|
|
741
|
-
# resp.distribution.distribution_config.viewer_certificate.minimum_protocol_version #=> String, one of "SSLv3", "TLSv1", "TLSv1_2016", "TLSv1.1_2016", "TLSv1.2_2018"
|
|
745
|
+
# resp.distribution.distribution_config.viewer_certificate.minimum_protocol_version #=> String, one of "SSLv3", "TLSv1", "TLSv1_2016", "TLSv1.1_2016", "TLSv1.2_2018", "TLSv1.2_2019"
|
|
742
746
|
# resp.distribution.distribution_config.viewer_certificate.certificate #=> String
|
|
743
747
|
# resp.distribution.distribution_config.viewer_certificate.certificate_source #=> String, one of "cloudfront", "iam", "acm"
|
|
744
748
|
# resp.distribution.distribution_config.restrictions.geo_restriction.restriction_type #=> String, one of "blacklist", "whitelist", "none"
|
|
@@ -975,7 +979,7 @@ module Aws::CloudFront
|
|
|
975
979
|
# iam_certificate_id: "string",
|
|
976
980
|
# acm_certificate_arn: "string",
|
|
977
981
|
# ssl_support_method: "sni-only", # accepts sni-only, vip
|
|
978
|
-
# minimum_protocol_version: "SSLv3", # accepts SSLv3, TLSv1, TLSv1_2016, TLSv1.1_2016, TLSv1.2_2018
|
|
982
|
+
# minimum_protocol_version: "SSLv3", # accepts SSLv3, TLSv1, TLSv1_2016, TLSv1.1_2016, TLSv1.2_2018, TLSv1.2_2019
|
|
979
983
|
# certificate: "string",
|
|
980
984
|
# certificate_source: "cloudfront", # accepts cloudfront, iam, acm
|
|
981
985
|
# },
|
|
@@ -1138,7 +1142,7 @@ module Aws::CloudFront
|
|
|
1138
1142
|
# resp.distribution.distribution_config.viewer_certificate.iam_certificate_id #=> String
|
|
1139
1143
|
# resp.distribution.distribution_config.viewer_certificate.acm_certificate_arn #=> String
|
|
1140
1144
|
# resp.distribution.distribution_config.viewer_certificate.ssl_support_method #=> String, one of "sni-only", "vip"
|
|
1141
|
-
# resp.distribution.distribution_config.viewer_certificate.minimum_protocol_version #=> String, one of "SSLv3", "TLSv1", "TLSv1_2016", "TLSv1.1_2016", "TLSv1.2_2018"
|
|
1145
|
+
# resp.distribution.distribution_config.viewer_certificate.minimum_protocol_version #=> String, one of "SSLv3", "TLSv1", "TLSv1_2016", "TLSv1.1_2016", "TLSv1.2_2018", "TLSv1.2_2019"
|
|
1142
1146
|
# resp.distribution.distribution_config.viewer_certificate.certificate #=> String
|
|
1143
1147
|
# resp.distribution.distribution_config.viewer_certificate.certificate_source #=> String, one of "cloudfront", "iam", "acm"
|
|
1144
1148
|
# resp.distribution.distribution_config.restrictions.geo_restriction.restriction_type #=> String, one of "blacklist", "whitelist", "none"
|
|
@@ -2017,7 +2021,7 @@ module Aws::CloudFront
|
|
|
2017
2021
|
# resp.distribution.distribution_config.viewer_certificate.iam_certificate_id #=> String
|
|
2018
2022
|
# resp.distribution.distribution_config.viewer_certificate.acm_certificate_arn #=> String
|
|
2019
2023
|
# resp.distribution.distribution_config.viewer_certificate.ssl_support_method #=> String, one of "sni-only", "vip"
|
|
2020
|
-
# resp.distribution.distribution_config.viewer_certificate.minimum_protocol_version #=> String, one of "SSLv3", "TLSv1", "TLSv1_2016", "TLSv1.1_2016", "TLSv1.2_2018"
|
|
2024
|
+
# resp.distribution.distribution_config.viewer_certificate.minimum_protocol_version #=> String, one of "SSLv3", "TLSv1", "TLSv1_2016", "TLSv1.1_2016", "TLSv1.2_2018", "TLSv1.2_2019"
|
|
2021
2025
|
# resp.distribution.distribution_config.viewer_certificate.certificate #=> String
|
|
2022
2026
|
# resp.distribution.distribution_config.viewer_certificate.certificate_source #=> String, one of "cloudfront", "iam", "acm"
|
|
2023
2027
|
# resp.distribution.distribution_config.restrictions.geo_restriction.restriction_type #=> String, one of "blacklist", "whitelist", "none"
|
|
@@ -2187,7 +2191,7 @@ module Aws::CloudFront
|
|
|
2187
2191
|
# resp.distribution_config.viewer_certificate.iam_certificate_id #=> String
|
|
2188
2192
|
# resp.distribution_config.viewer_certificate.acm_certificate_arn #=> String
|
|
2189
2193
|
# resp.distribution_config.viewer_certificate.ssl_support_method #=> String, one of "sni-only", "vip"
|
|
2190
|
-
# resp.distribution_config.viewer_certificate.minimum_protocol_version #=> String, one of "SSLv3", "TLSv1", "TLSv1_2016", "TLSv1.1_2016", "TLSv1.2_2018"
|
|
2194
|
+
# resp.distribution_config.viewer_certificate.minimum_protocol_version #=> String, one of "SSLv3", "TLSv1", "TLSv1_2016", "TLSv1.1_2016", "TLSv1.2_2018", "TLSv1.2_2019"
|
|
2191
2195
|
# resp.distribution_config.viewer_certificate.certificate #=> String
|
|
2192
2196
|
# resp.distribution_config.viewer_certificate.certificate_source #=> String, one of "cloudfront", "iam", "acm"
|
|
2193
2197
|
# resp.distribution_config.restrictions.geo_restriction.restriction_type #=> String, one of "blacklist", "whitelist", "none"
|
|
@@ -2799,7 +2803,7 @@ module Aws::CloudFront
|
|
|
2799
2803
|
# resp.distribution_list.items[0].viewer_certificate.iam_certificate_id #=> String
|
|
2800
2804
|
# resp.distribution_list.items[0].viewer_certificate.acm_certificate_arn #=> String
|
|
2801
2805
|
# resp.distribution_list.items[0].viewer_certificate.ssl_support_method #=> String, one of "sni-only", "vip"
|
|
2802
|
-
# resp.distribution_list.items[0].viewer_certificate.minimum_protocol_version #=> String, one of "SSLv3", "TLSv1", "TLSv1_2016", "TLSv1.1_2016", "TLSv1.2_2018"
|
|
2806
|
+
# resp.distribution_list.items[0].viewer_certificate.minimum_protocol_version #=> String, one of "SSLv3", "TLSv1", "TLSv1_2016", "TLSv1.1_2016", "TLSv1.2_2018", "TLSv1.2_2019"
|
|
2803
2807
|
# resp.distribution_list.items[0].viewer_certificate.certificate #=> String
|
|
2804
2808
|
# resp.distribution_list.items[0].viewer_certificate.certificate_source #=> String, one of "cloudfront", "iam", "acm"
|
|
2805
2809
|
# resp.distribution_list.items[0].restrictions.geo_restriction.restriction_type #=> String, one of "blacklist", "whitelist", "none"
|
|
@@ -2983,7 +2987,7 @@ module Aws::CloudFront
|
|
|
2983
2987
|
# resp.distribution_list.items[0].viewer_certificate.iam_certificate_id #=> String
|
|
2984
2988
|
# resp.distribution_list.items[0].viewer_certificate.acm_certificate_arn #=> String
|
|
2985
2989
|
# resp.distribution_list.items[0].viewer_certificate.ssl_support_method #=> String, one of "sni-only", "vip"
|
|
2986
|
-
# resp.distribution_list.items[0].viewer_certificate.minimum_protocol_version #=> String, one of "SSLv3", "TLSv1", "TLSv1_2016", "TLSv1.1_2016", "TLSv1.2_2018"
|
|
2990
|
+
# resp.distribution_list.items[0].viewer_certificate.minimum_protocol_version #=> String, one of "SSLv3", "TLSv1", "TLSv1_2016", "TLSv1.1_2016", "TLSv1.2_2018", "TLSv1.2_2019"
|
|
2987
2991
|
# resp.distribution_list.items[0].viewer_certificate.certificate #=> String
|
|
2988
2992
|
# resp.distribution_list.items[0].viewer_certificate.certificate_source #=> String, one of "cloudfront", "iam", "acm"
|
|
2989
2993
|
# resp.distribution_list.items[0].restrictions.geo_restriction.restriction_type #=> String, one of "blacklist", "whitelist", "none"
|
|
@@ -3697,7 +3701,7 @@ module Aws::CloudFront
|
|
|
3697
3701
|
# iam_certificate_id: "string",
|
|
3698
3702
|
# acm_certificate_arn: "string",
|
|
3699
3703
|
# ssl_support_method: "sni-only", # accepts sni-only, vip
|
|
3700
|
-
# minimum_protocol_version: "SSLv3", # accepts SSLv3, TLSv1, TLSv1_2016, TLSv1.1_2016, TLSv1.2_2018
|
|
3704
|
+
# minimum_protocol_version: "SSLv3", # accepts SSLv3, TLSv1, TLSv1_2016, TLSv1.1_2016, TLSv1.2_2018, TLSv1.2_2019
|
|
3701
3705
|
# certificate: "string",
|
|
3702
3706
|
# certificate_source: "cloudfront", # accepts cloudfront, iam, acm
|
|
3703
3707
|
# },
|
|
@@ -3853,7 +3857,7 @@ module Aws::CloudFront
|
|
|
3853
3857
|
# resp.distribution.distribution_config.viewer_certificate.iam_certificate_id #=> String
|
|
3854
3858
|
# resp.distribution.distribution_config.viewer_certificate.acm_certificate_arn #=> String
|
|
3855
3859
|
# resp.distribution.distribution_config.viewer_certificate.ssl_support_method #=> String, one of "sni-only", "vip"
|
|
3856
|
-
# resp.distribution.distribution_config.viewer_certificate.minimum_protocol_version #=> String, one of "SSLv3", "TLSv1", "TLSv1_2016", "TLSv1.1_2016", "TLSv1.2_2018"
|
|
3860
|
+
# resp.distribution.distribution_config.viewer_certificate.minimum_protocol_version #=> String, one of "SSLv3", "TLSv1", "TLSv1_2016", "TLSv1.1_2016", "TLSv1.2_2018", "TLSv1.2_2019"
|
|
3857
3861
|
# resp.distribution.distribution_config.viewer_certificate.certificate #=> String
|
|
3858
3862
|
# resp.distribution.distribution_config.viewer_certificate.certificate_source #=> String, one of "cloudfront", "iam", "acm"
|
|
3859
3863
|
# resp.distribution.distribution_config.restrictions.geo_restriction.restriction_type #=> String, one of "blacklist", "whitelist", "none"
|
|
@@ -4178,7 +4182,7 @@ module Aws::CloudFront
|
|
|
4178
4182
|
params: params,
|
|
4179
4183
|
config: config)
|
|
4180
4184
|
context[:gem_name] = 'aws-sdk-cloudfront'
|
|
4181
|
-
context[:gem_version] = '1.
|
|
4185
|
+
context[:gem_version] = '1.34.0'
|
|
4182
4186
|
Seahorse::Client::Request.new(handlers, context)
|
|
4183
4187
|
end
|
|
4184
4188
|
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
|
2
4
|
#
|
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
|
@@ -17,6 +19,7 @@ module Aws::CloudFront
|
|
|
17
19
|
#
|
|
18
20
|
class AccessDenied < Struct.new(
|
|
19
21
|
:message)
|
|
22
|
+
SENSITIVE = []
|
|
20
23
|
include Aws::Structure
|
|
21
24
|
end
|
|
22
25
|
|
|
@@ -62,6 +65,7 @@ module Aws::CloudFront
|
|
|
62
65
|
:enabled,
|
|
63
66
|
:quantity,
|
|
64
67
|
:items)
|
|
68
|
+
SENSITIVE = []
|
|
65
69
|
include Aws::Structure
|
|
66
70
|
end
|
|
67
71
|
|
|
@@ -112,6 +116,7 @@ module Aws::CloudFront
|
|
|
112
116
|
class AliasICPRecordal < Struct.new(
|
|
113
117
|
:cname,
|
|
114
118
|
:icp_recordal_status)
|
|
119
|
+
SENSITIVE = []
|
|
115
120
|
include Aws::Structure
|
|
116
121
|
end
|
|
117
122
|
|
|
@@ -141,6 +146,7 @@ module Aws::CloudFront
|
|
|
141
146
|
class Aliases < Struct.new(
|
|
142
147
|
:quantity,
|
|
143
148
|
:items)
|
|
149
|
+
SENSITIVE = []
|
|
144
150
|
include Aws::Structure
|
|
145
151
|
end
|
|
146
152
|
|
|
@@ -205,6 +211,7 @@ module Aws::CloudFront
|
|
|
205
211
|
:quantity,
|
|
206
212
|
:items,
|
|
207
213
|
:cached_methods)
|
|
214
|
+
SENSITIVE = []
|
|
208
215
|
include Aws::Structure
|
|
209
216
|
end
|
|
210
217
|
|
|
@@ -217,6 +224,7 @@ module Aws::CloudFront
|
|
|
217
224
|
#
|
|
218
225
|
class BatchTooLarge < Struct.new(
|
|
219
226
|
:message)
|
|
227
|
+
SENSITIVE = []
|
|
220
228
|
include Aws::Structure
|
|
221
229
|
end
|
|
222
230
|
|
|
@@ -229,6 +237,7 @@ module Aws::CloudFront
|
|
|
229
237
|
#
|
|
230
238
|
class CNAMEAlreadyExists < Struct.new(
|
|
231
239
|
:message)
|
|
240
|
+
SENSITIVE = []
|
|
232
241
|
include Aws::Structure
|
|
233
242
|
end
|
|
234
243
|
|
|
@@ -531,6 +540,7 @@ module Aws::CloudFront
|
|
|
531
540
|
:compress,
|
|
532
541
|
:lambda_function_associations,
|
|
533
542
|
:field_level_encryption_id)
|
|
543
|
+
SENSITIVE = []
|
|
534
544
|
include Aws::Structure
|
|
535
545
|
end
|
|
536
546
|
|
|
@@ -611,6 +621,7 @@ module Aws::CloudFront
|
|
|
611
621
|
class CacheBehaviors < Struct.new(
|
|
612
622
|
:quantity,
|
|
613
623
|
:items)
|
|
624
|
+
SENSITIVE = []
|
|
614
625
|
include Aws::Structure
|
|
615
626
|
end
|
|
616
627
|
|
|
@@ -652,6 +663,7 @@ module Aws::CloudFront
|
|
|
652
663
|
class CachedMethods < Struct.new(
|
|
653
664
|
:quantity,
|
|
654
665
|
:items)
|
|
666
|
+
SENSITIVE = []
|
|
655
667
|
include Aws::Structure
|
|
656
668
|
end
|
|
657
669
|
|
|
@@ -664,6 +676,7 @@ module Aws::CloudFront
|
|
|
664
676
|
#
|
|
665
677
|
class CannotChangeImmutablePublicKeyFields < Struct.new(
|
|
666
678
|
:message)
|
|
679
|
+
SENSITIVE = []
|
|
667
680
|
include Aws::Structure
|
|
668
681
|
end
|
|
669
682
|
|
|
@@ -690,6 +703,7 @@ module Aws::CloudFront
|
|
|
690
703
|
:id,
|
|
691
704
|
:s3_canonical_user_id,
|
|
692
705
|
:cloud_front_origin_access_identity_config)
|
|
706
|
+
SENSITIVE = []
|
|
693
707
|
include Aws::Structure
|
|
694
708
|
end
|
|
695
709
|
|
|
@@ -706,6 +720,7 @@ module Aws::CloudFront
|
|
|
706
720
|
#
|
|
707
721
|
class CloudFrontOriginAccessIdentityAlreadyExists < Struct.new(
|
|
708
722
|
:message)
|
|
723
|
+
SENSITIVE = []
|
|
709
724
|
include Aws::Structure
|
|
710
725
|
end
|
|
711
726
|
|
|
@@ -750,6 +765,7 @@ module Aws::CloudFront
|
|
|
750
765
|
class CloudFrontOriginAccessIdentityConfig < Struct.new(
|
|
751
766
|
:caller_reference,
|
|
752
767
|
:comment)
|
|
768
|
+
SENSITIVE = []
|
|
753
769
|
include Aws::Structure
|
|
754
770
|
end
|
|
755
771
|
|
|
@@ -762,6 +778,7 @@ module Aws::CloudFront
|
|
|
762
778
|
#
|
|
763
779
|
class CloudFrontOriginAccessIdentityInUse < Struct.new(
|
|
764
780
|
:message)
|
|
781
|
+
SENSITIVE = []
|
|
765
782
|
include Aws::Structure
|
|
766
783
|
end
|
|
767
784
|
|
|
@@ -820,6 +837,7 @@ module Aws::CloudFront
|
|
|
820
837
|
:is_truncated,
|
|
821
838
|
:quantity,
|
|
822
839
|
:items)
|
|
840
|
+
SENSITIVE = []
|
|
823
841
|
include Aws::Structure
|
|
824
842
|
end
|
|
825
843
|
|
|
@@ -847,6 +865,7 @@ module Aws::CloudFront
|
|
|
847
865
|
:id,
|
|
848
866
|
:s3_canonical_user_id,
|
|
849
867
|
:comment)
|
|
868
|
+
SENSITIVE = []
|
|
850
869
|
include Aws::Structure
|
|
851
870
|
end
|
|
852
871
|
|
|
@@ -882,6 +901,7 @@ module Aws::CloudFront
|
|
|
882
901
|
:format,
|
|
883
902
|
:profile_id,
|
|
884
903
|
:content_type)
|
|
904
|
+
SENSITIVE = []
|
|
885
905
|
include Aws::Structure
|
|
886
906
|
end
|
|
887
907
|
|
|
@@ -922,6 +942,7 @@ module Aws::CloudFront
|
|
|
922
942
|
class ContentTypeProfileConfig < Struct.new(
|
|
923
943
|
:forward_when_content_type_is_unknown,
|
|
924
944
|
:content_type_profiles)
|
|
945
|
+
SENSITIVE = []
|
|
925
946
|
include Aws::Structure
|
|
926
947
|
end
|
|
927
948
|
|
|
@@ -954,6 +975,7 @@ module Aws::CloudFront
|
|
|
954
975
|
class ContentTypeProfiles < Struct.new(
|
|
955
976
|
:quantity,
|
|
956
977
|
:items)
|
|
978
|
+
SENSITIVE = []
|
|
957
979
|
include Aws::Structure
|
|
958
980
|
end
|
|
959
981
|
|
|
@@ -998,6 +1020,7 @@ module Aws::CloudFront
|
|
|
998
1020
|
class CookieNames < Struct.new(
|
|
999
1021
|
:quantity,
|
|
1000
1022
|
:items)
|
|
1023
|
+
SENSITIVE = []
|
|
1001
1024
|
include Aws::Structure
|
|
1002
1025
|
end
|
|
1003
1026
|
|
|
@@ -1057,6 +1080,7 @@ module Aws::CloudFront
|
|
|
1057
1080
|
class CookiePreference < Struct.new(
|
|
1058
1081
|
:forward,
|
|
1059
1082
|
:whitelisted_names)
|
|
1083
|
+
SENSITIVE = []
|
|
1060
1084
|
include Aws::Structure
|
|
1061
1085
|
end
|
|
1062
1086
|
|
|
@@ -1089,6 +1113,7 @@ module Aws::CloudFront
|
|
|
1089
1113
|
#
|
|
1090
1114
|
class CreateCloudFrontOriginAccessIdentityRequest < Struct.new(
|
|
1091
1115
|
:cloud_front_origin_access_identity_config)
|
|
1116
|
+
SENSITIVE = []
|
|
1092
1117
|
include Aws::Structure
|
|
1093
1118
|
end
|
|
1094
1119
|
|
|
@@ -1100,8 +1125,7 @@ module Aws::CloudFront
|
|
|
1100
1125
|
#
|
|
1101
1126
|
# @!attribute [rw] location
|
|
1102
1127
|
# The fully qualified URI of the new origin access identity just
|
|
1103
|
-
# created.
|
|
1104
|
-
# `https://cloudfront.amazonaws.com/2010-11-01/origin-access-identity/cloudfront/E74FTE3AJFJ256A`.
|
|
1128
|
+
# created.
|
|
1105
1129
|
# @return [String]
|
|
1106
1130
|
#
|
|
1107
1131
|
# @!attribute [rw] etag
|
|
@@ -1114,6 +1138,7 @@ module Aws::CloudFront
|
|
|
1114
1138
|
:cloud_front_origin_access_identity,
|
|
1115
1139
|
:location,
|
|
1116
1140
|
:etag)
|
|
1141
|
+
SENSITIVE = []
|
|
1117
1142
|
include Aws::Structure
|
|
1118
1143
|
end
|
|
1119
1144
|
|
|
@@ -1320,7 +1345,7 @@ module Aws::CloudFront
|
|
|
1320
1345
|
# iam_certificate_id: "string",
|
|
1321
1346
|
# acm_certificate_arn: "string",
|
|
1322
1347
|
# ssl_support_method: "sni-only", # accepts sni-only, vip
|
|
1323
|
-
# minimum_protocol_version: "SSLv3", # accepts SSLv3, TLSv1, TLSv1_2016, TLSv1.1_2016, TLSv1.2_2018
|
|
1348
|
+
# minimum_protocol_version: "SSLv3", # accepts SSLv3, TLSv1, TLSv1_2016, TLSv1.1_2016, TLSv1.2_2018, TLSv1.2_2019
|
|
1324
1349
|
# certificate: "string",
|
|
1325
1350
|
# certificate_source: "cloudfront", # accepts cloudfront, iam, acm
|
|
1326
1351
|
# },
|
|
@@ -1345,6 +1370,7 @@ module Aws::CloudFront
|
|
|
1345
1370
|
#
|
|
1346
1371
|
class CreateDistributionRequest < Struct.new(
|
|
1347
1372
|
:distribution_config)
|
|
1373
|
+
SENSITIVE = []
|
|
1348
1374
|
include Aws::Structure
|
|
1349
1375
|
end
|
|
1350
1376
|
|
|
@@ -1356,8 +1382,7 @@ module Aws::CloudFront
|
|
|
1356
1382
|
#
|
|
1357
1383
|
# @!attribute [rw] location
|
|
1358
1384
|
# The fully qualified URI of the new distribution resource just
|
|
1359
|
-
# created.
|
|
1360
|
-
# `https://cloudfront.amazonaws.com/2010-11-01/distribution/EDFDVBD632BHDS5`.
|
|
1385
|
+
# created.
|
|
1361
1386
|
# @return [String]
|
|
1362
1387
|
#
|
|
1363
1388
|
# @!attribute [rw] etag
|
|
@@ -1370,6 +1395,7 @@ module Aws::CloudFront
|
|
|
1370
1395
|
:distribution,
|
|
1371
1396
|
:location,
|
|
1372
1397
|
:etag)
|
|
1398
|
+
SENSITIVE = []
|
|
1373
1399
|
include Aws::Structure
|
|
1374
1400
|
end
|
|
1375
1401
|
|
|
@@ -1577,7 +1603,7 @@ module Aws::CloudFront
|
|
|
1577
1603
|
# iam_certificate_id: "string",
|
|
1578
1604
|
# acm_certificate_arn: "string",
|
|
1579
1605
|
# ssl_support_method: "sni-only", # accepts sni-only, vip
|
|
1580
|
-
# minimum_protocol_version: "SSLv3", # accepts SSLv3, TLSv1, TLSv1_2016, TLSv1.1_2016, TLSv1.2_2018
|
|
1606
|
+
# minimum_protocol_version: "SSLv3", # accepts SSLv3, TLSv1, TLSv1_2016, TLSv1.1_2016, TLSv1.2_2018, TLSv1.2_2019
|
|
1581
1607
|
# certificate: "string",
|
|
1582
1608
|
# certificate_source: "cloudfront", # accepts cloudfront, iam, acm
|
|
1583
1609
|
# },
|
|
@@ -1611,6 +1637,7 @@ module Aws::CloudFront
|
|
|
1611
1637
|
#
|
|
1612
1638
|
class CreateDistributionWithTagsRequest < Struct.new(
|
|
1613
1639
|
:distribution_config_with_tags)
|
|
1640
|
+
SENSITIVE = []
|
|
1614
1641
|
include Aws::Structure
|
|
1615
1642
|
end
|
|
1616
1643
|
|
|
@@ -1622,8 +1649,7 @@ module Aws::CloudFront
|
|
|
1622
1649
|
#
|
|
1623
1650
|
# @!attribute [rw] location
|
|
1624
1651
|
# The fully qualified URI of the new distribution resource just
|
|
1625
|
-
# created.
|
|
1626
|
-
# `https://cloudfront.amazonaws.com/2010-11-01/distribution/EDFDVBD632BHDS5`.
|
|
1652
|
+
# created.
|
|
1627
1653
|
# @return [String]
|
|
1628
1654
|
#
|
|
1629
1655
|
# @!attribute [rw] etag
|
|
@@ -1636,6 +1662,7 @@ module Aws::CloudFront
|
|
|
1636
1662
|
:distribution,
|
|
1637
1663
|
:location,
|
|
1638
1664
|
:etag)
|
|
1665
|
+
SENSITIVE = []
|
|
1639
1666
|
include Aws::Structure
|
|
1640
1667
|
end
|
|
1641
1668
|
|
|
@@ -1682,6 +1709,7 @@ module Aws::CloudFront
|
|
|
1682
1709
|
#
|
|
1683
1710
|
class CreateFieldLevelEncryptionConfigRequest < Struct.new(
|
|
1684
1711
|
:field_level_encryption_config)
|
|
1712
|
+
SENSITIVE = []
|
|
1685
1713
|
include Aws::Structure
|
|
1686
1714
|
end
|
|
1687
1715
|
|
|
@@ -1691,8 +1719,7 @@ module Aws::CloudFront
|
|
|
1691
1719
|
#
|
|
1692
1720
|
# @!attribute [rw] location
|
|
1693
1721
|
# The fully qualified URI of the new configuration resource just
|
|
1694
|
-
# created.
|
|
1695
|
-
# `https://cloudfront.amazonaws.com/2010-11-01/field-level-encryption-config/EDFDVBD632BHDS5`.
|
|
1722
|
+
# created.
|
|
1696
1723
|
# @return [String]
|
|
1697
1724
|
#
|
|
1698
1725
|
# @!attribute [rw] etag
|
|
@@ -1706,6 +1733,7 @@ module Aws::CloudFront
|
|
|
1706
1733
|
:field_level_encryption,
|
|
1707
1734
|
:location,
|
|
1708
1735
|
:etag)
|
|
1736
|
+
SENSITIVE = []
|
|
1709
1737
|
include Aws::Structure
|
|
1710
1738
|
end
|
|
1711
1739
|
|
|
@@ -1741,6 +1769,7 @@ module Aws::CloudFront
|
|
|
1741
1769
|
#
|
|
1742
1770
|
class CreateFieldLevelEncryptionProfileRequest < Struct.new(
|
|
1743
1771
|
:field_level_encryption_profile_config)
|
|
1772
|
+
SENSITIVE = []
|
|
1744
1773
|
include Aws::Structure
|
|
1745
1774
|
end
|
|
1746
1775
|
|
|
@@ -1750,8 +1779,6 @@ module Aws::CloudFront
|
|
|
1750
1779
|
#
|
|
1751
1780
|
# @!attribute [rw] location
|
|
1752
1781
|
# The fully qualified URI of the new profile resource just created.
|
|
1753
|
-
# For example:
|
|
1754
|
-
# `https://cloudfront.amazonaws.com/2010-11-01/field-level-encryption-profile/EDFDVBD632BHDS5`.
|
|
1755
1782
|
# @return [String]
|
|
1756
1783
|
#
|
|
1757
1784
|
# @!attribute [rw] etag
|
|
@@ -1765,6 +1792,7 @@ module Aws::CloudFront
|
|
|
1765
1792
|
:field_level_encryption_profile,
|
|
1766
1793
|
:location,
|
|
1767
1794
|
:etag)
|
|
1795
|
+
SENSITIVE = []
|
|
1768
1796
|
include Aws::Structure
|
|
1769
1797
|
end
|
|
1770
1798
|
|
|
@@ -1797,6 +1825,7 @@ module Aws::CloudFront
|
|
|
1797
1825
|
class CreateInvalidationRequest < Struct.new(
|
|
1798
1826
|
:distribution_id,
|
|
1799
1827
|
:invalidation_batch)
|
|
1828
|
+
SENSITIVE = []
|
|
1800
1829
|
include Aws::Structure
|
|
1801
1830
|
end
|
|
1802
1831
|
|
|
@@ -1816,6 +1845,7 @@ module Aws::CloudFront
|
|
|
1816
1845
|
class CreateInvalidationResult < Struct.new(
|
|
1817
1846
|
:location,
|
|
1818
1847
|
:invalidation)
|
|
1848
|
+
SENSITIVE = []
|
|
1819
1849
|
include Aws::Structure
|
|
1820
1850
|
end
|
|
1821
1851
|
|
|
@@ -1839,6 +1869,7 @@ module Aws::CloudFront
|
|
|
1839
1869
|
#
|
|
1840
1870
|
class CreatePublicKeyRequest < Struct.new(
|
|
1841
1871
|
:public_key_config)
|
|
1872
|
+
SENSITIVE = []
|
|
1842
1873
|
include Aws::Structure
|
|
1843
1874
|
end
|
|
1844
1875
|
|
|
@@ -1848,8 +1879,6 @@ module Aws::CloudFront
|
|
|
1848
1879
|
#
|
|
1849
1880
|
# @!attribute [rw] location
|
|
1850
1881
|
# The fully qualified URI of the new public key resource just created.
|
|
1851
|
-
# For example:
|
|
1852
|
-
# `https://cloudfront.amazonaws.com/2010-11-01/cloudfront-public-key/EDFDVBD632BHDS5`.
|
|
1853
1882
|
# @return [String]
|
|
1854
1883
|
#
|
|
1855
1884
|
# @!attribute [rw] etag
|
|
@@ -1863,6 +1892,7 @@ module Aws::CloudFront
|
|
|
1863
1892
|
:public_key,
|
|
1864
1893
|
:location,
|
|
1865
1894
|
:etag)
|
|
1895
|
+
SENSITIVE = []
|
|
1866
1896
|
include Aws::Structure
|
|
1867
1897
|
end
|
|
1868
1898
|
|
|
@@ -1906,6 +1936,7 @@ module Aws::CloudFront
|
|
|
1906
1936
|
#
|
|
1907
1937
|
class CreateStreamingDistributionRequest < Struct.new(
|
|
1908
1938
|
:streaming_distribution_config)
|
|
1939
|
+
SENSITIVE = []
|
|
1909
1940
|
include Aws::Structure
|
|
1910
1941
|
end
|
|
1911
1942
|
|
|
@@ -1917,8 +1948,7 @@ module Aws::CloudFront
|
|
|
1917
1948
|
#
|
|
1918
1949
|
# @!attribute [rw] location
|
|
1919
1950
|
# The fully qualified URI of the new streaming distribution resource
|
|
1920
|
-
# just created.
|
|
1921
|
-
# `https://cloudfront.amazonaws.com/2010-11-01/streaming-distribution/EGTXBD79H29TRA8`.
|
|
1951
|
+
# just created.
|
|
1922
1952
|
# @return [String]
|
|
1923
1953
|
#
|
|
1924
1954
|
# @!attribute [rw] etag
|
|
@@ -1931,6 +1961,7 @@ module Aws::CloudFront
|
|
|
1931
1961
|
:streaming_distribution,
|
|
1932
1962
|
:location,
|
|
1933
1963
|
:etag)
|
|
1964
|
+
SENSITIVE = []
|
|
1934
1965
|
include Aws::Structure
|
|
1935
1966
|
end
|
|
1936
1967
|
|
|
@@ -1984,6 +2015,7 @@ module Aws::CloudFront
|
|
|
1984
2015
|
#
|
|
1985
2016
|
class CreateStreamingDistributionWithTagsRequest < Struct.new(
|
|
1986
2017
|
:streaming_distribution_config_with_tags)
|
|
2018
|
+
SENSITIVE = []
|
|
1987
2019
|
include Aws::Structure
|
|
1988
2020
|
end
|
|
1989
2021
|
|
|
@@ -1995,8 +2027,7 @@ module Aws::CloudFront
|
|
|
1995
2027
|
#
|
|
1996
2028
|
# @!attribute [rw] location
|
|
1997
2029
|
# The fully qualified URI of the new streaming distribution resource
|
|
1998
|
-
# just created.
|
|
1999
|
-
# https://cloudfront.amazonaws.com/2010-11-01/streaming-distribution/EGTXBD79H29TRA8`.
|
|
2030
|
+
# just created.
|
|
2000
2031
|
# @return [String]
|
|
2001
2032
|
#
|
|
2002
2033
|
# @!attribute [rw] etag
|
|
@@ -2009,6 +2040,7 @@ module Aws::CloudFront
|
|
|
2009
2040
|
:streaming_distribution,
|
|
2010
2041
|
:location,
|
|
2011
2042
|
:etag)
|
|
2043
|
+
SENSITIVE = []
|
|
2012
2044
|
include Aws::Structure
|
|
2013
2045
|
end
|
|
2014
2046
|
|
|
@@ -2116,6 +2148,7 @@ module Aws::CloudFront
|
|
|
2116
2148
|
:response_page_path,
|
|
2117
2149
|
:response_code,
|
|
2118
2150
|
:error_caching_min_ttl)
|
|
2151
|
+
SENSITIVE = []
|
|
2119
2152
|
include Aws::Structure
|
|
2120
2153
|
end
|
|
2121
2154
|
|
|
@@ -2167,6 +2200,7 @@ module Aws::CloudFront
|
|
|
2167
2200
|
class CustomErrorResponses < Struct.new(
|
|
2168
2201
|
:quantity,
|
|
2169
2202
|
:items)
|
|
2203
|
+
SENSITIVE = []
|
|
2170
2204
|
include Aws::Structure
|
|
2171
2205
|
end
|
|
2172
2206
|
|
|
@@ -2201,6 +2235,7 @@ module Aws::CloudFront
|
|
|
2201
2235
|
class CustomHeaders < Struct.new(
|
|
2202
2236
|
:quantity,
|
|
2203
2237
|
:items)
|
|
2238
|
+
SENSITIVE = []
|
|
2204
2239
|
include Aws::Structure
|
|
2205
2240
|
end
|
|
2206
2241
|
|
|
@@ -2301,6 +2336,7 @@ module Aws::CloudFront
|
|
|
2301
2336
|
:origin_ssl_protocols,
|
|
2302
2337
|
:origin_read_timeout,
|
|
2303
2338
|
:origin_keepalive_timeout)
|
|
2339
|
+
SENSITIVE = []
|
|
2304
2340
|
include Aws::Structure
|
|
2305
2341
|
end
|
|
2306
2342
|
|
|
@@ -2547,6 +2583,7 @@ module Aws::CloudFront
|
|
|
2547
2583
|
:compress,
|
|
2548
2584
|
:lambda_function_associations,
|
|
2549
2585
|
:field_level_encryption_id)
|
|
2586
|
+
SENSITIVE = []
|
|
2550
2587
|
include Aws::Structure
|
|
2551
2588
|
end
|
|
2552
2589
|
|
|
@@ -2574,6 +2611,7 @@ module Aws::CloudFront
|
|
|
2574
2611
|
class DeleteCloudFrontOriginAccessIdentityRequest < Struct.new(
|
|
2575
2612
|
:id,
|
|
2576
2613
|
:if_match)
|
|
2614
|
+
SENSITIVE = []
|
|
2577
2615
|
include Aws::Structure
|
|
2578
2616
|
end
|
|
2579
2617
|
|
|
@@ -2643,6 +2681,7 @@ module Aws::CloudFront
|
|
|
2643
2681
|
class DeleteDistributionRequest < Struct.new(
|
|
2644
2682
|
:id,
|
|
2645
2683
|
:if_match)
|
|
2684
|
+
SENSITIVE = []
|
|
2646
2685
|
include Aws::Structure
|
|
2647
2686
|
end
|
|
2648
2687
|
|
|
@@ -2668,6 +2707,7 @@ module Aws::CloudFront
|
|
|
2668
2707
|
class DeleteFieldLevelEncryptionConfigRequest < Struct.new(
|
|
2669
2708
|
:id,
|
|
2670
2709
|
:if_match)
|
|
2710
|
+
SENSITIVE = []
|
|
2671
2711
|
include Aws::Structure
|
|
2672
2712
|
end
|
|
2673
2713
|
|
|
@@ -2693,6 +2733,7 @@ module Aws::CloudFront
|
|
|
2693
2733
|
class DeleteFieldLevelEncryptionProfileRequest < Struct.new(
|
|
2694
2734
|
:id,
|
|
2695
2735
|
:if_match)
|
|
2736
|
+
SENSITIVE = []
|
|
2696
2737
|
include Aws::Structure
|
|
2697
2738
|
end
|
|
2698
2739
|
|
|
@@ -2718,6 +2759,7 @@ module Aws::CloudFront
|
|
|
2718
2759
|
class DeletePublicKeyRequest < Struct.new(
|
|
2719
2760
|
:id,
|
|
2720
2761
|
:if_match)
|
|
2762
|
+
SENSITIVE = []
|
|
2721
2763
|
include Aws::Structure
|
|
2722
2764
|
end
|
|
2723
2765
|
|
|
@@ -2745,6 +2787,7 @@ module Aws::CloudFront
|
|
|
2745
2787
|
class DeleteStreamingDistributionRequest < Struct.new(
|
|
2746
2788
|
:id,
|
|
2747
2789
|
:if_match)
|
|
2790
|
+
SENSITIVE = []
|
|
2748
2791
|
include Aws::Structure
|
|
2749
2792
|
end
|
|
2750
2793
|
|
|
@@ -2825,6 +2868,7 @@ module Aws::CloudFront
|
|
|
2825
2868
|
:active_trusted_signers,
|
|
2826
2869
|
:distribution_config,
|
|
2827
2870
|
:alias_icp_recordals)
|
|
2871
|
+
SENSITIVE = []
|
|
2828
2872
|
include Aws::Structure
|
|
2829
2873
|
end
|
|
2830
2874
|
|
|
@@ -2838,6 +2882,7 @@ module Aws::CloudFront
|
|
|
2838
2882
|
#
|
|
2839
2883
|
class DistributionAlreadyExists < Struct.new(
|
|
2840
2884
|
:message)
|
|
2885
|
+
SENSITIVE = []
|
|
2841
2886
|
include Aws::Structure
|
|
2842
2887
|
end
|
|
2843
2888
|
|
|
@@ -3043,7 +3088,7 @@ module Aws::CloudFront
|
|
|
3043
3088
|
# iam_certificate_id: "string",
|
|
3044
3089
|
# acm_certificate_arn: "string",
|
|
3045
3090
|
# ssl_support_method: "sni-only", # accepts sni-only, vip
|
|
3046
|
-
# minimum_protocol_version: "SSLv3", # accepts SSLv3, TLSv1, TLSv1_2016, TLSv1.1_2016, TLSv1.2_2018
|
|
3091
|
+
# minimum_protocol_version: "SSLv3", # accepts SSLv3, TLSv1, TLSv1_2016, TLSv1.1_2016, TLSv1.2_2018, TLSv1.2_2019
|
|
3047
3092
|
# certificate: "string",
|
|
3048
3093
|
# certificate_source: "cloudfront", # accepts cloudfront, iam, acm
|
|
3049
3094
|
# },
|
|
@@ -3312,6 +3357,7 @@ module Aws::CloudFront
|
|
|
3312
3357
|
:web_acl_id,
|
|
3313
3358
|
:http_version,
|
|
3314
3359
|
:is_ipv6_enabled)
|
|
3360
|
+
SENSITIVE = [:comment]
|
|
3315
3361
|
include Aws::Structure
|
|
3316
3362
|
end
|
|
3317
3363
|
|
|
@@ -3519,7 +3565,7 @@ module Aws::CloudFront
|
|
|
3519
3565
|
# iam_certificate_id: "string",
|
|
3520
3566
|
# acm_certificate_arn: "string",
|
|
3521
3567
|
# ssl_support_method: "sni-only", # accepts sni-only, vip
|
|
3522
|
-
# minimum_protocol_version: "SSLv3", # accepts SSLv3, TLSv1, TLSv1_2016, TLSv1.1_2016, TLSv1.2_2018
|
|
3568
|
+
# minimum_protocol_version: "SSLv3", # accepts SSLv3, TLSv1, TLSv1_2016, TLSv1.1_2016, TLSv1.2_2018, TLSv1.2_2019
|
|
3523
3569
|
# certificate: "string",
|
|
3524
3570
|
# certificate_source: "cloudfront", # accepts cloudfront, iam, acm
|
|
3525
3571
|
# },
|
|
@@ -3557,6 +3603,7 @@ module Aws::CloudFront
|
|
|
3557
3603
|
class DistributionConfigWithTags < Struct.new(
|
|
3558
3604
|
:distribution_config,
|
|
3559
3605
|
:tags)
|
|
3606
|
+
SENSITIVE = []
|
|
3560
3607
|
include Aws::Structure
|
|
3561
3608
|
end
|
|
3562
3609
|
|
|
@@ -3602,6 +3649,7 @@ module Aws::CloudFront
|
|
|
3602
3649
|
:is_truncated,
|
|
3603
3650
|
:quantity,
|
|
3604
3651
|
:items)
|
|
3652
|
+
SENSITIVE = []
|
|
3605
3653
|
include Aws::Structure
|
|
3606
3654
|
end
|
|
3607
3655
|
|
|
@@ -3615,6 +3663,7 @@ module Aws::CloudFront
|
|
|
3615
3663
|
#
|
|
3616
3664
|
class DistributionNotDisabled < Struct.new(
|
|
3617
3665
|
:message)
|
|
3666
|
+
SENSITIVE = []
|
|
3618
3667
|
include Aws::Structure
|
|
3619
3668
|
end
|
|
3620
3669
|
|
|
@@ -3754,6 +3803,7 @@ module Aws::CloudFront
|
|
|
3754
3803
|
:http_version,
|
|
3755
3804
|
:is_ipv6_enabled,
|
|
3756
3805
|
:alias_icp_recordals)
|
|
3806
|
+
SENSITIVE = []
|
|
3757
3807
|
include Aws::Structure
|
|
3758
3808
|
end
|
|
3759
3809
|
|
|
@@ -3792,6 +3842,7 @@ module Aws::CloudFront
|
|
|
3792
3842
|
class EncryptionEntities < Struct.new(
|
|
3793
3843
|
:quantity,
|
|
3794
3844
|
:items)
|
|
3845
|
+
SENSITIVE = []
|
|
3795
3846
|
include Aws::Structure
|
|
3796
3847
|
end
|
|
3797
3848
|
|
|
@@ -3837,6 +3888,7 @@ module Aws::CloudFront
|
|
|
3837
3888
|
:public_key_id,
|
|
3838
3889
|
:provider_id,
|
|
3839
3890
|
:field_patterns)
|
|
3891
|
+
SENSITIVE = []
|
|
3840
3892
|
include Aws::Structure
|
|
3841
3893
|
end
|
|
3842
3894
|
|
|
@@ -3864,6 +3916,7 @@ module Aws::CloudFront
|
|
|
3864
3916
|
:id,
|
|
3865
3917
|
:last_modified_time,
|
|
3866
3918
|
:field_level_encryption_config)
|
|
3919
|
+
SENSITIVE = []
|
|
3867
3920
|
include Aws::Structure
|
|
3868
3921
|
end
|
|
3869
3922
|
|
|
@@ -3930,6 +3983,7 @@ module Aws::CloudFront
|
|
|
3930
3983
|
:comment,
|
|
3931
3984
|
:query_arg_profile_config,
|
|
3932
3985
|
:content_type_profile_config)
|
|
3986
|
+
SENSITIVE = []
|
|
3933
3987
|
include Aws::Structure
|
|
3934
3988
|
end
|
|
3935
3989
|
|
|
@@ -3942,6 +3996,7 @@ module Aws::CloudFront
|
|
|
3942
3996
|
#
|
|
3943
3997
|
class FieldLevelEncryptionConfigAlreadyExists < Struct.new(
|
|
3944
3998
|
:message)
|
|
3999
|
+
SENSITIVE = []
|
|
3945
4000
|
include Aws::Structure
|
|
3946
4001
|
end
|
|
3947
4002
|
|
|
@@ -3954,6 +4009,7 @@ module Aws::CloudFront
|
|
|
3954
4009
|
#
|
|
3955
4010
|
class FieldLevelEncryptionConfigInUse < Struct.new(
|
|
3956
4011
|
:message)
|
|
4012
|
+
SENSITIVE = []
|
|
3957
4013
|
include Aws::Structure
|
|
3958
4014
|
end
|
|
3959
4015
|
|
|
@@ -3985,6 +4041,7 @@ module Aws::CloudFront
|
|
|
3985
4041
|
:max_items,
|
|
3986
4042
|
:quantity,
|
|
3987
4043
|
:items)
|
|
4044
|
+
SENSITIVE = []
|
|
3988
4045
|
include Aws::Structure
|
|
3989
4046
|
end
|
|
3990
4047
|
|
|
@@ -4011,6 +4068,7 @@ module Aws::CloudFront
|
|
|
4011
4068
|
:id,
|
|
4012
4069
|
:last_modified_time,
|
|
4013
4070
|
:field_level_encryption_profile_config)
|
|
4071
|
+
SENSITIVE = []
|
|
4014
4072
|
include Aws::Structure
|
|
4015
4073
|
end
|
|
4016
4074
|
|
|
@@ -4023,6 +4081,7 @@ module Aws::CloudFront
|
|
|
4023
4081
|
#
|
|
4024
4082
|
class FieldLevelEncryptionProfileAlreadyExists < Struct.new(
|
|
4025
4083
|
:message)
|
|
4084
|
+
SENSITIVE = []
|
|
4026
4085
|
include Aws::Structure
|
|
4027
4086
|
end
|
|
4028
4087
|
|
|
@@ -4075,6 +4134,7 @@ module Aws::CloudFront
|
|
|
4075
4134
|
:caller_reference,
|
|
4076
4135
|
:comment,
|
|
4077
4136
|
:encryption_entities)
|
|
4137
|
+
SENSITIVE = []
|
|
4078
4138
|
include Aws::Structure
|
|
4079
4139
|
end
|
|
4080
4140
|
|
|
@@ -4087,6 +4147,7 @@ module Aws::CloudFront
|
|
|
4087
4147
|
#
|
|
4088
4148
|
class FieldLevelEncryptionProfileInUse < Struct.new(
|
|
4089
4149
|
:message)
|
|
4150
|
+
SENSITIVE = []
|
|
4090
4151
|
include Aws::Structure
|
|
4091
4152
|
end
|
|
4092
4153
|
|
|
@@ -4118,6 +4179,7 @@ module Aws::CloudFront
|
|
|
4118
4179
|
:max_items,
|
|
4119
4180
|
:quantity,
|
|
4120
4181
|
:items)
|
|
4182
|
+
SENSITIVE = []
|
|
4121
4183
|
include Aws::Structure
|
|
4122
4184
|
end
|
|
4123
4185
|
|
|
@@ -4130,6 +4192,7 @@ module Aws::CloudFront
|
|
|
4130
4192
|
#
|
|
4131
4193
|
class FieldLevelEncryptionProfileSizeExceeded < Struct.new(
|
|
4132
4194
|
:message)
|
|
4195
|
+
SENSITIVE = []
|
|
4133
4196
|
include Aws::Structure
|
|
4134
4197
|
end
|
|
4135
4198
|
|
|
@@ -4166,6 +4229,7 @@ module Aws::CloudFront
|
|
|
4166
4229
|
:name,
|
|
4167
4230
|
:encryption_entities,
|
|
4168
4231
|
:comment)
|
|
4232
|
+
SENSITIVE = []
|
|
4169
4233
|
include Aws::Structure
|
|
4170
4234
|
end
|
|
4171
4235
|
|
|
@@ -4200,6 +4264,7 @@ module Aws::CloudFront
|
|
|
4200
4264
|
:comment,
|
|
4201
4265
|
:query_arg_profile_config,
|
|
4202
4266
|
:content_type_profile_config)
|
|
4267
|
+
SENSITIVE = []
|
|
4203
4268
|
include Aws::Structure
|
|
4204
4269
|
end
|
|
4205
4270
|
|
|
@@ -4227,6 +4292,7 @@ module Aws::CloudFront
|
|
|
4227
4292
|
class FieldPatterns < Struct.new(
|
|
4228
4293
|
:quantity,
|
|
4229
4294
|
:items)
|
|
4295
|
+
SENSITIVE = []
|
|
4230
4296
|
include Aws::Structure
|
|
4231
4297
|
end
|
|
4232
4298
|
|
|
@@ -4327,6 +4393,7 @@ module Aws::CloudFront
|
|
|
4327
4393
|
:cookies,
|
|
4328
4394
|
:headers,
|
|
4329
4395
|
:query_string_cache_keys)
|
|
4396
|
+
SENSITIVE = []
|
|
4330
4397
|
include Aws::Structure
|
|
4331
4398
|
end
|
|
4332
4399
|
|
|
@@ -4385,6 +4452,7 @@ module Aws::CloudFront
|
|
|
4385
4452
|
:restriction_type,
|
|
4386
4453
|
:quantity,
|
|
4387
4454
|
:items)
|
|
4455
|
+
SENSITIVE = []
|
|
4388
4456
|
include Aws::Structure
|
|
4389
4457
|
end
|
|
4390
4458
|
|
|
@@ -4410,6 +4478,7 @@ module Aws::CloudFront
|
|
|
4410
4478
|
#
|
|
4411
4479
|
class GetCloudFrontOriginAccessIdentityConfigRequest < Struct.new(
|
|
4412
4480
|
:id)
|
|
4481
|
+
SENSITIVE = []
|
|
4413
4482
|
include Aws::Structure
|
|
4414
4483
|
end
|
|
4415
4484
|
|
|
@@ -4429,6 +4498,7 @@ module Aws::CloudFront
|
|
|
4429
4498
|
class GetCloudFrontOriginAccessIdentityConfigResult < Struct.new(
|
|
4430
4499
|
:cloud_front_origin_access_identity_config,
|
|
4431
4500
|
:etag)
|
|
4501
|
+
SENSITIVE = []
|
|
4432
4502
|
include Aws::Structure
|
|
4433
4503
|
end
|
|
4434
4504
|
|
|
@@ -4449,6 +4519,7 @@ module Aws::CloudFront
|
|
|
4449
4519
|
#
|
|
4450
4520
|
class GetCloudFrontOriginAccessIdentityRequest < Struct.new(
|
|
4451
4521
|
:id)
|
|
4522
|
+
SENSITIVE = []
|
|
4452
4523
|
include Aws::Structure
|
|
4453
4524
|
end
|
|
4454
4525
|
|
|
@@ -4468,6 +4539,7 @@ module Aws::CloudFront
|
|
|
4468
4539
|
class GetCloudFrontOriginAccessIdentityResult < Struct.new(
|
|
4469
4540
|
:cloud_front_origin_access_identity,
|
|
4470
4541
|
:etag)
|
|
4542
|
+
SENSITIVE = []
|
|
4471
4543
|
include Aws::Structure
|
|
4472
4544
|
end
|
|
4473
4545
|
|
|
@@ -4489,6 +4561,7 @@ module Aws::CloudFront
|
|
|
4489
4561
|
#
|
|
4490
4562
|
class GetDistributionConfigRequest < Struct.new(
|
|
4491
4563
|
:id)
|
|
4564
|
+
SENSITIVE = []
|
|
4492
4565
|
include Aws::Structure
|
|
4493
4566
|
end
|
|
4494
4567
|
|
|
@@ -4508,6 +4581,7 @@ module Aws::CloudFront
|
|
|
4508
4581
|
class GetDistributionConfigResult < Struct.new(
|
|
4509
4582
|
:distribution_config,
|
|
4510
4583
|
:etag)
|
|
4584
|
+
SENSITIVE = []
|
|
4511
4585
|
include Aws::Structure
|
|
4512
4586
|
end
|
|
4513
4587
|
|
|
@@ -4529,6 +4603,7 @@ module Aws::CloudFront
|
|
|
4529
4603
|
#
|
|
4530
4604
|
class GetDistributionRequest < Struct.new(
|
|
4531
4605
|
:id)
|
|
4606
|
+
SENSITIVE = []
|
|
4532
4607
|
include Aws::Structure
|
|
4533
4608
|
end
|
|
4534
4609
|
|
|
@@ -4548,6 +4623,7 @@ module Aws::CloudFront
|
|
|
4548
4623
|
class GetDistributionResult < Struct.new(
|
|
4549
4624
|
:distribution,
|
|
4550
4625
|
:etag)
|
|
4626
|
+
SENSITIVE = []
|
|
4551
4627
|
include Aws::Structure
|
|
4552
4628
|
end
|
|
4553
4629
|
|
|
@@ -4567,6 +4643,7 @@ module Aws::CloudFront
|
|
|
4567
4643
|
#
|
|
4568
4644
|
class GetFieldLevelEncryptionConfigRequest < Struct.new(
|
|
4569
4645
|
:id)
|
|
4646
|
+
SENSITIVE = []
|
|
4570
4647
|
include Aws::Structure
|
|
4571
4648
|
end
|
|
4572
4649
|
|
|
@@ -4584,6 +4661,7 @@ module Aws::CloudFront
|
|
|
4584
4661
|
class GetFieldLevelEncryptionConfigResult < Struct.new(
|
|
4585
4662
|
:field_level_encryption_config,
|
|
4586
4663
|
:etag)
|
|
4664
|
+
SENSITIVE = []
|
|
4587
4665
|
include Aws::Structure
|
|
4588
4666
|
end
|
|
4589
4667
|
|
|
@@ -4603,6 +4681,7 @@ module Aws::CloudFront
|
|
|
4603
4681
|
#
|
|
4604
4682
|
class GetFieldLevelEncryptionProfileConfigRequest < Struct.new(
|
|
4605
4683
|
:id)
|
|
4684
|
+
SENSITIVE = []
|
|
4606
4685
|
include Aws::Structure
|
|
4607
4686
|
end
|
|
4608
4687
|
|
|
@@ -4620,6 +4699,7 @@ module Aws::CloudFront
|
|
|
4620
4699
|
class GetFieldLevelEncryptionProfileConfigResult < Struct.new(
|
|
4621
4700
|
:field_level_encryption_profile_config,
|
|
4622
4701
|
:etag)
|
|
4702
|
+
SENSITIVE = []
|
|
4623
4703
|
include Aws::Structure
|
|
4624
4704
|
end
|
|
4625
4705
|
|
|
@@ -4638,6 +4718,7 @@ module Aws::CloudFront
|
|
|
4638
4718
|
#
|
|
4639
4719
|
class GetFieldLevelEncryptionProfileRequest < Struct.new(
|
|
4640
4720
|
:id)
|
|
4721
|
+
SENSITIVE = []
|
|
4641
4722
|
include Aws::Structure
|
|
4642
4723
|
end
|
|
4643
4724
|
|
|
@@ -4655,6 +4736,7 @@ module Aws::CloudFront
|
|
|
4655
4736
|
class GetFieldLevelEncryptionProfileResult < Struct.new(
|
|
4656
4737
|
:field_level_encryption_profile,
|
|
4657
4738
|
:etag)
|
|
4739
|
+
SENSITIVE = []
|
|
4658
4740
|
include Aws::Structure
|
|
4659
4741
|
end
|
|
4660
4742
|
|
|
@@ -4674,6 +4756,7 @@ module Aws::CloudFront
|
|
|
4674
4756
|
#
|
|
4675
4757
|
class GetFieldLevelEncryptionRequest < Struct.new(
|
|
4676
4758
|
:id)
|
|
4759
|
+
SENSITIVE = []
|
|
4677
4760
|
include Aws::Structure
|
|
4678
4761
|
end
|
|
4679
4762
|
|
|
@@ -4691,6 +4774,7 @@ module Aws::CloudFront
|
|
|
4691
4774
|
class GetFieldLevelEncryptionResult < Struct.new(
|
|
4692
4775
|
:field_level_encryption,
|
|
4693
4776
|
:etag)
|
|
4777
|
+
SENSITIVE = []
|
|
4694
4778
|
include Aws::Structure
|
|
4695
4779
|
end
|
|
4696
4780
|
|
|
@@ -4718,6 +4802,7 @@ module Aws::CloudFront
|
|
|
4718
4802
|
class GetInvalidationRequest < Struct.new(
|
|
4719
4803
|
:distribution_id,
|
|
4720
4804
|
:id)
|
|
4805
|
+
SENSITIVE = []
|
|
4721
4806
|
include Aws::Structure
|
|
4722
4807
|
end
|
|
4723
4808
|
|
|
@@ -4736,6 +4821,7 @@ module Aws::CloudFront
|
|
|
4736
4821
|
#
|
|
4737
4822
|
class GetInvalidationResult < Struct.new(
|
|
4738
4823
|
:invalidation)
|
|
4824
|
+
SENSITIVE = []
|
|
4739
4825
|
include Aws::Structure
|
|
4740
4826
|
end
|
|
4741
4827
|
|
|
@@ -4754,6 +4840,7 @@ module Aws::CloudFront
|
|
|
4754
4840
|
#
|
|
4755
4841
|
class GetPublicKeyConfigRequest < Struct.new(
|
|
4756
4842
|
:id)
|
|
4843
|
+
SENSITIVE = []
|
|
4757
4844
|
include Aws::Structure
|
|
4758
4845
|
end
|
|
4759
4846
|
|
|
@@ -4771,6 +4858,7 @@ module Aws::CloudFront
|
|
|
4771
4858
|
class GetPublicKeyConfigResult < Struct.new(
|
|
4772
4859
|
:public_key_config,
|
|
4773
4860
|
:etag)
|
|
4861
|
+
SENSITIVE = []
|
|
4774
4862
|
include Aws::Structure
|
|
4775
4863
|
end
|
|
4776
4864
|
|
|
@@ -4789,6 +4877,7 @@ module Aws::CloudFront
|
|
|
4789
4877
|
#
|
|
4790
4878
|
class GetPublicKeyRequest < Struct.new(
|
|
4791
4879
|
:id)
|
|
4880
|
+
SENSITIVE = []
|
|
4792
4881
|
include Aws::Structure
|
|
4793
4882
|
end
|
|
4794
4883
|
|
|
@@ -4806,6 +4895,7 @@ module Aws::CloudFront
|
|
|
4806
4895
|
class GetPublicKeyResult < Struct.new(
|
|
4807
4896
|
:public_key,
|
|
4808
4897
|
:etag)
|
|
4898
|
+
SENSITIVE = []
|
|
4809
4899
|
include Aws::Structure
|
|
4810
4900
|
end
|
|
4811
4901
|
|
|
@@ -4826,6 +4916,7 @@ module Aws::CloudFront
|
|
|
4826
4916
|
#
|
|
4827
4917
|
class GetStreamingDistributionConfigRequest < Struct.new(
|
|
4828
4918
|
:id)
|
|
4919
|
+
SENSITIVE = []
|
|
4829
4920
|
include Aws::Structure
|
|
4830
4921
|
end
|
|
4831
4922
|
|
|
@@ -4845,6 +4936,7 @@ module Aws::CloudFront
|
|
|
4845
4936
|
class GetStreamingDistributionConfigResult < Struct.new(
|
|
4846
4937
|
:streaming_distribution_config,
|
|
4847
4938
|
:etag)
|
|
4939
|
+
SENSITIVE = []
|
|
4848
4940
|
include Aws::Structure
|
|
4849
4941
|
end
|
|
4850
4942
|
|
|
@@ -4865,6 +4957,7 @@ module Aws::CloudFront
|
|
|
4865
4957
|
#
|
|
4866
4958
|
class GetStreamingDistributionRequest < Struct.new(
|
|
4867
4959
|
:id)
|
|
4960
|
+
SENSITIVE = []
|
|
4868
4961
|
include Aws::Structure
|
|
4869
4962
|
end
|
|
4870
4963
|
|
|
@@ -4884,6 +4977,7 @@ module Aws::CloudFront
|
|
|
4884
4977
|
class GetStreamingDistributionResult < Struct.new(
|
|
4885
4978
|
:streaming_distribution,
|
|
4886
4979
|
:etag)
|
|
4980
|
+
SENSITIVE = []
|
|
4887
4981
|
include Aws::Structure
|
|
4888
4982
|
end
|
|
4889
4983
|
|
|
@@ -4961,6 +5055,7 @@ module Aws::CloudFront
|
|
|
4961
5055
|
class Headers < Struct.new(
|
|
4962
5056
|
:quantity,
|
|
4963
5057
|
:items)
|
|
5058
|
+
SENSITIVE = []
|
|
4964
5059
|
include Aws::Structure
|
|
4965
5060
|
end
|
|
4966
5061
|
|
|
@@ -4974,6 +5069,7 @@ module Aws::CloudFront
|
|
|
4974
5069
|
#
|
|
4975
5070
|
class IllegalFieldLevelEncryptionConfigAssociationWithCacheBehavior < Struct.new(
|
|
4976
5071
|
:message)
|
|
5072
|
+
SENSITIVE = []
|
|
4977
5073
|
include Aws::Structure
|
|
4978
5074
|
end
|
|
4979
5075
|
|
|
@@ -4986,6 +5082,7 @@ module Aws::CloudFront
|
|
|
4986
5082
|
#
|
|
4987
5083
|
class IllegalUpdate < Struct.new(
|
|
4988
5084
|
:message)
|
|
5085
|
+
SENSITIVE = []
|
|
4989
5086
|
include Aws::Structure
|
|
4990
5087
|
end
|
|
4991
5088
|
|
|
@@ -4998,6 +5095,7 @@ module Aws::CloudFront
|
|
|
4998
5095
|
#
|
|
4999
5096
|
class InconsistentQuantities < Struct.new(
|
|
5000
5097
|
:message)
|
|
5098
|
+
SENSITIVE = []
|
|
5001
5099
|
include Aws::Structure
|
|
5002
5100
|
end
|
|
5003
5101
|
|
|
@@ -5010,6 +5108,7 @@ module Aws::CloudFront
|
|
|
5010
5108
|
#
|
|
5011
5109
|
class InvalidArgument < Struct.new(
|
|
5012
5110
|
:message)
|
|
5111
|
+
SENSITIVE = []
|
|
5013
5112
|
include Aws::Structure
|
|
5014
5113
|
end
|
|
5015
5114
|
|
|
@@ -5023,6 +5122,7 @@ module Aws::CloudFront
|
|
|
5023
5122
|
#
|
|
5024
5123
|
class InvalidDefaultRootObject < Struct.new(
|
|
5025
5124
|
:message)
|
|
5125
|
+
SENSITIVE = []
|
|
5026
5126
|
include Aws::Structure
|
|
5027
5127
|
end
|
|
5028
5128
|
|
|
@@ -5035,6 +5135,7 @@ module Aws::CloudFront
|
|
|
5035
5135
|
#
|
|
5036
5136
|
class InvalidErrorCode < Struct.new(
|
|
5037
5137
|
:message)
|
|
5138
|
+
SENSITIVE = []
|
|
5038
5139
|
include Aws::Structure
|
|
5039
5140
|
end
|
|
5040
5141
|
|
|
@@ -5050,6 +5151,7 @@ module Aws::CloudFront
|
|
|
5050
5151
|
#
|
|
5051
5152
|
class InvalidForwardCookies < Struct.new(
|
|
5052
5153
|
:message)
|
|
5154
|
+
SENSITIVE = []
|
|
5053
5155
|
include Aws::Structure
|
|
5054
5156
|
end
|
|
5055
5157
|
|
|
@@ -5062,6 +5164,7 @@ module Aws::CloudFront
|
|
|
5062
5164
|
#
|
|
5063
5165
|
class InvalidGeoRestrictionParameter < Struct.new(
|
|
5064
5166
|
:message)
|
|
5167
|
+
SENSITIVE = []
|
|
5065
5168
|
include Aws::Structure
|
|
5066
5169
|
end
|
|
5067
5170
|
|
|
@@ -5074,6 +5177,7 @@ module Aws::CloudFront
|
|
|
5074
5177
|
#
|
|
5075
5178
|
class InvalidHeadersForS3Origin < Struct.new(
|
|
5076
5179
|
:message)
|
|
5180
|
+
SENSITIVE = []
|
|
5077
5181
|
include Aws::Structure
|
|
5078
5182
|
end
|
|
5079
5183
|
|
|
@@ -5086,6 +5190,7 @@ module Aws::CloudFront
|
|
|
5086
5190
|
#
|
|
5087
5191
|
class InvalidIfMatchVersion < Struct.new(
|
|
5088
5192
|
:message)
|
|
5193
|
+
SENSITIVE = []
|
|
5089
5194
|
include Aws::Structure
|
|
5090
5195
|
end
|
|
5091
5196
|
|
|
@@ -5098,6 +5203,7 @@ module Aws::CloudFront
|
|
|
5098
5203
|
#
|
|
5099
5204
|
class InvalidLambdaFunctionAssociation < Struct.new(
|
|
5100
5205
|
:message)
|
|
5206
|
+
SENSITIVE = []
|
|
5101
5207
|
include Aws::Structure
|
|
5102
5208
|
end
|
|
5103
5209
|
|
|
@@ -5110,6 +5216,7 @@ module Aws::CloudFront
|
|
|
5110
5216
|
#
|
|
5111
5217
|
class InvalidLocationCode < Struct.new(
|
|
5112
5218
|
:message)
|
|
5219
|
+
SENSITIVE = []
|
|
5113
5220
|
include Aws::Structure
|
|
5114
5221
|
end
|
|
5115
5222
|
|
|
@@ -5122,6 +5229,7 @@ module Aws::CloudFront
|
|
|
5122
5229
|
#
|
|
5123
5230
|
class InvalidMinimumProtocolVersion < Struct.new(
|
|
5124
5231
|
:message)
|
|
5232
|
+
SENSITIVE = []
|
|
5125
5233
|
include Aws::Structure
|
|
5126
5234
|
end
|
|
5127
5235
|
|
|
@@ -5135,6 +5243,7 @@ module Aws::CloudFront
|
|
|
5135
5243
|
#
|
|
5136
5244
|
class InvalidOrigin < Struct.new(
|
|
5137
5245
|
:message)
|
|
5246
|
+
SENSITIVE = []
|
|
5138
5247
|
include Aws::Structure
|
|
5139
5248
|
end
|
|
5140
5249
|
|
|
@@ -5147,6 +5256,7 @@ module Aws::CloudFront
|
|
|
5147
5256
|
#
|
|
5148
5257
|
class InvalidOriginAccessIdentity < Struct.new(
|
|
5149
5258
|
:message)
|
|
5259
|
+
SENSITIVE = []
|
|
5150
5260
|
include Aws::Structure
|
|
5151
5261
|
end
|
|
5152
5262
|
|
|
@@ -5159,6 +5269,7 @@ module Aws::CloudFront
|
|
|
5159
5269
|
#
|
|
5160
5270
|
class InvalidOriginKeepaliveTimeout < Struct.new(
|
|
5161
5271
|
:message)
|
|
5272
|
+
SENSITIVE = []
|
|
5162
5273
|
include Aws::Structure
|
|
5163
5274
|
end
|
|
5164
5275
|
|
|
@@ -5171,6 +5282,7 @@ module Aws::CloudFront
|
|
|
5171
5282
|
#
|
|
5172
5283
|
class InvalidOriginReadTimeout < Struct.new(
|
|
5173
5284
|
:message)
|
|
5285
|
+
SENSITIVE = []
|
|
5174
5286
|
include Aws::Structure
|
|
5175
5287
|
end
|
|
5176
5288
|
|
|
@@ -5185,6 +5297,7 @@ module Aws::CloudFront
|
|
|
5185
5297
|
#
|
|
5186
5298
|
class InvalidProtocolSettings < Struct.new(
|
|
5187
5299
|
:message)
|
|
5300
|
+
SENSITIVE = []
|
|
5188
5301
|
include Aws::Structure
|
|
5189
5302
|
end
|
|
5190
5303
|
|
|
@@ -5197,6 +5310,7 @@ module Aws::CloudFront
|
|
|
5197
5310
|
#
|
|
5198
5311
|
class InvalidQueryStringParameters < Struct.new(
|
|
5199
5312
|
:message)
|
|
5313
|
+
SENSITIVE = []
|
|
5200
5314
|
include Aws::Structure
|
|
5201
5315
|
end
|
|
5202
5316
|
|
|
@@ -5210,6 +5324,7 @@ module Aws::CloudFront
|
|
|
5210
5324
|
#
|
|
5211
5325
|
class InvalidRelativePath < Struct.new(
|
|
5212
5326
|
:message)
|
|
5327
|
+
SENSITIVE = []
|
|
5213
5328
|
include Aws::Structure
|
|
5214
5329
|
end
|
|
5215
5330
|
|
|
@@ -5224,6 +5339,7 @@ module Aws::CloudFront
|
|
|
5224
5339
|
#
|
|
5225
5340
|
class InvalidRequiredProtocol < Struct.new(
|
|
5226
5341
|
:message)
|
|
5342
|
+
SENSITIVE = []
|
|
5227
5343
|
include Aws::Structure
|
|
5228
5344
|
end
|
|
5229
5345
|
|
|
@@ -5236,6 +5352,7 @@ module Aws::CloudFront
|
|
|
5236
5352
|
#
|
|
5237
5353
|
class InvalidResponseCode < Struct.new(
|
|
5238
5354
|
:message)
|
|
5355
|
+
SENSITIVE = []
|
|
5239
5356
|
include Aws::Structure
|
|
5240
5357
|
end
|
|
5241
5358
|
|
|
@@ -5248,6 +5365,7 @@ module Aws::CloudFront
|
|
|
5248
5365
|
#
|
|
5249
5366
|
class InvalidTTLOrder < Struct.new(
|
|
5250
5367
|
:message)
|
|
5368
|
+
SENSITIVE = []
|
|
5251
5369
|
include Aws::Structure
|
|
5252
5370
|
end
|
|
5253
5371
|
|
|
@@ -5260,6 +5378,7 @@ module Aws::CloudFront
|
|
|
5260
5378
|
#
|
|
5261
5379
|
class InvalidTagging < Struct.new(
|
|
5262
5380
|
:message)
|
|
5381
|
+
SENSITIVE = []
|
|
5263
5382
|
include Aws::Structure
|
|
5264
5383
|
end
|
|
5265
5384
|
|
|
@@ -5272,6 +5391,7 @@ module Aws::CloudFront
|
|
|
5272
5391
|
#
|
|
5273
5392
|
class InvalidViewerCertificate < Struct.new(
|
|
5274
5393
|
:message)
|
|
5394
|
+
SENSITIVE = []
|
|
5275
5395
|
include Aws::Structure
|
|
5276
5396
|
end
|
|
5277
5397
|
|
|
@@ -5288,6 +5408,7 @@ module Aws::CloudFront
|
|
|
5288
5408
|
#
|
|
5289
5409
|
class InvalidWebACLId < Struct.new(
|
|
5290
5410
|
:message)
|
|
5411
|
+
SENSITIVE = []
|
|
5291
5412
|
include Aws::Structure
|
|
5292
5413
|
end
|
|
5293
5414
|
|
|
@@ -5318,6 +5439,7 @@ module Aws::CloudFront
|
|
|
5318
5439
|
:status,
|
|
5319
5440
|
:create_time,
|
|
5320
5441
|
:invalidation_batch)
|
|
5442
|
+
SENSITIVE = []
|
|
5321
5443
|
include Aws::Structure
|
|
5322
5444
|
end
|
|
5323
5445
|
|
|
@@ -5371,6 +5493,7 @@ module Aws::CloudFront
|
|
|
5371
5493
|
class InvalidationBatch < Struct.new(
|
|
5372
5494
|
:paths,
|
|
5373
5495
|
:caller_reference)
|
|
5496
|
+
SENSITIVE = []
|
|
5374
5497
|
include Aws::Structure
|
|
5375
5498
|
end
|
|
5376
5499
|
|
|
@@ -5423,6 +5546,7 @@ module Aws::CloudFront
|
|
|
5423
5546
|
:is_truncated,
|
|
5424
5547
|
:quantity,
|
|
5425
5548
|
:items)
|
|
5549
|
+
SENSITIVE = []
|
|
5426
5550
|
include Aws::Structure
|
|
5427
5551
|
end
|
|
5428
5552
|
|
|
@@ -5446,6 +5570,7 @@ module Aws::CloudFront
|
|
|
5446
5570
|
:id,
|
|
5447
5571
|
:create_time,
|
|
5448
5572
|
:status)
|
|
5573
|
+
SENSITIVE = []
|
|
5449
5574
|
include Aws::Structure
|
|
5450
5575
|
end
|
|
5451
5576
|
|
|
@@ -5484,6 +5609,7 @@ module Aws::CloudFront
|
|
|
5484
5609
|
class KeyPairIds < Struct.new(
|
|
5485
5610
|
:quantity,
|
|
5486
5611
|
:items)
|
|
5612
|
+
SENSITIVE = []
|
|
5487
5613
|
include Aws::Structure
|
|
5488
5614
|
end
|
|
5489
5615
|
|
|
@@ -5545,6 +5671,7 @@ module Aws::CloudFront
|
|
|
5545
5671
|
:lambda_function_arn,
|
|
5546
5672
|
:event_type,
|
|
5547
5673
|
:include_body)
|
|
5674
|
+
SENSITIVE = []
|
|
5548
5675
|
include Aws::Structure
|
|
5549
5676
|
end
|
|
5550
5677
|
|
|
@@ -5590,6 +5717,7 @@ module Aws::CloudFront
|
|
|
5590
5717
|
class LambdaFunctionAssociations < Struct.new(
|
|
5591
5718
|
:quantity,
|
|
5592
5719
|
:items)
|
|
5720
|
+
SENSITIVE = []
|
|
5593
5721
|
include Aws::Structure
|
|
5594
5722
|
end
|
|
5595
5723
|
|
|
@@ -5622,6 +5750,7 @@ module Aws::CloudFront
|
|
|
5622
5750
|
class ListCloudFrontOriginAccessIdentitiesRequest < Struct.new(
|
|
5623
5751
|
:marker,
|
|
5624
5752
|
:max_items)
|
|
5753
|
+
SENSITIVE = []
|
|
5625
5754
|
include Aws::Structure
|
|
5626
5755
|
end
|
|
5627
5756
|
|
|
@@ -5635,6 +5764,7 @@ module Aws::CloudFront
|
|
|
5635
5764
|
#
|
|
5636
5765
|
class ListCloudFrontOriginAccessIdentitiesResult < Struct.new(
|
|
5637
5766
|
:cloud_front_origin_access_identity_list)
|
|
5767
|
+
SENSITIVE = []
|
|
5638
5768
|
include Aws::Structure
|
|
5639
5769
|
end
|
|
5640
5770
|
|
|
@@ -5678,6 +5808,7 @@ module Aws::CloudFront
|
|
|
5678
5808
|
:marker,
|
|
5679
5809
|
:max_items,
|
|
5680
5810
|
:web_acl_id)
|
|
5811
|
+
SENSITIVE = []
|
|
5681
5812
|
include Aws::Structure
|
|
5682
5813
|
end
|
|
5683
5814
|
|
|
@@ -5692,6 +5823,7 @@ module Aws::CloudFront
|
|
|
5692
5823
|
#
|
|
5693
5824
|
class ListDistributionsByWebACLIdResult < Struct.new(
|
|
5694
5825
|
:distribution_list)
|
|
5826
|
+
SENSITIVE = []
|
|
5695
5827
|
include Aws::Structure
|
|
5696
5828
|
end
|
|
5697
5829
|
|
|
@@ -5723,6 +5855,7 @@ module Aws::CloudFront
|
|
|
5723
5855
|
class ListDistributionsRequest < Struct.new(
|
|
5724
5856
|
:marker,
|
|
5725
5857
|
:max_items)
|
|
5858
|
+
SENSITIVE = []
|
|
5726
5859
|
include Aws::Structure
|
|
5727
5860
|
end
|
|
5728
5861
|
|
|
@@ -5736,6 +5869,7 @@ module Aws::CloudFront
|
|
|
5736
5869
|
#
|
|
5737
5870
|
class ListDistributionsResult < Struct.new(
|
|
5738
5871
|
:distribution_list)
|
|
5872
|
+
SENSITIVE = []
|
|
5739
5873
|
include Aws::Structure
|
|
5740
5874
|
end
|
|
5741
5875
|
|
|
@@ -5766,6 +5900,7 @@ module Aws::CloudFront
|
|
|
5766
5900
|
class ListFieldLevelEncryptionConfigsRequest < Struct.new(
|
|
5767
5901
|
:marker,
|
|
5768
5902
|
:max_items)
|
|
5903
|
+
SENSITIVE = []
|
|
5769
5904
|
include Aws::Structure
|
|
5770
5905
|
end
|
|
5771
5906
|
|
|
@@ -5778,6 +5913,7 @@ module Aws::CloudFront
|
|
|
5778
5913
|
#
|
|
5779
5914
|
class ListFieldLevelEncryptionConfigsResult < Struct.new(
|
|
5780
5915
|
:field_level_encryption_list)
|
|
5916
|
+
SENSITIVE = []
|
|
5781
5917
|
include Aws::Structure
|
|
5782
5918
|
end
|
|
5783
5919
|
|
|
@@ -5807,6 +5943,7 @@ module Aws::CloudFront
|
|
|
5807
5943
|
class ListFieldLevelEncryptionProfilesRequest < Struct.new(
|
|
5808
5944
|
:marker,
|
|
5809
5945
|
:max_items)
|
|
5946
|
+
SENSITIVE = []
|
|
5810
5947
|
include Aws::Structure
|
|
5811
5948
|
end
|
|
5812
5949
|
|
|
@@ -5819,6 +5956,7 @@ module Aws::CloudFront
|
|
|
5819
5956
|
#
|
|
5820
5957
|
class ListFieldLevelEncryptionProfilesResult < Struct.new(
|
|
5821
5958
|
:field_level_encryption_profile_list)
|
|
5959
|
+
SENSITIVE = []
|
|
5822
5960
|
include Aws::Structure
|
|
5823
5961
|
end
|
|
5824
5962
|
|
|
@@ -5859,6 +5997,7 @@ module Aws::CloudFront
|
|
|
5859
5997
|
:distribution_id,
|
|
5860
5998
|
:marker,
|
|
5861
5999
|
:max_items)
|
|
6000
|
+
SENSITIVE = []
|
|
5862
6001
|
include Aws::Structure
|
|
5863
6002
|
end
|
|
5864
6003
|
|
|
@@ -5872,6 +6011,7 @@ module Aws::CloudFront
|
|
|
5872
6011
|
#
|
|
5873
6012
|
class ListInvalidationsResult < Struct.new(
|
|
5874
6013
|
:invalidation_list)
|
|
6014
|
+
SENSITIVE = []
|
|
5875
6015
|
include Aws::Structure
|
|
5876
6016
|
end
|
|
5877
6017
|
|
|
@@ -5901,6 +6041,7 @@ module Aws::CloudFront
|
|
|
5901
6041
|
class ListPublicKeysRequest < Struct.new(
|
|
5902
6042
|
:marker,
|
|
5903
6043
|
:max_items)
|
|
6044
|
+
SENSITIVE = []
|
|
5904
6045
|
include Aws::Structure
|
|
5905
6046
|
end
|
|
5906
6047
|
|
|
@@ -5913,6 +6054,7 @@ module Aws::CloudFront
|
|
|
5913
6054
|
#
|
|
5914
6055
|
class ListPublicKeysResult < Struct.new(
|
|
5915
6056
|
:public_key_list)
|
|
6057
|
+
SENSITIVE = []
|
|
5916
6058
|
include Aws::Structure
|
|
5917
6059
|
end
|
|
5918
6060
|
|
|
@@ -5939,6 +6081,7 @@ module Aws::CloudFront
|
|
|
5939
6081
|
class ListStreamingDistributionsRequest < Struct.new(
|
|
5940
6082
|
:marker,
|
|
5941
6083
|
:max_items)
|
|
6084
|
+
SENSITIVE = []
|
|
5942
6085
|
include Aws::Structure
|
|
5943
6086
|
end
|
|
5944
6087
|
|
|
@@ -5952,6 +6095,7 @@ module Aws::CloudFront
|
|
|
5952
6095
|
#
|
|
5953
6096
|
class ListStreamingDistributionsResult < Struct.new(
|
|
5954
6097
|
:streaming_distribution_list)
|
|
6098
|
+
SENSITIVE = []
|
|
5955
6099
|
include Aws::Structure
|
|
5956
6100
|
end
|
|
5957
6101
|
|
|
@@ -5972,6 +6116,7 @@ module Aws::CloudFront
|
|
|
5972
6116
|
#
|
|
5973
6117
|
class ListTagsForResourceRequest < Struct.new(
|
|
5974
6118
|
:resource)
|
|
6119
|
+
SENSITIVE = []
|
|
5975
6120
|
include Aws::Structure
|
|
5976
6121
|
end
|
|
5977
6122
|
|
|
@@ -5985,6 +6130,7 @@ module Aws::CloudFront
|
|
|
5985
6130
|
#
|
|
5986
6131
|
class ListTagsForResourceResult < Struct.new(
|
|
5987
6132
|
:tags)
|
|
6133
|
+
SENSITIVE = []
|
|
5988
6134
|
include Aws::Structure
|
|
5989
6135
|
end
|
|
5990
6136
|
|
|
@@ -6041,6 +6187,7 @@ module Aws::CloudFront
|
|
|
6041
6187
|
:include_cookies,
|
|
6042
6188
|
:bucket,
|
|
6043
6189
|
:prefix)
|
|
6190
|
+
SENSITIVE = []
|
|
6044
6191
|
include Aws::Structure
|
|
6045
6192
|
end
|
|
6046
6193
|
|
|
@@ -6054,6 +6201,7 @@ module Aws::CloudFront
|
|
|
6054
6201
|
#
|
|
6055
6202
|
class MissingBody < Struct.new(
|
|
6056
6203
|
:message)
|
|
6204
|
+
SENSITIVE = []
|
|
6057
6205
|
include Aws::Structure
|
|
6058
6206
|
end
|
|
6059
6207
|
|
|
@@ -6066,6 +6214,7 @@ module Aws::CloudFront
|
|
|
6066
6214
|
#
|
|
6067
6215
|
class NoSuchCloudFrontOriginAccessIdentity < Struct.new(
|
|
6068
6216
|
:message)
|
|
6217
|
+
SENSITIVE = []
|
|
6069
6218
|
include Aws::Structure
|
|
6070
6219
|
end
|
|
6071
6220
|
|
|
@@ -6078,6 +6227,7 @@ module Aws::CloudFront
|
|
|
6078
6227
|
#
|
|
6079
6228
|
class NoSuchDistribution < Struct.new(
|
|
6080
6229
|
:message)
|
|
6230
|
+
SENSITIVE = []
|
|
6081
6231
|
include Aws::Structure
|
|
6082
6232
|
end
|
|
6083
6233
|
|
|
@@ -6090,6 +6240,7 @@ module Aws::CloudFront
|
|
|
6090
6240
|
#
|
|
6091
6241
|
class NoSuchFieldLevelEncryptionConfig < Struct.new(
|
|
6092
6242
|
:message)
|
|
6243
|
+
SENSITIVE = []
|
|
6093
6244
|
include Aws::Structure
|
|
6094
6245
|
end
|
|
6095
6246
|
|
|
@@ -6102,6 +6253,7 @@ module Aws::CloudFront
|
|
|
6102
6253
|
#
|
|
6103
6254
|
class NoSuchFieldLevelEncryptionProfile < Struct.new(
|
|
6104
6255
|
:message)
|
|
6256
|
+
SENSITIVE = []
|
|
6105
6257
|
include Aws::Structure
|
|
6106
6258
|
end
|
|
6107
6259
|
|
|
@@ -6114,6 +6266,7 @@ module Aws::CloudFront
|
|
|
6114
6266
|
#
|
|
6115
6267
|
class NoSuchInvalidation < Struct.new(
|
|
6116
6268
|
:message)
|
|
6269
|
+
SENSITIVE = []
|
|
6117
6270
|
include Aws::Structure
|
|
6118
6271
|
end
|
|
6119
6272
|
|
|
@@ -6126,6 +6279,7 @@ module Aws::CloudFront
|
|
|
6126
6279
|
#
|
|
6127
6280
|
class NoSuchOrigin < Struct.new(
|
|
6128
6281
|
:message)
|
|
6282
|
+
SENSITIVE = []
|
|
6129
6283
|
include Aws::Structure
|
|
6130
6284
|
end
|
|
6131
6285
|
|
|
@@ -6138,6 +6292,7 @@ module Aws::CloudFront
|
|
|
6138
6292
|
#
|
|
6139
6293
|
class NoSuchPublicKey < Struct.new(
|
|
6140
6294
|
:message)
|
|
6295
|
+
SENSITIVE = []
|
|
6141
6296
|
include Aws::Structure
|
|
6142
6297
|
end
|
|
6143
6298
|
|
|
@@ -6150,6 +6305,7 @@ module Aws::CloudFront
|
|
|
6150
6305
|
#
|
|
6151
6306
|
class NoSuchResource < Struct.new(
|
|
6152
6307
|
:message)
|
|
6308
|
+
SENSITIVE = []
|
|
6153
6309
|
include Aws::Structure
|
|
6154
6310
|
end
|
|
6155
6311
|
|
|
@@ -6162,6 +6318,7 @@ module Aws::CloudFront
|
|
|
6162
6318
|
#
|
|
6163
6319
|
class NoSuchStreamingDistribution < Struct.new(
|
|
6164
6320
|
:message)
|
|
6321
|
+
SENSITIVE = []
|
|
6165
6322
|
include Aws::Structure
|
|
6166
6323
|
end
|
|
6167
6324
|
|
|
@@ -6234,8 +6391,8 @@ module Aws::CloudFront
|
|
|
6234
6391
|
# A unique identifier for the origin. This value must be unique within
|
|
6235
6392
|
# the distribution.
|
|
6236
6393
|
#
|
|
6237
|
-
# Use this value to specify the `TargetOriginId` in a CacheBehavior
|
|
6238
|
-
# DefaultCacheBehavior
|
|
6394
|
+
# Use this value to specify the `TargetOriginId` in a `CacheBehavior`
|
|
6395
|
+
# or `DefaultCacheBehavior`.
|
|
6239
6396
|
# @return [String]
|
|
6240
6397
|
#
|
|
6241
6398
|
# @!attribute [rw] domain_name
|
|
@@ -6294,12 +6451,18 @@ module Aws::CloudFront
|
|
|
6294
6451
|
# origin. The minimum number is 1, the maximum is 3, and the default
|
|
6295
6452
|
# (if you don’t specify otherwise) is 3.
|
|
6296
6453
|
#
|
|
6297
|
-
# For
|
|
6454
|
+
# For a custom origin (including an Amazon S3 bucket that’s configured
|
|
6455
|
+
# with static website hosting), this value also specifies the number
|
|
6456
|
+
# of times that CloudFront attempts to get a response from the origin,
|
|
6457
|
+
# in the case of an [Origin Response Timeout][1].
|
|
6458
|
+
#
|
|
6459
|
+
# For more information, see [Origin Connection Attempts][2] in the
|
|
6298
6460
|
# *Amazon CloudFront Developer Guide*.
|
|
6299
6461
|
#
|
|
6300
6462
|
#
|
|
6301
6463
|
#
|
|
6302
|
-
# [1]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/distribution-web-values-specify.html#
|
|
6464
|
+
# [1]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/distribution-web-values-specify.html#DownloadDistValuesOriginResponseTimeout
|
|
6465
|
+
# [2]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/distribution-web-values-specify.html#origin-connection-attempts
|
|
6303
6466
|
# @return [Integer]
|
|
6304
6467
|
#
|
|
6305
6468
|
# @!attribute [rw] connection_timeout
|
|
@@ -6327,6 +6490,7 @@ module Aws::CloudFront
|
|
|
6327
6490
|
:custom_origin_config,
|
|
6328
6491
|
:connection_attempts,
|
|
6329
6492
|
:connection_timeout)
|
|
6493
|
+
SENSITIVE = []
|
|
6330
6494
|
include Aws::Structure
|
|
6331
6495
|
end
|
|
6332
6496
|
|
|
@@ -6362,6 +6526,7 @@ module Aws::CloudFront
|
|
|
6362
6526
|
class OriginCustomHeader < Struct.new(
|
|
6363
6527
|
:header_name,
|
|
6364
6528
|
:header_value)
|
|
6529
|
+
SENSITIVE = []
|
|
6365
6530
|
include Aws::Structure
|
|
6366
6531
|
end
|
|
6367
6532
|
|
|
@@ -6414,6 +6579,7 @@ module Aws::CloudFront
|
|
|
6414
6579
|
:id,
|
|
6415
6580
|
:failover_criteria,
|
|
6416
6581
|
:members)
|
|
6582
|
+
SENSITIVE = []
|
|
6417
6583
|
include Aws::Structure
|
|
6418
6584
|
end
|
|
6419
6585
|
|
|
@@ -6440,6 +6606,7 @@ module Aws::CloudFront
|
|
|
6440
6606
|
#
|
|
6441
6607
|
class OriginGroupFailoverCriteria < Struct.new(
|
|
6442
6608
|
:status_codes)
|
|
6609
|
+
SENSITIVE = []
|
|
6443
6610
|
include Aws::Structure
|
|
6444
6611
|
end
|
|
6445
6612
|
|
|
@@ -6460,6 +6627,7 @@ module Aws::CloudFront
|
|
|
6460
6627
|
#
|
|
6461
6628
|
class OriginGroupMember < Struct.new(
|
|
6462
6629
|
:origin_id)
|
|
6630
|
+
SENSITIVE = []
|
|
6463
6631
|
include Aws::Structure
|
|
6464
6632
|
end
|
|
6465
6633
|
|
|
@@ -6490,6 +6658,7 @@ module Aws::CloudFront
|
|
|
6490
6658
|
class OriginGroupMembers < Struct.new(
|
|
6491
6659
|
:quantity,
|
|
6492
6660
|
:items)
|
|
6661
|
+
SENSITIVE = []
|
|
6493
6662
|
include Aws::Structure
|
|
6494
6663
|
end
|
|
6495
6664
|
|
|
@@ -6535,6 +6704,7 @@ module Aws::CloudFront
|
|
|
6535
6704
|
class OriginGroups < Struct.new(
|
|
6536
6705
|
:quantity,
|
|
6537
6706
|
:items)
|
|
6707
|
+
SENSITIVE = []
|
|
6538
6708
|
include Aws::Structure
|
|
6539
6709
|
end
|
|
6540
6710
|
|
|
@@ -6565,6 +6735,7 @@ module Aws::CloudFront
|
|
|
6565
6735
|
class OriginSslProtocols < Struct.new(
|
|
6566
6736
|
:quantity,
|
|
6567
6737
|
:items)
|
|
6738
|
+
SENSITIVE = []
|
|
6568
6739
|
include Aws::Structure
|
|
6569
6740
|
end
|
|
6570
6741
|
|
|
@@ -6624,6 +6795,7 @@ module Aws::CloudFront
|
|
|
6624
6795
|
class Origins < Struct.new(
|
|
6625
6796
|
:quantity,
|
|
6626
6797
|
:items)
|
|
6798
|
+
SENSITIVE = []
|
|
6627
6799
|
include Aws::Structure
|
|
6628
6800
|
end
|
|
6629
6801
|
|
|
@@ -6658,6 +6830,7 @@ module Aws::CloudFront
|
|
|
6658
6830
|
class Paths < Struct.new(
|
|
6659
6831
|
:quantity,
|
|
6660
6832
|
:items)
|
|
6833
|
+
SENSITIVE = []
|
|
6661
6834
|
include Aws::Structure
|
|
6662
6835
|
end
|
|
6663
6836
|
|
|
@@ -6671,6 +6844,7 @@ module Aws::CloudFront
|
|
|
6671
6844
|
#
|
|
6672
6845
|
class PreconditionFailed < Struct.new(
|
|
6673
6846
|
:message)
|
|
6847
|
+
SENSITIVE = []
|
|
6674
6848
|
include Aws::Structure
|
|
6675
6849
|
end
|
|
6676
6850
|
|
|
@@ -6696,6 +6870,7 @@ module Aws::CloudFront
|
|
|
6696
6870
|
:id,
|
|
6697
6871
|
:created_time,
|
|
6698
6872
|
:public_key_config)
|
|
6873
|
+
SENSITIVE = []
|
|
6699
6874
|
include Aws::Structure
|
|
6700
6875
|
end
|
|
6701
6876
|
|
|
@@ -6708,6 +6883,7 @@ module Aws::CloudFront
|
|
|
6708
6883
|
#
|
|
6709
6884
|
class PublicKeyAlreadyExists < Struct.new(
|
|
6710
6885
|
:message)
|
|
6886
|
+
SENSITIVE = []
|
|
6711
6887
|
include Aws::Structure
|
|
6712
6888
|
end
|
|
6713
6889
|
|
|
@@ -6749,6 +6925,7 @@ module Aws::CloudFront
|
|
|
6749
6925
|
:name,
|
|
6750
6926
|
:encoded_key,
|
|
6751
6927
|
:comment)
|
|
6928
|
+
SENSITIVE = []
|
|
6752
6929
|
include Aws::Structure
|
|
6753
6930
|
end
|
|
6754
6931
|
|
|
@@ -6761,6 +6938,7 @@ module Aws::CloudFront
|
|
|
6761
6938
|
#
|
|
6762
6939
|
class PublicKeyInUse < Struct.new(
|
|
6763
6940
|
:message)
|
|
6941
|
+
SENSITIVE = []
|
|
6764
6942
|
include Aws::Structure
|
|
6765
6943
|
end
|
|
6766
6944
|
|
|
@@ -6794,6 +6972,7 @@ module Aws::CloudFront
|
|
|
6794
6972
|
:max_items,
|
|
6795
6973
|
:quantity,
|
|
6796
6974
|
:items)
|
|
6975
|
+
SENSITIVE = []
|
|
6797
6976
|
include Aws::Structure
|
|
6798
6977
|
end
|
|
6799
6978
|
|
|
@@ -6827,6 +7006,7 @@ module Aws::CloudFront
|
|
|
6827
7006
|
:created_time,
|
|
6828
7007
|
:encoded_key,
|
|
6829
7008
|
:comment)
|
|
7009
|
+
SENSITIVE = []
|
|
6830
7010
|
include Aws::Structure
|
|
6831
7011
|
end
|
|
6832
7012
|
|
|
@@ -6855,6 +7035,7 @@ module Aws::CloudFront
|
|
|
6855
7035
|
class QueryArgProfile < Struct.new(
|
|
6856
7036
|
:query_arg,
|
|
6857
7037
|
:profile_id)
|
|
7038
|
+
SENSITIVE = []
|
|
6858
7039
|
include Aws::Structure
|
|
6859
7040
|
end
|
|
6860
7041
|
|
|
@@ -6893,6 +7074,7 @@ module Aws::CloudFront
|
|
|
6893
7074
|
class QueryArgProfileConfig < Struct.new(
|
|
6894
7075
|
:forward_when_query_arg_profile_is_unknown,
|
|
6895
7076
|
:query_arg_profiles)
|
|
7077
|
+
SENSITIVE = []
|
|
6896
7078
|
include Aws::Structure
|
|
6897
7079
|
end
|
|
6898
7080
|
|
|
@@ -6905,6 +7087,7 @@ module Aws::CloudFront
|
|
|
6905
7087
|
#
|
|
6906
7088
|
class QueryArgProfileEmpty < Struct.new(
|
|
6907
7089
|
:message)
|
|
7090
|
+
SENSITIVE = []
|
|
6908
7091
|
include Aws::Structure
|
|
6909
7092
|
end
|
|
6910
7093
|
|
|
@@ -6938,6 +7121,7 @@ module Aws::CloudFront
|
|
|
6938
7121
|
class QueryArgProfiles < Struct.new(
|
|
6939
7122
|
:quantity,
|
|
6940
7123
|
:items)
|
|
7124
|
+
SENSITIVE = []
|
|
6941
7125
|
include Aws::Structure
|
|
6942
7126
|
end
|
|
6943
7127
|
|
|
@@ -6969,6 +7153,7 @@ module Aws::CloudFront
|
|
|
6969
7153
|
class QueryStringCacheKeys < Struct.new(
|
|
6970
7154
|
:quantity,
|
|
6971
7155
|
:items)
|
|
7156
|
+
SENSITIVE = []
|
|
6972
7157
|
include Aws::Structure
|
|
6973
7158
|
end
|
|
6974
7159
|
|
|
@@ -6996,6 +7181,7 @@ module Aws::CloudFront
|
|
|
6996
7181
|
#
|
|
6997
7182
|
class Restrictions < Struct.new(
|
|
6998
7183
|
:geo_restriction)
|
|
7184
|
+
SENSITIVE = []
|
|
6999
7185
|
include Aws::Structure
|
|
7000
7186
|
end
|
|
7001
7187
|
|
|
@@ -7046,6 +7232,7 @@ module Aws::CloudFront
|
|
|
7046
7232
|
class S3Origin < Struct.new(
|
|
7047
7233
|
:domain_name,
|
|
7048
7234
|
:origin_access_identity)
|
|
7235
|
+
SENSITIVE = []
|
|
7049
7236
|
include Aws::Structure
|
|
7050
7237
|
end
|
|
7051
7238
|
|
|
@@ -7096,6 +7283,7 @@ module Aws::CloudFront
|
|
|
7096
7283
|
#
|
|
7097
7284
|
class S3OriginConfig < Struct.new(
|
|
7098
7285
|
:origin_access_identity)
|
|
7286
|
+
SENSITIVE = []
|
|
7099
7287
|
include Aws::Structure
|
|
7100
7288
|
end
|
|
7101
7289
|
|
|
@@ -7122,6 +7310,7 @@ module Aws::CloudFront
|
|
|
7122
7310
|
class Signer < Struct.new(
|
|
7123
7311
|
:aws_account_number,
|
|
7124
7312
|
:key_pair_ids)
|
|
7313
|
+
SENSITIVE = []
|
|
7125
7314
|
include Aws::Structure
|
|
7126
7315
|
end
|
|
7127
7316
|
|
|
@@ -7150,6 +7339,7 @@ module Aws::CloudFront
|
|
|
7150
7339
|
class StatusCodes < Struct.new(
|
|
7151
7340
|
:quantity,
|
|
7152
7341
|
:items)
|
|
7342
|
+
SENSITIVE = []
|
|
7153
7343
|
include Aws::Structure
|
|
7154
7344
|
end
|
|
7155
7345
|
|
|
@@ -7218,6 +7408,7 @@ module Aws::CloudFront
|
|
|
7218
7408
|
:domain_name,
|
|
7219
7409
|
:active_trusted_signers,
|
|
7220
7410
|
:streaming_distribution_config)
|
|
7411
|
+
SENSITIVE = []
|
|
7221
7412
|
include Aws::Structure
|
|
7222
7413
|
end
|
|
7223
7414
|
|
|
@@ -7231,6 +7422,7 @@ module Aws::CloudFront
|
|
|
7231
7422
|
#
|
|
7232
7423
|
class StreamingDistributionAlreadyExists < Struct.new(
|
|
7233
7424
|
:message)
|
|
7425
|
+
SENSITIVE = []
|
|
7234
7426
|
include Aws::Structure
|
|
7235
7427
|
end
|
|
7236
7428
|
|
|
@@ -7331,6 +7523,7 @@ module Aws::CloudFront
|
|
|
7331
7523
|
:trusted_signers,
|
|
7332
7524
|
:price_class,
|
|
7333
7525
|
:enabled)
|
|
7526
|
+
SENSITIVE = []
|
|
7334
7527
|
include Aws::Structure
|
|
7335
7528
|
end
|
|
7336
7529
|
|
|
@@ -7388,6 +7581,7 @@ module Aws::CloudFront
|
|
|
7388
7581
|
class StreamingDistributionConfigWithTags < Struct.new(
|
|
7389
7582
|
:streaming_distribution_config,
|
|
7390
7583
|
:tags)
|
|
7584
|
+
SENSITIVE = []
|
|
7391
7585
|
include Aws::Structure
|
|
7392
7586
|
end
|
|
7393
7587
|
|
|
@@ -7434,6 +7628,7 @@ module Aws::CloudFront
|
|
|
7434
7628
|
:is_truncated,
|
|
7435
7629
|
:quantity,
|
|
7436
7630
|
:items)
|
|
7631
|
+
SENSITIVE = []
|
|
7437
7632
|
include Aws::Structure
|
|
7438
7633
|
end
|
|
7439
7634
|
|
|
@@ -7447,6 +7642,7 @@ module Aws::CloudFront
|
|
|
7447
7642
|
#
|
|
7448
7643
|
class StreamingDistributionNotDisabled < Struct.new(
|
|
7449
7644
|
:message)
|
|
7645
|
+
SENSITIVE = []
|
|
7450
7646
|
include Aws::Structure
|
|
7451
7647
|
end
|
|
7452
7648
|
|
|
@@ -7539,6 +7735,7 @@ module Aws::CloudFront
|
|
|
7539
7735
|
:comment,
|
|
7540
7736
|
:price_class,
|
|
7541
7737
|
:enabled)
|
|
7738
|
+
SENSITIVE = []
|
|
7542
7739
|
include Aws::Structure
|
|
7543
7740
|
end
|
|
7544
7741
|
|
|
@@ -7583,6 +7780,7 @@ module Aws::CloudFront
|
|
|
7583
7780
|
:enabled,
|
|
7584
7781
|
:bucket,
|
|
7585
7782
|
:prefix)
|
|
7783
|
+
SENSITIVE = []
|
|
7586
7784
|
include Aws::Structure
|
|
7587
7785
|
end
|
|
7588
7786
|
|
|
@@ -7617,6 +7815,7 @@ module Aws::CloudFront
|
|
|
7617
7815
|
class Tag < Struct.new(
|
|
7618
7816
|
:key,
|
|
7619
7817
|
:value)
|
|
7818
|
+
SENSITIVE = []
|
|
7620
7819
|
include Aws::Structure
|
|
7621
7820
|
end
|
|
7622
7821
|
|
|
@@ -7637,6 +7836,7 @@ module Aws::CloudFront
|
|
|
7637
7836
|
#
|
|
7638
7837
|
class TagKeys < Struct.new(
|
|
7639
7838
|
:items)
|
|
7839
|
+
SENSITIVE = []
|
|
7640
7840
|
include Aws::Structure
|
|
7641
7841
|
end
|
|
7642
7842
|
|
|
@@ -7670,6 +7870,7 @@ module Aws::CloudFront
|
|
|
7670
7870
|
class TagResourceRequest < Struct.new(
|
|
7671
7871
|
:resource,
|
|
7672
7872
|
:tags)
|
|
7873
|
+
SENSITIVE = []
|
|
7673
7874
|
include Aws::Structure
|
|
7674
7875
|
end
|
|
7675
7876
|
|
|
@@ -7695,6 +7896,7 @@ module Aws::CloudFront
|
|
|
7695
7896
|
#
|
|
7696
7897
|
class Tags < Struct.new(
|
|
7697
7898
|
:items)
|
|
7899
|
+
SENSITIVE = []
|
|
7698
7900
|
include Aws::Structure
|
|
7699
7901
|
end
|
|
7700
7902
|
|
|
@@ -7707,6 +7909,7 @@ module Aws::CloudFront
|
|
|
7707
7909
|
#
|
|
7708
7910
|
class TooManyCacheBehaviors < Struct.new(
|
|
7709
7911
|
:message)
|
|
7912
|
+
SENSITIVE = []
|
|
7710
7913
|
include Aws::Structure
|
|
7711
7914
|
end
|
|
7712
7915
|
|
|
@@ -7719,6 +7922,7 @@ module Aws::CloudFront
|
|
|
7719
7922
|
#
|
|
7720
7923
|
class TooManyCertificates < Struct.new(
|
|
7721
7924
|
:message)
|
|
7925
|
+
SENSITIVE = []
|
|
7722
7926
|
include Aws::Structure
|
|
7723
7927
|
end
|
|
7724
7928
|
|
|
@@ -7732,6 +7936,7 @@ module Aws::CloudFront
|
|
|
7732
7936
|
#
|
|
7733
7937
|
class TooManyCloudFrontOriginAccessIdentities < Struct.new(
|
|
7734
7938
|
:message)
|
|
7939
|
+
SENSITIVE = []
|
|
7735
7940
|
include Aws::Structure
|
|
7736
7941
|
end
|
|
7737
7942
|
|
|
@@ -7745,6 +7950,7 @@ module Aws::CloudFront
|
|
|
7745
7950
|
#
|
|
7746
7951
|
class TooManyCookieNamesInWhiteList < Struct.new(
|
|
7747
7952
|
:message)
|
|
7953
|
+
SENSITIVE = []
|
|
7748
7954
|
include Aws::Structure
|
|
7749
7955
|
end
|
|
7750
7956
|
|
|
@@ -7757,6 +7963,7 @@ module Aws::CloudFront
|
|
|
7757
7963
|
#
|
|
7758
7964
|
class TooManyDistributionCNAMEs < Struct.new(
|
|
7759
7965
|
:message)
|
|
7966
|
+
SENSITIVE = []
|
|
7760
7967
|
include Aws::Structure
|
|
7761
7968
|
end
|
|
7762
7969
|
|
|
@@ -7770,6 +7977,7 @@ module Aws::CloudFront
|
|
|
7770
7977
|
#
|
|
7771
7978
|
class TooManyDistributions < Struct.new(
|
|
7772
7979
|
:message)
|
|
7980
|
+
SENSITIVE = []
|
|
7773
7981
|
include Aws::Structure
|
|
7774
7982
|
end
|
|
7775
7983
|
|
|
@@ -7783,6 +7991,7 @@ module Aws::CloudFront
|
|
|
7783
7991
|
#
|
|
7784
7992
|
class TooManyDistributionsAssociatedToFieldLevelEncryptionConfig < Struct.new(
|
|
7785
7993
|
:message)
|
|
7994
|
+
SENSITIVE = []
|
|
7786
7995
|
include Aws::Structure
|
|
7787
7996
|
end
|
|
7788
7997
|
|
|
@@ -7797,6 +8006,7 @@ module Aws::CloudFront
|
|
|
7797
8006
|
#
|
|
7798
8007
|
class TooManyDistributionsWithLambdaAssociations < Struct.new(
|
|
7799
8008
|
:message)
|
|
8009
|
+
SENSITIVE = []
|
|
7800
8010
|
include Aws::Structure
|
|
7801
8011
|
end
|
|
7802
8012
|
|
|
@@ -7810,6 +8020,7 @@ module Aws::CloudFront
|
|
|
7810
8020
|
#
|
|
7811
8021
|
class TooManyFieldLevelEncryptionConfigs < Struct.new(
|
|
7812
8022
|
:message)
|
|
8023
|
+
SENSITIVE = []
|
|
7813
8024
|
include Aws::Structure
|
|
7814
8025
|
end
|
|
7815
8026
|
|
|
@@ -7823,6 +8034,7 @@ module Aws::CloudFront
|
|
|
7823
8034
|
#
|
|
7824
8035
|
class TooManyFieldLevelEncryptionContentTypeProfiles < Struct.new(
|
|
7825
8036
|
:message)
|
|
8037
|
+
SENSITIVE = []
|
|
7826
8038
|
include Aws::Structure
|
|
7827
8039
|
end
|
|
7828
8040
|
|
|
@@ -7836,6 +8048,7 @@ module Aws::CloudFront
|
|
|
7836
8048
|
#
|
|
7837
8049
|
class TooManyFieldLevelEncryptionEncryptionEntities < Struct.new(
|
|
7838
8050
|
:message)
|
|
8051
|
+
SENSITIVE = []
|
|
7839
8052
|
include Aws::Structure
|
|
7840
8053
|
end
|
|
7841
8054
|
|
|
@@ -7849,6 +8062,7 @@ module Aws::CloudFront
|
|
|
7849
8062
|
#
|
|
7850
8063
|
class TooManyFieldLevelEncryptionFieldPatterns < Struct.new(
|
|
7851
8064
|
:message)
|
|
8065
|
+
SENSITIVE = []
|
|
7852
8066
|
include Aws::Structure
|
|
7853
8067
|
end
|
|
7854
8068
|
|
|
@@ -7862,6 +8076,7 @@ module Aws::CloudFront
|
|
|
7862
8076
|
#
|
|
7863
8077
|
class TooManyFieldLevelEncryptionProfiles < Struct.new(
|
|
7864
8078
|
:message)
|
|
8079
|
+
SENSITIVE = []
|
|
7865
8080
|
include Aws::Structure
|
|
7866
8081
|
end
|
|
7867
8082
|
|
|
@@ -7875,6 +8090,7 @@ module Aws::CloudFront
|
|
|
7875
8090
|
#
|
|
7876
8091
|
class TooManyFieldLevelEncryptionQueryArgProfiles < Struct.new(
|
|
7877
8092
|
:message)
|
|
8093
|
+
SENSITIVE = []
|
|
7878
8094
|
include Aws::Structure
|
|
7879
8095
|
end
|
|
7880
8096
|
|
|
@@ -7887,6 +8103,7 @@ module Aws::CloudFront
|
|
|
7887
8103
|
#
|
|
7888
8104
|
class TooManyHeadersInForwardedValues < Struct.new(
|
|
7889
8105
|
:message)
|
|
8106
|
+
SENSITIVE = []
|
|
7890
8107
|
include Aws::Structure
|
|
7891
8108
|
end
|
|
7892
8109
|
|
|
@@ -7900,6 +8117,7 @@ module Aws::CloudFront
|
|
|
7900
8117
|
#
|
|
7901
8118
|
class TooManyInvalidationsInProgress < Struct.new(
|
|
7902
8119
|
:message)
|
|
8120
|
+
SENSITIVE = []
|
|
7903
8121
|
include Aws::Structure
|
|
7904
8122
|
end
|
|
7905
8123
|
|
|
@@ -7913,6 +8131,7 @@ module Aws::CloudFront
|
|
|
7913
8131
|
#
|
|
7914
8132
|
class TooManyLambdaFunctionAssociations < Struct.new(
|
|
7915
8133
|
:message)
|
|
8134
|
+
SENSITIVE = []
|
|
7916
8135
|
include Aws::Structure
|
|
7917
8136
|
end
|
|
7918
8137
|
|
|
@@ -7925,6 +8144,7 @@ module Aws::CloudFront
|
|
|
7925
8144
|
#
|
|
7926
8145
|
class TooManyOriginCustomHeaders < Struct.new(
|
|
7927
8146
|
:message)
|
|
8147
|
+
SENSITIVE = []
|
|
7928
8148
|
include Aws::Structure
|
|
7929
8149
|
end
|
|
7930
8150
|
|
|
@@ -7938,6 +8158,7 @@ module Aws::CloudFront
|
|
|
7938
8158
|
#
|
|
7939
8159
|
class TooManyOriginGroupsPerDistribution < Struct.new(
|
|
7940
8160
|
:message)
|
|
8161
|
+
SENSITIVE = []
|
|
7941
8162
|
include Aws::Structure
|
|
7942
8163
|
end
|
|
7943
8164
|
|
|
@@ -7950,6 +8171,7 @@ module Aws::CloudFront
|
|
|
7950
8171
|
#
|
|
7951
8172
|
class TooManyOrigins < Struct.new(
|
|
7952
8173
|
:message)
|
|
8174
|
+
SENSITIVE = []
|
|
7953
8175
|
include Aws::Structure
|
|
7954
8176
|
end
|
|
7955
8177
|
|
|
@@ -7963,6 +8185,7 @@ module Aws::CloudFront
|
|
|
7963
8185
|
#
|
|
7964
8186
|
class TooManyPublicKeys < Struct.new(
|
|
7965
8187
|
:message)
|
|
8188
|
+
SENSITIVE = []
|
|
7966
8189
|
include Aws::Structure
|
|
7967
8190
|
end
|
|
7968
8191
|
|
|
@@ -7975,6 +8198,7 @@ module Aws::CloudFront
|
|
|
7975
8198
|
#
|
|
7976
8199
|
class TooManyQueryStringParameters < Struct.new(
|
|
7977
8200
|
:message)
|
|
8201
|
+
SENSITIVE = []
|
|
7978
8202
|
include Aws::Structure
|
|
7979
8203
|
end
|
|
7980
8204
|
|
|
@@ -7987,6 +8211,7 @@ module Aws::CloudFront
|
|
|
7987
8211
|
#
|
|
7988
8212
|
class TooManyStreamingDistributionCNAMEs < Struct.new(
|
|
7989
8213
|
:message)
|
|
8214
|
+
SENSITIVE = []
|
|
7990
8215
|
include Aws::Structure
|
|
7991
8216
|
end
|
|
7992
8217
|
|
|
@@ -8000,6 +8225,7 @@ module Aws::CloudFront
|
|
|
8000
8225
|
#
|
|
8001
8226
|
class TooManyStreamingDistributions < Struct.new(
|
|
8002
8227
|
:message)
|
|
8228
|
+
SENSITIVE = []
|
|
8003
8229
|
include Aws::Structure
|
|
8004
8230
|
end
|
|
8005
8231
|
|
|
@@ -8013,6 +8239,7 @@ module Aws::CloudFront
|
|
|
8013
8239
|
#
|
|
8014
8240
|
class TooManyTrustedSigners < Struct.new(
|
|
8015
8241
|
:message)
|
|
8242
|
+
SENSITIVE = []
|
|
8016
8243
|
include Aws::Structure
|
|
8017
8244
|
end
|
|
8018
8245
|
|
|
@@ -8025,6 +8252,7 @@ module Aws::CloudFront
|
|
|
8025
8252
|
#
|
|
8026
8253
|
class TrustedSignerDoesNotExist < Struct.new(
|
|
8027
8254
|
:message)
|
|
8255
|
+
SENSITIVE = []
|
|
8028
8256
|
include Aws::Structure
|
|
8029
8257
|
end
|
|
8030
8258
|
|
|
@@ -8084,6 +8312,7 @@ module Aws::CloudFront
|
|
|
8084
8312
|
:enabled,
|
|
8085
8313
|
:quantity,
|
|
8086
8314
|
:items)
|
|
8315
|
+
SENSITIVE = []
|
|
8087
8316
|
include Aws::Structure
|
|
8088
8317
|
end
|
|
8089
8318
|
|
|
@@ -8112,6 +8341,7 @@ module Aws::CloudFront
|
|
|
8112
8341
|
class UntagResourceRequest < Struct.new(
|
|
8113
8342
|
:resource,
|
|
8114
8343
|
:tag_keys)
|
|
8344
|
+
SENSITIVE = []
|
|
8115
8345
|
include Aws::Structure
|
|
8116
8346
|
end
|
|
8117
8347
|
|
|
@@ -8148,6 +8378,7 @@ module Aws::CloudFront
|
|
|
8148
8378
|
:cloud_front_origin_access_identity_config,
|
|
8149
8379
|
:id,
|
|
8150
8380
|
:if_match)
|
|
8381
|
+
SENSITIVE = []
|
|
8151
8382
|
include Aws::Structure
|
|
8152
8383
|
end
|
|
8153
8384
|
|
|
@@ -8167,6 +8398,7 @@ module Aws::CloudFront
|
|
|
8167
8398
|
class UpdateCloudFrontOriginAccessIdentityResult < Struct.new(
|
|
8168
8399
|
:cloud_front_origin_access_identity,
|
|
8169
8400
|
:etag)
|
|
8401
|
+
SENSITIVE = []
|
|
8170
8402
|
include Aws::Structure
|
|
8171
8403
|
end
|
|
8172
8404
|
|
|
@@ -8373,7 +8605,7 @@ module Aws::CloudFront
|
|
|
8373
8605
|
# iam_certificate_id: "string",
|
|
8374
8606
|
# acm_certificate_arn: "string",
|
|
8375
8607
|
# ssl_support_method: "sni-only", # accepts sni-only, vip
|
|
8376
|
-
# minimum_protocol_version: "SSLv3", # accepts SSLv3, TLSv1, TLSv1_2016, TLSv1.1_2016, TLSv1.2_2018
|
|
8608
|
+
# minimum_protocol_version: "SSLv3", # accepts SSLv3, TLSv1, TLSv1_2016, TLSv1.1_2016, TLSv1.2_2018, TLSv1.2_2019
|
|
8377
8609
|
# certificate: "string",
|
|
8378
8610
|
# certificate_source: "cloudfront", # accepts cloudfront, iam, acm
|
|
8379
8611
|
# },
|
|
@@ -8411,6 +8643,7 @@ module Aws::CloudFront
|
|
|
8411
8643
|
:distribution_config,
|
|
8412
8644
|
:id,
|
|
8413
8645
|
:if_match)
|
|
8646
|
+
SENSITIVE = []
|
|
8414
8647
|
include Aws::Structure
|
|
8415
8648
|
end
|
|
8416
8649
|
|
|
@@ -8430,6 +8663,7 @@ module Aws::CloudFront
|
|
|
8430
8663
|
class UpdateDistributionResult < Struct.new(
|
|
8431
8664
|
:distribution,
|
|
8432
8665
|
:etag)
|
|
8666
|
+
SENSITIVE = []
|
|
8433
8667
|
include Aws::Structure
|
|
8434
8668
|
end
|
|
8435
8669
|
|
|
@@ -8489,6 +8723,7 @@ module Aws::CloudFront
|
|
|
8489
8723
|
:field_level_encryption_config,
|
|
8490
8724
|
:id,
|
|
8491
8725
|
:if_match)
|
|
8726
|
+
SENSITIVE = []
|
|
8492
8727
|
include Aws::Structure
|
|
8493
8728
|
end
|
|
8494
8729
|
|
|
@@ -8506,6 +8741,7 @@ module Aws::CloudFront
|
|
|
8506
8741
|
class UpdateFieldLevelEncryptionConfigResult < Struct.new(
|
|
8507
8742
|
:field_level_encryption,
|
|
8508
8743
|
:etag)
|
|
8744
|
+
SENSITIVE = []
|
|
8509
8745
|
include Aws::Structure
|
|
8510
8746
|
end
|
|
8511
8747
|
|
|
@@ -8554,6 +8790,7 @@ module Aws::CloudFront
|
|
|
8554
8790
|
:field_level_encryption_profile_config,
|
|
8555
8791
|
:id,
|
|
8556
8792
|
:if_match)
|
|
8793
|
+
SENSITIVE = []
|
|
8557
8794
|
include Aws::Structure
|
|
8558
8795
|
end
|
|
8559
8796
|
|
|
@@ -8570,6 +8807,7 @@ module Aws::CloudFront
|
|
|
8570
8807
|
class UpdateFieldLevelEncryptionProfileResult < Struct.new(
|
|
8571
8808
|
:field_level_encryption_profile,
|
|
8572
8809
|
:etag)
|
|
8810
|
+
SENSITIVE = []
|
|
8573
8811
|
include Aws::Structure
|
|
8574
8812
|
end
|
|
8575
8813
|
|
|
@@ -8606,6 +8844,7 @@ module Aws::CloudFront
|
|
|
8606
8844
|
:public_key_config,
|
|
8607
8845
|
:id,
|
|
8608
8846
|
:if_match)
|
|
8847
|
+
SENSITIVE = []
|
|
8609
8848
|
include Aws::Structure
|
|
8610
8849
|
end
|
|
8611
8850
|
|
|
@@ -8623,6 +8862,7 @@ module Aws::CloudFront
|
|
|
8623
8862
|
class UpdatePublicKeyResult < Struct.new(
|
|
8624
8863
|
:public_key,
|
|
8625
8864
|
:etag)
|
|
8865
|
+
SENSITIVE = []
|
|
8626
8866
|
include Aws::Structure
|
|
8627
8867
|
end
|
|
8628
8868
|
|
|
@@ -8680,6 +8920,7 @@ module Aws::CloudFront
|
|
|
8680
8920
|
:streaming_distribution_config,
|
|
8681
8921
|
:id,
|
|
8682
8922
|
:if_match)
|
|
8923
|
+
SENSITIVE = []
|
|
8683
8924
|
include Aws::Structure
|
|
8684
8925
|
end
|
|
8685
8926
|
|
|
@@ -8699,6 +8940,7 @@ module Aws::CloudFront
|
|
|
8699
8940
|
class UpdateStreamingDistributionResult < Struct.new(
|
|
8700
8941
|
:streaming_distribution,
|
|
8701
8942
|
:etag)
|
|
8943
|
+
SENSITIVE = []
|
|
8702
8944
|
include Aws::Structure
|
|
8703
8945
|
end
|
|
8704
8946
|
|
|
@@ -8721,7 +8963,7 @@ module Aws::CloudFront
|
|
|
8721
8963
|
#
|
|
8722
8964
|
# * To accept HTTPS connections from only viewers that support SNI,
|
|
8723
8965
|
# set `SSLSupportMethod` to `sni-only`. This is recommended. Most
|
|
8724
|
-
# browsers and clients
|
|
8966
|
+
# browsers and clients support SNI.
|
|
8725
8967
|
#
|
|
8726
8968
|
# * To accept HTTPS connections from all viewers, including those that
|
|
8727
8969
|
# don’t support SNI, set `SSLSupportMethod` to `vip`. This is not
|
|
@@ -8769,7 +9011,7 @@ module Aws::CloudFront
|
|
|
8769
9011
|
# iam_certificate_id: "string",
|
|
8770
9012
|
# acm_certificate_arn: "string",
|
|
8771
9013
|
# ssl_support_method: "sni-only", # accepts sni-only, vip
|
|
8772
|
-
# minimum_protocol_version: "SSLv3", # accepts SSLv3, TLSv1, TLSv1_2016, TLSv1.1_2016, TLSv1.2_2018
|
|
9014
|
+
# minimum_protocol_version: "SSLv3", # accepts SSLv3, TLSv1, TLSv1_2016, TLSv1.1_2016, TLSv1.2_2018, TLSv1.2_2019
|
|
8773
9015
|
# certificate: "string",
|
|
8774
9016
|
# certificate_source: "cloudfront", # accepts cloudfront, iam, acm
|
|
8775
9017
|
# }
|
|
@@ -8826,8 +9068,7 @@ module Aws::CloudFront
|
|
|
8826
9068
|
#
|
|
8827
9069
|
# * `sni-only` – The distribution accepts HTTPS connections from only
|
|
8828
9070
|
# viewers that support [server name indication (SNI)][1]. This is
|
|
8829
|
-
# recommended. Most browsers and clients
|
|
8830
|
-
# SNI.
|
|
9071
|
+
# recommended. Most browsers and clients support SNI.
|
|
8831
9072
|
#
|
|
8832
9073
|
# * `vip` – The distribution accepts HTTPS connections from all
|
|
8833
9074
|
# viewers including those that don’t support SNI. This is not
|
|
@@ -8863,9 +9104,6 @@ module Aws::CloudFront
|
|
|
8863
9104
|
#
|
|
8864
9105
|
# </note>
|
|
8865
9106
|
#
|
|
8866
|
-
# We recommend that you specify `TLSv1.2_2018` unless your viewers are
|
|
8867
|
-
# using browsers or devices that don’t support TLSv1.2.
|
|
8868
|
-
#
|
|
8869
9107
|
# When you’re using SNI only (you set `SSLSupportMethod` to
|
|
8870
9108
|
# `sni-only`), you must specify `TLSv1` or higher.
|
|
8871
9109
|
#
|
|
@@ -8911,6 +9149,7 @@ module Aws::CloudFront
|
|
|
8911
9149
|
:minimum_protocol_version,
|
|
8912
9150
|
:certificate,
|
|
8913
9151
|
:certificate_source)
|
|
9152
|
+
SENSITIVE = []
|
|
8914
9153
|
include Aws::Structure
|
|
8915
9154
|
end
|
|
8916
9155
|
|