forked from aws/aws-sdk-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDistributionConfig.java
More file actions
2209 lines (2083 loc) · 103 KB
/
DistributionConfig.java
File metadata and controls
2209 lines (2083 loc) · 103 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
* Copyright 2014-2019 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
* the License. A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
* CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions
* and limitations under the License.
*/
package com.amazonaws.services.cloudfront.model;
import java.io.Serializable;
import javax.annotation.Generated;
/**
* <p>
* A distribution configuration.
* </p>
*
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2018-11-05/DistributionConfig" target="_top">AWS API
* Documentation</a>
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class DistributionConfig implements Serializable, Cloneable {
/**
* <p>
* A unique value (for example, a date-time stamp) that ensures that the request can't be replayed.
* </p>
* <p>
* If the value of <code>CallerReference</code> is new (regardless of the content of the
* <code>DistributionConfig</code> object), CloudFront creates a new distribution.
* </p>
* <p>
* If <code>CallerReference</code> is a value that you already sent in a previous request to create a distribution,
* CloudFront returns a <code>DistributionAlreadyExists</code> error.
* </p>
*/
private String callerReference;
/**
* <p>
* A complex type that contains information about CNAMEs (alternate domain names), if any, for this distribution.
* </p>
*/
private Aliases aliases;
/**
* <p>
* The object that you want CloudFront to request from your origin (for example, <code>index.html</code>) when a
* viewer requests the root URL for your distribution (<code>http://www.example.com</code>) instead of an object in
* your distribution (<code>http://www.example.com/product-description.html</code>). Specifying a default root
* object avoids exposing the contents of your distribution.
* </p>
* <p>
* Specify only the object name, for example, <code>index.html</code>. Don't add a <code>/</code> before the object
* name.
* </p>
* <p>
* If you don't want to specify a default root object when you create a distribution, include an empty
* <code>DefaultRootObject</code> element.
* </p>
* <p>
* To delete the default root object from an existing distribution, update the distribution configuration and
* include an empty <code>DefaultRootObject</code> element.
* </p>
* <p>
* To replace the default root object, update the distribution configuration and specify the new object.
* </p>
* <p>
* For more information about the default root object, see <a
* href="http://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/DefaultRootObject.html">Creating a
* Default Root Object</a> in the <i>Amazon CloudFront Developer Guide</i>.
* </p>
*/
private String defaultRootObject;
/**
* <p>
* A complex type that contains information about origins for this distribution.
* </p>
*/
private Origins origins;
/**
* <p>
* A complex type that contains information about origin groups for this distribution.
* </p>
*/
private OriginGroups originGroups;
/**
* <p>
* A complex type that describes the default cache behavior if you don't specify a <code>CacheBehavior</code>
* element or if files don't match any of the values of <code>PathPattern</code> in <code>CacheBehavior</code>
* elements. You must create exactly one default cache behavior.
* </p>
*/
private DefaultCacheBehavior defaultCacheBehavior;
/**
* <p>
* A complex type that contains zero or more <code>CacheBehavior</code> elements.
* </p>
*/
private CacheBehaviors cacheBehaviors;
/**
* <p>
* A complex type that controls the following:
* </p>
* <ul>
* <li>
* <p>
* Whether CloudFront replaces HTTP status codes in the 4xx and 5xx range with custom error messages before
* returning the response to the viewer.
* </p>
* </li>
* <li>
* <p>
* How long CloudFront caches HTTP status codes in the 4xx and 5xx range.
* </p>
* </li>
* </ul>
* <p>
* For more information about custom error pages, see <a
* href="http://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/custom-error-pages.html">Customizing
* Error Responses</a> in the <i>Amazon CloudFront Developer Guide</i>.
* </p>
*/
private CustomErrorResponses customErrorResponses;
/**
* <p>
* Any comments you want to include about the distribution.
* </p>
* <p>
* If you don't want to specify a comment, include an empty <code>Comment</code> element.
* </p>
* <p>
* To delete an existing comment, update the distribution configuration and include an empty <code>Comment</code>
* element.
* </p>
* <p>
* To add or change a comment, update the distribution configuration and specify the new comment.
* </p>
*/
private String comment;
/**
* <p>
* A complex type that controls whether access logs are written for the distribution.
* </p>
* <p>
* For more information about logging, see <a
* href="http://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/AccessLogs.html">Access Logs</a> in the
* <i>Amazon CloudFront Developer Guide</i>.
* </p>
*/
private LoggingConfig logging;
/**
* <p>
* The price class that corresponds with the maximum price that you want to pay for CloudFront service. If you
* specify <code>PriceClass_All</code>, CloudFront responds to requests for your objects from all CloudFront edge
* locations.
* </p>
* <p>
* If you specify a price class other than <code>PriceClass_All</code>, CloudFront serves your objects from the
* CloudFront edge location that has the lowest latency among the edge locations in your price class. Viewers who
* are in or near regions that are excluded from your specified price class may encounter slower performance.
* </p>
* <p>
* For more information about price classes, see <a
* href="http://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/PriceClass.html">Choosing the Price Class
* for a CloudFront Distribution</a> in the <i>Amazon CloudFront Developer Guide</i>. For information about
* CloudFront pricing, including how price classes (such as Price Class 100) map to CloudFront regions, see <a
* href="https://aws.amazon.com/cloudfront/pricing/">Amazon CloudFront Pricing</a>. For price class information,
* scroll down to see the table at the bottom of the page.
* </p>
*/
private String priceClass;
/**
* <p>
* From this field, you can enable or disable the selected distribution.
* </p>
*/
private Boolean enabled;
/** <p/> */
private ViewerCertificate viewerCertificate;
/** <p/> */
private Restrictions restrictions;
/**
* <p>
* A unique identifier that specifies the AWS WAF web ACL, if any, to associate with this distribution.
* </p>
* <p>
* AWS WAF is a web application firewall that lets you monitor the HTTP and HTTPS requests that are forwarded to
* CloudFront, and lets you control access to your content. Based on conditions that you specify, such as the IP
* addresses that requests originate from or the values of query strings, CloudFront responds to requests either
* with the requested content or with an HTTP 403 status code (Forbidden). You can also configure CloudFront to
* return a custom error page when a request is blocked. For more information about AWS WAF, see the <a
* href="http://docs.aws.amazon.com/waf/latest/developerguide/what-is-aws-waf.html">AWS WAF Developer Guide</a>.
* </p>
*/
private String webACLId;
/**
* <p>
* (Optional) Specify the maximum HTTP version that you want viewers to use to communicate with CloudFront. The
* default value for new web distributions is http2. Viewers that don't support HTTP/2 automatically use an earlier
* HTTP version.
* </p>
* <p>
* For viewers and CloudFront to use HTTP/2, viewers must support TLS 1.2 or later, and must support Server Name
* Identification (SNI).
* </p>
* <p>
* In general, configuring CloudFront to communicate with viewers using HTTP/2 reduces latency. You can improve
* performance by optimizing for HTTP/2. For more information, do an Internet search for "http/2 optimization."
* </p>
*/
private String httpVersion;
/**
* <p>
* If you want CloudFront to respond to IPv6 DNS requests with an IPv6 address for your distribution, specify
* <code>true</code>. If you specify <code>false</code>, CloudFront responds to IPv6 DNS requests with the DNS
* response code <code>NOERROR</code> and with no IP addresses. This allows viewers to submit a second request, for
* an IPv4 address for your distribution.
* </p>
* <p>
* In general, you should enable IPv6 if you have users on IPv6 networks who want to access your content. However,
* if you're using signed URLs or signed cookies to restrict access to your content, and if you're using a custom
* policy that includes the <code>IpAddress</code> parameter to restrict the IP addresses that can access your
* content, don't enable IPv6. If you want to restrict access to some content by IP address and not restrict access
* to other content (or restrict access but not by IP address), you can create two distributions. For more
* information, see <a href=
* "http://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/private-content-creating-signed-url-custom-policy.html"
* >Creating a Signed URL Using a Custom Policy</a> in the <i>Amazon CloudFront Developer Guide</i>.
* </p>
* <p>
* If you're using an Amazon Route 53 alias resource record set to route traffic to your CloudFront distribution,
* you need to create a second alias resource record set when both of the following are true:
* </p>
* <ul>
* <li>
* <p>
* You enable IPv6 for the distribution
* </p>
* </li>
* <li>
* <p>
* You're using alternate domain names in the URLs for your objects
* </p>
* </li>
* </ul>
* <p>
* For more information, see <a
* href="http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/routing-to-cloudfront-distribution.html">Routing
* Traffic to an Amazon CloudFront Web Distribution by Using Your Domain Name</a> in the <i>Amazon Route 53
* Developer Guide</i>.
* </p>
* <p>
* If you created a CNAME resource record set, either with Amazon Route 53 or with another DNS service, you don't
* need to make any changes. A CNAME record will route traffic to your distribution regardless of the IP address
* format of the viewer request.
* </p>
*/
private Boolean isIPV6Enabled;
/**
* Default constructor for DistributionConfig object. Callers should use the setter or fluent setter (with...)
* methods to initialize the object after creating it.
*/
public DistributionConfig() {
}
/**
* Constructs a new DistributionConfig object. Callers should use the setter or fluent setter (with...) methods to
* initialize any additional object members.
*
* @param callerReference
* A unique value (for example, a date-time stamp) that ensures that the request can't be replayed.</p>
* <p>
* If the value of <code>CallerReference</code> is new (regardless of the content of the
* <code>DistributionConfig</code> object), CloudFront creates a new distribution.
* </p>
* <p>
* If <code>CallerReference</code> is a value that you already sent in a previous request to create a
* distribution, CloudFront returns a <code>DistributionAlreadyExists</code> error.
* @param enabled
* From this field, you can enable or disable the selected distribution.
*/
public DistributionConfig(String callerReference, Boolean enabled) {
setCallerReference(callerReference);
setEnabled(enabled);
}
/**
* <p>
* A unique value (for example, a date-time stamp) that ensures that the request can't be replayed.
* </p>
* <p>
* If the value of <code>CallerReference</code> is new (regardless of the content of the
* <code>DistributionConfig</code> object), CloudFront creates a new distribution.
* </p>
* <p>
* If <code>CallerReference</code> is a value that you already sent in a previous request to create a distribution,
* CloudFront returns a <code>DistributionAlreadyExists</code> error.
* </p>
*
* @param callerReference
* A unique value (for example, a date-time stamp) that ensures that the request can't be replayed.</p>
* <p>
* If the value of <code>CallerReference</code> is new (regardless of the content of the
* <code>DistributionConfig</code> object), CloudFront creates a new distribution.
* </p>
* <p>
* If <code>CallerReference</code> is a value that you already sent in a previous request to create a
* distribution, CloudFront returns a <code>DistributionAlreadyExists</code> error.
*/
public void setCallerReference(String callerReference) {
this.callerReference = callerReference;
}
/**
* <p>
* A unique value (for example, a date-time stamp) that ensures that the request can't be replayed.
* </p>
* <p>
* If the value of <code>CallerReference</code> is new (regardless of the content of the
* <code>DistributionConfig</code> object), CloudFront creates a new distribution.
* </p>
* <p>
* If <code>CallerReference</code> is a value that you already sent in a previous request to create a distribution,
* CloudFront returns a <code>DistributionAlreadyExists</code> error.
* </p>
*
* @return A unique value (for example, a date-time stamp) that ensures that the request can't be replayed.</p>
* <p>
* If the value of <code>CallerReference</code> is new (regardless of the content of the
* <code>DistributionConfig</code> object), CloudFront creates a new distribution.
* </p>
* <p>
* If <code>CallerReference</code> is a value that you already sent in a previous request to create a
* distribution, CloudFront returns a <code>DistributionAlreadyExists</code> error.
*/
public String getCallerReference() {
return this.callerReference;
}
/**
* <p>
* A unique value (for example, a date-time stamp) that ensures that the request can't be replayed.
* </p>
* <p>
* If the value of <code>CallerReference</code> is new (regardless of the content of the
* <code>DistributionConfig</code> object), CloudFront creates a new distribution.
* </p>
* <p>
* If <code>CallerReference</code> is a value that you already sent in a previous request to create a distribution,
* CloudFront returns a <code>DistributionAlreadyExists</code> error.
* </p>
*
* @param callerReference
* A unique value (for example, a date-time stamp) that ensures that the request can't be replayed.</p>
* <p>
* If the value of <code>CallerReference</code> is new (regardless of the content of the
* <code>DistributionConfig</code> object), CloudFront creates a new distribution.
* </p>
* <p>
* If <code>CallerReference</code> is a value that you already sent in a previous request to create a
* distribution, CloudFront returns a <code>DistributionAlreadyExists</code> error.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DistributionConfig withCallerReference(String callerReference) {
setCallerReference(callerReference);
return this;
}
/**
* <p>
* A complex type that contains information about CNAMEs (alternate domain names), if any, for this distribution.
* </p>
*
* @param aliases
* A complex type that contains information about CNAMEs (alternate domain names), if any, for this
* distribution.
*/
public void setAliases(Aliases aliases) {
this.aliases = aliases;
}
/**
* <p>
* A complex type that contains information about CNAMEs (alternate domain names), if any, for this distribution.
* </p>
*
* @return A complex type that contains information about CNAMEs (alternate domain names), if any, for this
* distribution.
*/
public Aliases getAliases() {
return this.aliases;
}
/**
* <p>
* A complex type that contains information about CNAMEs (alternate domain names), if any, for this distribution.
* </p>
*
* @param aliases
* A complex type that contains information about CNAMEs (alternate domain names), if any, for this
* distribution.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DistributionConfig withAliases(Aliases aliases) {
setAliases(aliases);
return this;
}
/**
* <p>
* The object that you want CloudFront to request from your origin (for example, <code>index.html</code>) when a
* viewer requests the root URL for your distribution (<code>http://www.example.com</code>) instead of an object in
* your distribution (<code>http://www.example.com/product-description.html</code>). Specifying a default root
* object avoids exposing the contents of your distribution.
* </p>
* <p>
* Specify only the object name, for example, <code>index.html</code>. Don't add a <code>/</code> before the object
* name.
* </p>
* <p>
* If you don't want to specify a default root object when you create a distribution, include an empty
* <code>DefaultRootObject</code> element.
* </p>
* <p>
* To delete the default root object from an existing distribution, update the distribution configuration and
* include an empty <code>DefaultRootObject</code> element.
* </p>
* <p>
* To replace the default root object, update the distribution configuration and specify the new object.
* </p>
* <p>
* For more information about the default root object, see <a
* href="http://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/DefaultRootObject.html">Creating a
* Default Root Object</a> in the <i>Amazon CloudFront Developer Guide</i>.
* </p>
*
* @param defaultRootObject
* The object that you want CloudFront to request from your origin (for example, <code>index.html</code>)
* when a viewer requests the root URL for your distribution (<code>http://www.example.com</code>) instead of
* an object in your distribution (<code>http://www.example.com/product-description.html</code>). Specifying
* a default root object avoids exposing the contents of your distribution.</p>
* <p>
* Specify only the object name, for example, <code>index.html</code>. Don't add a <code>/</code> before the
* object name.
* </p>
* <p>
* If you don't want to specify a default root object when you create a distribution, include an empty
* <code>DefaultRootObject</code> element.
* </p>
* <p>
* To delete the default root object from an existing distribution, update the distribution configuration and
* include an empty <code>DefaultRootObject</code> element.
* </p>
* <p>
* To replace the default root object, update the distribution configuration and specify the new object.
* </p>
* <p>
* For more information about the default root object, see <a
* href="http://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/DefaultRootObject.html">Creating a
* Default Root Object</a> in the <i>Amazon CloudFront Developer Guide</i>.
*/
public void setDefaultRootObject(String defaultRootObject) {
this.defaultRootObject = defaultRootObject;
}
/**
* <p>
* The object that you want CloudFront to request from your origin (for example, <code>index.html</code>) when a
* viewer requests the root URL for your distribution (<code>http://www.example.com</code>) instead of an object in
* your distribution (<code>http://www.example.com/product-description.html</code>). Specifying a default root
* object avoids exposing the contents of your distribution.
* </p>
* <p>
* Specify only the object name, for example, <code>index.html</code>. Don't add a <code>/</code> before the object
* name.
* </p>
* <p>
* If you don't want to specify a default root object when you create a distribution, include an empty
* <code>DefaultRootObject</code> element.
* </p>
* <p>
* To delete the default root object from an existing distribution, update the distribution configuration and
* include an empty <code>DefaultRootObject</code> element.
* </p>
* <p>
* To replace the default root object, update the distribution configuration and specify the new object.
* </p>
* <p>
* For more information about the default root object, see <a
* href="http://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/DefaultRootObject.html">Creating a
* Default Root Object</a> in the <i>Amazon CloudFront Developer Guide</i>.
* </p>
*
* @return The object that you want CloudFront to request from your origin (for example, <code>index.html</code>)
* when a viewer requests the root URL for your distribution (<code>http://www.example.com</code>) instead
* of an object in your distribution (<code>http://www.example.com/product-description.html</code>).
* Specifying a default root object avoids exposing the contents of your distribution.</p>
* <p>
* Specify only the object name, for example, <code>index.html</code>. Don't add a <code>/</code> before the
* object name.
* </p>
* <p>
* If you don't want to specify a default root object when you create a distribution, include an empty
* <code>DefaultRootObject</code> element.
* </p>
* <p>
* To delete the default root object from an existing distribution, update the distribution configuration
* and include an empty <code>DefaultRootObject</code> element.
* </p>
* <p>
* To replace the default root object, update the distribution configuration and specify the new object.
* </p>
* <p>
* For more information about the default root object, see <a
* href="http://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/DefaultRootObject.html">Creating
* a Default Root Object</a> in the <i>Amazon CloudFront Developer Guide</i>.
*/
public String getDefaultRootObject() {
return this.defaultRootObject;
}
/**
* <p>
* The object that you want CloudFront to request from your origin (for example, <code>index.html</code>) when a
* viewer requests the root URL for your distribution (<code>http://www.example.com</code>) instead of an object in
* your distribution (<code>http://www.example.com/product-description.html</code>). Specifying a default root
* object avoids exposing the contents of your distribution.
* </p>
* <p>
* Specify only the object name, for example, <code>index.html</code>. Don't add a <code>/</code> before the object
* name.
* </p>
* <p>
* If you don't want to specify a default root object when you create a distribution, include an empty
* <code>DefaultRootObject</code> element.
* </p>
* <p>
* To delete the default root object from an existing distribution, update the distribution configuration and
* include an empty <code>DefaultRootObject</code> element.
* </p>
* <p>
* To replace the default root object, update the distribution configuration and specify the new object.
* </p>
* <p>
* For more information about the default root object, see <a
* href="http://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/DefaultRootObject.html">Creating a
* Default Root Object</a> in the <i>Amazon CloudFront Developer Guide</i>.
* </p>
*
* @param defaultRootObject
* The object that you want CloudFront to request from your origin (for example, <code>index.html</code>)
* when a viewer requests the root URL for your distribution (<code>http://www.example.com</code>) instead of
* an object in your distribution (<code>http://www.example.com/product-description.html</code>). Specifying
* a default root object avoids exposing the contents of your distribution.</p>
* <p>
* Specify only the object name, for example, <code>index.html</code>. Don't add a <code>/</code> before the
* object name.
* </p>
* <p>
* If you don't want to specify a default root object when you create a distribution, include an empty
* <code>DefaultRootObject</code> element.
* </p>
* <p>
* To delete the default root object from an existing distribution, update the distribution configuration and
* include an empty <code>DefaultRootObject</code> element.
* </p>
* <p>
* To replace the default root object, update the distribution configuration and specify the new object.
* </p>
* <p>
* For more information about the default root object, see <a
* href="http://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/DefaultRootObject.html">Creating a
* Default Root Object</a> in the <i>Amazon CloudFront Developer Guide</i>.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DistributionConfig withDefaultRootObject(String defaultRootObject) {
setDefaultRootObject(defaultRootObject);
return this;
}
/**
* <p>
* A complex type that contains information about origins for this distribution.
* </p>
*
* @param origins
* A complex type that contains information about origins for this distribution.
*/
public void setOrigins(Origins origins) {
this.origins = origins;
}
/**
* <p>
* A complex type that contains information about origins for this distribution.
* </p>
*
* @return A complex type that contains information about origins for this distribution.
*/
public Origins getOrigins() {
return this.origins;
}
/**
* <p>
* A complex type that contains information about origins for this distribution.
* </p>
*
* @param origins
* A complex type that contains information about origins for this distribution.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DistributionConfig withOrigins(Origins origins) {
setOrigins(origins);
return this;
}
/**
* <p>
* A complex type that contains information about origin groups for this distribution.
* </p>
*
* @param originGroups
* A complex type that contains information about origin groups for this distribution.
*/
public void setOriginGroups(OriginGroups originGroups) {
this.originGroups = originGroups;
}
/**
* <p>
* A complex type that contains information about origin groups for this distribution.
* </p>
*
* @return A complex type that contains information about origin groups for this distribution.
*/
public OriginGroups getOriginGroups() {
return this.originGroups;
}
/**
* <p>
* A complex type that contains information about origin groups for this distribution.
* </p>
*
* @param originGroups
* A complex type that contains information about origin groups for this distribution.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DistributionConfig withOriginGroups(OriginGroups originGroups) {
setOriginGroups(originGroups);
return this;
}
/**
* <p>
* A complex type that describes the default cache behavior if you don't specify a <code>CacheBehavior</code>
* element or if files don't match any of the values of <code>PathPattern</code> in <code>CacheBehavior</code>
* elements. You must create exactly one default cache behavior.
* </p>
*
* @param defaultCacheBehavior
* A complex type that describes the default cache behavior if you don't specify a <code>CacheBehavior</code>
* element or if files don't match any of the values of <code>PathPattern</code> in
* <code>CacheBehavior</code> elements. You must create exactly one default cache behavior.
*/
public void setDefaultCacheBehavior(DefaultCacheBehavior defaultCacheBehavior) {
this.defaultCacheBehavior = defaultCacheBehavior;
}
/**
* <p>
* A complex type that describes the default cache behavior if you don't specify a <code>CacheBehavior</code>
* element or if files don't match any of the values of <code>PathPattern</code> in <code>CacheBehavior</code>
* elements. You must create exactly one default cache behavior.
* </p>
*
* @return A complex type that describes the default cache behavior if you don't specify a
* <code>CacheBehavior</code> element or if files don't match any of the values of <code>PathPattern</code>
* in <code>CacheBehavior</code> elements. You must create exactly one default cache behavior.
*/
public DefaultCacheBehavior getDefaultCacheBehavior() {
return this.defaultCacheBehavior;
}
/**
* <p>
* A complex type that describes the default cache behavior if you don't specify a <code>CacheBehavior</code>
* element or if files don't match any of the values of <code>PathPattern</code> in <code>CacheBehavior</code>
* elements. You must create exactly one default cache behavior.
* </p>
*
* @param defaultCacheBehavior
* A complex type that describes the default cache behavior if you don't specify a <code>CacheBehavior</code>
* element or if files don't match any of the values of <code>PathPattern</code> in
* <code>CacheBehavior</code> elements. You must create exactly one default cache behavior.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DistributionConfig withDefaultCacheBehavior(DefaultCacheBehavior defaultCacheBehavior) {
setDefaultCacheBehavior(defaultCacheBehavior);
return this;
}
/**
* <p>
* A complex type that contains zero or more <code>CacheBehavior</code> elements.
* </p>
*
* @param cacheBehaviors
* A complex type that contains zero or more <code>CacheBehavior</code> elements.
*/
public void setCacheBehaviors(CacheBehaviors cacheBehaviors) {
this.cacheBehaviors = cacheBehaviors;
}
/**
* <p>
* A complex type that contains zero or more <code>CacheBehavior</code> elements.
* </p>
*
* @return A complex type that contains zero or more <code>CacheBehavior</code> elements.
*/
public CacheBehaviors getCacheBehaviors() {
return this.cacheBehaviors;
}
/**
* <p>
* A complex type that contains zero or more <code>CacheBehavior</code> elements.
* </p>
*
* @param cacheBehaviors
* A complex type that contains zero or more <code>CacheBehavior</code> elements.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DistributionConfig withCacheBehaviors(CacheBehaviors cacheBehaviors) {
setCacheBehaviors(cacheBehaviors);
return this;
}
/**
* <p>
* A complex type that controls the following:
* </p>
* <ul>
* <li>
* <p>
* Whether CloudFront replaces HTTP status codes in the 4xx and 5xx range with custom error messages before
* returning the response to the viewer.
* </p>
* </li>
* <li>
* <p>
* How long CloudFront caches HTTP status codes in the 4xx and 5xx range.
* </p>
* </li>
* </ul>
* <p>
* For more information about custom error pages, see <a
* href="http://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/custom-error-pages.html">Customizing
* Error Responses</a> in the <i>Amazon CloudFront Developer Guide</i>.
* </p>
*
* @param customErrorResponses
* A complex type that controls the following:</p>
* <ul>
* <li>
* <p>
* Whether CloudFront replaces HTTP status codes in the 4xx and 5xx range with custom error messages before
* returning the response to the viewer.
* </p>
* </li>
* <li>
* <p>
* How long CloudFront caches HTTP status codes in the 4xx and 5xx range.
* </p>
* </li>
* </ul>
* <p>
* For more information about custom error pages, see <a
* href="http://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/custom-error-pages.html"
* >Customizing Error Responses</a> in the <i>Amazon CloudFront Developer Guide</i>.
*/
public void setCustomErrorResponses(CustomErrorResponses customErrorResponses) {
this.customErrorResponses = customErrorResponses;
}
/**
* <p>
* A complex type that controls the following:
* </p>
* <ul>
* <li>
* <p>
* Whether CloudFront replaces HTTP status codes in the 4xx and 5xx range with custom error messages before
* returning the response to the viewer.
* </p>
* </li>
* <li>
* <p>
* How long CloudFront caches HTTP status codes in the 4xx and 5xx range.
* </p>
* </li>
* </ul>
* <p>
* For more information about custom error pages, see <a
* href="http://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/custom-error-pages.html">Customizing
* Error Responses</a> in the <i>Amazon CloudFront Developer Guide</i>.
* </p>
*
* @return A complex type that controls the following:</p>
* <ul>
* <li>
* <p>
* Whether CloudFront replaces HTTP status codes in the 4xx and 5xx range with custom error messages before
* returning the response to the viewer.
* </p>
* </li>
* <li>
* <p>
* How long CloudFront caches HTTP status codes in the 4xx and 5xx range.
* </p>
* </li>
* </ul>
* <p>
* For more information about custom error pages, see <a
* href="http://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/custom-error-pages.html"
* >Customizing Error Responses</a> in the <i>Amazon CloudFront Developer Guide</i>.
*/
public CustomErrorResponses getCustomErrorResponses() {
return this.customErrorResponses;
}
/**
* <p>
* A complex type that controls the following:
* </p>
* <ul>
* <li>
* <p>
* Whether CloudFront replaces HTTP status codes in the 4xx and 5xx range with custom error messages before
* returning the response to the viewer.
* </p>
* </li>
* <li>
* <p>
* How long CloudFront caches HTTP status codes in the 4xx and 5xx range.
* </p>
* </li>
* </ul>
* <p>
* For more information about custom error pages, see <a
* href="http://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/custom-error-pages.html">Customizing
* Error Responses</a> in the <i>Amazon CloudFront Developer Guide</i>.
* </p>
*
* @param customErrorResponses
* A complex type that controls the following:</p>
* <ul>
* <li>
* <p>
* Whether CloudFront replaces HTTP status codes in the 4xx and 5xx range with custom error messages before
* returning the response to the viewer.
* </p>
* </li>
* <li>
* <p>
* How long CloudFront caches HTTP status codes in the 4xx and 5xx range.
* </p>
* </li>
* </ul>
* <p>
* For more information about custom error pages, see <a
* href="http://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/custom-error-pages.html"
* >Customizing Error Responses</a> in the <i>Amazon CloudFront Developer Guide</i>.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DistributionConfig withCustomErrorResponses(CustomErrorResponses customErrorResponses) {
setCustomErrorResponses(customErrorResponses);
return this;
}
/**
* <p>
* Any comments you want to include about the distribution.
* </p>
* <p>
* If you don't want to specify a comment, include an empty <code>Comment</code> element.
* </p>
* <p>
* To delete an existing comment, update the distribution configuration and include an empty <code>Comment</code>
* element.
* </p>
* <p>
* To add or change a comment, update the distribution configuration and specify the new comment.
* </p>
*
* @param comment
* Any comments you want to include about the distribution.</p>
* <p>
* If you don't want to specify a comment, include an empty <code>Comment</code> element.
* </p>
* <p>
* To delete an existing comment, update the distribution configuration and include an empty
* <code>Comment</code> element.
* </p>
* <p>
* To add or change a comment, update the distribution configuration and specify the new comment.
*/
public void setComment(String comment) {
this.comment = comment;
}
/**
* <p>
* Any comments you want to include about the distribution.
* </p>
* <p>
* If you don't want to specify a comment, include an empty <code>Comment</code> element.
* </p>
* <p>
* To delete an existing comment, update the distribution configuration and include an empty <code>Comment</code>
* element.
* </p>
* <p>
* To add or change a comment, update the distribution configuration and specify the new comment.
* </p>
*
* @return Any comments you want to include about the distribution.</p>
* <p>
* If you don't want to specify a comment, include an empty <code>Comment</code> element.
* </p>
* <p>
* To delete an existing comment, update the distribution configuration and include an empty
* <code>Comment</code> element.
* </p>
* <p>
* To add or change a comment, update the distribution configuration and specify the new comment.
*/
public String getComment() {
return this.comment;
}
/**
* <p>
* Any comments you want to include about the distribution.
* </p>
* <p>
* If you don't want to specify a comment, include an empty <code>Comment</code> element.
* </p>
* <p>
* To delete an existing comment, update the distribution configuration and include an empty <code>Comment</code>
* element.
* </p>
* <p>
* To add or change a comment, update the distribution configuration and specify the new comment.
* </p>
*
* @param comment
* Any comments you want to include about the distribution.</p>
* <p>
* If you don't want to specify a comment, include an empty <code>Comment</code> element.
* </p>
* <p>
* To delete an existing comment, update the distribution configuration and include an empty
* <code>Comment</code> element.
* </p>
* <p>
* To add or change a comment, update the distribution configuration and specify the new comment.
* @return Returns a reference to this object so that method calls can be chained together.