aws-sdk-cloudfront 1.18.0 → 1.19.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 +90 -71
- data/lib/aws-sdk-cloudfront/client_api.rb +123 -111
- data/lib/aws-sdk-cloudfront/types.rb +655 -487
- data/lib/aws-sdk-cloudfront/waiters.rb +2 -2
- metadata +2 -2
@@ -13,7 +13,7 @@ module Aws::CloudFront
|
|
13
13
|
# @!attribute [rw] message
|
14
14
|
# @return [String]
|
15
15
|
#
|
16
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
16
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/AccessDenied AWS API Documentation
|
17
17
|
#
|
18
18
|
class AccessDenied < Struct.new(
|
19
19
|
:message)
|
@@ -37,32 +37,26 @@ module Aws::CloudFront
|
|
37
37
|
#
|
38
38
|
#
|
39
39
|
#
|
40
|
-
# [1]:
|
40
|
+
# [1]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/PrivateContent.html
|
41
41
|
#
|
42
42
|
# @!attribute [rw] enabled
|
43
43
|
# Enabled is `true` if any of the AWS accounts listed in the
|
44
|
-
# `TrustedSigners` complex type for this
|
44
|
+
# `TrustedSigners` complex type for this distribution have active
|
45
45
|
# CloudFront key pairs. If not, `Enabled` is `false`.
|
46
|
-
#
|
47
|
-
# For more information, see ActiveTrustedSigners.
|
48
46
|
# @return [Boolean]
|
49
47
|
#
|
50
48
|
# @!attribute [rw] quantity
|
51
|
-
#
|
52
|
-
#
|
53
|
-
#
|
54
|
-
# For more information, see ActiveTrustedSigners.
|
49
|
+
# The number of trusted signers specified in the `TrustedSigners`
|
50
|
+
# complex type.
|
55
51
|
# @return [Integer]
|
56
52
|
#
|
57
53
|
# @!attribute [rw] items
|
58
54
|
# A complex type that contains one `Signer` complex type for each
|
59
55
|
# trusted signer that is specified in the `TrustedSigners` complex
|
60
56
|
# type.
|
61
|
-
#
|
62
|
-
# For more information, see ActiveTrustedSigners.
|
63
57
|
# @return [Array<Types::Signer>]
|
64
58
|
#
|
65
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
59
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/ActiveTrustedSigners AWS API Documentation
|
66
60
|
#
|
67
61
|
class ActiveTrustedSigners < Struct.new(
|
68
62
|
:enabled,
|
@@ -71,6 +65,53 @@ module Aws::CloudFront
|
|
71
65
|
include Aws::Structure
|
72
66
|
end
|
73
67
|
|
68
|
+
# AWS services in China customers must file for an Internet Content
|
69
|
+
# Provider (ICP) recordal if they want to serve content publicly on an
|
70
|
+
# alternate domain name, also known as a CNAME, that they've added to
|
71
|
+
# CloudFront. AliasICPRecordal provides the ICP recordal status for
|
72
|
+
# CNAMEs associated with distributions. The status is returned in the
|
73
|
+
# CloudFront response; you can't configure it yourself.
|
74
|
+
#
|
75
|
+
# For more information about ICP recordals, see [ Signup, Accounts, and
|
76
|
+
# Credentials][1] in *Getting Started with AWS services in China*.
|
77
|
+
#
|
78
|
+
#
|
79
|
+
#
|
80
|
+
# [1]: https://docs.amazonaws.cn/en_us/aws/latest/userguide/accounts-and-credentials.html
|
81
|
+
#
|
82
|
+
# @!attribute [rw] cname
|
83
|
+
# A domain name associated with a distribution.
|
84
|
+
# @return [String]
|
85
|
+
#
|
86
|
+
# @!attribute [rw] icp_recordal_status
|
87
|
+
# The Internet Content Provider (ICP) recordal status for a CNAME. The
|
88
|
+
# ICPRecordalStatus is set to APPROVED for all CNAMEs (aliases) in
|
89
|
+
# regions outside of China.
|
90
|
+
#
|
91
|
+
# The status values returned are the following:
|
92
|
+
#
|
93
|
+
# * **APPROVED** indicates that the associated CNAME has a valid ICP
|
94
|
+
# recordal number. Multiple CNAMEs can be associated with a
|
95
|
+
# distribution, and CNAMEs can correspond to different ICP
|
96
|
+
# recordals. To be marked as APPROVED, that is, valid to use with
|
97
|
+
# China region, a CNAME must have one ICP recordal number associated
|
98
|
+
# with it.
|
99
|
+
#
|
100
|
+
# * **SUSPENDED** indicates that the associated CNAME does not have a
|
101
|
+
# valid ICP recordal number.
|
102
|
+
#
|
103
|
+
# * **PENDING** indicates that at least one CNAME associated with the
|
104
|
+
# distribution does not have a valid ICP recordal number.
|
105
|
+
# @return [String]
|
106
|
+
#
|
107
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/AliasICPRecordal AWS API Documentation
|
108
|
+
#
|
109
|
+
class AliasICPRecordal < Struct.new(
|
110
|
+
:cname,
|
111
|
+
:icp_recordal_status)
|
112
|
+
include Aws::Structure
|
113
|
+
end
|
114
|
+
|
74
115
|
# A complex type that contains information about CNAMEs (alternate
|
75
116
|
# domain names), if any, for this distribution.
|
76
117
|
#
|
@@ -92,7 +133,7 @@ module Aws::CloudFront
|
|
92
133
|
# want to associate with this distribution.
|
93
134
|
# @return [Array<String>]
|
94
135
|
#
|
95
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
136
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/Aliases AWS API Documentation
|
96
137
|
#
|
97
138
|
class Aliases < Struct.new(
|
98
139
|
:quantity,
|
@@ -155,7 +196,7 @@ module Aws::CloudFront
|
|
155
196
|
# to be cached correctly.
|
156
197
|
# @return [Types::CachedMethods]
|
157
198
|
#
|
158
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
199
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/AllowedMethods AWS API Documentation
|
159
200
|
#
|
160
201
|
class AllowedMethods < Struct.new(
|
161
202
|
:quantity,
|
@@ -164,20 +205,24 @@ module Aws::CloudFront
|
|
164
205
|
include Aws::Structure
|
165
206
|
end
|
166
207
|
|
208
|
+
# Invalidation batch specified is too large.
|
209
|
+
#
|
167
210
|
# @!attribute [rw] message
|
168
211
|
# @return [String]
|
169
212
|
#
|
170
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
213
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/BatchTooLarge AWS API Documentation
|
171
214
|
#
|
172
215
|
class BatchTooLarge < Struct.new(
|
173
216
|
:message)
|
174
217
|
include Aws::Structure
|
175
218
|
end
|
176
219
|
|
220
|
+
# The CNAME specified is already defined for CloudFront.
|
221
|
+
#
|
177
222
|
# @!attribute [rw] message
|
178
223
|
# @return [String]
|
179
224
|
#
|
180
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
225
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/CNAMEAlreadyExists AWS API Documentation
|
181
226
|
#
|
182
227
|
class CNAMEAlreadyExists < Struct.new(
|
183
228
|
:message)
|
@@ -215,8 +260,8 @@ module Aws::CloudFront
|
|
215
260
|
#
|
216
261
|
#
|
217
262
|
#
|
218
|
-
# [1]:
|
219
|
-
# [2]:
|
263
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws_service_limits.html#limits_cloudfront
|
264
|
+
# [2]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/distribution-web-values-specify.html#DownloadDistValuesCacheBehavior
|
220
265
|
#
|
221
266
|
# @note When making an API call, you may pass CacheBehavior
|
222
267
|
# data as a hash:
|
@@ -296,7 +341,7 @@ module Aws::CloudFront
|
|
296
341
|
#
|
297
342
|
#
|
298
343
|
#
|
299
|
-
# [1]:
|
344
|
+
# [1]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/distribution-web-values-specify.html#DownloadDistValuesPathPattern
|
300
345
|
# @return [String]
|
301
346
|
#
|
302
347
|
# @!attribute [rw] target_origin_id
|
@@ -319,8 +364,8 @@ module Aws::CloudFront
|
|
319
364
|
# target origin that match the `PathPattern` for this cache behavior,
|
320
365
|
# specify `true` for `Enabled`, and specify the applicable values for
|
321
366
|
# `Quantity` and `Items`. For more information, see [Serving Private
|
322
|
-
# Content through CloudFront][1] in the *Amazon
|
323
|
-
#
|
367
|
+
# Content through CloudFront][1] in the *Amazon CloudFront Developer
|
368
|
+
# Guide*.
|
324
369
|
#
|
325
370
|
# If you don't want to require signed URLs in requests for objects
|
326
371
|
# that match `PathPattern`, specify `false` for `Enabled` and `0` for
|
@@ -333,7 +378,7 @@ module Aws::CloudFront
|
|
333
378
|
#
|
334
379
|
#
|
335
380
|
#
|
336
|
-
# [1]:
|
381
|
+
# [1]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/PrivateContent.html
|
337
382
|
# @return [Types::TrustedSigners]
|
338
383
|
#
|
339
384
|
# @!attribute [rw] viewer_protocol_policy
|
@@ -362,25 +407,24 @@ module Aws::CloudFront
|
|
362
407
|
# cached objects are protocol agnostic. That means that an edge
|
363
408
|
# location will return an object from the cache regardless of whether
|
364
409
|
# the current request protocol matches the protocol used previously.
|
365
|
-
# For more information, see [
|
366
|
-
#
|
367
|
-
#
|
410
|
+
# For more information, see [Managing How Long Content Stays in an
|
411
|
+
# Edge Cache (Expiration)][2] in the *Amazon CloudFront Developer
|
412
|
+
# Guide*.
|
368
413
|
#
|
369
414
|
# </note>
|
370
415
|
#
|
371
416
|
#
|
372
417
|
#
|
373
|
-
# [1]:
|
374
|
-
# [2]:
|
418
|
+
# [1]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/SecureConnections.html
|
419
|
+
# [2]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/Expiration.html
|
375
420
|
# @return [String]
|
376
421
|
#
|
377
422
|
# @!attribute [rw] min_ttl
|
378
423
|
# The minimum amount of time that you want objects to stay in
|
379
424
|
# CloudFront caches before CloudFront forwards another request to your
|
380
425
|
# origin to determine whether the object has been updated. For more
|
381
|
-
# information, see [
|
382
|
-
#
|
383
|
-
# CloudFront Developer Guide*.
|
426
|
+
# information, see [ Managing How Long Content Stays in an Edge Cache
|
427
|
+
# (Expiration)][1] in the <i> Amazon CloudFront Developer Guide</i>.
|
384
428
|
#
|
385
429
|
# You must specify `0` for `MinTTL` if you configure CloudFront to
|
386
430
|
# forward all headers to your origin (under `Headers`, if you specify
|
@@ -388,7 +432,7 @@ module Aws::CloudFront
|
|
388
432
|
#
|
389
433
|
#
|
390
434
|
#
|
391
|
-
# [1]:
|
435
|
+
# [1]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/Expiration.html
|
392
436
|
# @return [Integer]
|
393
437
|
#
|
394
438
|
# @!attribute [rw] allowed_methods
|
@@ -425,13 +469,13 @@ module Aws::CloudFront
|
|
425
469
|
# origin to determine whether the object has been updated. The value
|
426
470
|
# that you specify applies only when your origin does not add HTTP
|
427
471
|
# headers such as `Cache-Control max-age`, `Cache-Control s-maxage`,
|
428
|
-
# and `Expires` to objects. For more information, see [
|
429
|
-
# Long
|
430
|
-
#
|
472
|
+
# and `Expires` to objects. For more information, see [Managing How
|
473
|
+
# Long Content Stays in an Edge Cache (Expiration)][1] in the *Amazon
|
474
|
+
# CloudFront Developer Guide*.
|
431
475
|
#
|
432
476
|
#
|
433
477
|
#
|
434
|
-
# [1]:
|
478
|
+
# [1]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/Expiration.html
|
435
479
|
# @return [Integer]
|
436
480
|
#
|
437
481
|
# @!attribute [rw] max_ttl
|
@@ -440,13 +484,13 @@ module Aws::CloudFront
|
|
440
484
|
# origin to determine whether the object has been updated. The value
|
441
485
|
# that you specify applies only when your origin adds HTTP headers
|
442
486
|
# such as `Cache-Control max-age`, `Cache-Control s-maxage`, and
|
443
|
-
# `Expires` to objects. For more information, see [
|
444
|
-
#
|
445
|
-
#
|
487
|
+
# `Expires` to objects. For more information, see [Managing How Long
|
488
|
+
# Content Stays in an Edge Cache (Expiration)][1] in the *Amazon
|
489
|
+
# CloudFront Developer Guide*.
|
446
490
|
#
|
447
491
|
#
|
448
492
|
#
|
449
|
-
# [1]:
|
493
|
+
# [1]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/Expiration.html
|
450
494
|
# @return [Integer]
|
451
495
|
#
|
452
496
|
# @!attribute [rw] compress
|
@@ -457,7 +501,7 @@ module Aws::CloudFront
|
|
457
501
|
#
|
458
502
|
#
|
459
503
|
#
|
460
|
-
# [1]:
|
504
|
+
# [1]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/ServingCompressedFiles.html
|
461
505
|
# @return [Boolean]
|
462
506
|
#
|
463
507
|
# @!attribute [rw] lambda_function_associations
|
@@ -472,7 +516,7 @@ module Aws::CloudFront
|
|
472
516
|
# distribution.
|
473
517
|
# @return [String]
|
474
518
|
#
|
475
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
519
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/CacheBehavior AWS API Documentation
|
476
520
|
#
|
477
521
|
class CacheBehavior < Struct.new(
|
478
522
|
:path_pattern,
|
@@ -563,7 +607,7 @@ module Aws::CloudFront
|
|
563
607
|
# distribution. If `Quantity` is `0`, you can omit `Items`.
|
564
608
|
# @return [Array<Types::CacheBehavior>]
|
565
609
|
#
|
566
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
610
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/CacheBehaviors AWS API Documentation
|
567
611
|
#
|
568
612
|
class CacheBehaviors < Struct.new(
|
569
613
|
:quantity,
|
@@ -604,7 +648,7 @@ module Aws::CloudFront
|
|
604
648
|
# CloudFront to cache responses to.
|
605
649
|
# @return [Array<String>]
|
606
650
|
#
|
607
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
651
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/CachedMethods AWS API Documentation
|
608
652
|
#
|
609
653
|
class CachedMethods < Struct.new(
|
610
654
|
:quantity,
|
@@ -617,7 +661,7 @@ module Aws::CloudFront
|
|
617
661
|
# @!attribute [rw] message
|
618
662
|
# @return [String]
|
619
663
|
#
|
620
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
664
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/CannotChangeImmutablePublicKeyFields AWS API Documentation
|
621
665
|
#
|
622
666
|
class CannotChangeImmutablePublicKeyFields < Struct.new(
|
623
667
|
:message)
|
@@ -641,7 +685,7 @@ module Aws::CloudFront
|
|
641
685
|
# The current configuration information for the identity.
|
642
686
|
# @return [Types::CloudFrontOriginAccessIdentityConfig]
|
643
687
|
#
|
644
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
688
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/CloudFrontOriginAccessIdentity AWS API Documentation
|
645
689
|
#
|
646
690
|
class CloudFrontOriginAccessIdentity < Struct.new(
|
647
691
|
:id,
|
@@ -659,7 +703,7 @@ module Aws::CloudFront
|
|
659
703
|
# @!attribute [rw] message
|
660
704
|
# @return [String]
|
661
705
|
#
|
662
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
706
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/CloudFrontOriginAccessIdentityAlreadyExists AWS API Documentation
|
663
707
|
#
|
664
708
|
class CloudFrontOriginAccessIdentityAlreadyExists < Struct.new(
|
665
709
|
:message)
|
@@ -702,7 +746,7 @@ module Aws::CloudFront
|
|
702
746
|
# Any comments you want to include about the origin access identity.
|
703
747
|
# @return [String]
|
704
748
|
#
|
705
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
749
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/CloudFrontOriginAccessIdentityConfig AWS API Documentation
|
706
750
|
#
|
707
751
|
class CloudFrontOriginAccessIdentityConfig < Struct.new(
|
708
752
|
:caller_reference,
|
@@ -710,10 +754,12 @@ module Aws::CloudFront
|
|
710
754
|
include Aws::Structure
|
711
755
|
end
|
712
756
|
|
757
|
+
# The Origin Access Identity specified is already in use.
|
758
|
+
#
|
713
759
|
# @!attribute [rw] message
|
714
760
|
# @return [String]
|
715
761
|
#
|
716
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
762
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/CloudFrontOriginAccessIdentityInUse AWS API Documentation
|
717
763
|
#
|
718
764
|
class CloudFrontOriginAccessIdentityInUse < Struct.new(
|
719
765
|
:message)
|
@@ -766,7 +812,7 @@ module Aws::CloudFront
|
|
766
812
|
# access identity that was created by the current AWS account.
|
767
813
|
# @return [Array<Types::CloudFrontOriginAccessIdentitySummary>]
|
768
814
|
#
|
769
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
815
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/CloudFrontOriginAccessIdentityList AWS API Documentation
|
770
816
|
#
|
771
817
|
class CloudFrontOriginAccessIdentityList < Struct.new(
|
772
818
|
:marker,
|
@@ -796,7 +842,7 @@ module Aws::CloudFront
|
|
796
842
|
# when created.
|
797
843
|
# @return [String]
|
798
844
|
#
|
799
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
845
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/CloudFrontOriginAccessIdentitySummary AWS API Documentation
|
800
846
|
#
|
801
847
|
class CloudFrontOriginAccessIdentitySummary < Struct.new(
|
802
848
|
:id,
|
@@ -831,7 +877,7 @@ module Aws::CloudFront
|
|
831
877
|
# mapping.
|
832
878
|
# @return [String]
|
833
879
|
#
|
834
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
880
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/ContentTypeProfile AWS API Documentation
|
835
881
|
#
|
836
882
|
class ContentTypeProfile < Struct.new(
|
837
883
|
:format,
|
@@ -872,7 +918,7 @@ module Aws::CloudFront
|
|
872
918
|
# The configuration for a field-level encryption content type-profile.
|
873
919
|
# @return [Types::ContentTypeProfiles]
|
874
920
|
#
|
875
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
921
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/ContentTypeProfileConfig AWS API Documentation
|
876
922
|
#
|
877
923
|
class ContentTypeProfileConfig < Struct.new(
|
878
924
|
:forward_when_content_type_is_unknown,
|
@@ -904,7 +950,7 @@ module Aws::CloudFront
|
|
904
950
|
# Items in a field-level encryption content type-profile mapping.
|
905
951
|
# @return [Array<Types::ContentTypeProfile>]
|
906
952
|
#
|
907
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
953
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/ContentTypeProfiles AWS API Documentation
|
908
954
|
#
|
909
955
|
class ContentTypeProfiles < Struct.new(
|
910
956
|
:quantity,
|
@@ -914,13 +960,12 @@ module Aws::CloudFront
|
|
914
960
|
|
915
961
|
# A complex type that specifies whether you want CloudFront to forward
|
916
962
|
# cookies to the origin and, if so, which ones. For more information
|
917
|
-
# about forwarding cookies to the origin, see [
|
918
|
-
#
|
919
|
-
# Guide*.
|
963
|
+
# about forwarding cookies to the origin, see [ Caching Content Based on
|
964
|
+
# Request Headers][1] in the *Amazon CloudFront Developer Guide*.
|
920
965
|
#
|
921
966
|
#
|
922
967
|
#
|
923
|
-
# [1]:
|
968
|
+
# [1]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/header-caching.html
|
924
969
|
#
|
925
970
|
# @note When making an API call, you may pass CookieNames
|
926
971
|
# data as a hash:
|
@@ -941,7 +986,7 @@ module Aws::CloudFront
|
|
941
986
|
# behavior.
|
942
987
|
# @return [Array<String>]
|
943
988
|
#
|
944
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
989
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/CookieNames AWS API Documentation
|
945
990
|
#
|
946
991
|
class CookieNames < Struct.new(
|
947
992
|
:quantity,
|
@@ -951,13 +996,12 @@ module Aws::CloudFront
|
|
951
996
|
|
952
997
|
# A complex type that specifies whether you want CloudFront to forward
|
953
998
|
# cookies to the origin and, if so, which ones. For more information
|
954
|
-
# about forwarding cookies to the origin, see [
|
955
|
-
#
|
956
|
-
# Guide*.
|
999
|
+
# about forwarding cookies to the origin, see [Caching Content Based on
|
1000
|
+
# Cookies][1] in the *Amazon CloudFront Developer Guide*.
|
957
1001
|
#
|
958
1002
|
#
|
959
1003
|
#
|
960
|
-
# [1]:
|
1004
|
+
# [1]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/Cookies.html
|
961
1005
|
#
|
962
1006
|
# @note When making an API call, you may pass CookiePreference
|
963
1007
|
# data as a hash:
|
@@ -993,15 +1037,15 @@ module Aws::CloudFront
|
|
993
1037
|
# deletes them automatically.
|
994
1038
|
#
|
995
1039
|
# For the current limit on the number of cookie names that you can
|
996
|
-
# whitelist for each cache behavior, see [
|
997
|
-
#
|
1040
|
+
# whitelist for each cache behavior, see [ CloudFront Limits][1] in
|
1041
|
+
# the *AWS General Reference*.
|
998
1042
|
#
|
999
1043
|
#
|
1000
1044
|
#
|
1001
|
-
# [1]:
|
1045
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/xrefaws_service_limits.html#limits_cloudfront
|
1002
1046
|
# @return [Types::CookieNames]
|
1003
1047
|
#
|
1004
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
1048
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/CookiePreference AWS API Documentation
|
1005
1049
|
#
|
1006
1050
|
class CookiePreference < Struct.new(
|
1007
1051
|
:forward,
|
@@ -1009,7 +1053,16 @@ module Aws::CloudFront
|
|
1009
1053
|
include Aws::Structure
|
1010
1054
|
end
|
1011
1055
|
|
1012
|
-
# The request to create a new origin access identity.
|
1056
|
+
# The request to create a new origin access identity (OAI). An origin
|
1057
|
+
# access identity is a special CloudFront user that you can associate
|
1058
|
+
# with Amazon S3 origins, so that you can secure all or just some of
|
1059
|
+
# your Amazon S3 content. For more information, see [ Restricting Access
|
1060
|
+
# to Amazon S3 Content by Using an Origin Access Identity][1] in the
|
1061
|
+
# *Amazon CloudFront Developer Guide*.
|
1062
|
+
#
|
1063
|
+
#
|
1064
|
+
#
|
1065
|
+
# [1]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/private-content-restricting-access-to-s3.html
|
1013
1066
|
#
|
1014
1067
|
# @note When making an API call, you may pass CreateCloudFrontOriginAccessIdentityRequest
|
1015
1068
|
# data as a hash:
|
@@ -1025,7 +1078,7 @@ module Aws::CloudFront
|
|
1025
1078
|
# The current configuration information for the identity.
|
1026
1079
|
# @return [Types::CloudFrontOriginAccessIdentityConfig]
|
1027
1080
|
#
|
1028
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
1081
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/CreateCloudFrontOriginAccessIdentityRequest AWS API Documentation
|
1029
1082
|
#
|
1030
1083
|
class CreateCloudFrontOriginAccessIdentityRequest < Struct.new(
|
1031
1084
|
:cloud_front_origin_access_identity_config)
|
@@ -1048,7 +1101,7 @@ module Aws::CloudFront
|
|
1048
1101
|
# The current version of the origin access identity created.
|
1049
1102
|
# @return [String]
|
1050
1103
|
#
|
1051
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
1104
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/CreateCloudFrontOriginAccessIdentityResult AWS API Documentation
|
1052
1105
|
#
|
1053
1106
|
class CreateCloudFrontOriginAccessIdentityResult < Struct.new(
|
1054
1107
|
:cloud_front_origin_access_identity,
|
@@ -1244,7 +1297,7 @@ module Aws::CloudFront
|
|
1244
1297
|
# },
|
1245
1298
|
# ],
|
1246
1299
|
# },
|
1247
|
-
# comment: "
|
1300
|
+
# comment: "CommentType", # required
|
1248
1301
|
# logging: {
|
1249
1302
|
# enabled: false, # required
|
1250
1303
|
# include_cookies: false, # required
|
@@ -1279,7 +1332,7 @@ module Aws::CloudFront
|
|
1279
1332
|
# The distribution's configuration information.
|
1280
1333
|
# @return [Types::DistributionConfig]
|
1281
1334
|
#
|
1282
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
1335
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/CreateDistributionRequest AWS API Documentation
|
1283
1336
|
#
|
1284
1337
|
class CreateDistributionRequest < Struct.new(
|
1285
1338
|
:distribution_config)
|
@@ -1302,7 +1355,7 @@ module Aws::CloudFront
|
|
1302
1355
|
# The current version of the distribution created.
|
1303
1356
|
# @return [String]
|
1304
1357
|
#
|
1305
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
1358
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/CreateDistributionResult AWS API Documentation
|
1306
1359
|
#
|
1307
1360
|
class CreateDistributionResult < Struct.new(
|
1308
1361
|
:distribution,
|
@@ -1499,7 +1552,7 @@ module Aws::CloudFront
|
|
1499
1552
|
# },
|
1500
1553
|
# ],
|
1501
1554
|
# },
|
1502
|
-
# comment: "
|
1555
|
+
# comment: "CommentType", # required
|
1503
1556
|
# logging: {
|
1504
1557
|
# enabled: false, # required
|
1505
1558
|
# include_cookies: false, # required
|
@@ -1543,7 +1596,7 @@ module Aws::CloudFront
|
|
1543
1596
|
# The distribution's configuration information.
|
1544
1597
|
# @return [Types::DistributionConfigWithTags]
|
1545
1598
|
#
|
1546
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
1599
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/CreateDistributionWithTagsRequest AWS API Documentation
|
1547
1600
|
#
|
1548
1601
|
class CreateDistributionWithTagsRequest < Struct.new(
|
1549
1602
|
:distribution_config_with_tags)
|
@@ -1566,7 +1619,7 @@ module Aws::CloudFront
|
|
1566
1619
|
# The current version of the distribution created.
|
1567
1620
|
# @return [String]
|
1568
1621
|
#
|
1569
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
1622
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/CreateDistributionWithTagsResult AWS API Documentation
|
1570
1623
|
#
|
1571
1624
|
class CreateDistributionWithTagsResult < Struct.new(
|
1572
1625
|
:distribution,
|
@@ -1614,7 +1667,7 @@ module Aws::CloudFront
|
|
1614
1667
|
# The request to create a new field-level encryption configuration.
|
1615
1668
|
# @return [Types::FieldLevelEncryptionConfig]
|
1616
1669
|
#
|
1617
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
1670
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/CreateFieldLevelEncryptionConfigRequest AWS API Documentation
|
1618
1671
|
#
|
1619
1672
|
class CreateFieldLevelEncryptionConfigRequest < Struct.new(
|
1620
1673
|
:field_level_encryption_config)
|
@@ -1636,7 +1689,7 @@ module Aws::CloudFront
|
|
1636
1689
|
# example: `E2QWRUHAPOMQZL`.
|
1637
1690
|
# @return [String]
|
1638
1691
|
#
|
1639
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
1692
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/CreateFieldLevelEncryptionConfigResult AWS API Documentation
|
1640
1693
|
#
|
1641
1694
|
class CreateFieldLevelEncryptionConfigResult < Struct.new(
|
1642
1695
|
:field_level_encryption,
|
@@ -1673,7 +1726,7 @@ module Aws::CloudFront
|
|
1673
1726
|
# The request to create a field-level encryption profile.
|
1674
1727
|
# @return [Types::FieldLevelEncryptionProfileConfig]
|
1675
1728
|
#
|
1676
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
1729
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/CreateFieldLevelEncryptionProfileRequest AWS API Documentation
|
1677
1730
|
#
|
1678
1731
|
class CreateFieldLevelEncryptionProfileRequest < Struct.new(
|
1679
1732
|
:field_level_encryption_profile_config)
|
@@ -1695,7 +1748,7 @@ module Aws::CloudFront
|
|
1695
1748
|
# example: `E2QWRUHAPOMQZL`.
|
1696
1749
|
# @return [String]
|
1697
1750
|
#
|
1698
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
1751
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/CreateFieldLevelEncryptionProfileResult AWS API Documentation
|
1699
1752
|
#
|
1700
1753
|
class CreateFieldLevelEncryptionProfileResult < Struct.new(
|
1701
1754
|
:field_level_encryption_profile,
|
@@ -1728,7 +1781,7 @@ module Aws::CloudFront
|
|
1728
1781
|
# The batch information for the invalidation.
|
1729
1782
|
# @return [Types::InvalidationBatch]
|
1730
1783
|
#
|
1731
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
1784
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/CreateInvalidationRequest AWS API Documentation
|
1732
1785
|
#
|
1733
1786
|
class CreateInvalidationRequest < Struct.new(
|
1734
1787
|
:distribution_id,
|
@@ -1747,7 +1800,7 @@ module Aws::CloudFront
|
|
1747
1800
|
# The invalidation's information.
|
1748
1801
|
# @return [Types::Invalidation]
|
1749
1802
|
#
|
1750
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
1803
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/CreateInvalidationResult AWS API Documentation
|
1751
1804
|
#
|
1752
1805
|
class CreateInvalidationResult < Struct.new(
|
1753
1806
|
:location,
|
@@ -1771,7 +1824,7 @@ module Aws::CloudFront
|
|
1771
1824
|
# The request to add a public key to CloudFront.
|
1772
1825
|
# @return [Types::PublicKeyConfig]
|
1773
1826
|
#
|
1774
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
1827
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/CreatePublicKeyRequest AWS API Documentation
|
1775
1828
|
#
|
1776
1829
|
class CreatePublicKeyRequest < Struct.new(
|
1777
1830
|
:public_key_config)
|
@@ -1793,7 +1846,7 @@ module Aws::CloudFront
|
|
1793
1846
|
# `E2QWRUHAPOMQZL`.
|
1794
1847
|
# @return [String]
|
1795
1848
|
#
|
1796
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
1849
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/CreatePublicKeyResult AWS API Documentation
|
1797
1850
|
#
|
1798
1851
|
class CreatePublicKeyResult < Struct.new(
|
1799
1852
|
:public_key,
|
@@ -1838,7 +1891,7 @@ module Aws::CloudFront
|
|
1838
1891
|
# The streaming distribution's configuration information.
|
1839
1892
|
# @return [Types::StreamingDistributionConfig]
|
1840
1893
|
#
|
1841
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
1894
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/CreateStreamingDistributionRequest AWS API Documentation
|
1842
1895
|
#
|
1843
1896
|
class CreateStreamingDistributionRequest < Struct.new(
|
1844
1897
|
:streaming_distribution_config)
|
@@ -1861,7 +1914,7 @@ module Aws::CloudFront
|
|
1861
1914
|
# The current version of the streaming distribution created.
|
1862
1915
|
# @return [String]
|
1863
1916
|
#
|
1864
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
1917
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/CreateStreamingDistributionResult AWS API Documentation
|
1865
1918
|
#
|
1866
1919
|
class CreateStreamingDistributionResult < Struct.new(
|
1867
1920
|
:streaming_distribution,
|
@@ -1916,7 +1969,7 @@ module Aws::CloudFront
|
|
1916
1969
|
# The streaming distribution's configuration information.
|
1917
1970
|
# @return [Types::StreamingDistributionConfigWithTags]
|
1918
1971
|
#
|
1919
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
1972
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/CreateStreamingDistributionWithTagsRequest AWS API Documentation
|
1920
1973
|
#
|
1921
1974
|
class CreateStreamingDistributionWithTagsRequest < Struct.new(
|
1922
1975
|
:streaming_distribution_config_with_tags)
|
@@ -1939,7 +1992,7 @@ module Aws::CloudFront
|
|
1939
1992
|
# The current version of the distribution created.
|
1940
1993
|
# @return [String]
|
1941
1994
|
#
|
1942
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
1995
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/CreateStreamingDistributionWithTagsResult AWS API Documentation
|
1943
1996
|
#
|
1944
1997
|
class CreateStreamingDistributionWithTagsResult < Struct.new(
|
1945
1998
|
:streaming_distribution,
|
@@ -1962,7 +2015,7 @@ module Aws::CloudFront
|
|
1962
2015
|
#
|
1963
2016
|
#
|
1964
2017
|
#
|
1965
|
-
# [1]:
|
2018
|
+
# [1]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/custom-error-pages.html
|
1966
2019
|
#
|
1967
2020
|
# @note When making an API call, you may pass CustomErrorResponse
|
1968
2021
|
# data as a hash:
|
@@ -2047,10 +2100,10 @@ module Aws::CloudFront
|
|
2047
2100
|
#
|
2048
2101
|
#
|
2049
2102
|
#
|
2050
|
-
# [1]:
|
2103
|
+
# [1]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/custom-error-pages.html
|
2051
2104
|
# @return [Integer]
|
2052
2105
|
#
|
2053
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
2106
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/CustomErrorResponse AWS API Documentation
|
2054
2107
|
#
|
2055
2108
|
class CustomErrorResponse < Struct.new(
|
2056
2109
|
:error_code,
|
@@ -2074,7 +2127,7 @@ module Aws::CloudFront
|
|
2074
2127
|
#
|
2075
2128
|
#
|
2076
2129
|
#
|
2077
|
-
# [1]:
|
2130
|
+
# [1]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/custom-error-pages.html
|
2078
2131
|
#
|
2079
2132
|
# @note When making an API call, you may pass CustomErrorResponses
|
2080
2133
|
# data as a hash:
|
@@ -2103,7 +2156,7 @@ module Aws::CloudFront
|
|
2103
2156
|
# page and/or a caching duration.
|
2104
2157
|
# @return [Array<Types::CustomErrorResponse>]
|
2105
2158
|
#
|
2106
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
2159
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/CustomErrorResponses AWS API Documentation
|
2107
2160
|
#
|
2108
2161
|
class CustomErrorResponses < Struct.new(
|
2109
2162
|
:quantity,
|
@@ -2137,7 +2190,7 @@ module Aws::CloudFront
|
|
2137
2190
|
# origin. If Quantity is `0`, omit `Items`.
|
2138
2191
|
# @return [Array<Types::OriginCustomHeader>]
|
2139
2192
|
#
|
2140
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
2193
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/CustomHeaders AWS API Documentation
|
2141
2194
|
#
|
2142
2195
|
class CustomHeaders < Struct.new(
|
2143
2196
|
:quantity,
|
@@ -2145,7 +2198,7 @@ module Aws::CloudFront
|
|
2145
2198
|
include Aws::Structure
|
2146
2199
|
end
|
2147
2200
|
|
2148
|
-
# A
|
2201
|
+
# A custom origin or an Amazon S3 bucket configured as a website
|
2149
2202
|
# endpoint.
|
2150
2203
|
#
|
2151
2204
|
# @note When making an API call, you may pass CustomOriginConfig
|
@@ -2208,7 +2261,7 @@ module Aws::CloudFront
|
|
2208
2261
|
# [1]: https://console.aws.amazon.com/support/home#/
|
2209
2262
|
# @return [Integer]
|
2210
2263
|
#
|
2211
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
2264
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/CustomOriginConfig AWS API Documentation
|
2212
2265
|
#
|
2213
2266
|
class CustomOriginConfig < Struct.new(
|
2214
2267
|
:http_port,
|
@@ -2300,8 +2353,8 @@ module Aws::CloudFront
|
|
2300
2353
|
# target origin that match the `PathPattern` for this cache behavior,
|
2301
2354
|
# specify `true` for `Enabled`, and specify the applicable values for
|
2302
2355
|
# `Quantity` and `Items`. For more information, see [Serving Private
|
2303
|
-
# Content through CloudFront][1] in the
|
2304
|
-
# Developer Guide
|
2356
|
+
# Content through CloudFront][1] in the <i> Amazon CloudFront
|
2357
|
+
# Developer Guide</i>.
|
2305
2358
|
#
|
2306
2359
|
# If you don't want to require signed URLs in requests for objects
|
2307
2360
|
# that match `PathPattern`, specify `false` for `Enabled` and `0` for
|
@@ -2314,7 +2367,7 @@ module Aws::CloudFront
|
|
2314
2367
|
#
|
2315
2368
|
#
|
2316
2369
|
#
|
2317
|
-
# [1]:
|
2370
|
+
# [1]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/PrivateContent.html
|
2318
2371
|
# @return [Types::TrustedSigners]
|
2319
2372
|
#
|
2320
2373
|
# @!attribute [rw] viewer_protocol_policy
|
@@ -2343,25 +2396,24 @@ module Aws::CloudFront
|
|
2343
2396
|
# cached objects are protocol agnostic. That means that an edge
|
2344
2397
|
# location will return an object from the cache regardless of whether
|
2345
2398
|
# the current request protocol matches the protocol used previously.
|
2346
|
-
# For more information, see [
|
2347
|
-
#
|
2348
|
-
#
|
2399
|
+
# For more information, see [Managing How Long Content Stays in an
|
2400
|
+
# Edge Cache (Expiration)][2] in the *Amazon CloudFront Developer
|
2401
|
+
# Guide*.
|
2349
2402
|
#
|
2350
2403
|
# </note>
|
2351
2404
|
#
|
2352
2405
|
#
|
2353
2406
|
#
|
2354
|
-
# [1]:
|
2355
|
-
# [2]:
|
2407
|
+
# [1]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/SecureConnections.html
|
2408
|
+
# [2]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/Expiration.html
|
2356
2409
|
# @return [String]
|
2357
2410
|
#
|
2358
2411
|
# @!attribute [rw] min_ttl
|
2359
2412
|
# The minimum amount of time that you want objects to stay in
|
2360
2413
|
# CloudFront caches before CloudFront forwards another request to your
|
2361
2414
|
# origin to determine whether the object has been updated. For more
|
2362
|
-
# information, see [
|
2363
|
-
#
|
2364
|
-
# CloudFront Developer Guide*.
|
2415
|
+
# information, see [Managing How Long Content Stays in an Edge Cache
|
2416
|
+
# (Expiration)][1] in the *Amazon CloudFront Developer Guide*.
|
2365
2417
|
#
|
2366
2418
|
# You must specify `0` for `MinTTL` if you configure CloudFront to
|
2367
2419
|
# forward all headers to your origin (under `Headers`, if you specify
|
@@ -2369,7 +2421,7 @@ module Aws::CloudFront
|
|
2369
2421
|
#
|
2370
2422
|
#
|
2371
2423
|
#
|
2372
|
-
# [1]:
|
2424
|
+
# [1]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/Expiration.html
|
2373
2425
|
# @return [Integer]
|
2374
2426
|
#
|
2375
2427
|
# @!attribute [rw] allowed_methods
|
@@ -2406,16 +2458,28 @@ module Aws::CloudFront
|
|
2406
2458
|
# origin to determine whether the object has been updated. The value
|
2407
2459
|
# that you specify applies only when your origin does not add HTTP
|
2408
2460
|
# headers such as `Cache-Control max-age`, `Cache-Control s-maxage`,
|
2409
|
-
# and `Expires` to objects. For more information, see [
|
2410
|
-
# Long
|
2411
|
-
#
|
2461
|
+
# and `Expires` to objects. For more information, see [Managing How
|
2462
|
+
# Long Content Stays in an Edge Cache (Expiration)][1] in the *Amazon
|
2463
|
+
# CloudFront Developer Guide*.
|
2412
2464
|
#
|
2413
2465
|
#
|
2414
2466
|
#
|
2415
|
-
# [1]:
|
2467
|
+
# [1]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/Expiration.html
|
2416
2468
|
# @return [Integer]
|
2417
2469
|
#
|
2418
2470
|
# @!attribute [rw] max_ttl
|
2471
|
+
# The maximum amount of time that you want objects to stay in
|
2472
|
+
# CloudFront caches before CloudFront forwards another request to your
|
2473
|
+
# origin to determine whether the object has been updated. The value
|
2474
|
+
# that you specify applies only when your origin adds HTTP headers
|
2475
|
+
# such as `Cache-Control max-age`, `Cache-Control s-maxage`, and
|
2476
|
+
# `Expires` to objects. For more information, see [Managing How Long
|
2477
|
+
# Content Stays in an Edge Cache (Expiration)][1] in the *Amazon
|
2478
|
+
# CloudFront Developer Guide*.
|
2479
|
+
#
|
2480
|
+
#
|
2481
|
+
#
|
2482
|
+
# [1]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/Expiration.html
|
2419
2483
|
# @return [Integer]
|
2420
2484
|
#
|
2421
2485
|
# @!attribute [rw] compress
|
@@ -2426,7 +2490,7 @@ module Aws::CloudFront
|
|
2426
2490
|
#
|
2427
2491
|
#
|
2428
2492
|
#
|
2429
|
-
# [1]:
|
2493
|
+
# [1]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/ServingCompressedFiles.html
|
2430
2494
|
# @return [Boolean]
|
2431
2495
|
#
|
2432
2496
|
# @!attribute [rw] lambda_function_associations
|
@@ -2441,7 +2505,7 @@ module Aws::CloudFront
|
|
2441
2505
|
# distribution.
|
2442
2506
|
# @return [String]
|
2443
2507
|
#
|
2444
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
2508
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/DefaultCacheBehavior AWS API Documentation
|
2445
2509
|
#
|
2446
2510
|
class DefaultCacheBehavior < Struct.new(
|
2447
2511
|
:target_origin_id,
|
@@ -2478,7 +2542,7 @@ module Aws::CloudFront
|
|
2478
2542
|
# `PUT` request. For example: `E2QWRUHAPOMQZL`.
|
2479
2543
|
# @return [String]
|
2480
2544
|
#
|
2481
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
2545
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/DeleteCloudFrontOriginAccessIdentityRequest AWS API Documentation
|
2482
2546
|
#
|
2483
2547
|
class DeleteCloudFrontOriginAccessIdentityRequest < Struct.new(
|
2484
2548
|
:id,
|
@@ -2528,7 +2592,7 @@ module Aws::CloudFront
|
|
2528
2592
|
#
|
2529
2593
|
#
|
2530
2594
|
#
|
2531
|
-
# [1]:
|
2595
|
+
# [1]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/HowToDeleteDistribution.html
|
2532
2596
|
#
|
2533
2597
|
# @note When making an API call, you may pass DeleteDistributionRequest
|
2534
2598
|
# data as a hash:
|
@@ -2547,7 +2611,7 @@ module Aws::CloudFront
|
|
2547
2611
|
# the distribution. For example: `E2QWRUHAPOMQZL`.
|
2548
2612
|
# @return [String]
|
2549
2613
|
#
|
2550
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
2614
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/DeleteDistributionRequest AWS API Documentation
|
2551
2615
|
#
|
2552
2616
|
class DeleteDistributionRequest < Struct.new(
|
2553
2617
|
:id,
|
@@ -2572,7 +2636,7 @@ module Aws::CloudFront
|
|
2572
2636
|
# configuration identity to delete. For example: `E2QWRUHAPOMQZL`.
|
2573
2637
|
# @return [String]
|
2574
2638
|
#
|
2575
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
2639
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/DeleteFieldLevelEncryptionConfigRequest AWS API Documentation
|
2576
2640
|
#
|
2577
2641
|
class DeleteFieldLevelEncryptionConfigRequest < Struct.new(
|
2578
2642
|
:id,
|
@@ -2597,7 +2661,7 @@ module Aws::CloudFront
|
|
2597
2661
|
# profile to delete. For example: `E2QWRUHAPOMQZL`.
|
2598
2662
|
# @return [String]
|
2599
2663
|
#
|
2600
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
2664
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/DeleteFieldLevelEncryptionProfileRequest AWS API Documentation
|
2601
2665
|
#
|
2602
2666
|
class DeleteFieldLevelEncryptionProfileRequest < Struct.new(
|
2603
2667
|
:id,
|
@@ -2622,7 +2686,7 @@ module Aws::CloudFront
|
|
2622
2686
|
# public key identity to delete. For example: `E2QWRUHAPOMQZL`.
|
2623
2687
|
# @return [String]
|
2624
2688
|
#
|
2625
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
2689
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/DeletePublicKeyRequest AWS API Documentation
|
2626
2690
|
#
|
2627
2691
|
class DeletePublicKeyRequest < Struct.new(
|
2628
2692
|
:id,
|
@@ -2649,7 +2713,7 @@ module Aws::CloudFront
|
|
2649
2713
|
# the streaming distribution. For example: `E2QWRUHAPOMQZL`.
|
2650
2714
|
# @return [String]
|
2651
2715
|
#
|
2652
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
2716
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/DeleteStreamingDistributionRequest AWS API Documentation
|
2653
2717
|
#
|
2654
2718
|
class DeleteStreamingDistributionRequest < Struct.new(
|
2655
2719
|
:id,
|
@@ -2657,7 +2721,8 @@ module Aws::CloudFront
|
|
2657
2721
|
include Aws::Structure
|
2658
2722
|
end
|
2659
2723
|
|
2660
|
-
#
|
2724
|
+
# A distribution tells CloudFront where you want content to be delivered
|
2725
|
+
# from, and the details about how to track and manage content delivery.
|
2661
2726
|
#
|
2662
2727
|
# @!attribute [rw] id
|
2663
2728
|
# The identifier for the distribution. For example: `EDFDVBD632BHDS5`.
|
@@ -2706,7 +2771,22 @@ module Aws::CloudFront
|
|
2706
2771
|
# ID/config` resource.
|
2707
2772
|
# @return [Types::DistributionConfig]
|
2708
2773
|
#
|
2709
|
-
#
|
2774
|
+
# @!attribute [rw] alias_icp_recordals
|
2775
|
+
# AWS services in China customers must file for an Internet Content
|
2776
|
+
# Provider (ICP) recordal if they want to serve content publicly on an
|
2777
|
+
# alternate domain name, also known as a CNAME, that they've added to
|
2778
|
+
# CloudFront. AliasICPRecordal provides the ICP recordal status for
|
2779
|
+
# CNAMEs associated with distributions.
|
2780
|
+
#
|
2781
|
+
# For more information about ICP recordals, see [ Signup, Accounts,
|
2782
|
+
# and Credentials][1] in *Getting Started with AWS services in China*.
|
2783
|
+
#
|
2784
|
+
#
|
2785
|
+
#
|
2786
|
+
# [1]: https://docs.amazonaws.cn/en_us/aws/latest/userguide/accounts-and-credentials.html
|
2787
|
+
# @return [Array<Types::AliasICPRecordal>]
|
2788
|
+
#
|
2789
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/Distribution AWS API Documentation
|
2710
2790
|
#
|
2711
2791
|
class Distribution < Struct.new(
|
2712
2792
|
:id,
|
@@ -2716,7 +2796,8 @@ module Aws::CloudFront
|
|
2716
2796
|
:in_progress_invalidation_batches,
|
2717
2797
|
:domain_name,
|
2718
2798
|
:active_trusted_signers,
|
2719
|
-
:distribution_config
|
2799
|
+
:distribution_config,
|
2800
|
+
:alias_icp_recordals)
|
2720
2801
|
include Aws::Structure
|
2721
2802
|
end
|
2722
2803
|
|
@@ -2726,7 +2807,7 @@ module Aws::CloudFront
|
|
2726
2807
|
# @!attribute [rw] message
|
2727
2808
|
# @return [String]
|
2728
2809
|
#
|
2729
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
2810
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/DistributionAlreadyExists AWS API Documentation
|
2730
2811
|
#
|
2731
2812
|
class DistributionAlreadyExists < Struct.new(
|
2732
2813
|
:message)
|
@@ -2919,7 +3000,7 @@ module Aws::CloudFront
|
|
2919
3000
|
# },
|
2920
3001
|
# ],
|
2921
3002
|
# },
|
2922
|
-
# comment: "
|
3003
|
+
# comment: "CommentType", # required
|
2923
3004
|
# logging: {
|
2924
3005
|
# enabled: false, # required
|
2925
3006
|
# include_cookies: false, # required
|
@@ -2993,7 +3074,7 @@ module Aws::CloudFront
|
|
2993
3074
|
#
|
2994
3075
|
#
|
2995
3076
|
#
|
2996
|
-
# [1]:
|
3077
|
+
# [1]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/DefaultRootObject.html
|
2997
3078
|
# @return [String]
|
2998
3079
|
#
|
2999
3080
|
# @!attribute [rw] origins
|
@@ -3032,7 +3113,7 @@ module Aws::CloudFront
|
|
3032
3113
|
#
|
3033
3114
|
#
|
3034
3115
|
#
|
3035
|
-
# [1]:
|
3116
|
+
# [1]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/custom-error-pages.html
|
3036
3117
|
# @return [Types::CustomErrorResponses]
|
3037
3118
|
#
|
3038
3119
|
# @!attribute [rw] comment
|
@@ -3057,7 +3138,7 @@ module Aws::CloudFront
|
|
3057
3138
|
#
|
3058
3139
|
#
|
3059
3140
|
#
|
3060
|
-
# [1]:
|
3141
|
+
# [1]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/AccessLogs.html
|
3061
3142
|
# @return [Types::LoggingConfig]
|
3062
3143
|
#
|
3063
3144
|
# @!attribute [rw] price_class
|
@@ -3082,8 +3163,8 @@ module Aws::CloudFront
|
|
3082
3163
|
#
|
3083
3164
|
#
|
3084
3165
|
#
|
3085
|
-
# [1]:
|
3086
|
-
# [2]:
|
3166
|
+
# [1]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/PriceClass.html
|
3167
|
+
# [2]: http://aws.amazon.com/cloudfront/pricing/
|
3087
3168
|
# @return [String]
|
3088
3169
|
#
|
3089
3170
|
# @!attribute [rw] enabled
|
@@ -3092,9 +3173,15 @@ module Aws::CloudFront
|
|
3092
3173
|
# @return [Boolean]
|
3093
3174
|
#
|
3094
3175
|
# @!attribute [rw] viewer_certificate
|
3176
|
+
# A complex type that specifies whether you want viewers to use HTTP
|
3177
|
+
# or HTTPS to request your objects, whether you're using an alternate
|
3178
|
+
# domain name with HTTPS, and if so, if you're using AWS Certificate
|
3179
|
+
# Manager (ACM) or a third-party certificate authority.
|
3095
3180
|
# @return [Types::ViewerCertificate]
|
3096
3181
|
#
|
3097
3182
|
# @!attribute [rw] restrictions
|
3183
|
+
# A complex type that identifies ways in which you want to restrict
|
3184
|
+
# distribution of your content.
|
3098
3185
|
# @return [Types::Restrictions]
|
3099
3186
|
#
|
3100
3187
|
# @!attribute [rw] web_acl_id
|
@@ -3170,11 +3257,11 @@ module Aws::CloudFront
|
|
3170
3257
|
#
|
3171
3258
|
#
|
3172
3259
|
#
|
3173
|
-
# [1]:
|
3174
|
-
# [2]:
|
3260
|
+
# [1]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/private-content-creating-signed-url-custom-policy.html
|
3261
|
+
# [2]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/routing-to-cloudfront-distribution.html
|
3175
3262
|
# @return [Boolean]
|
3176
3263
|
#
|
3177
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
3264
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/DistributionConfig AWS API Documentation
|
3178
3265
|
#
|
3179
3266
|
class DistributionConfig < Struct.new(
|
3180
3267
|
:caller_reference,
|
@@ -3385,7 +3472,7 @@ module Aws::CloudFront
|
|
3385
3472
|
# },
|
3386
3473
|
# ],
|
3387
3474
|
# },
|
3388
|
-
# comment: "
|
3475
|
+
# comment: "CommentType", # required
|
3389
3476
|
# logging: {
|
3390
3477
|
# enabled: false, # required
|
3391
3478
|
# include_cookies: false, # required
|
@@ -3432,7 +3519,7 @@ module Aws::CloudFront
|
|
3432
3519
|
# A complex type that contains zero or more `Tag` elements.
|
3433
3520
|
# @return [Types::Tags]
|
3434
3521
|
#
|
3435
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
3522
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/DistributionConfigWithTags AWS API Documentation
|
3436
3523
|
#
|
3437
3524
|
class DistributionConfigWithTags < Struct.new(
|
3438
3525
|
:distribution_config,
|
@@ -3473,7 +3560,7 @@ module Aws::CloudFront
|
|
3473
3560
|
# each distribution that was created by the current AWS account.
|
3474
3561
|
# @return [Array<Types::DistributionSummary>]
|
3475
3562
|
#
|
3476
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
3563
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/DistributionList AWS API Documentation
|
3477
3564
|
#
|
3478
3565
|
class DistributionList < Struct.new(
|
3479
3566
|
:marker,
|
@@ -3485,10 +3572,13 @@ module Aws::CloudFront
|
|
3485
3572
|
include Aws::Structure
|
3486
3573
|
end
|
3487
3574
|
|
3575
|
+
# The specified CloudFront distribution is not disabled. You must
|
3576
|
+
# disable the distribution before you can delete it.
|
3577
|
+
#
|
3488
3578
|
# @!attribute [rw] message
|
3489
3579
|
# @return [String]
|
3490
3580
|
#
|
3491
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
3581
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/DistributionNotDisabled AWS API Documentation
|
3492
3582
|
#
|
3493
3583
|
class DistributionNotDisabled < Struct.new(
|
3494
3584
|
:message)
|
@@ -3568,9 +3658,15 @@ module Aws::CloudFront
|
|
3568
3658
|
# @return [Boolean]
|
3569
3659
|
#
|
3570
3660
|
# @!attribute [rw] viewer_certificate
|
3661
|
+
# A complex type that specifies whether you want viewers to use HTTP
|
3662
|
+
# or HTTPS to request your objects, whether you're using an alternate
|
3663
|
+
# domain name with HTTPS, and if so, if you're using AWS Certificate
|
3664
|
+
# Manager (ACM) or a third-party certificate authority.
|
3571
3665
|
# @return [Types::ViewerCertificate]
|
3572
3666
|
#
|
3573
3667
|
# @!attribute [rw] restrictions
|
3668
|
+
# A complex type that identifies ways in which you want to restrict
|
3669
|
+
# distribution of your content.
|
3574
3670
|
# @return [Types::Restrictions]
|
3575
3671
|
#
|
3576
3672
|
# @!attribute [rw] web_acl_id
|
@@ -3589,7 +3685,22 @@ module Aws::CloudFront
|
|
3589
3685
|
# address for your distribution.
|
3590
3686
|
# @return [Boolean]
|
3591
3687
|
#
|
3592
|
-
#
|
3688
|
+
# @!attribute [rw] alias_icp_recordals
|
3689
|
+
# AWS services in China customers must file for an Internet Content
|
3690
|
+
# Provider (ICP) recordal if they want to serve content publicly on an
|
3691
|
+
# alternate domain name, also known as a CNAME, that they've added to
|
3692
|
+
# CloudFront. AliasICPRecordal provides the ICP recordal status for
|
3693
|
+
# CNAMEs associated with distributions.
|
3694
|
+
#
|
3695
|
+
# For more information about ICP recordals, see [ Signup, Accounts,
|
3696
|
+
# and Credentials][1] in *Getting Started with AWS services in China*.
|
3697
|
+
#
|
3698
|
+
#
|
3699
|
+
#
|
3700
|
+
# [1]: https://docs.amazonaws.cn/en_us/aws/latest/userguide/accounts-and-credentials.html
|
3701
|
+
# @return [Array<Types::AliasICPRecordal>]
|
3702
|
+
#
|
3703
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/DistributionSummary AWS API Documentation
|
3593
3704
|
#
|
3594
3705
|
class DistributionSummary < Struct.new(
|
3595
3706
|
:id,
|
@@ -3610,7 +3721,8 @@ module Aws::CloudFront
|
|
3610
3721
|
:restrictions,
|
3611
3722
|
:web_acl_id,
|
3612
3723
|
:http_version,
|
3613
|
-
:is_ipv6_enabled
|
3724
|
+
:is_ipv6_enabled,
|
3725
|
+
:alias_icp_recordals)
|
3614
3726
|
include Aws::Structure
|
3615
3727
|
end
|
3616
3728
|
|
@@ -3644,7 +3756,7 @@ module Aws::CloudFront
|
|
3644
3756
|
# type-profile mapping.
|
3645
3757
|
# @return [Array<Types::EncryptionEntity>]
|
3646
3758
|
#
|
3647
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
3759
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/EncryptionEntities AWS API Documentation
|
3648
3760
|
#
|
3649
3761
|
class EncryptionEntities < Struct.new(
|
3650
3762
|
:quantity,
|
@@ -3688,7 +3800,7 @@ module Aws::CloudFront
|
|
3688
3800
|
# case-sensitive.
|
3689
3801
|
# @return [Types::FieldPatterns]
|
3690
3802
|
#
|
3691
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
3803
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/EncryptionEntity AWS API Documentation
|
3692
3804
|
#
|
3693
3805
|
class EncryptionEntity < Struct.new(
|
3694
3806
|
:public_key_id,
|
@@ -3715,7 +3827,7 @@ module Aws::CloudFront
|
|
3715
3827
|
# specified for field-level encryption.
|
3716
3828
|
# @return [Types::FieldLevelEncryptionConfig]
|
3717
3829
|
#
|
3718
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
3830
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/FieldLevelEncryption AWS API Documentation
|
3719
3831
|
#
|
3720
3832
|
class FieldLevelEncryption < Struct.new(
|
3721
3833
|
:id,
|
@@ -3780,7 +3892,7 @@ module Aws::CloudFront
|
|
3780
3892
|
# a request if a query argument doesn't specify a profile to use.
|
3781
3893
|
# @return [Types::ContentTypeProfileConfig]
|
3782
3894
|
#
|
3783
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
3895
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/FieldLevelEncryptionConfig AWS API Documentation
|
3784
3896
|
#
|
3785
3897
|
class FieldLevelEncryptionConfig < Struct.new(
|
3786
3898
|
:caller_reference,
|
@@ -3795,7 +3907,7 @@ module Aws::CloudFront
|
|
3795
3907
|
# @!attribute [rw] message
|
3796
3908
|
# @return [String]
|
3797
3909
|
#
|
3798
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
3910
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/FieldLevelEncryptionConfigAlreadyExists AWS API Documentation
|
3799
3911
|
#
|
3800
3912
|
class FieldLevelEncryptionConfigAlreadyExists < Struct.new(
|
3801
3913
|
:message)
|
@@ -3807,7 +3919,7 @@ module Aws::CloudFront
|
|
3807
3919
|
# @!attribute [rw] message
|
3808
3920
|
# @return [String]
|
3809
3921
|
#
|
3810
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
3922
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/FieldLevelEncryptionConfigInUse AWS API Documentation
|
3811
3923
|
#
|
3812
3924
|
class FieldLevelEncryptionConfigInUse < Struct.new(
|
3813
3925
|
:message)
|
@@ -3835,7 +3947,7 @@ module Aws::CloudFront
|
|
3835
3947
|
# An array of field-level encryption items.
|
3836
3948
|
# @return [Array<Types::FieldLevelEncryptionSummary>]
|
3837
3949
|
#
|
3838
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
3950
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/FieldLevelEncryptionList AWS API Documentation
|
3839
3951
|
#
|
3840
3952
|
class FieldLevelEncryptionList < Struct.new(
|
3841
3953
|
:next_marker,
|
@@ -3862,7 +3974,7 @@ module Aws::CloudFront
|
|
3862
3974
|
# encryption entities for the field-level encryption profile.
|
3863
3975
|
# @return [Types::FieldLevelEncryptionProfileConfig]
|
3864
3976
|
#
|
3865
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
3977
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/FieldLevelEncryptionProfile AWS API Documentation
|
3866
3978
|
#
|
3867
3979
|
class FieldLevelEncryptionProfile < Struct.new(
|
3868
3980
|
:id,
|
@@ -3876,7 +3988,7 @@ module Aws::CloudFront
|
|
3876
3988
|
# @!attribute [rw] message
|
3877
3989
|
# @return [String]
|
3878
3990
|
#
|
3879
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
3991
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/FieldLevelEncryptionProfileAlreadyExists AWS API Documentation
|
3880
3992
|
#
|
3881
3993
|
class FieldLevelEncryptionProfileAlreadyExists < Struct.new(
|
3882
3994
|
:message)
|
@@ -3925,7 +4037,7 @@ module Aws::CloudFront
|
|
3925
4037
|
# field patterns for specifying which fields to encrypt with this key.
|
3926
4038
|
# @return [Types::EncryptionEntities]
|
3927
4039
|
#
|
3928
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
4040
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/FieldLevelEncryptionProfileConfig AWS API Documentation
|
3929
4041
|
#
|
3930
4042
|
class FieldLevelEncryptionProfileConfig < Struct.new(
|
3931
4043
|
:name,
|
@@ -3940,7 +4052,7 @@ module Aws::CloudFront
|
|
3940
4052
|
# @!attribute [rw] message
|
3941
4053
|
# @return [String]
|
3942
4054
|
#
|
3943
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
4055
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/FieldLevelEncryptionProfileInUse AWS API Documentation
|
3944
4056
|
#
|
3945
4057
|
class FieldLevelEncryptionProfileInUse < Struct.new(
|
3946
4058
|
:message)
|
@@ -3968,7 +4080,7 @@ module Aws::CloudFront
|
|
3968
4080
|
# The field-level encryption profile items.
|
3969
4081
|
# @return [Array<Types::FieldLevelEncryptionProfileSummary>]
|
3970
4082
|
#
|
3971
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
4083
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/FieldLevelEncryptionProfileList AWS API Documentation
|
3972
4084
|
#
|
3973
4085
|
class FieldLevelEncryptionProfileList < Struct.new(
|
3974
4086
|
:next_marker,
|
@@ -3983,7 +4095,7 @@ module Aws::CloudFront
|
|
3983
4095
|
# @!attribute [rw] message
|
3984
4096
|
# @return [String]
|
3985
4097
|
#
|
3986
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
4098
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/FieldLevelEncryptionProfileSizeExceeded AWS API Documentation
|
3987
4099
|
#
|
3988
4100
|
class FieldLevelEncryptionProfileSizeExceeded < Struct.new(
|
3989
4101
|
:message)
|
@@ -4015,7 +4127,7 @@ module Aws::CloudFront
|
|
4015
4127
|
# An optional comment for the field-level encryption profile summary.
|
4016
4128
|
# @return [String]
|
4017
4129
|
#
|
4018
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
4130
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/FieldLevelEncryptionProfileSummary AWS API Documentation
|
4019
4131
|
#
|
4020
4132
|
class FieldLevelEncryptionProfileSummary < Struct.new(
|
4021
4133
|
:id,
|
@@ -4049,7 +4161,7 @@ module Aws::CloudFront
|
|
4049
4161
|
# A summary of a content type-profile mapping.
|
4050
4162
|
# @return [Types::ContentTypeProfileConfig]
|
4051
4163
|
#
|
4052
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
4164
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/FieldLevelEncryptionSummary AWS API Documentation
|
4053
4165
|
#
|
4054
4166
|
class FieldLevelEncryptionSummary < Struct.new(
|
4055
4167
|
:id,
|
@@ -4079,7 +4191,7 @@ module Aws::CloudFront
|
|
4079
4191
|
# An array of the field-level encryption field patterns.
|
4080
4192
|
# @return [Array<String>]
|
4081
4193
|
#
|
4082
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
4194
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/FieldPatterns AWS API Documentation
|
4083
4195
|
#
|
4084
4196
|
class FieldPatterns < Struct.new(
|
4085
4197
|
:quantity,
|
@@ -4141,7 +4253,7 @@ module Aws::CloudFront
|
|
4141
4253
|
#
|
4142
4254
|
#
|
4143
4255
|
#
|
4144
|
-
# [1]:
|
4256
|
+
# [1]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/QueryStringParameters.html
|
4145
4257
|
# @return [Boolean]
|
4146
4258
|
#
|
4147
4259
|
# @!attribute [rw] cookies
|
@@ -4153,12 +4265,22 @@ module Aws::CloudFront
|
|
4153
4265
|
#
|
4154
4266
|
#
|
4155
4267
|
#
|
4156
|
-
# [1]:
|
4268
|
+
# [1]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/Cookies.html
|
4157
4269
|
# @return [Types::CookiePreference]
|
4158
4270
|
#
|
4159
4271
|
# @!attribute [rw] headers
|
4160
4272
|
# A complex type that specifies the `Headers`, if any, that you want
|
4161
|
-
# CloudFront to
|
4273
|
+
# CloudFront to forward to the origin for this cache behavior
|
4274
|
+
# (whitelisted headers). For the headers that you specify, CloudFront
|
4275
|
+
# also caches separate versions of a specified object that is based on
|
4276
|
+
# the header values in viewer requests.
|
4277
|
+
#
|
4278
|
+
# For more information, see [ Caching Content Based on Request
|
4279
|
+
# Headers][1] in the *Amazon CloudFront Developer Guide*.
|
4280
|
+
#
|
4281
|
+
#
|
4282
|
+
#
|
4283
|
+
# [1]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/header-caching.html
|
4162
4284
|
# @return [Types::Headers]
|
4163
4285
|
#
|
4164
4286
|
# @!attribute [rw] query_string_cache_keys
|
@@ -4167,7 +4289,7 @@ module Aws::CloudFront
|
|
4167
4289
|
# cache behavior.
|
4168
4290
|
# @return [Types::QueryStringCacheKeys]
|
4169
4291
|
#
|
4170
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
4292
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/ForwardedValues AWS API Documentation
|
4171
4293
|
#
|
4172
4294
|
class ForwardedValues < Struct.new(
|
4173
4295
|
:query_string,
|
@@ -4226,7 +4348,7 @@ module Aws::CloudFront
|
|
4226
4348
|
# the CloudFront console, which includes both country names and codes.
|
4227
4349
|
# @return [Array<String>]
|
4228
4350
|
#
|
4229
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
4351
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/GeoRestriction AWS API Documentation
|
4230
4352
|
#
|
4231
4353
|
class GeoRestriction < Struct.new(
|
4232
4354
|
:restriction_type,
|
@@ -4236,7 +4358,11 @@ module Aws::CloudFront
|
|
4236
4358
|
end
|
4237
4359
|
|
4238
4360
|
# The origin access identity's configuration information. For more
|
4239
|
-
# information, see
|
4361
|
+
# information, see [CloudFrontOriginAccessIdentityConfig][1].
|
4362
|
+
#
|
4363
|
+
#
|
4364
|
+
#
|
4365
|
+
# [1]: https://docs.aws.amazon.com/cloudfront/latest/APIReference/API_CloudFrontOriginAccessIdentityConfig.html
|
4240
4366
|
#
|
4241
4367
|
# @note When making an API call, you may pass GetCloudFrontOriginAccessIdentityConfigRequest
|
4242
4368
|
# data as a hash:
|
@@ -4249,7 +4375,7 @@ module Aws::CloudFront
|
|
4249
4375
|
# The identity's ID.
|
4250
4376
|
# @return [String]
|
4251
4377
|
#
|
4252
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
4378
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/GetCloudFrontOriginAccessIdentityConfigRequest AWS API Documentation
|
4253
4379
|
#
|
4254
4380
|
class GetCloudFrontOriginAccessIdentityConfigRequest < Struct.new(
|
4255
4381
|
:id)
|
@@ -4267,7 +4393,7 @@ module Aws::CloudFront
|
|
4267
4393
|
# `E2QWRUHAPOMQZL`.
|
4268
4394
|
# @return [String]
|
4269
4395
|
#
|
4270
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
4396
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/GetCloudFrontOriginAccessIdentityConfigResult AWS API Documentation
|
4271
4397
|
#
|
4272
4398
|
class GetCloudFrontOriginAccessIdentityConfigResult < Struct.new(
|
4273
4399
|
:cloud_front_origin_access_identity_config,
|
@@ -4288,7 +4414,7 @@ module Aws::CloudFront
|
|
4288
4414
|
# The identity's ID.
|
4289
4415
|
# @return [String]
|
4290
4416
|
#
|
4291
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
4417
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/GetCloudFrontOriginAccessIdentityRequest AWS API Documentation
|
4292
4418
|
#
|
4293
4419
|
class GetCloudFrontOriginAccessIdentityRequest < Struct.new(
|
4294
4420
|
:id)
|
@@ -4306,7 +4432,7 @@ module Aws::CloudFront
|
|
4306
4432
|
# For example: `E2QWRUHAPOMQZL`.
|
4307
4433
|
# @return [String]
|
4308
4434
|
#
|
4309
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
4435
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/GetCloudFrontOriginAccessIdentityResult AWS API Documentation
|
4310
4436
|
#
|
4311
4437
|
class GetCloudFrontOriginAccessIdentityResult < Struct.new(
|
4312
4438
|
:cloud_front_origin_access_identity,
|
@@ -4324,10 +4450,11 @@ module Aws::CloudFront
|
|
4324
4450
|
# }
|
4325
4451
|
#
|
4326
4452
|
# @!attribute [rw] id
|
4327
|
-
# The distribution's ID.
|
4453
|
+
# The distribution's ID. If the ID is empty, an empty distribution
|
4454
|
+
# configuration is returned.
|
4328
4455
|
# @return [String]
|
4329
4456
|
#
|
4330
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
4457
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/GetDistributionConfigRequest AWS API Documentation
|
4331
4458
|
#
|
4332
4459
|
class GetDistributionConfigRequest < Struct.new(
|
4333
4460
|
:id)
|
@@ -4345,7 +4472,7 @@ module Aws::CloudFront
|
|
4345
4472
|
# `E2QWRUHAPOMQZL`.
|
4346
4473
|
# @return [String]
|
4347
4474
|
#
|
4348
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
4475
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/GetDistributionConfigResult AWS API Documentation
|
4349
4476
|
#
|
4350
4477
|
class GetDistributionConfigResult < Struct.new(
|
4351
4478
|
:distribution_config,
|
@@ -4363,10 +4490,11 @@ module Aws::CloudFront
|
|
4363
4490
|
# }
|
4364
4491
|
#
|
4365
4492
|
# @!attribute [rw] id
|
4366
|
-
# The distribution's ID.
|
4493
|
+
# The distribution's ID. If the ID is empty, an empty distribution
|
4494
|
+
# configuration is returned.
|
4367
4495
|
# @return [String]
|
4368
4496
|
#
|
4369
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
4497
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/GetDistributionRequest AWS API Documentation
|
4370
4498
|
#
|
4371
4499
|
class GetDistributionRequest < Struct.new(
|
4372
4500
|
:id)
|
@@ -4384,7 +4512,7 @@ module Aws::CloudFront
|
|
4384
4512
|
# `E2QWRUHAPOMQZL`.
|
4385
4513
|
# @return [String]
|
4386
4514
|
#
|
4387
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
4515
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/GetDistributionResult AWS API Documentation
|
4388
4516
|
#
|
4389
4517
|
class GetDistributionResult < Struct.new(
|
4390
4518
|
:distribution,
|
@@ -4404,7 +4532,7 @@ module Aws::CloudFront
|
|
4404
4532
|
# information.
|
4405
4533
|
# @return [String]
|
4406
4534
|
#
|
4407
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
4535
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/GetFieldLevelEncryptionConfigRequest AWS API Documentation
|
4408
4536
|
#
|
4409
4537
|
class GetFieldLevelEncryptionConfigRequest < Struct.new(
|
4410
4538
|
:id)
|
@@ -4420,7 +4548,7 @@ module Aws::CloudFront
|
|
4420
4548
|
# example: `E2QWRUHAPOMQZL`.
|
4421
4549
|
# @return [String]
|
4422
4550
|
#
|
4423
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
4551
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/GetFieldLevelEncryptionConfigResult AWS API Documentation
|
4424
4552
|
#
|
4425
4553
|
class GetFieldLevelEncryptionConfigResult < Struct.new(
|
4426
4554
|
:field_level_encryption_config,
|
@@ -4440,7 +4568,7 @@ module Aws::CloudFront
|
|
4440
4568
|
# information.
|
4441
4569
|
# @return [String]
|
4442
4570
|
#
|
4443
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
4571
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/GetFieldLevelEncryptionProfileConfigRequest AWS API Documentation
|
4444
4572
|
#
|
4445
4573
|
class GetFieldLevelEncryptionProfileConfigRequest < Struct.new(
|
4446
4574
|
:id)
|
@@ -4456,7 +4584,7 @@ module Aws::CloudFront
|
|
4456
4584
|
# configuration result. For example: `E2QWRUHAPOMQZL`.
|
4457
4585
|
# @return [String]
|
4458
4586
|
#
|
4459
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
4587
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/GetFieldLevelEncryptionProfileConfigResult AWS API Documentation
|
4460
4588
|
#
|
4461
4589
|
class GetFieldLevelEncryptionProfileConfigResult < Struct.new(
|
4462
4590
|
:field_level_encryption_profile_config,
|
@@ -4475,7 +4603,7 @@ module Aws::CloudFront
|
|
4475
4603
|
# Get the ID for the field-level encryption profile information.
|
4476
4604
|
# @return [String]
|
4477
4605
|
#
|
4478
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
4606
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/GetFieldLevelEncryptionProfileRequest AWS API Documentation
|
4479
4607
|
#
|
4480
4608
|
class GetFieldLevelEncryptionProfileRequest < Struct.new(
|
4481
4609
|
:id)
|
@@ -4491,7 +4619,7 @@ module Aws::CloudFront
|
|
4491
4619
|
# example: `E2QWRUHAPOMQZL`.
|
4492
4620
|
# @return [String]
|
4493
4621
|
#
|
4494
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
4622
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/GetFieldLevelEncryptionProfileResult AWS API Documentation
|
4495
4623
|
#
|
4496
4624
|
class GetFieldLevelEncryptionProfileResult < Struct.new(
|
4497
4625
|
:field_level_encryption_profile,
|
@@ -4511,7 +4639,7 @@ module Aws::CloudFront
|
|
4511
4639
|
# information.
|
4512
4640
|
# @return [String]
|
4513
4641
|
#
|
4514
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
4642
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/GetFieldLevelEncryptionRequest AWS API Documentation
|
4515
4643
|
#
|
4516
4644
|
class GetFieldLevelEncryptionRequest < Struct.new(
|
4517
4645
|
:id)
|
@@ -4527,7 +4655,7 @@ module Aws::CloudFront
|
|
4527
4655
|
# example: `E2QWRUHAPOMQZL`.
|
4528
4656
|
# @return [String]
|
4529
4657
|
#
|
4530
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
4658
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/GetFieldLevelEncryptionResult AWS API Documentation
|
4531
4659
|
#
|
4532
4660
|
class GetFieldLevelEncryptionResult < Struct.new(
|
4533
4661
|
:field_level_encryption,
|
@@ -4554,7 +4682,7 @@ module Aws::CloudFront
|
|
4554
4682
|
# `IDFDVBD632BHDS5`.
|
4555
4683
|
# @return [String]
|
4556
4684
|
#
|
4557
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
4685
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/GetInvalidationRequest AWS API Documentation
|
4558
4686
|
#
|
4559
4687
|
class GetInvalidationRequest < Struct.new(
|
4560
4688
|
:distribution_id,
|
@@ -4570,10 +4698,10 @@ module Aws::CloudFront
|
|
4570
4698
|
#
|
4571
4699
|
#
|
4572
4700
|
#
|
4573
|
-
# [1]:
|
4701
|
+
# [1]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/InvalidationDatatype.html
|
4574
4702
|
# @return [Types::Invalidation]
|
4575
4703
|
#
|
4576
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
4704
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/GetInvalidationResult AWS API Documentation
|
4577
4705
|
#
|
4578
4706
|
class GetInvalidationResult < Struct.new(
|
4579
4707
|
:invalidation)
|
@@ -4591,7 +4719,7 @@ module Aws::CloudFront
|
|
4591
4719
|
# Request the ID for the public key configuration.
|
4592
4720
|
# @return [String]
|
4593
4721
|
#
|
4594
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
4722
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/GetPublicKeyConfigRequest AWS API Documentation
|
4595
4723
|
#
|
4596
4724
|
class GetPublicKeyConfigRequest < Struct.new(
|
4597
4725
|
:id)
|
@@ -4607,7 +4735,7 @@ module Aws::CloudFront
|
|
4607
4735
|
# `E2QWRUHAPOMQZL`.
|
4608
4736
|
# @return [String]
|
4609
4737
|
#
|
4610
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
4738
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/GetPublicKeyConfigResult AWS API Documentation
|
4611
4739
|
#
|
4612
4740
|
class GetPublicKeyConfigResult < Struct.new(
|
4613
4741
|
:public_key_config,
|
@@ -4626,7 +4754,7 @@ module Aws::CloudFront
|
|
4626
4754
|
# Request the ID for the public key.
|
4627
4755
|
# @return [String]
|
4628
4756
|
#
|
4629
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
4757
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/GetPublicKeyRequest AWS API Documentation
|
4630
4758
|
#
|
4631
4759
|
class GetPublicKeyRequest < Struct.new(
|
4632
4760
|
:id)
|
@@ -4642,7 +4770,7 @@ module Aws::CloudFront
|
|
4642
4770
|
# `E2QWRUHAPOMQZL`.
|
4643
4771
|
# @return [String]
|
4644
4772
|
#
|
4645
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
4773
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/GetPublicKeyResult AWS API Documentation
|
4646
4774
|
#
|
4647
4775
|
class GetPublicKeyResult < Struct.new(
|
4648
4776
|
:public_key,
|
@@ -4663,7 +4791,7 @@ module Aws::CloudFront
|
|
4663
4791
|
# The streaming distribution's ID.
|
4664
4792
|
# @return [String]
|
4665
4793
|
#
|
4666
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
4794
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/GetStreamingDistributionConfigRequest AWS API Documentation
|
4667
4795
|
#
|
4668
4796
|
class GetStreamingDistributionConfigRequest < Struct.new(
|
4669
4797
|
:id)
|
@@ -4681,7 +4809,7 @@ module Aws::CloudFront
|
|
4681
4809
|
# `E2QWRUHAPOMQZL`.
|
4682
4810
|
# @return [String]
|
4683
4811
|
#
|
4684
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
4812
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/GetStreamingDistributionConfigResult AWS API Documentation
|
4685
4813
|
#
|
4686
4814
|
class GetStreamingDistributionConfigResult < Struct.new(
|
4687
4815
|
:streaming_distribution_config,
|
@@ -4702,7 +4830,7 @@ module Aws::CloudFront
|
|
4702
4830
|
# The streaming distribution's ID.
|
4703
4831
|
# @return [String]
|
4704
4832
|
#
|
4705
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
4833
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/GetStreamingDistributionRequest AWS API Documentation
|
4706
4834
|
#
|
4707
4835
|
class GetStreamingDistributionRequest < Struct.new(
|
4708
4836
|
:id)
|
@@ -4720,7 +4848,7 @@ module Aws::CloudFront
|
|
4720
4848
|
# For example: `E2QWRUHAPOMQZL`.
|
4721
4849
|
# @return [String]
|
4722
4850
|
#
|
4723
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
4851
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/GetStreamingDistributionResult AWS API Documentation
|
4724
4852
|
#
|
4725
4853
|
class GetStreamingDistributionResult < Struct.new(
|
4726
4854
|
:streaming_distribution,
|
@@ -4744,7 +4872,7 @@ module Aws::CloudFront
|
|
4744
4872
|
#
|
4745
4873
|
#
|
4746
4874
|
#
|
4747
|
-
# [1]:
|
4875
|
+
# [1]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/header-caching.html
|
4748
4876
|
#
|
4749
4877
|
# @note When making an API call, you may pass Headers
|
4750
4878
|
# data as a hash:
|
@@ -4787,8 +4915,8 @@ module Aws::CloudFront
|
|
4787
4915
|
#
|
4788
4916
|
#
|
4789
4917
|
#
|
4790
|
-
# [1]:
|
4791
|
-
# [2]:
|
4918
|
+
# [1]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/RequestAndResponseBehaviorS3Origin.html#request-s3-removed-headers
|
4919
|
+
# [2]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/RequestAndResponseBehaviorCustomOrigin.html#request-custom-headers-behavior
|
4792
4920
|
# @return [Integer]
|
4793
4921
|
#
|
4794
4922
|
# @!attribute [rw] items
|
@@ -4797,7 +4925,7 @@ module Aws::CloudFront
|
|
4797
4925
|
# `Quantity` is `0`, omit `Items`.
|
4798
4926
|
# @return [Array<String>]
|
4799
4927
|
#
|
4800
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
4928
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/Headers AWS API Documentation
|
4801
4929
|
#
|
4802
4930
|
class Headers < Struct.new(
|
4803
4931
|
:quantity,
|
@@ -4811,7 +4939,7 @@ module Aws::CloudFront
|
|
4811
4939
|
# @!attribute [rw] message
|
4812
4940
|
# @return [String]
|
4813
4941
|
#
|
4814
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
4942
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/IllegalFieldLevelEncryptionConfigAssociationWithCacheBehavior AWS API Documentation
|
4815
4943
|
#
|
4816
4944
|
class IllegalFieldLevelEncryptionConfigAssociationWithCacheBehavior < Struct.new(
|
4817
4945
|
:message)
|
@@ -4823,7 +4951,7 @@ module Aws::CloudFront
|
|
4823
4951
|
# @!attribute [rw] message
|
4824
4952
|
# @return [String]
|
4825
4953
|
#
|
4826
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
4954
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/IllegalUpdate AWS API Documentation
|
4827
4955
|
#
|
4828
4956
|
class IllegalUpdate < Struct.new(
|
4829
4957
|
:message)
|
@@ -4835,7 +4963,7 @@ module Aws::CloudFront
|
|
4835
4963
|
# @!attribute [rw] message
|
4836
4964
|
# @return [String]
|
4837
4965
|
#
|
4838
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
4966
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/InconsistentQuantities AWS API Documentation
|
4839
4967
|
#
|
4840
4968
|
class InconsistentQuantities < Struct.new(
|
4841
4969
|
:message)
|
@@ -4847,7 +4975,7 @@ module Aws::CloudFront
|
|
4847
4975
|
# @!attribute [rw] message
|
4848
4976
|
# @return [String]
|
4849
4977
|
#
|
4850
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
4978
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/InvalidArgument AWS API Documentation
|
4851
4979
|
#
|
4852
4980
|
class InvalidArgument < Struct.new(
|
4853
4981
|
:message)
|
@@ -4860,17 +4988,19 @@ module Aws::CloudFront
|
|
4860
4988
|
# @!attribute [rw] message
|
4861
4989
|
# @return [String]
|
4862
4990
|
#
|
4863
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
4991
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/InvalidDefaultRootObject AWS API Documentation
|
4864
4992
|
#
|
4865
4993
|
class InvalidDefaultRootObject < Struct.new(
|
4866
4994
|
:message)
|
4867
4995
|
include Aws::Structure
|
4868
4996
|
end
|
4869
4997
|
|
4998
|
+
# An invalid error code was specified.
|
4999
|
+
#
|
4870
5000
|
# @!attribute [rw] message
|
4871
5001
|
# @return [String]
|
4872
5002
|
#
|
4873
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
5003
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/InvalidErrorCode AWS API Documentation
|
4874
5004
|
#
|
4875
5005
|
class InvalidErrorCode < Struct.new(
|
4876
5006
|
:message)
|
@@ -4885,27 +5015,31 @@ module Aws::CloudFront
|
|
4885
5015
|
# @!attribute [rw] message
|
4886
5016
|
# @return [String]
|
4887
5017
|
#
|
4888
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
5018
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/InvalidForwardCookies AWS API Documentation
|
4889
5019
|
#
|
4890
5020
|
class InvalidForwardCookies < Struct.new(
|
4891
5021
|
:message)
|
4892
5022
|
include Aws::Structure
|
4893
5023
|
end
|
4894
5024
|
|
5025
|
+
# The specified geo restriction parameter is not valid.
|
5026
|
+
#
|
4895
5027
|
# @!attribute [rw] message
|
4896
5028
|
# @return [String]
|
4897
5029
|
#
|
4898
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
5030
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/InvalidGeoRestrictionParameter AWS API Documentation
|
4899
5031
|
#
|
4900
5032
|
class InvalidGeoRestrictionParameter < Struct.new(
|
4901
5033
|
:message)
|
4902
5034
|
include Aws::Structure
|
4903
5035
|
end
|
4904
5036
|
|
5037
|
+
# The headers specified are not valid for an Amazon S3 origin.
|
5038
|
+
#
|
4905
5039
|
# @!attribute [rw] message
|
4906
5040
|
# @return [String]
|
4907
5041
|
#
|
4908
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
5042
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/InvalidHeadersForS3Origin AWS API Documentation
|
4909
5043
|
#
|
4910
5044
|
class InvalidHeadersForS3Origin < Struct.new(
|
4911
5045
|
:message)
|
@@ -4917,7 +5051,7 @@ module Aws::CloudFront
|
|
4917
5051
|
# @!attribute [rw] message
|
4918
5052
|
# @return [String]
|
4919
5053
|
#
|
4920
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
5054
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/InvalidIfMatchVersion AWS API Documentation
|
4921
5055
|
#
|
4922
5056
|
class InvalidIfMatchVersion < Struct.new(
|
4923
5057
|
:message)
|
@@ -4929,27 +5063,31 @@ module Aws::CloudFront
|
|
4929
5063
|
# @!attribute [rw] message
|
4930
5064
|
# @return [String]
|
4931
5065
|
#
|
4932
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
5066
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/InvalidLambdaFunctionAssociation AWS API Documentation
|
4933
5067
|
#
|
4934
5068
|
class InvalidLambdaFunctionAssociation < Struct.new(
|
4935
5069
|
:message)
|
4936
5070
|
include Aws::Structure
|
4937
5071
|
end
|
4938
5072
|
|
5073
|
+
# The location code specified is not valid.
|
5074
|
+
#
|
4939
5075
|
# @!attribute [rw] message
|
4940
5076
|
# @return [String]
|
4941
5077
|
#
|
4942
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
5078
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/InvalidLocationCode AWS API Documentation
|
4943
5079
|
#
|
4944
5080
|
class InvalidLocationCode < Struct.new(
|
4945
5081
|
:message)
|
4946
5082
|
include Aws::Structure
|
4947
5083
|
end
|
4948
5084
|
|
5085
|
+
# The minimum protocol version specified is not valid.
|
5086
|
+
#
|
4949
5087
|
# @!attribute [rw] message
|
4950
5088
|
# @return [String]
|
4951
5089
|
#
|
4952
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
5090
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/InvalidMinimumProtocolVersion AWS API Documentation
|
4953
5091
|
#
|
4954
5092
|
class InvalidMinimumProtocolVersion < Struct.new(
|
4955
5093
|
:message)
|
@@ -4962,7 +5100,7 @@ module Aws::CloudFront
|
|
4962
5100
|
# @!attribute [rw] message
|
4963
5101
|
# @return [String]
|
4964
5102
|
#
|
4965
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
5103
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/InvalidOrigin AWS API Documentation
|
4966
5104
|
#
|
4967
5105
|
class InvalidOrigin < Struct.new(
|
4968
5106
|
:message)
|
@@ -4974,27 +5112,31 @@ module Aws::CloudFront
|
|
4974
5112
|
# @!attribute [rw] message
|
4975
5113
|
# @return [String]
|
4976
5114
|
#
|
4977
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
5115
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/InvalidOriginAccessIdentity AWS API Documentation
|
4978
5116
|
#
|
4979
5117
|
class InvalidOriginAccessIdentity < Struct.new(
|
4980
5118
|
:message)
|
4981
5119
|
include Aws::Structure
|
4982
5120
|
end
|
4983
5121
|
|
5122
|
+
# The keep alive timeout specified for the origin is not valid.
|
5123
|
+
#
|
4984
5124
|
# @!attribute [rw] message
|
4985
5125
|
# @return [String]
|
4986
5126
|
#
|
4987
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
5127
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/InvalidOriginKeepaliveTimeout AWS API Documentation
|
4988
5128
|
#
|
4989
5129
|
class InvalidOriginKeepaliveTimeout < Struct.new(
|
4990
5130
|
:message)
|
4991
5131
|
include Aws::Structure
|
4992
5132
|
end
|
4993
5133
|
|
5134
|
+
# The read timeout specified for the origin is not valid.
|
5135
|
+
#
|
4994
5136
|
# @!attribute [rw] message
|
4995
5137
|
# @return [String]
|
4996
5138
|
#
|
4997
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
5139
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/InvalidOriginReadTimeout AWS API Documentation
|
4998
5140
|
#
|
4999
5141
|
class InvalidOriginReadTimeout < Struct.new(
|
5000
5142
|
:message)
|
@@ -5008,17 +5150,19 @@ module Aws::CloudFront
|
|
5008
5150
|
# @!attribute [rw] message
|
5009
5151
|
# @return [String]
|
5010
5152
|
#
|
5011
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
5153
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/InvalidProtocolSettings AWS API Documentation
|
5012
5154
|
#
|
5013
5155
|
class InvalidProtocolSettings < Struct.new(
|
5014
5156
|
:message)
|
5015
5157
|
include Aws::Structure
|
5016
5158
|
end
|
5017
5159
|
|
5160
|
+
# Query string parameters specified in the response body are not valid.
|
5161
|
+
#
|
5018
5162
|
# @!attribute [rw] message
|
5019
5163
|
# @return [String]
|
5020
5164
|
#
|
5021
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
5165
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/InvalidQueryStringParameters AWS API Documentation
|
5022
5166
|
#
|
5023
5167
|
class InvalidQueryStringParameters < Struct.new(
|
5024
5168
|
:message)
|
@@ -5031,7 +5175,7 @@ module Aws::CloudFront
|
|
5031
5175
|
# @!attribute [rw] message
|
5032
5176
|
# @return [String]
|
5033
5177
|
#
|
5034
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
5178
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/InvalidRelativePath AWS API Documentation
|
5035
5179
|
#
|
5036
5180
|
class InvalidRelativePath < Struct.new(
|
5037
5181
|
:message)
|
@@ -5045,57 +5189,67 @@ module Aws::CloudFront
|
|
5045
5189
|
# @!attribute [rw] message
|
5046
5190
|
# @return [String]
|
5047
5191
|
#
|
5048
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
5192
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/InvalidRequiredProtocol AWS API Documentation
|
5049
5193
|
#
|
5050
5194
|
class InvalidRequiredProtocol < Struct.new(
|
5051
5195
|
:message)
|
5052
5196
|
include Aws::Structure
|
5053
5197
|
end
|
5054
5198
|
|
5199
|
+
# A response code specified in the response body is not valid.
|
5200
|
+
#
|
5055
5201
|
# @!attribute [rw] message
|
5056
5202
|
# @return [String]
|
5057
5203
|
#
|
5058
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
5204
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/InvalidResponseCode AWS API Documentation
|
5059
5205
|
#
|
5060
5206
|
class InvalidResponseCode < Struct.new(
|
5061
5207
|
:message)
|
5062
5208
|
include Aws::Structure
|
5063
5209
|
end
|
5064
5210
|
|
5211
|
+
# TTL order specified in the response body is not valid.
|
5212
|
+
#
|
5065
5213
|
# @!attribute [rw] message
|
5066
5214
|
# @return [String]
|
5067
5215
|
#
|
5068
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
5216
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/InvalidTTLOrder AWS API Documentation
|
5069
5217
|
#
|
5070
5218
|
class InvalidTTLOrder < Struct.new(
|
5071
5219
|
:message)
|
5072
5220
|
include Aws::Structure
|
5073
5221
|
end
|
5074
5222
|
|
5223
|
+
# Tagging specified in the response body is not valid.
|
5224
|
+
#
|
5075
5225
|
# @!attribute [rw] message
|
5076
5226
|
# @return [String]
|
5077
5227
|
#
|
5078
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
5228
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/InvalidTagging AWS API Documentation
|
5079
5229
|
#
|
5080
5230
|
class InvalidTagging < Struct.new(
|
5081
5231
|
:message)
|
5082
5232
|
include Aws::Structure
|
5083
5233
|
end
|
5084
5234
|
|
5235
|
+
# A viewer certificate specified in the response body is not valid.
|
5236
|
+
#
|
5085
5237
|
# @!attribute [rw] message
|
5086
5238
|
# @return [String]
|
5087
5239
|
#
|
5088
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
5240
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/InvalidViewerCertificate AWS API Documentation
|
5089
5241
|
#
|
5090
5242
|
class InvalidViewerCertificate < Struct.new(
|
5091
5243
|
:message)
|
5092
5244
|
include Aws::Structure
|
5093
5245
|
end
|
5094
5246
|
|
5247
|
+
# A web ACL id specified in the response body is not valid.
|
5248
|
+
#
|
5095
5249
|
# @!attribute [rw] message
|
5096
5250
|
# @return [String]
|
5097
5251
|
#
|
5098
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
5252
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/InvalidWebACLId AWS API Documentation
|
5099
5253
|
#
|
5100
5254
|
class InvalidWebACLId < Struct.new(
|
5101
5255
|
:message)
|
@@ -5122,7 +5276,7 @@ module Aws::CloudFront
|
|
5122
5276
|
# The current invalidation information for the batch request.
|
5123
5277
|
# @return [Types::InvalidationBatch]
|
5124
5278
|
#
|
5125
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
5279
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/Invalidation AWS API Documentation
|
5126
5280
|
#
|
5127
5281
|
class Invalidation < Struct.new(
|
5128
5282
|
:id,
|
@@ -5153,7 +5307,7 @@ module Aws::CloudFront
|
|
5153
5307
|
#
|
5154
5308
|
#
|
5155
5309
|
#
|
5156
|
-
# [1]:
|
5310
|
+
# [1]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/Invalidation.html#invalidation-specifying-objects
|
5157
5311
|
# @return [Types::Paths]
|
5158
5312
|
#
|
5159
5313
|
# @!attribute [rw] caller_reference
|
@@ -5177,7 +5331,7 @@ module Aws::CloudFront
|
|
5177
5331
|
# `InvalidationBatchAlreadyExists` error.
|
5178
5332
|
# @return [String]
|
5179
5333
|
#
|
5180
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
5334
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/InvalidationBatch AWS API Documentation
|
5181
5335
|
#
|
5182
5336
|
class InvalidationBatch < Struct.new(
|
5183
5337
|
:paths,
|
@@ -5192,7 +5346,7 @@ module Aws::CloudFront
|
|
5192
5346
|
#
|
5193
5347
|
#
|
5194
5348
|
#
|
5195
|
-
# [1]:
|
5349
|
+
# [1]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/Invalidation.html
|
5196
5350
|
#
|
5197
5351
|
# @!attribute [rw] marker
|
5198
5352
|
# The value that you provided for the `Marker` request parameter.
|
@@ -5225,7 +5379,7 @@ module Aws::CloudFront
|
|
5225
5379
|
# each invalidation batch created by the current AWS account.
|
5226
5380
|
# @return [Array<Types::InvalidationSummary>]
|
5227
5381
|
#
|
5228
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
5382
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/InvalidationList AWS API Documentation
|
5229
5383
|
#
|
5230
5384
|
class InvalidationList < Struct.new(
|
5231
5385
|
:marker,
|
@@ -5251,7 +5405,7 @@ module Aws::CloudFront
|
|
5251
5405
|
# The status of an invalidation request.
|
5252
5406
|
# @return [String]
|
5253
5407
|
#
|
5254
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
5408
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/InvalidationSummary AWS API Documentation
|
5255
5409
|
#
|
5256
5410
|
class InvalidationSummary < Struct.new(
|
5257
5411
|
:id,
|
@@ -5263,22 +5417,34 @@ module Aws::CloudFront
|
|
5263
5417
|
# A complex type that lists the active CloudFront key pairs, if any,
|
5264
5418
|
# that are associated with `AwsAccountNumber`.
|
5265
5419
|
#
|
5266
|
-
# For more information, see ActiveTrustedSigners.
|
5420
|
+
# For more information, see [ActiveTrustedSigners][1].
|
5421
|
+
#
|
5422
|
+
#
|
5423
|
+
#
|
5424
|
+
# [1]: https://docs.aws.amazon.com/cloudfront/latest/APIReference/API_ActiveTrustedSigners.html
|
5267
5425
|
#
|
5268
5426
|
# @!attribute [rw] quantity
|
5269
5427
|
# The number of active CloudFront key pairs for `AwsAccountNumber`.
|
5270
5428
|
#
|
5271
|
-
# For more information, see ActiveTrustedSigners.
|
5429
|
+
# For more information, see [ActiveTrustedSigners][1].
|
5430
|
+
#
|
5431
|
+
#
|
5432
|
+
#
|
5433
|
+
# [1]: https://docs.aws.amazon.com/cloudfront/latest/APIReference/API_ActiveTrustedSigners.html
|
5272
5434
|
# @return [Integer]
|
5273
5435
|
#
|
5274
5436
|
# @!attribute [rw] items
|
5275
5437
|
# A complex type that lists the active CloudFront key pairs, if any,
|
5276
5438
|
# that are associated with `AwsAccountNumber`.
|
5277
5439
|
#
|
5278
|
-
# For more information, see ActiveTrustedSigners.
|
5440
|
+
# For more information, see [ActiveTrustedSigners][1].
|
5441
|
+
#
|
5442
|
+
#
|
5443
|
+
#
|
5444
|
+
# [1]: https://docs.aws.amazon.com/cloudfront/latest/APIReference/API_ActiveTrustedSigners.html
|
5279
5445
|
# @return [Array<String>]
|
5280
5446
|
#
|
5281
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
5447
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/KeyPairIds AWS API Documentation
|
5282
5448
|
#
|
5283
5449
|
class KeyPairIds < Struct.new(
|
5284
5450
|
:quantity,
|
@@ -5335,10 +5501,10 @@ module Aws::CloudFront
|
|
5335
5501
|
#
|
5336
5502
|
#
|
5337
5503
|
#
|
5338
|
-
# [1]:
|
5504
|
+
# [1]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/lambda-include-body-access.html
|
5339
5505
|
# @return [Boolean]
|
5340
5506
|
#
|
5341
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
5507
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/LambdaFunctionAssociation AWS API Documentation
|
5342
5508
|
#
|
5343
5509
|
class LambdaFunctionAssociation < Struct.new(
|
5344
5510
|
:lambda_function_arn,
|
@@ -5384,7 +5550,7 @@ module Aws::CloudFront
|
|
5384
5550
|
# `Quantity` is `0`, you can omit `Items`.
|
5385
5551
|
# @return [Array<Types::LambdaFunctionAssociation>]
|
5386
5552
|
#
|
5387
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
5553
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/LambdaFunctionAssociations AWS API Documentation
|
5388
5554
|
#
|
5389
5555
|
class LambdaFunctionAssociations < Struct.new(
|
5390
5556
|
:quantity,
|
@@ -5416,7 +5582,7 @@ module Aws::CloudFront
|
|
5416
5582
|
# response body.
|
5417
5583
|
# @return [Integer]
|
5418
5584
|
#
|
5419
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
5585
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/ListCloudFrontOriginAccessIdentitiesRequest AWS API Documentation
|
5420
5586
|
#
|
5421
5587
|
class ListCloudFrontOriginAccessIdentitiesRequest < Struct.new(
|
5422
5588
|
:marker,
|
@@ -5430,7 +5596,7 @@ module Aws::CloudFront
|
|
5430
5596
|
# The `CloudFrontOriginAccessIdentityList` type.
|
5431
5597
|
# @return [Types::CloudFrontOriginAccessIdentityList]
|
5432
5598
|
#
|
5433
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
5599
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/ListCloudFrontOriginAccessIdentitiesResult AWS API Documentation
|
5434
5600
|
#
|
5435
5601
|
class ListCloudFrontOriginAccessIdentitiesResult < Struct.new(
|
5436
5602
|
:cloud_front_origin_access_identity_list)
|
@@ -5471,7 +5637,7 @@ module Aws::CloudFront
|
|
5471
5637
|
# web ACL.
|
5472
5638
|
# @return [String]
|
5473
5639
|
#
|
5474
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
5640
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/ListDistributionsByWebACLIdRequest AWS API Documentation
|
5475
5641
|
#
|
5476
5642
|
class ListDistributionsByWebACLIdRequest < Struct.new(
|
5477
5643
|
:marker,
|
@@ -5487,7 +5653,7 @@ module Aws::CloudFront
|
|
5487
5653
|
# The `DistributionList` type.
|
5488
5654
|
# @return [Types::DistributionList]
|
5489
5655
|
#
|
5490
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
5656
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/ListDistributionsByWebACLIdResult AWS API Documentation
|
5491
5657
|
#
|
5492
5658
|
class ListDistributionsByWebACLIdResult < Struct.new(
|
5493
5659
|
:distribution_list)
|
@@ -5517,7 +5683,7 @@ module Aws::CloudFront
|
|
5517
5683
|
# The maximum number of distributions you want in the response body.
|
5518
5684
|
# @return [Integer]
|
5519
5685
|
#
|
5520
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
5686
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/ListDistributionsRequest AWS API Documentation
|
5521
5687
|
#
|
5522
5688
|
class ListDistributionsRequest < Struct.new(
|
5523
5689
|
:marker,
|
@@ -5531,7 +5697,7 @@ module Aws::CloudFront
|
|
5531
5697
|
# The `DistributionList` type.
|
5532
5698
|
# @return [Types::DistributionList]
|
5533
5699
|
#
|
5534
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
5700
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/ListDistributionsResult AWS API Documentation
|
5535
5701
|
#
|
5536
5702
|
class ListDistributionsResult < Struct.new(
|
5537
5703
|
:distribution_list)
|
@@ -5560,7 +5726,7 @@ module Aws::CloudFront
|
|
5560
5726
|
# in the response body.
|
5561
5727
|
# @return [Integer]
|
5562
5728
|
#
|
5563
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
5729
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/ListFieldLevelEncryptionConfigsRequest AWS API Documentation
|
5564
5730
|
#
|
5565
5731
|
class ListFieldLevelEncryptionConfigsRequest < Struct.new(
|
5566
5732
|
:marker,
|
@@ -5573,7 +5739,7 @@ module Aws::CloudFront
|
|
5573
5739
|
# have been created in CloudFront for this account.
|
5574
5740
|
# @return [Types::FieldLevelEncryptionList]
|
5575
5741
|
#
|
5576
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
5742
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/ListFieldLevelEncryptionConfigsResult AWS API Documentation
|
5577
5743
|
#
|
5578
5744
|
class ListFieldLevelEncryptionConfigsResult < Struct.new(
|
5579
5745
|
:field_level_encryption_list)
|
@@ -5601,7 +5767,7 @@ module Aws::CloudFront
|
|
5601
5767
|
# the response body.
|
5602
5768
|
# @return [Integer]
|
5603
5769
|
#
|
5604
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
5770
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/ListFieldLevelEncryptionProfilesRequest AWS API Documentation
|
5605
5771
|
#
|
5606
5772
|
class ListFieldLevelEncryptionProfilesRequest < Struct.new(
|
5607
5773
|
:marker,
|
@@ -5614,7 +5780,7 @@ module Aws::CloudFront
|
|
5614
5780
|
# created in CloudFront for this account.
|
5615
5781
|
# @return [Types::FieldLevelEncryptionProfileList]
|
5616
5782
|
#
|
5617
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
5783
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/ListFieldLevelEncryptionProfilesResult AWS API Documentation
|
5618
5784
|
#
|
5619
5785
|
class ListFieldLevelEncryptionProfilesResult < Struct.new(
|
5620
5786
|
:field_level_encryption_profile_list)
|
@@ -5652,7 +5818,7 @@ module Aws::CloudFront
|
|
5652
5818
|
# response body.
|
5653
5819
|
# @return [Integer]
|
5654
5820
|
#
|
5655
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
5821
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/ListInvalidationsRequest AWS API Documentation
|
5656
5822
|
#
|
5657
5823
|
class ListInvalidationsRequest < Struct.new(
|
5658
5824
|
:distribution_id,
|
@@ -5667,7 +5833,7 @@ module Aws::CloudFront
|
|
5667
5833
|
# Information about invalidation batches.
|
5668
5834
|
# @return [Types::InvalidationList]
|
5669
5835
|
#
|
5670
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
5836
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/ListInvalidationsResult AWS API Documentation
|
5671
5837
|
#
|
5672
5838
|
class ListInvalidationsResult < Struct.new(
|
5673
5839
|
:invalidation_list)
|
@@ -5695,7 +5861,7 @@ module Aws::CloudFront
|
|
5695
5861
|
# The maximum number of public keys you want in the response body.
|
5696
5862
|
# @return [Integer]
|
5697
5863
|
#
|
5698
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
5864
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/ListPublicKeysRequest AWS API Documentation
|
5699
5865
|
#
|
5700
5866
|
class ListPublicKeysRequest < Struct.new(
|
5701
5867
|
:marker,
|
@@ -5708,7 +5874,7 @@ module Aws::CloudFront
|
|
5708
5874
|
# for this account.
|
5709
5875
|
# @return [Types::PublicKeyList]
|
5710
5876
|
#
|
5711
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
5877
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/ListPublicKeysResult AWS API Documentation
|
5712
5878
|
#
|
5713
5879
|
class ListPublicKeysResult < Struct.new(
|
5714
5880
|
:public_key_list)
|
@@ -5733,7 +5899,7 @@ module Aws::CloudFront
|
|
5733
5899
|
# The value that you provided for the `MaxItems` request parameter.
|
5734
5900
|
# @return [Integer]
|
5735
5901
|
#
|
5736
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
5902
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/ListStreamingDistributionsRequest AWS API Documentation
|
5737
5903
|
#
|
5738
5904
|
class ListStreamingDistributionsRequest < Struct.new(
|
5739
5905
|
:marker,
|
@@ -5747,7 +5913,7 @@ module Aws::CloudFront
|
|
5747
5913
|
# The `StreamingDistributionList` type.
|
5748
5914
|
# @return [Types::StreamingDistributionList]
|
5749
5915
|
#
|
5750
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
5916
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/ListStreamingDistributionsResult AWS API Documentation
|
5751
5917
|
#
|
5752
5918
|
class ListStreamingDistributionsResult < Struct.new(
|
5753
5919
|
:streaming_distribution_list)
|
@@ -5767,7 +5933,7 @@ module Aws::CloudFront
|
|
5767
5933
|
# An ARN of a CloudFront resource.
|
5768
5934
|
# @return [String]
|
5769
5935
|
#
|
5770
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
5936
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/ListTagsForResourceRequest AWS API Documentation
|
5771
5937
|
#
|
5772
5938
|
class ListTagsForResourceRequest < Struct.new(
|
5773
5939
|
:resource)
|
@@ -5780,7 +5946,7 @@ module Aws::CloudFront
|
|
5780
5946
|
# A complex type that contains zero or more `Tag` elements.
|
5781
5947
|
# @return [Types::Tags]
|
5782
5948
|
#
|
5783
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
5949
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/ListTagsForResourceResult AWS API Documentation
|
5784
5950
|
#
|
5785
5951
|
class ListTagsForResourceResult < Struct.new(
|
5786
5952
|
:tags)
|
@@ -5833,7 +5999,7 @@ module Aws::CloudFront
|
|
5833
5999
|
# element.
|
5834
6000
|
# @return [String]
|
5835
6001
|
#
|
5836
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
6002
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/LoggingConfig AWS API Documentation
|
5837
6003
|
#
|
5838
6004
|
class LoggingConfig < Struct.new(
|
5839
6005
|
:enabled,
|
@@ -5849,7 +6015,7 @@ module Aws::CloudFront
|
|
5849
6015
|
# @!attribute [rw] message
|
5850
6016
|
# @return [String]
|
5851
6017
|
#
|
5852
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
6018
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/MissingBody AWS API Documentation
|
5853
6019
|
#
|
5854
6020
|
class MissingBody < Struct.new(
|
5855
6021
|
:message)
|
@@ -5861,7 +6027,7 @@ module Aws::CloudFront
|
|
5861
6027
|
# @!attribute [rw] message
|
5862
6028
|
# @return [String]
|
5863
6029
|
#
|
5864
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
6030
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/NoSuchCloudFrontOriginAccessIdentity AWS API Documentation
|
5865
6031
|
#
|
5866
6032
|
class NoSuchCloudFrontOriginAccessIdentity < Struct.new(
|
5867
6033
|
:message)
|
@@ -5873,7 +6039,7 @@ module Aws::CloudFront
|
|
5873
6039
|
# @!attribute [rw] message
|
5874
6040
|
# @return [String]
|
5875
6041
|
#
|
5876
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
6042
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/NoSuchDistribution AWS API Documentation
|
5877
6043
|
#
|
5878
6044
|
class NoSuchDistribution < Struct.new(
|
5879
6045
|
:message)
|
@@ -5885,7 +6051,7 @@ module Aws::CloudFront
|
|
5885
6051
|
# @!attribute [rw] message
|
5886
6052
|
# @return [String]
|
5887
6053
|
#
|
5888
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
6054
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/NoSuchFieldLevelEncryptionConfig AWS API Documentation
|
5889
6055
|
#
|
5890
6056
|
class NoSuchFieldLevelEncryptionConfig < Struct.new(
|
5891
6057
|
:message)
|
@@ -5897,7 +6063,7 @@ module Aws::CloudFront
|
|
5897
6063
|
# @!attribute [rw] message
|
5898
6064
|
# @return [String]
|
5899
6065
|
#
|
5900
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
6066
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/NoSuchFieldLevelEncryptionProfile AWS API Documentation
|
5901
6067
|
#
|
5902
6068
|
class NoSuchFieldLevelEncryptionProfile < Struct.new(
|
5903
6069
|
:message)
|
@@ -5909,7 +6075,7 @@ module Aws::CloudFront
|
|
5909
6075
|
# @!attribute [rw] message
|
5910
6076
|
# @return [String]
|
5911
6077
|
#
|
5912
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
6078
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/NoSuchInvalidation AWS API Documentation
|
5913
6079
|
#
|
5914
6080
|
class NoSuchInvalidation < Struct.new(
|
5915
6081
|
:message)
|
@@ -5921,7 +6087,7 @@ module Aws::CloudFront
|
|
5921
6087
|
# @!attribute [rw] message
|
5922
6088
|
# @return [String]
|
5923
6089
|
#
|
5924
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
6090
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/NoSuchOrigin AWS API Documentation
|
5925
6091
|
#
|
5926
6092
|
class NoSuchOrigin < Struct.new(
|
5927
6093
|
:message)
|
@@ -5933,17 +6099,19 @@ module Aws::CloudFront
|
|
5933
6099
|
# @!attribute [rw] message
|
5934
6100
|
# @return [String]
|
5935
6101
|
#
|
5936
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
6102
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/NoSuchPublicKey AWS API Documentation
|
5937
6103
|
#
|
5938
6104
|
class NoSuchPublicKey < Struct.new(
|
5939
6105
|
:message)
|
5940
6106
|
include Aws::Structure
|
5941
6107
|
end
|
5942
6108
|
|
6109
|
+
# A resource that was specified is not valid.
|
6110
|
+
#
|
5943
6111
|
# @!attribute [rw] message
|
5944
6112
|
# @return [String]
|
5945
6113
|
#
|
5946
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
6114
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/NoSuchResource AWS API Documentation
|
5947
6115
|
#
|
5948
6116
|
class NoSuchResource < Struct.new(
|
5949
6117
|
:message)
|
@@ -5955,7 +6123,7 @@ module Aws::CloudFront
|
|
5955
6123
|
# @!attribute [rw] message
|
5956
6124
|
# @return [String]
|
5957
6125
|
#
|
5958
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
6126
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/NoSuchStreamingDistribution AWS API Documentation
|
5959
6127
|
#
|
5960
6128
|
class NoSuchStreamingDistribution < Struct.new(
|
5961
6129
|
:message)
|
@@ -5974,7 +6142,7 @@ module Aws::CloudFront
|
|
5974
6142
|
#
|
5975
6143
|
#
|
5976
6144
|
#
|
5977
|
-
# [1]:
|
6145
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws_service_limits.html#limits_cloudfront
|
5978
6146
|
#
|
5979
6147
|
# @note When making an API call, you may pass Origin
|
5980
6148
|
# data as a hash:
|
@@ -6023,7 +6191,7 @@ module Aws::CloudFront
|
|
6023
6191
|
#
|
6024
6192
|
#
|
6025
6193
|
#
|
6026
|
-
# [1]:
|
6194
|
+
# [1]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/distribution-web-values-specify.html#DownloadDistValuesCacheBehavior
|
6027
6195
|
# @return [String]
|
6028
6196
|
#
|
6029
6197
|
# @!attribute [rw] domain_name
|
@@ -6063,7 +6231,7 @@ module Aws::CloudFront
|
|
6063
6231
|
#
|
6064
6232
|
#
|
6065
6233
|
#
|
6066
|
-
# [1]:
|
6234
|
+
# [1]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/distribution-web-values-specify.html#DownloadDistValuesDomainName
|
6067
6235
|
# @return [String]
|
6068
6236
|
#
|
6069
6237
|
# @!attribute [rw] origin_path
|
@@ -6109,7 +6277,7 @@ module Aws::CloudFront
|
|
6109
6277
|
# instead.
|
6110
6278
|
# @return [Types::CustomOriginConfig]
|
6111
6279
|
#
|
6112
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
6280
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/Origin AWS API Documentation
|
6113
6281
|
#
|
6114
6282
|
class Origin < Struct.new(
|
6115
6283
|
:id,
|
@@ -6135,12 +6303,12 @@ module Aws::CloudFront
|
|
6135
6303
|
# @!attribute [rw] header_name
|
6136
6304
|
# The name of a header that you want CloudFront to forward to your
|
6137
6305
|
# origin. For more information, see [Forwarding Custom Headers to Your
|
6138
|
-
# Origin (Web Distributions Only)][1] in the
|
6139
|
-
# Developer Guide
|
6306
|
+
# Origin (Web Distributions Only)][1] in the <i> Amazon CloudFront
|
6307
|
+
# Developer Guide</i>.
|
6140
6308
|
#
|
6141
6309
|
#
|
6142
6310
|
#
|
6143
|
-
# [1]:
|
6311
|
+
# [1]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/forward-custom-headers.html
|
6144
6312
|
# @return [String]
|
6145
6313
|
#
|
6146
6314
|
# @!attribute [rw] header_value
|
@@ -6148,7 +6316,7 @@ module Aws::CloudFront
|
|
6148
6316
|
# field.
|
6149
6317
|
# @return [String]
|
6150
6318
|
#
|
6151
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
6319
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/OriginCustomHeader AWS API Documentation
|
6152
6320
|
#
|
6153
6321
|
class OriginCustomHeader < Struct.new(
|
6154
6322
|
:header_name,
|
@@ -6199,7 +6367,7 @@ module Aws::CloudFront
|
|
6199
6367
|
# origin group.
|
6200
6368
|
# @return [Types::OriginGroupMembers]
|
6201
6369
|
#
|
6202
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
6370
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/OriginGroup AWS API Documentation
|
6203
6371
|
#
|
6204
6372
|
class OriginGroup < Struct.new(
|
6205
6373
|
:id,
|
@@ -6227,7 +6395,7 @@ module Aws::CloudFront
|
|
6227
6395
|
# trigger CloudFront to failover to the second origin.
|
6228
6396
|
# @return [Types::StatusCodes]
|
6229
6397
|
#
|
6230
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
6398
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/OriginGroupFailoverCriteria AWS API Documentation
|
6231
6399
|
#
|
6232
6400
|
class OriginGroupFailoverCriteria < Struct.new(
|
6233
6401
|
:status_codes)
|
@@ -6247,7 +6415,7 @@ module Aws::CloudFront
|
|
6247
6415
|
# The ID for an origin in an origin group.
|
6248
6416
|
# @return [String]
|
6249
6417
|
#
|
6250
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
6418
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/OriginGroupMember AWS API Documentation
|
6251
6419
|
#
|
6252
6420
|
class OriginGroupMember < Struct.new(
|
6253
6421
|
:origin_id)
|
@@ -6276,7 +6444,7 @@ module Aws::CloudFront
|
|
6276
6444
|
# Items (origins) in an origin group.
|
6277
6445
|
# @return [Array<Types::OriginGroupMember>]
|
6278
6446
|
#
|
6279
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
6447
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/OriginGroupMembers AWS API Documentation
|
6280
6448
|
#
|
6281
6449
|
class OriginGroupMembers < Struct.new(
|
6282
6450
|
:quantity,
|
@@ -6321,7 +6489,7 @@ module Aws::CloudFront
|
|
6321
6489
|
# The items (origin groups) in a distribution.
|
6322
6490
|
# @return [Array<Types::OriginGroup>]
|
6323
6491
|
#
|
6324
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
6492
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/OriginGroups AWS API Documentation
|
6325
6493
|
#
|
6326
6494
|
class OriginGroups < Struct.new(
|
6327
6495
|
:quantity,
|
@@ -6351,7 +6519,7 @@ module Aws::CloudFront
|
|
6351
6519
|
# distribution.
|
6352
6520
|
# @return [Array<String>]
|
6353
6521
|
#
|
6354
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
6522
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/OriginSslProtocols AWS API Documentation
|
6355
6523
|
#
|
6356
6524
|
class OriginSslProtocols < Struct.new(
|
6357
6525
|
:quantity,
|
@@ -6408,7 +6576,7 @@ module Aws::CloudFront
|
|
6408
6576
|
# distribution.
|
6409
6577
|
# @return [Array<Types::Origin>]
|
6410
6578
|
#
|
6411
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
6579
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/Origins AWS API Documentation
|
6412
6580
|
#
|
6413
6581
|
class Origins < Struct.new(
|
6414
6582
|
:quantity,
|
@@ -6422,7 +6590,7 @@ module Aws::CloudFront
|
|
6422
6590
|
#
|
6423
6591
|
#
|
6424
6592
|
#
|
6425
|
-
# [1]:
|
6593
|
+
# [1]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/Invalidation.html#invalidation-specifying-objects
|
6426
6594
|
#
|
6427
6595
|
# @note When making an API call, you may pass Paths
|
6428
6596
|
# data as a hash:
|
@@ -6433,7 +6601,8 @@ module Aws::CloudFront
|
|
6433
6601
|
# }
|
6434
6602
|
#
|
6435
6603
|
# @!attribute [rw] quantity
|
6436
|
-
# The number of objects that you
|
6604
|
+
# The number of invalidation paths specified for the objects that you
|
6605
|
+
# want to invalidate.
|
6437
6606
|
# @return [Integer]
|
6438
6607
|
#
|
6439
6608
|
# @!attribute [rw] items
|
@@ -6441,7 +6610,7 @@ module Aws::CloudFront
|
|
6441
6610
|
# invalidate.
|
6442
6611
|
# @return [Array<String>]
|
6443
6612
|
#
|
6444
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
6613
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/Paths AWS API Documentation
|
6445
6614
|
#
|
6446
6615
|
class Paths < Struct.new(
|
6447
6616
|
:quantity,
|
@@ -6455,7 +6624,7 @@ module Aws::CloudFront
|
|
6455
6624
|
# @!attribute [rw] message
|
6456
6625
|
# @return [String]
|
6457
6626
|
#
|
6458
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
6627
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/PreconditionFailed AWS API Documentation
|
6459
6628
|
#
|
6460
6629
|
class PreconditionFailed < Struct.new(
|
6461
6630
|
:message)
|
@@ -6478,7 +6647,7 @@ module Aws::CloudFront
|
|
6478
6647
|
# with features like field-level encryption.
|
6479
6648
|
# @return [Types::PublicKeyConfig]
|
6480
6649
|
#
|
6481
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
6650
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/PublicKey AWS API Documentation
|
6482
6651
|
#
|
6483
6652
|
class PublicKey < Struct.new(
|
6484
6653
|
:id,
|
@@ -6492,7 +6661,7 @@ module Aws::CloudFront
|
|
6492
6661
|
# @!attribute [rw] message
|
6493
6662
|
# @return [String]
|
6494
6663
|
#
|
6495
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
6664
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/PublicKeyAlreadyExists AWS API Documentation
|
6496
6665
|
#
|
6497
6666
|
class PublicKeyAlreadyExists < Struct.new(
|
6498
6667
|
:message)
|
@@ -6530,7 +6699,7 @@ module Aws::CloudFront
|
|
6530
6699
|
# An optional comment about a public key.
|
6531
6700
|
# @return [String]
|
6532
6701
|
#
|
6533
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
6702
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/PublicKeyConfig AWS API Documentation
|
6534
6703
|
#
|
6535
6704
|
class PublicKeyConfig < Struct.new(
|
6536
6705
|
:caller_reference,
|
@@ -6545,7 +6714,7 @@ module Aws::CloudFront
|
|
6545
6714
|
# @!attribute [rw] message
|
6546
6715
|
# @return [String]
|
6547
6716
|
#
|
6548
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
6717
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/PublicKeyInUse AWS API Documentation
|
6549
6718
|
#
|
6550
6719
|
class PublicKeyInUse < Struct.new(
|
6551
6720
|
:message)
|
@@ -6575,7 +6744,7 @@ module Aws::CloudFront
|
|
6575
6744
|
# use with features like field-level encryption.
|
6576
6745
|
# @return [Array<Types::PublicKeySummary>]
|
6577
6746
|
#
|
6578
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
6747
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/PublicKeyList AWS API Documentation
|
6579
6748
|
#
|
6580
6749
|
class PublicKeyList < Struct.new(
|
6581
6750
|
:next_marker,
|
@@ -6607,7 +6776,7 @@ module Aws::CloudFront
|
|
6607
6776
|
# Comment for public key information summary.
|
6608
6777
|
# @return [String]
|
6609
6778
|
#
|
6610
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
6779
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/PublicKeySummary AWS API Documentation
|
6611
6780
|
#
|
6612
6781
|
class PublicKeySummary < Struct.new(
|
6613
6782
|
:id,
|
@@ -6638,7 +6807,7 @@ module Aws::CloudFront
|
|
6638
6807
|
# argument-profile mapping
|
6639
6808
|
# @return [String]
|
6640
6809
|
#
|
6641
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
6810
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/QueryArgProfile AWS API Documentation
|
6642
6811
|
#
|
6643
6812
|
class QueryArgProfile < Struct.new(
|
6644
6813
|
:query_arg,
|
@@ -6676,7 +6845,7 @@ module Aws::CloudFront
|
|
6676
6845
|
# field-level encryption.
|
6677
6846
|
# @return [Types::QueryArgProfiles]
|
6678
6847
|
#
|
6679
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
6848
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/QueryArgProfileConfig AWS API Documentation
|
6680
6849
|
#
|
6681
6850
|
class QueryArgProfileConfig < Struct.new(
|
6682
6851
|
:forward_when_query_arg_profile_is_unknown,
|
@@ -6689,7 +6858,7 @@ module Aws::CloudFront
|
|
6689
6858
|
# @!attribute [rw] message
|
6690
6859
|
# @return [String]
|
6691
6860
|
#
|
6692
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
6861
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/QueryArgProfileEmpty AWS API Documentation
|
6693
6862
|
#
|
6694
6863
|
class QueryArgProfileEmpty < Struct.new(
|
6695
6864
|
:message)
|
@@ -6721,7 +6890,7 @@ module Aws::CloudFront
|
|
6721
6890
|
# encryption.
|
6722
6891
|
# @return [Array<Types::QueryArgProfile>]
|
6723
6892
|
#
|
6724
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
6893
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/QueryArgProfiles AWS API Documentation
|
6725
6894
|
#
|
6726
6895
|
class QueryArgProfiles < Struct.new(
|
6727
6896
|
:quantity,
|
@@ -6729,6 +6898,10 @@ module Aws::CloudFront
|
|
6729
6898
|
include Aws::Structure
|
6730
6899
|
end
|
6731
6900
|
|
6901
|
+
# A complex type that contains information about the query string
|
6902
|
+
# parameters that you want CloudFront to use for caching for a cache
|
6903
|
+
# behavior.
|
6904
|
+
#
|
6732
6905
|
# @note When making an API call, you may pass QueryStringCacheKeys
|
6733
6906
|
# data as a hash:
|
6734
6907
|
#
|
@@ -6738,17 +6911,17 @@ module Aws::CloudFront
|
|
6738
6911
|
# }
|
6739
6912
|
#
|
6740
6913
|
# @!attribute [rw] quantity
|
6741
|
-
# The number of `whitelisted` query string parameters for
|
6914
|
+
# The number of `whitelisted` query string parameters for a cache
|
6742
6915
|
# behavior.
|
6743
6916
|
# @return [Integer]
|
6744
6917
|
#
|
6745
6918
|
# @!attribute [rw] items
|
6746
|
-
#
|
6747
|
-
#
|
6748
|
-
#
|
6919
|
+
# A list that contains the query string parameters that you want
|
6920
|
+
# CloudFront to use as a basis for caching for a cache behavior. If
|
6921
|
+
# `Quantity` is 0, you can omit `Items`.
|
6749
6922
|
# @return [Array<String>]
|
6750
6923
|
#
|
6751
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
6924
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/QueryStringCacheKeys AWS API Documentation
|
6752
6925
|
#
|
6753
6926
|
class QueryStringCacheKeys < Struct.new(
|
6754
6927
|
:quantity,
|
@@ -6776,7 +6949,7 @@ module Aws::CloudFront
|
|
6776
6949
|
# `MaxMind` GeoIP databases.
|
6777
6950
|
# @return [Types::GeoRestriction]
|
6778
6951
|
#
|
6779
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
6952
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/Restrictions AWS API Documentation
|
6780
6953
|
#
|
6781
6954
|
class Restrictions < Struct.new(
|
6782
6955
|
:geo_restriction)
|
@@ -6800,7 +6973,7 @@ module Aws::CloudFront
|
|
6800
6973
|
# @return [String]
|
6801
6974
|
#
|
6802
6975
|
# @!attribute [rw] origin_access_identity
|
6803
|
-
# The CloudFront origin access identity to associate with the
|
6976
|
+
# The CloudFront origin access identity to associate with the
|
6804
6977
|
# distribution. Use an origin access identity to configure the
|
6805
6978
|
# distribution so that end users can only access objects in an Amazon
|
6806
6979
|
# S3 bucket through CloudFront.
|
@@ -6817,15 +6990,15 @@ module Aws::CloudFront
|
|
6817
6990
|
# configuration and specify the new origin access identity.
|
6818
6991
|
#
|
6819
6992
|
# For more information, see [Using an Origin Access Identity to
|
6820
|
-
# Restrict Access to Your Amazon S3 Content][1] in the
|
6821
|
-
# CloudFront Developer Guide
|
6993
|
+
# Restrict Access to Your Amazon S3 Content][1] in the <i> Amazon
|
6994
|
+
# CloudFront Developer Guide</i>.
|
6822
6995
|
#
|
6823
6996
|
#
|
6824
6997
|
#
|
6825
|
-
# [1]:
|
6998
|
+
# [1]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/private-content-restricting-access-to-s3.html
|
6826
6999
|
# @return [String]
|
6827
7000
|
#
|
6828
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
7001
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/S3Origin AWS API Documentation
|
6829
7002
|
#
|
6830
7003
|
class S3Origin < Struct.new(
|
6831
7004
|
:domain_name,
|
@@ -6873,10 +7046,10 @@ module Aws::CloudFront
|
|
6873
7046
|
#
|
6874
7047
|
#
|
6875
7048
|
#
|
6876
|
-
# [1]:
|
7049
|
+
# [1]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/PrivateContent.html
|
6877
7050
|
# @return [String]
|
6878
7051
|
#
|
6879
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
7052
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/S3OriginConfig AWS API Documentation
|
6880
7053
|
#
|
6881
7054
|
class S3OriginConfig < Struct.new(
|
6882
7055
|
:origin_access_identity)
|
@@ -6889,7 +7062,7 @@ module Aws::CloudFront
|
|
6889
7062
|
#
|
6890
7063
|
# @!attribute [rw] aws_account_number
|
6891
7064
|
# An AWS account that is included in the `TrustedSigners` complex type
|
6892
|
-
# for this
|
7065
|
+
# for this distribution. Valid values include:
|
6893
7066
|
#
|
6894
7067
|
# * `self`, which is the AWS account used to create the distribution.
|
6895
7068
|
#
|
@@ -6901,7 +7074,7 @@ module Aws::CloudFront
|
|
6901
7074
|
# that are associated with `AwsAccountNumber`.
|
6902
7075
|
# @return [Types::KeyPairIds]
|
6903
7076
|
#
|
6904
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
7077
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/Signer AWS API Documentation
|
6905
7078
|
#
|
6906
7079
|
class Signer < Struct.new(
|
6907
7080
|
:aws_account_number,
|
@@ -6929,7 +7102,7 @@ module Aws::CloudFront
|
|
6929
7102
|
# The items (status codes) for an origin group.
|
6930
7103
|
# @return [Array<Integer>]
|
6931
7104
|
#
|
6932
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
7105
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/StatusCodes AWS API Documentation
|
6933
7106
|
#
|
6934
7107
|
class StatusCodes < Struct.new(
|
6935
7108
|
:quantity,
|
@@ -6937,7 +7110,9 @@ module Aws::CloudFront
|
|
6937
7110
|
include Aws::Structure
|
6938
7111
|
end
|
6939
7112
|
|
6940
|
-
# A streaming distribution
|
7113
|
+
# A streaming distribution tells CloudFront where you want RTMP content
|
7114
|
+
# to be delivered from, and the details about how to track and manage
|
7115
|
+
# content delivery.
|
6941
7116
|
#
|
6942
7117
|
# @!attribute [rw] id
|
6943
7118
|
# The identifier for the RTMP distribution. For example:
|
@@ -6983,14 +7158,14 @@ module Aws::CloudFront
|
|
6983
7158
|
#
|
6984
7159
|
#
|
6985
7160
|
#
|
6986
|
-
# [1]:
|
7161
|
+
# [1]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/PrivateContent.html
|
6987
7162
|
# @return [Types::ActiveTrustedSigners]
|
6988
7163
|
#
|
6989
7164
|
# @!attribute [rw] streaming_distribution_config
|
6990
7165
|
# The current configuration information for the RTMP distribution.
|
6991
7166
|
# @return [Types::StreamingDistributionConfig]
|
6992
7167
|
#
|
6993
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
7168
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/StreamingDistribution AWS API Documentation
|
6994
7169
|
#
|
6995
7170
|
class StreamingDistribution < Struct.new(
|
6996
7171
|
:id,
|
@@ -7003,10 +7178,13 @@ module Aws::CloudFront
|
|
7003
7178
|
include Aws::Structure
|
7004
7179
|
end
|
7005
7180
|
|
7181
|
+
# The caller reference you attempted to create the streaming
|
7182
|
+
# distribution with is associated with another distribution
|
7183
|
+
#
|
7006
7184
|
# @!attribute [rw] message
|
7007
7185
|
# @return [String]
|
7008
7186
|
#
|
7009
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
7187
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/StreamingDistributionAlreadyExists AWS API Documentation
|
7010
7188
|
#
|
7011
7189
|
class StreamingDistributionAlreadyExists < Struct.new(
|
7012
7190
|
:message)
|
@@ -7086,7 +7264,7 @@ module Aws::CloudFront
|
|
7086
7264
|
#
|
7087
7265
|
#
|
7088
7266
|
#
|
7089
|
-
# [1]:
|
7267
|
+
# [1]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/PrivateContent.html
|
7090
7268
|
# @return [Types::TrustedSigners]
|
7091
7269
|
#
|
7092
7270
|
# @!attribute [rw] price_class
|
@@ -7099,7 +7277,7 @@ module Aws::CloudFront
|
|
7099
7277
|
# requests for content.
|
7100
7278
|
# @return [Boolean]
|
7101
7279
|
#
|
7102
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
7280
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/StreamingDistributionConfig AWS API Documentation
|
7103
7281
|
#
|
7104
7282
|
class StreamingDistributionConfig < Struct.new(
|
7105
7283
|
:caller_reference,
|
@@ -7162,7 +7340,7 @@ module Aws::CloudFront
|
|
7162
7340
|
# A complex type that contains zero or more `Tag` elements.
|
7163
7341
|
# @return [Types::Tags]
|
7164
7342
|
#
|
7165
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
7343
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/StreamingDistributionConfigWithTags AWS API Documentation
|
7166
7344
|
#
|
7167
7345
|
class StreamingDistributionConfigWithTags < Struct.new(
|
7168
7346
|
:streaming_distribution_config,
|
@@ -7204,7 +7382,7 @@ module Aws::CloudFront
|
|
7204
7382
|
# account.
|
7205
7383
|
# @return [Array<Types::StreamingDistributionSummary>]
|
7206
7384
|
#
|
7207
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
7385
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/StreamingDistributionList AWS API Documentation
|
7208
7386
|
#
|
7209
7387
|
class StreamingDistributionList < Struct.new(
|
7210
7388
|
:marker,
|
@@ -7216,18 +7394,20 @@ module Aws::CloudFront
|
|
7216
7394
|
include Aws::Structure
|
7217
7395
|
end
|
7218
7396
|
|
7397
|
+
# The specified CloudFront distribution is not disabled. You must
|
7398
|
+
# disable the distribution before you can delete it.
|
7399
|
+
#
|
7219
7400
|
# @!attribute [rw] message
|
7220
7401
|
# @return [String]
|
7221
7402
|
#
|
7222
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
7403
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/StreamingDistributionNotDisabled AWS API Documentation
|
7223
7404
|
#
|
7224
7405
|
class StreamingDistributionNotDisabled < Struct.new(
|
7225
7406
|
:message)
|
7226
7407
|
include Aws::Structure
|
7227
7408
|
end
|
7228
7409
|
|
7229
|
-
# A summary of the information for
|
7230
|
-
# distribution.
|
7410
|
+
# A summary of the information for a CloudFront streaming distribution.
|
7231
7411
|
#
|
7232
7412
|
# @!attribute [rw] id
|
7233
7413
|
# The identifier for the distribution, for example, `EDFDVBD632BHDS5`.
|
@@ -7279,6 +7459,13 @@ module Aws::CloudFront
|
|
7279
7459
|
# `false`), change `Quantity` as applicable, and specify all of the
|
7280
7460
|
# trusted signers that you want to include in the updated
|
7281
7461
|
# distribution.
|
7462
|
+
#
|
7463
|
+
# For more information, see [Serving Private Content through
|
7464
|
+
# CloudFront][1] in the *Amazon CloudFront Developer Guide*.
|
7465
|
+
#
|
7466
|
+
#
|
7467
|
+
#
|
7468
|
+
# [1]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/PrivateContent.html
|
7282
7469
|
# @return [Types::TrustedSigners]
|
7283
7470
|
#
|
7284
7471
|
# @!attribute [rw] comment
|
@@ -7286,6 +7473,8 @@ module Aws::CloudFront
|
|
7286
7473
|
# @return [String]
|
7287
7474
|
#
|
7288
7475
|
# @!attribute [rw] price_class
|
7476
|
+
# A complex type that contains information about price class for this
|
7477
|
+
# streaming distribution.
|
7289
7478
|
# @return [String]
|
7290
7479
|
#
|
7291
7480
|
# @!attribute [rw] enabled
|
@@ -7293,7 +7482,7 @@ module Aws::CloudFront
|
|
7293
7482
|
# content.
|
7294
7483
|
# @return [Boolean]
|
7295
7484
|
#
|
7296
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
7485
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/StreamingDistributionSummary AWS API Documentation
|
7297
7486
|
#
|
7298
7487
|
class StreamingDistributionSummary < Struct.new(
|
7299
7488
|
:id,
|
@@ -7345,7 +7534,7 @@ module Aws::CloudFront
|
|
7345
7534
|
# in the `Logging` element.
|
7346
7535
|
# @return [String]
|
7347
7536
|
#
|
7348
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
7537
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/StreamingLoggingConfig AWS API Documentation
|
7349
7538
|
#
|
7350
7539
|
class StreamingLoggingConfig < Struct.new(
|
7351
7540
|
:enabled,
|
@@ -7380,7 +7569,7 @@ module Aws::CloudFront
|
|
7380
7569
|
# characters `_ - . : / = + @`.
|
7381
7570
|
# @return [String]
|
7382
7571
|
#
|
7383
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
7572
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/Tag AWS API Documentation
|
7384
7573
|
#
|
7385
7574
|
class Tag < Struct.new(
|
7386
7575
|
:key,
|
@@ -7401,7 +7590,7 @@ module Aws::CloudFront
|
|
7401
7590
|
# A complex type that contains `Tag` key elements.
|
7402
7591
|
# @return [Array<String>]
|
7403
7592
|
#
|
7404
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
7593
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/TagKeys AWS API Documentation
|
7405
7594
|
#
|
7406
7595
|
class TagKeys < Struct.new(
|
7407
7596
|
:items)
|
@@ -7433,7 +7622,7 @@ module Aws::CloudFront
|
|
7433
7622
|
# A complex type that contains zero or more `Tag` elements.
|
7434
7623
|
# @return [Types::Tags]
|
7435
7624
|
#
|
7436
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
7625
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/TagResourceRequest AWS API Documentation
|
7437
7626
|
#
|
7438
7627
|
class TagResourceRequest < Struct.new(
|
7439
7628
|
:resource,
|
@@ -7459,7 +7648,7 @@ module Aws::CloudFront
|
|
7459
7648
|
# A complex type that contains `Tag` elements.
|
7460
7649
|
# @return [Array<Types::Tag>]
|
7461
7650
|
#
|
7462
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
7651
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/Tags AWS API Documentation
|
7463
7652
|
#
|
7464
7653
|
class Tags < Struct.new(
|
7465
7654
|
:items)
|
@@ -7471,7 +7660,7 @@ module Aws::CloudFront
|
|
7471
7660
|
# @!attribute [rw] message
|
7472
7661
|
# @return [String]
|
7473
7662
|
#
|
7474
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
7663
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/TooManyCacheBehaviors AWS API Documentation
|
7475
7664
|
#
|
7476
7665
|
class TooManyCacheBehaviors < Struct.new(
|
7477
7666
|
:message)
|
@@ -7483,7 +7672,7 @@ module Aws::CloudFront
|
|
7483
7672
|
# @!attribute [rw] message
|
7484
7673
|
# @return [String]
|
7485
7674
|
#
|
7486
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
7675
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/TooManyCertificates AWS API Documentation
|
7487
7676
|
#
|
7488
7677
|
class TooManyCertificates < Struct.new(
|
7489
7678
|
:message)
|
@@ -7496,7 +7685,7 @@ module Aws::CloudFront
|
|
7496
7685
|
# @!attribute [rw] message
|
7497
7686
|
# @return [String]
|
7498
7687
|
#
|
7499
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
7688
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/TooManyCloudFrontOriginAccessIdentities AWS API Documentation
|
7500
7689
|
#
|
7501
7690
|
class TooManyCloudFrontOriginAccessIdentities < Struct.new(
|
7502
7691
|
:message)
|
@@ -7509,7 +7698,7 @@ module Aws::CloudFront
|
|
7509
7698
|
# @!attribute [rw] message
|
7510
7699
|
# @return [String]
|
7511
7700
|
#
|
7512
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
7701
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/TooManyCookieNamesInWhiteList AWS API Documentation
|
7513
7702
|
#
|
7514
7703
|
class TooManyCookieNamesInWhiteList < Struct.new(
|
7515
7704
|
:message)
|
@@ -7521,7 +7710,7 @@ module Aws::CloudFront
|
|
7521
7710
|
# @!attribute [rw] message
|
7522
7711
|
# @return [String]
|
7523
7712
|
#
|
7524
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
7713
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/TooManyDistributionCNAMEs AWS API Documentation
|
7525
7714
|
#
|
7526
7715
|
class TooManyDistributionCNAMEs < Struct.new(
|
7527
7716
|
:message)
|
@@ -7534,7 +7723,7 @@ module Aws::CloudFront
|
|
7534
7723
|
# @!attribute [rw] message
|
7535
7724
|
# @return [String]
|
7536
7725
|
#
|
7537
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
7726
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/TooManyDistributions AWS API Documentation
|
7538
7727
|
#
|
7539
7728
|
class TooManyDistributions < Struct.new(
|
7540
7729
|
:message)
|
@@ -7547,7 +7736,7 @@ module Aws::CloudFront
|
|
7547
7736
|
# @!attribute [rw] message
|
7548
7737
|
# @return [String]
|
7549
7738
|
#
|
7550
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
7739
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/TooManyDistributionsAssociatedToFieldLevelEncryptionConfig AWS API Documentation
|
7551
7740
|
#
|
7552
7741
|
class TooManyDistributionsAssociatedToFieldLevelEncryptionConfig < Struct.new(
|
7553
7742
|
:message)
|
@@ -7561,7 +7750,7 @@ module Aws::CloudFront
|
|
7561
7750
|
# @!attribute [rw] message
|
7562
7751
|
# @return [String]
|
7563
7752
|
#
|
7564
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
7753
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/TooManyDistributionsWithLambdaAssociations AWS API Documentation
|
7565
7754
|
#
|
7566
7755
|
class TooManyDistributionsWithLambdaAssociations < Struct.new(
|
7567
7756
|
:message)
|
@@ -7574,7 +7763,7 @@ module Aws::CloudFront
|
|
7574
7763
|
# @!attribute [rw] message
|
7575
7764
|
# @return [String]
|
7576
7765
|
#
|
7577
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
7766
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/TooManyFieldLevelEncryptionConfigs AWS API Documentation
|
7578
7767
|
#
|
7579
7768
|
class TooManyFieldLevelEncryptionConfigs < Struct.new(
|
7580
7769
|
:message)
|
@@ -7587,7 +7776,7 @@ module Aws::CloudFront
|
|
7587
7776
|
# @!attribute [rw] message
|
7588
7777
|
# @return [String]
|
7589
7778
|
#
|
7590
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
7779
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/TooManyFieldLevelEncryptionContentTypeProfiles AWS API Documentation
|
7591
7780
|
#
|
7592
7781
|
class TooManyFieldLevelEncryptionContentTypeProfiles < Struct.new(
|
7593
7782
|
:message)
|
@@ -7600,7 +7789,7 @@ module Aws::CloudFront
|
|
7600
7789
|
# @!attribute [rw] message
|
7601
7790
|
# @return [String]
|
7602
7791
|
#
|
7603
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
7792
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/TooManyFieldLevelEncryptionEncryptionEntities AWS API Documentation
|
7604
7793
|
#
|
7605
7794
|
class TooManyFieldLevelEncryptionEncryptionEntities < Struct.new(
|
7606
7795
|
:message)
|
@@ -7613,7 +7802,7 @@ module Aws::CloudFront
|
|
7613
7802
|
# @!attribute [rw] message
|
7614
7803
|
# @return [String]
|
7615
7804
|
#
|
7616
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
7805
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/TooManyFieldLevelEncryptionFieldPatterns AWS API Documentation
|
7617
7806
|
#
|
7618
7807
|
class TooManyFieldLevelEncryptionFieldPatterns < Struct.new(
|
7619
7808
|
:message)
|
@@ -7626,7 +7815,7 @@ module Aws::CloudFront
|
|
7626
7815
|
# @!attribute [rw] message
|
7627
7816
|
# @return [String]
|
7628
7817
|
#
|
7629
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
7818
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/TooManyFieldLevelEncryptionProfiles AWS API Documentation
|
7630
7819
|
#
|
7631
7820
|
class TooManyFieldLevelEncryptionProfiles < Struct.new(
|
7632
7821
|
:message)
|
@@ -7639,17 +7828,19 @@ module Aws::CloudFront
|
|
7639
7828
|
# @!attribute [rw] message
|
7640
7829
|
# @return [String]
|
7641
7830
|
#
|
7642
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
7831
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/TooManyFieldLevelEncryptionQueryArgProfiles AWS API Documentation
|
7643
7832
|
#
|
7644
7833
|
class TooManyFieldLevelEncryptionQueryArgProfiles < Struct.new(
|
7645
7834
|
:message)
|
7646
7835
|
include Aws::Structure
|
7647
7836
|
end
|
7648
7837
|
|
7838
|
+
# Your request contains too many headers in forwarded values.
|
7839
|
+
#
|
7649
7840
|
# @!attribute [rw] message
|
7650
7841
|
# @return [String]
|
7651
7842
|
#
|
7652
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
7843
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/TooManyHeadersInForwardedValues AWS API Documentation
|
7653
7844
|
#
|
7654
7845
|
class TooManyHeadersInForwardedValues < Struct.new(
|
7655
7846
|
:message)
|
@@ -7662,7 +7853,7 @@ module Aws::CloudFront
|
|
7662
7853
|
# @!attribute [rw] message
|
7663
7854
|
# @return [String]
|
7664
7855
|
#
|
7665
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
7856
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/TooManyInvalidationsInProgress AWS API Documentation
|
7666
7857
|
#
|
7667
7858
|
class TooManyInvalidationsInProgress < Struct.new(
|
7668
7859
|
:message)
|
@@ -7675,17 +7866,19 @@ module Aws::CloudFront
|
|
7675
7866
|
# @!attribute [rw] message
|
7676
7867
|
# @return [String]
|
7677
7868
|
#
|
7678
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
7869
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/TooManyLambdaFunctionAssociations AWS API Documentation
|
7679
7870
|
#
|
7680
7871
|
class TooManyLambdaFunctionAssociations < Struct.new(
|
7681
7872
|
:message)
|
7682
7873
|
include Aws::Structure
|
7683
7874
|
end
|
7684
7875
|
|
7876
|
+
# Your request contains too many origin custom headers.
|
7877
|
+
#
|
7685
7878
|
# @!attribute [rw] message
|
7686
7879
|
# @return [String]
|
7687
7880
|
#
|
7688
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
7881
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/TooManyOriginCustomHeaders AWS API Documentation
|
7689
7882
|
#
|
7690
7883
|
class TooManyOriginCustomHeaders < Struct.new(
|
7691
7884
|
:message)
|
@@ -7698,7 +7891,7 @@ module Aws::CloudFront
|
|
7698
7891
|
# @!attribute [rw] message
|
7699
7892
|
# @return [String]
|
7700
7893
|
#
|
7701
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
7894
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/TooManyOriginGroupsPerDistribution AWS API Documentation
|
7702
7895
|
#
|
7703
7896
|
class TooManyOriginGroupsPerDistribution < Struct.new(
|
7704
7897
|
:message)
|
@@ -7710,7 +7903,7 @@ module Aws::CloudFront
|
|
7710
7903
|
# @!attribute [rw] message
|
7711
7904
|
# @return [String]
|
7712
7905
|
#
|
7713
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
7906
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/TooManyOrigins AWS API Documentation
|
7714
7907
|
#
|
7715
7908
|
class TooManyOrigins < Struct.new(
|
7716
7909
|
:message)
|
@@ -7723,27 +7916,31 @@ module Aws::CloudFront
|
|
7723
7916
|
# @!attribute [rw] message
|
7724
7917
|
# @return [String]
|
7725
7918
|
#
|
7726
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
7919
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/TooManyPublicKeys AWS API Documentation
|
7727
7920
|
#
|
7728
7921
|
class TooManyPublicKeys < Struct.new(
|
7729
7922
|
:message)
|
7730
7923
|
include Aws::Structure
|
7731
7924
|
end
|
7732
7925
|
|
7926
|
+
# Your request contains too many query string parameters.
|
7927
|
+
#
|
7733
7928
|
# @!attribute [rw] message
|
7734
7929
|
# @return [String]
|
7735
7930
|
#
|
7736
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
7931
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/TooManyQueryStringParameters AWS API Documentation
|
7737
7932
|
#
|
7738
7933
|
class TooManyQueryStringParameters < Struct.new(
|
7739
7934
|
:message)
|
7740
7935
|
include Aws::Structure
|
7741
7936
|
end
|
7742
7937
|
|
7938
|
+
# Your request contains more CNAMEs than are allowed per distribution.
|
7939
|
+
#
|
7743
7940
|
# @!attribute [rw] message
|
7744
7941
|
# @return [String]
|
7745
7942
|
#
|
7746
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
7943
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/TooManyStreamingDistributionCNAMEs AWS API Documentation
|
7747
7944
|
#
|
7748
7945
|
class TooManyStreamingDistributionCNAMEs < Struct.new(
|
7749
7946
|
:message)
|
@@ -7756,7 +7953,7 @@ module Aws::CloudFront
|
|
7756
7953
|
# @!attribute [rw] message
|
7757
7954
|
# @return [String]
|
7758
7955
|
#
|
7759
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
7956
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/TooManyStreamingDistributions AWS API Documentation
|
7760
7957
|
#
|
7761
7958
|
class TooManyStreamingDistributions < Struct.new(
|
7762
7959
|
:message)
|
@@ -7769,7 +7966,7 @@ module Aws::CloudFront
|
|
7769
7966
|
# @!attribute [rw] message
|
7770
7967
|
# @return [String]
|
7771
7968
|
#
|
7772
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
7969
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/TooManyTrustedSigners AWS API Documentation
|
7773
7970
|
#
|
7774
7971
|
class TooManyTrustedSigners < Struct.new(
|
7775
7972
|
:message)
|
@@ -7781,7 +7978,7 @@ module Aws::CloudFront
|
|
7781
7978
|
# @!attribute [rw] message
|
7782
7979
|
# @return [String]
|
7783
7980
|
#
|
7784
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
7981
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/TrustedSignerDoesNotExist AWS API Documentation
|
7785
7982
|
#
|
7786
7983
|
class TrustedSignerDoesNotExist < Struct.new(
|
7787
7984
|
:message)
|
@@ -7795,8 +7992,8 @@ module Aws::CloudFront
|
|
7795
7992
|
# target origin that match the `PathPattern` for this cache behavior,
|
7796
7993
|
# specify `true` for `Enabled`, and specify the applicable values for
|
7797
7994
|
# `Quantity` and `Items`. For more information, see [Serving Private
|
7798
|
-
# Content through CloudFront][1] in the
|
7799
|
-
#
|
7995
|
+
# Content through CloudFront][1] in the <i> Amazon CloudFront Developer
|
7996
|
+
# Guide</i>.
|
7800
7997
|
#
|
7801
7998
|
# If you don't want to require signed URLs in requests for objects that
|
7802
7999
|
# match `PathPattern`, specify `false` for `Enabled` and `0` for
|
@@ -7808,11 +8005,12 @@ module Aws::CloudFront
|
|
7808
8005
|
# include in the updated distribution.
|
7809
8006
|
#
|
7810
8007
|
# For more information about updating the distribution configuration,
|
7811
|
-
# see DistributionConfig
|
8008
|
+
# see [DistributionConfig][2] in the *Amazon CloudFront API Reference*.
|
7812
8009
|
#
|
7813
8010
|
#
|
7814
8011
|
#
|
7815
|
-
# [1]:
|
8012
|
+
# [1]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/PrivateContent.html
|
8013
|
+
# [2]: https://docs.aws.amazon.com/cloudfront/latest/APIReference/DistributionConfig.html
|
7816
8014
|
#
|
7817
8015
|
# @note When making an API call, you may pass TrustedSigners
|
7818
8016
|
# data as a hash:
|
@@ -7837,7 +8035,7 @@ module Aws::CloudFront
|
|
7837
8035
|
# cache behavior. If `Quantity` is `0`, you can omit `Items`.
|
7838
8036
|
# @return [Array<String>]
|
7839
8037
|
#
|
7840
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
8038
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/TrustedSigners AWS API Documentation
|
7841
8039
|
#
|
7842
8040
|
class TrustedSigners < Struct.new(
|
7843
8041
|
:enabled,
|
@@ -7866,7 +8064,7 @@ module Aws::CloudFront
|
|
7866
8064
|
# A complex type that contains zero or more `Tag` key elements.
|
7867
8065
|
# @return [Types::TagKeys]
|
7868
8066
|
#
|
7869
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
8067
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/UntagResourceRequest AWS API Documentation
|
7870
8068
|
#
|
7871
8069
|
class UntagResourceRequest < Struct.new(
|
7872
8070
|
:resource,
|
@@ -7901,7 +8099,7 @@ module Aws::CloudFront
|
|
7901
8099
|
# identity's configuration. For example: `E2QWRUHAPOMQZL`.
|
7902
8100
|
# @return [String]
|
7903
8101
|
#
|
7904
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
8102
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/UpdateCloudFrontOriginAccessIdentityRequest AWS API Documentation
|
7905
8103
|
#
|
7906
8104
|
class UpdateCloudFrontOriginAccessIdentityRequest < Struct.new(
|
7907
8105
|
:cloud_front_origin_access_identity_config,
|
@@ -7921,7 +8119,7 @@ module Aws::CloudFront
|
|
7921
8119
|
# `E2QWRUHAPOMQZL`.
|
7922
8120
|
# @return [String]
|
7923
8121
|
#
|
7924
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
8122
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/UpdateCloudFrontOriginAccessIdentityResult AWS API Documentation
|
7925
8123
|
#
|
7926
8124
|
class UpdateCloudFrontOriginAccessIdentityResult < Struct.new(
|
7927
8125
|
:cloud_front_origin_access_identity,
|
@@ -8116,7 +8314,7 @@ module Aws::CloudFront
|
|
8116
8314
|
# },
|
8117
8315
|
# ],
|
8118
8316
|
# },
|
8119
|
-
# comment: "
|
8317
|
+
# comment: "CommentType", # required
|
8120
8318
|
# logging: {
|
8121
8319
|
# enabled: false, # required
|
8122
8320
|
# include_cookies: false, # required
|
@@ -8162,7 +8360,7 @@ module Aws::CloudFront
|
|
8162
8360
|
# distribution's configuration. For example: `E2QWRUHAPOMQZL`.
|
8163
8361
|
# @return [String]
|
8164
8362
|
#
|
8165
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
8363
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/UpdateDistributionRequest AWS API Documentation
|
8166
8364
|
#
|
8167
8365
|
class UpdateDistributionRequest < Struct.new(
|
8168
8366
|
:distribution_config,
|
@@ -8182,7 +8380,7 @@ module Aws::CloudFront
|
|
8182
8380
|
# `E2QWRUHAPOMQZL`.
|
8183
8381
|
# @return [String]
|
8184
8382
|
#
|
8185
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
8383
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/UpdateDistributionResult AWS API Documentation
|
8186
8384
|
#
|
8187
8385
|
class UpdateDistributionResult < Struct.new(
|
8188
8386
|
:distribution,
|
@@ -8240,7 +8438,7 @@ module Aws::CloudFront
|
|
8240
8438
|
# configuration identity to update. For example: `E2QWRUHAPOMQZL`.
|
8241
8439
|
# @return [String]
|
8242
8440
|
#
|
8243
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
8441
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/UpdateFieldLevelEncryptionConfigRequest AWS API Documentation
|
8244
8442
|
#
|
8245
8443
|
class UpdateFieldLevelEncryptionConfigRequest < Struct.new(
|
8246
8444
|
:field_level_encryption_config,
|
@@ -8258,7 +8456,7 @@ module Aws::CloudFront
|
|
8258
8456
|
# configuration. For example: `E2QWRUHAPOMQZL`.
|
8259
8457
|
# @return [String]
|
8260
8458
|
#
|
8261
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
8459
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/UpdateFieldLevelEncryptionConfigResult AWS API Documentation
|
8262
8460
|
#
|
8263
8461
|
class UpdateFieldLevelEncryptionConfigResult < Struct.new(
|
8264
8462
|
:field_level_encryption,
|
@@ -8305,7 +8503,7 @@ module Aws::CloudFront
|
|
8305
8503
|
# profile identity to update. For example: `E2QWRUHAPOMQZL`.
|
8306
8504
|
# @return [String]
|
8307
8505
|
#
|
8308
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
8506
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/UpdateFieldLevelEncryptionProfileRequest AWS API Documentation
|
8309
8507
|
#
|
8310
8508
|
class UpdateFieldLevelEncryptionProfileRequest < Struct.new(
|
8311
8509
|
:field_level_encryption_profile_config,
|
@@ -8322,7 +8520,7 @@ module Aws::CloudFront
|
|
8322
8520
|
# The result of the field-level encryption profile request.
|
8323
8521
|
# @return [String]
|
8324
8522
|
#
|
8325
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
8523
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/UpdateFieldLevelEncryptionProfileResult AWS API Documentation
|
8326
8524
|
#
|
8327
8525
|
class UpdateFieldLevelEncryptionProfileResult < Struct.new(
|
8328
8526
|
:field_level_encryption_profile,
|
@@ -8357,7 +8555,7 @@ module Aws::CloudFront
|
|
8357
8555
|
# public key to update. For example: `E2QWRUHAPOMQZL`.
|
8358
8556
|
# @return [String]
|
8359
8557
|
#
|
8360
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
8558
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/UpdatePublicKeyRequest AWS API Documentation
|
8361
8559
|
#
|
8362
8560
|
class UpdatePublicKeyRequest < Struct.new(
|
8363
8561
|
:public_key_config,
|
@@ -8375,7 +8573,7 @@ module Aws::CloudFront
|
|
8375
8573
|
# `E2QWRUHAPOMQZL`.
|
8376
8574
|
# @return [String]
|
8377
8575
|
#
|
8378
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
8576
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/UpdatePublicKeyResult AWS API Documentation
|
8379
8577
|
#
|
8380
8578
|
class UpdatePublicKeyResult < Struct.new(
|
8381
8579
|
:public_key,
|
@@ -8431,7 +8629,7 @@ module Aws::CloudFront
|
|
8431
8629
|
# `E2QWRUHAPOMQZL`.
|
8432
8630
|
# @return [String]
|
8433
8631
|
#
|
8434
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
8632
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/UpdateStreamingDistributionRequest AWS API Documentation
|
8435
8633
|
#
|
8436
8634
|
class UpdateStreamingDistributionRequest < Struct.new(
|
8437
8635
|
:streaming_distribution_config,
|
@@ -8451,7 +8649,7 @@ module Aws::CloudFront
|
|
8451
8649
|
# `E2QWRUHAPOMQZL`.
|
8452
8650
|
# @return [String]
|
8453
8651
|
#
|
8454
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
8652
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/UpdateStreamingDistributionResult AWS API Documentation
|
8455
8653
|
#
|
8456
8654
|
class UpdateStreamingDistributionResult < Struct.new(
|
8457
8655
|
:streaming_distribution,
|
@@ -8473,90 +8671,23 @@ module Aws::CloudFront
|
|
8473
8671
|
# certificate from a third-party certificate authority and imported it
|
8474
8672
|
# into ACM or uploaded it to the IAM certificate store.
|
8475
8673
|
#
|
8476
|
-
#
|
8477
|
-
#
|
8478
|
-
# * ViewerCertificate$ACMCertificateArn
|
8479
|
-
#
|
8480
|
-
# * ViewerCertificate$IAMCertificateId
|
8481
|
-
#
|
8482
|
-
# * ViewerCertificate$CloudFrontDefaultCertificate
|
8483
|
-
#
|
8484
|
-
# Don't specify `false` for `CloudFrontDefaultCertificate`.
|
8485
|
-
#
|
8486
|
-
# **If you want viewers to use HTTP instead of HTTPS to request your
|
8487
|
-
# objects**\: Specify the following value:
|
8488
|
-
#
|
8489
|
-
# `<CloudFrontDefaultCertificate>true<CloudFrontDefaultCertificate>`
|
8490
|
-
#
|
8491
|
-
# In addition, specify `allow-all` for `ViewerProtocolPolicy` for all of
|
8492
|
-
# your cache behaviors.
|
8493
|
-
#
|
8494
|
-
# **If you want viewers to use HTTPS to request your objects**\: Choose
|
8495
|
-
# the type of certificate that you want to use based on whether you're
|
8496
|
-
# using an alternate domain name for your objects or the CloudFront
|
8497
|
-
# domain name:
|
8498
|
-
#
|
8499
|
-
# * **If you're using an alternate domain name, such as example.com**\:
|
8500
|
-
# Specify one of the following values, depending on whether ACM
|
8501
|
-
# provided your certificate or you purchased your certificate from
|
8502
|
-
# third-party certificate authority:
|
8503
|
-
#
|
8504
|
-
# * `<ACMCertificateArn>ARN for ACM SSL/TLS
|
8505
|
-
# certificate<ACMCertificateArn>` where ` ARN for ACM SSL/TLS
|
8506
|
-
# certificate ` is the ARN for the ACM SSL/TLS certificate that you
|
8507
|
-
# want to use for this distribution.
|
8508
|
-
#
|
8509
|
-
# * `<IAMCertificateId>IAM certificate ID<IAMCertificateId>` where `
|
8510
|
-
# IAM certificate ID ` is the ID that IAM returned when you added
|
8511
|
-
# the certificate to the IAM certificate store.
|
8512
|
-
#
|
8513
|
-
# If you specify `ACMCertificateArn` or `IAMCertificateId`, you must
|
8514
|
-
# also specify a value for `SSLSupportMethod`.
|
8515
|
-
#
|
8516
|
-
# If you choose to use an ACM certificate or a certificate in the IAM
|
8517
|
-
# certificate store, we recommend that you use only an alternate
|
8518
|
-
# domain name in your object URLs (`https://example.com/logo.jpg`). If
|
8519
|
-
# you use the domain name that is associated with your CloudFront
|
8520
|
-
# distribution (such as
|
8521
|
-
# `https://d111111abcdef8.cloudfront.net/logo.jpg`) and the viewer
|
8522
|
-
# supports `SNI`, then CloudFront behaves normally. However, if the
|
8523
|
-
# browser does not support SNI, the user's experience depends on the
|
8524
|
-
# value that you choose for `SSLSupportMethod`\:
|
8525
|
-
#
|
8526
|
-
# * `vip`\: The viewer displays a warning because there is a mismatch
|
8527
|
-
# between the CloudFront domain name and the domain name in your
|
8528
|
-
# SSL/TLS certificate.
|
8674
|
+
# Specify only one of the following values:
|
8529
8675
|
#
|
8530
|
-
#
|
8531
|
-
# without returning the object.
|
8676
|
+
# * [ACMCertificateArn][1]
|
8532
8677
|
#
|
8533
|
-
# *
|
8534
|
-
# distribution, such as <code>d111111abcdef8.cloudfront.net</code>
|
8535
|
-
# </b>\: Specify the following value:
|
8678
|
+
# * [IAMCertificateId][2]
|
8536
8679
|
#
|
8537
|
-
#
|
8680
|
+
# * [CloudFrontDefaultCertificate][3]
|
8538
8681
|
#
|
8539
|
-
#
|
8540
|
-
# following values in your cache behaviors:
|
8541
|
-
#
|
8542
|
-
# * ` <ViewerProtocolPolicy>https-only<ViewerProtocolPolicy>`
|
8543
|
-
#
|
8544
|
-
# * `<ViewerProtocolPolicy>redirect-to-https<ViewerProtocolPolicy>`
|
8545
|
-
#
|
8546
|
-
# You can also optionally require that CloudFront use HTTPS to
|
8547
|
-
# communicate with your origin by specifying one of the following values
|
8548
|
-
# for the applicable origins:
|
8549
|
-
#
|
8550
|
-
# * `<OriginProtocolPolicy>https-only<OriginProtocolPolicy> `
|
8551
|
-
#
|
8552
|
-
# * `<OriginProtocolPolicy>match-viewer<OriginProtocolPolicy> `
|
8553
|
-
#
|
8554
|
-
# For more information, see [Using Alternate Domain Names and HTTPS][1]
|
8682
|
+
# For more information, see [ Using Alternate Domain Names and HTTPS][4]
|
8555
8683
|
# in the *Amazon CloudFront Developer Guide*.
|
8556
8684
|
#
|
8557
8685
|
#
|
8558
8686
|
#
|
8559
|
-
# [1]:
|
8687
|
+
# [1]: https://docs.aws.amazon.com/cloudfront/latest/APIReference/API_ViewerCertificate.html#cloudfront-Type-ViewerCertificate-ACMCertificateArn
|
8688
|
+
# [2]: https://docs.aws.amazon.com/cloudfront/latest/APIReference/API_ViewerCertificate.html#cloudfront-Type-ViewerCertificate-IAMCertificateId
|
8689
|
+
# [3]: https://docs.aws.amazon.com/cloudfront/latest/APIReference/API_ViewerCertificate.html#cloudfront-Type-ViewerCertificate-CloudFrontDefaultCertificate
|
8690
|
+
# [4]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/SecureConnections.html#CNAMEsAndHTTPS
|
8560
8691
|
#
|
8561
8692
|
# @note When making an API call, you may pass ViewerCertificate
|
8562
8693
|
# data as a hash:
|
@@ -8572,58 +8703,83 @@ module Aws::CloudFront
|
|
8572
8703
|
# }
|
8573
8704
|
#
|
8574
8705
|
# @!attribute [rw] cloud_front_default_certificate
|
8575
|
-
#
|
8576
|
-
# `
|
8706
|
+
# If you're using the CloudFront domain name for your distribution,
|
8707
|
+
# such as `d111111abcdef8.cloudfront.net`, specify the following
|
8708
|
+
# value:
|
8709
|
+
#
|
8710
|
+
# * `<CloudFrontDefaultCertificate>true<CloudFrontDefaultCertificate>
|
8711
|
+
# `
|
8712
|
+
#
|
8713
|
+
# ^
|
8577
8714
|
# @return [Boolean]
|
8578
8715
|
#
|
8579
8716
|
# @!attribute [rw] iam_certificate_id
|
8580
|
-
#
|
8581
|
-
#
|
8717
|
+
# If you want viewers to use HTTPS to request your objects and you're
|
8718
|
+
# using an alternate domain name, you must choose the type of
|
8719
|
+
# certificate that you want to use. Specify the following value if you
|
8720
|
+
# purchased your certificate from a third-party certificate authority:
|
8721
|
+
#
|
8722
|
+
# * `<IAMCertificateId>IAM certificate ID<IAMCertificateId>` where `
|
8723
|
+
# IAM certificate ID ` is the ID that IAM returned when you added
|
8724
|
+
# the certificate to the IAM certificate store.
|
8725
|
+
#
|
8726
|
+
# ^
|
8727
|
+
#
|
8728
|
+
# If you specify `IAMCertificateId`, you must also specify a value for
|
8729
|
+
# `SSLSupportMethod`.
|
8582
8730
|
# @return [String]
|
8583
8731
|
#
|
8584
8732
|
# @!attribute [rw] acm_certificate_arn
|
8585
|
-
#
|
8586
|
-
#
|
8733
|
+
# If you want viewers to use HTTPS to request your objects and you're
|
8734
|
+
# using an alternate domain name, you must choose the type of
|
8735
|
+
# certificate that you want to use. Specify the following value if ACM
|
8736
|
+
# provided your certificate:
|
8737
|
+
#
|
8738
|
+
# * `<ACMCertificateArn>ARN for ACM SSL/TLS
|
8739
|
+
# certificate<ACMCertificateArn>` where ` ARN for ACM SSL/TLS
|
8740
|
+
# certificate ` is the ARN for the ACM SSL/TLS certificate that you
|
8741
|
+
# want to use for this distribution.
|
8742
|
+
#
|
8743
|
+
# ^
|
8744
|
+
#
|
8745
|
+
# If you specify `ACMCertificateArn`, you must also specify a value
|
8746
|
+
# for `SSLSupportMethod`.
|
8587
8747
|
# @return [String]
|
8588
8748
|
#
|
8589
8749
|
# @!attribute [rw] ssl_support_method
|
8590
|
-
# If you specify a value for
|
8591
|
-
#
|
8592
|
-
#
|
8593
|
-
#
|
8594
|
-
#
|
8595
|
-
# * `vip`\: CloudFront uses dedicated IP addresses for your content
|
8596
|
-
# and can respond to HTTPS requests from any viewer. However, you
|
8597
|
-
# will incur additional monthly charges.
|
8750
|
+
# If you specify a value for [ACMCertificateArn][1] or for
|
8751
|
+
# [IAMCertificateId][2], you must also specify how you want CloudFront
|
8752
|
+
# to serve HTTPS requests: using a method that works for browsers and
|
8753
|
+
# clients released after 2010 or one that works for all clients.
|
8598
8754
|
#
|
8599
8755
|
# * `sni-only`\: CloudFront can respond to HTTPS requests from viewers
|
8600
8756
|
# that support Server Name Indication (SNI). All modern browsers
|
8601
|
-
# support SNI, but
|
8602
|
-
#
|
8603
|
-
#
|
8604
|
-
#
|
8605
|
-
#
|
8606
|
-
#
|
8607
|
-
#
|
8608
|
-
# * Use the CloudFront SSL/TLS certificate instead of a custom
|
8609
|
-
# certificate. This requires that you use the CloudFront domain
|
8610
|
-
# name of your distribution in the URLs for your objects, for
|
8611
|
-
# example, `https://d111111abcdef8.cloudfront.net/logo.png`.
|
8757
|
+
# support SNI, but there are a few that don't. For a current list
|
8758
|
+
# of the browsers that support SNI, see the [Wikipedia entry Server
|
8759
|
+
# Name Indication][3]. To learn about options to explore if you have
|
8760
|
+
# users with browsers that don't include SNI support, see [Choosing
|
8761
|
+
# How CloudFront Serves HTTPS Requests][4] in the *Amazon CloudFront
|
8762
|
+
# Developer Guide*.
|
8612
8763
|
#
|
8613
|
-
#
|
8614
|
-
#
|
8615
|
-
#
|
8616
|
-
#
|
8764
|
+
# * `vip`\: CloudFront uses dedicated IP addresses for your content
|
8765
|
+
# and can respond to HTTPS requests from any viewer. However, there
|
8766
|
+
# are additional monthly charges. For details, including specific
|
8767
|
+
# pricing information, see [Custom SSL options for Amazon
|
8768
|
+
# CloudFront][5] on the AWS marketing site.
|
8617
8769
|
#
|
8618
8770
|
# Don't specify a value for `SSLSupportMethod` if you specified
|
8619
8771
|
# `<CloudFrontDefaultCertificate>true<CloudFrontDefaultCertificate>`.
|
8620
8772
|
#
|
8621
|
-
# For more information, see [
|
8622
|
-
#
|
8773
|
+
# For more information, see [Choosing How CloudFront Serves HTTPS
|
8774
|
+
# Requests][4] in the *Amazon CloudFront Developer Guide*.
|
8623
8775
|
#
|
8624
8776
|
#
|
8625
8777
|
#
|
8626
|
-
# [1]:
|
8778
|
+
# [1]: https://docs.aws.amazon.com/cloudfront/latest/APIReference/API_ViewerCertificate.html#cloudfront-Type-ViewerCertificate-ACMCertificateArn
|
8779
|
+
# [2]: https://docs.aws.amazon.com/cloudfront/latest/APIReference/API_ViewerCertificate.html#cloudfront-Type-ViewerCertificate-IAMCertificateId
|
8780
|
+
# [3]: http://en.wikipedia.org/wiki/Server_Name_Indication
|
8781
|
+
# [4]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/cnames-https-dedicated-ip-or-sni.html
|
8782
|
+
# [5]: http://aws.amazon.com/cloudfront/custom-ssl-domains/
|
8627
8783
|
# @return [String]
|
8628
8784
|
#
|
8629
8785
|
# @!attribute [rw] minimum_protocol_version
|
@@ -8664,32 +8820,44 @@ module Aws::CloudFront
|
|
8664
8820
|
#
|
8665
8821
|
#
|
8666
8822
|
#
|
8667
|
-
# [1]:
|
8823
|
+
# [1]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/secure-connections-supported-viewer-protocols-ciphers.html#secure-connections-supported-ciphers
|
8668
8824
|
# @return [String]
|
8669
8825
|
#
|
8670
8826
|
# @!attribute [rw] certificate
|
8671
|
-
# This field
|
8827
|
+
# This field is no longer used. Use one of the following fields
|
8672
8828
|
# instead:
|
8673
8829
|
#
|
8674
|
-
# *
|
8830
|
+
# * [ACMCertificateArn][1]
|
8831
|
+
#
|
8832
|
+
# * [IAMCertificateId][2]
|
8675
8833
|
#
|
8676
|
-
# *
|
8834
|
+
# * [CloudFrontDefaultCertificate][3]
|
8677
8835
|
#
|
8678
|
-
#
|
8836
|
+
#
|
8837
|
+
#
|
8838
|
+
# [1]: https://docs.aws.amazon.com/cloudfront/latest/APIReference/API_ViewerCertificate.html#cloudfront-Type-ViewerCertificate-ACMCertificateArn
|
8839
|
+
# [2]: https://docs.aws.amazon.com/cloudfront/latest/APIReference/API_ViewerCertificate.html#cloudfront-Type-ViewerCertificate-IAMCertificateId
|
8840
|
+
# [3]: https://docs.aws.amazon.com/cloudfront/latest/APIReference/API_ViewerCertificate.html#cloudfront-Type-ViewerCertificate-CloudFrontDefaultCertificate
|
8679
8841
|
# @return [String]
|
8680
8842
|
#
|
8681
8843
|
# @!attribute [rw] certificate_source
|
8682
|
-
# This field
|
8844
|
+
# This field is no longer used. Use one of the following fields
|
8683
8845
|
# instead:
|
8684
8846
|
#
|
8685
|
-
# *
|
8847
|
+
# * [ACMCertificateArn][1]
|
8848
|
+
#
|
8849
|
+
# * [IAMCertificateId][2]
|
8850
|
+
#
|
8851
|
+
# * [CloudFrontDefaultCertificate][3]
|
8852
|
+
#
|
8686
8853
|
#
|
8687
|
-
# * ViewerCertificate$IAMCertificateId
|
8688
8854
|
#
|
8689
|
-
#
|
8855
|
+
# [1]: https://docs.aws.amazon.com/cloudfront/latest/APIReference/API_ViewerCertificate.html#cloudfront-Type-ViewerCertificate-ACMCertificateArn
|
8856
|
+
# [2]: https://docs.aws.amazon.com/cloudfront/latest/APIReference/API_ViewerCertificate.html#cloudfront-Type-ViewerCertificate-IAMCertificateId
|
8857
|
+
# [3]: https://docs.aws.amazon.com/cloudfront/latest/APIReference/API_ViewerCertificate.html#cloudfront-Type-ViewerCertificate-CloudFrontDefaultCertificate
|
8690
8858
|
# @return [String]
|
8691
8859
|
#
|
8692
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-
|
8860
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2019-03-26/ViewerCertificate AWS API Documentation
|
8693
8861
|
#
|
8694
8862
|
class ViewerCertificate < Struct.new(
|
8695
8863
|
:cloud_front_default_certificate,
|