forked from aws/aws-sdk-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCustomOriginConfig.java
More file actions
505 lines (455 loc) · 19 KB
/
CustomOriginConfig.java
File metadata and controls
505 lines (455 loc) · 19 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
/*
* 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 customer origin or an Amazon S3 bucket configured as a website endpoint.
* </p>
*
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2018-11-05/CustomOriginConfig" target="_top">AWS API
* Documentation</a>
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class CustomOriginConfig implements Serializable, Cloneable {
/**
* <p>
* The HTTP port the custom origin listens on.
* </p>
*/
private Integer hTTPPort;
/**
* <p>
* The HTTPS port the custom origin listens on.
* </p>
*/
private Integer hTTPSPort;
/**
* <p>
* The origin protocol policy to apply to your origin.
* </p>
*/
private String originProtocolPolicy;
/**
* <p>
* The SSL/TLS protocols that you want CloudFront to use when communicating with your origin over HTTPS.
* </p>
*/
private OriginSslProtocols originSslProtocols;
/**
* <p>
* You can create a custom origin read timeout. All timeout units are in seconds. The default origin read timeout is
* 30 seconds, but you can configure custom timeout lengths using the CloudFront API. The minimum timeout length is
* 4 seconds; the maximum is 60 seconds.
* </p>
* <p>
* If you need to increase the maximum time limit, contact the <a
* href="https://console.aws.amazon.com/support/home#/">AWS Support Center</a>.
* </p>
*/
private Integer originReadTimeout;
/**
* <p>
* You can create a custom keep-alive timeout. All timeout units are in seconds. The default keep-alive timeout is 5
* seconds, but you can configure custom timeout lengths using the CloudFront API. The minimum timeout length is 1
* second; the maximum is 60 seconds.
* </p>
* <p>
* If you need to increase the maximum time limit, contact the <a
* href="https://console.aws.amazon.com/support/home#/">AWS Support Center</a>.
* </p>
*/
private Integer originKeepaliveTimeout;
/**
* <p>
* The HTTP port the custom origin listens on.
* </p>
*
* @param hTTPPort
* The HTTP port the custom origin listens on.
*/
public void setHTTPPort(Integer hTTPPort) {
this.hTTPPort = hTTPPort;
}
/**
* <p>
* The HTTP port the custom origin listens on.
* </p>
*
* @return The HTTP port the custom origin listens on.
*/
public Integer getHTTPPort() {
return this.hTTPPort;
}
/**
* <p>
* The HTTP port the custom origin listens on.
* </p>
*
* @param hTTPPort
* The HTTP port the custom origin listens on.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CustomOriginConfig withHTTPPort(Integer hTTPPort) {
setHTTPPort(hTTPPort);
return this;
}
/**
* <p>
* The HTTPS port the custom origin listens on.
* </p>
*
* @param hTTPSPort
* The HTTPS port the custom origin listens on.
*/
public void setHTTPSPort(Integer hTTPSPort) {
this.hTTPSPort = hTTPSPort;
}
/**
* <p>
* The HTTPS port the custom origin listens on.
* </p>
*
* @return The HTTPS port the custom origin listens on.
*/
public Integer getHTTPSPort() {
return this.hTTPSPort;
}
/**
* <p>
* The HTTPS port the custom origin listens on.
* </p>
*
* @param hTTPSPort
* The HTTPS port the custom origin listens on.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CustomOriginConfig withHTTPSPort(Integer hTTPSPort) {
setHTTPSPort(hTTPSPort);
return this;
}
/**
* <p>
* The origin protocol policy to apply to your origin.
* </p>
*
* @param originProtocolPolicy
* The origin protocol policy to apply to your origin.
* @see OriginProtocolPolicy
*/
public void setOriginProtocolPolicy(String originProtocolPolicy) {
this.originProtocolPolicy = originProtocolPolicy;
}
/**
* <p>
* The origin protocol policy to apply to your origin.
* </p>
*
* @return The origin protocol policy to apply to your origin.
* @see OriginProtocolPolicy
*/
public String getOriginProtocolPolicy() {
return this.originProtocolPolicy;
}
/**
* <p>
* The origin protocol policy to apply to your origin.
* </p>
*
* @param originProtocolPolicy
* The origin protocol policy to apply to your origin.
* @return Returns a reference to this object so that method calls can be chained together.
* @see OriginProtocolPolicy
*/
public CustomOriginConfig withOriginProtocolPolicy(String originProtocolPolicy) {
setOriginProtocolPolicy(originProtocolPolicy);
return this;
}
/**
* <p>
* The origin protocol policy to apply to your origin.
* </p>
*
* @param originProtocolPolicy
* The origin protocol policy to apply to your origin.
* @see OriginProtocolPolicy
*/
public void setOriginProtocolPolicy(OriginProtocolPolicy originProtocolPolicy) {
withOriginProtocolPolicy(originProtocolPolicy);
}
/**
* <p>
* The origin protocol policy to apply to your origin.
* </p>
*
* @param originProtocolPolicy
* The origin protocol policy to apply to your origin.
* @return Returns a reference to this object so that method calls can be chained together.
* @see OriginProtocolPolicy
*/
public CustomOriginConfig withOriginProtocolPolicy(OriginProtocolPolicy originProtocolPolicy) {
this.originProtocolPolicy = originProtocolPolicy.toString();
return this;
}
/**
* <p>
* The SSL/TLS protocols that you want CloudFront to use when communicating with your origin over HTTPS.
* </p>
*
* @param originSslProtocols
* The SSL/TLS protocols that you want CloudFront to use when communicating with your origin over HTTPS.
*/
public void setOriginSslProtocols(OriginSslProtocols originSslProtocols) {
this.originSslProtocols = originSslProtocols;
}
/**
* <p>
* The SSL/TLS protocols that you want CloudFront to use when communicating with your origin over HTTPS.
* </p>
*
* @return The SSL/TLS protocols that you want CloudFront to use when communicating with your origin over HTTPS.
*/
public OriginSslProtocols getOriginSslProtocols() {
return this.originSslProtocols;
}
/**
* <p>
* The SSL/TLS protocols that you want CloudFront to use when communicating with your origin over HTTPS.
* </p>
*
* @param originSslProtocols
* The SSL/TLS protocols that you want CloudFront to use when communicating with your origin over HTTPS.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CustomOriginConfig withOriginSslProtocols(OriginSslProtocols originSslProtocols) {
setOriginSslProtocols(originSslProtocols);
return this;
}
/**
* <p>
* You can create a custom origin read timeout. All timeout units are in seconds. The default origin read timeout is
* 30 seconds, but you can configure custom timeout lengths using the CloudFront API. The minimum timeout length is
* 4 seconds; the maximum is 60 seconds.
* </p>
* <p>
* If you need to increase the maximum time limit, contact the <a
* href="https://console.aws.amazon.com/support/home#/">AWS Support Center</a>.
* </p>
*
* @param originReadTimeout
* You can create a custom origin read timeout. All timeout units are in seconds. The default origin read
* timeout is 30 seconds, but you can configure custom timeout lengths using the CloudFront API. The minimum
* timeout length is 4 seconds; the maximum is 60 seconds.</p>
* <p>
* If you need to increase the maximum time limit, contact the <a
* href="https://console.aws.amazon.com/support/home#/">AWS Support Center</a>.
*/
public void setOriginReadTimeout(Integer originReadTimeout) {
this.originReadTimeout = originReadTimeout;
}
/**
* <p>
* You can create a custom origin read timeout. All timeout units are in seconds. The default origin read timeout is
* 30 seconds, but you can configure custom timeout lengths using the CloudFront API. The minimum timeout length is
* 4 seconds; the maximum is 60 seconds.
* </p>
* <p>
* If you need to increase the maximum time limit, contact the <a
* href="https://console.aws.amazon.com/support/home#/">AWS Support Center</a>.
* </p>
*
* @return You can create a custom origin read timeout. All timeout units are in seconds. The default origin read
* timeout is 30 seconds, but you can configure custom timeout lengths using the CloudFront API. The minimum
* timeout length is 4 seconds; the maximum is 60 seconds.</p>
* <p>
* If you need to increase the maximum time limit, contact the <a
* href="https://console.aws.amazon.com/support/home#/">AWS Support Center</a>.
*/
public Integer getOriginReadTimeout() {
return this.originReadTimeout;
}
/**
* <p>
* You can create a custom origin read timeout. All timeout units are in seconds. The default origin read timeout is
* 30 seconds, but you can configure custom timeout lengths using the CloudFront API. The minimum timeout length is
* 4 seconds; the maximum is 60 seconds.
* </p>
* <p>
* If you need to increase the maximum time limit, contact the <a
* href="https://console.aws.amazon.com/support/home#/">AWS Support Center</a>.
* </p>
*
* @param originReadTimeout
* You can create a custom origin read timeout. All timeout units are in seconds. The default origin read
* timeout is 30 seconds, but you can configure custom timeout lengths using the CloudFront API. The minimum
* timeout length is 4 seconds; the maximum is 60 seconds.</p>
* <p>
* If you need to increase the maximum time limit, contact the <a
* href="https://console.aws.amazon.com/support/home#/">AWS Support Center</a>.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CustomOriginConfig withOriginReadTimeout(Integer originReadTimeout) {
setOriginReadTimeout(originReadTimeout);
return this;
}
/**
* <p>
* You can create a custom keep-alive timeout. All timeout units are in seconds. The default keep-alive timeout is 5
* seconds, but you can configure custom timeout lengths using the CloudFront API. The minimum timeout length is 1
* second; the maximum is 60 seconds.
* </p>
* <p>
* If you need to increase the maximum time limit, contact the <a
* href="https://console.aws.amazon.com/support/home#/">AWS Support Center</a>.
* </p>
*
* @param originKeepaliveTimeout
* You can create a custom keep-alive timeout. All timeout units are in seconds. The default keep-alive
* timeout is 5 seconds, but you can configure custom timeout lengths using the CloudFront API. The minimum
* timeout length is 1 second; the maximum is 60 seconds.</p>
* <p>
* If you need to increase the maximum time limit, contact the <a
* href="https://console.aws.amazon.com/support/home#/">AWS Support Center</a>.
*/
public void setOriginKeepaliveTimeout(Integer originKeepaliveTimeout) {
this.originKeepaliveTimeout = originKeepaliveTimeout;
}
/**
* <p>
* You can create a custom keep-alive timeout. All timeout units are in seconds. The default keep-alive timeout is 5
* seconds, but you can configure custom timeout lengths using the CloudFront API. The minimum timeout length is 1
* second; the maximum is 60 seconds.
* </p>
* <p>
* If you need to increase the maximum time limit, contact the <a
* href="https://console.aws.amazon.com/support/home#/">AWS Support Center</a>.
* </p>
*
* @return You can create a custom keep-alive timeout. All timeout units are in seconds. The default keep-alive
* timeout is 5 seconds, but you can configure custom timeout lengths using the CloudFront API. The minimum
* timeout length is 1 second; the maximum is 60 seconds.</p>
* <p>
* If you need to increase the maximum time limit, contact the <a
* href="https://console.aws.amazon.com/support/home#/">AWS Support Center</a>.
*/
public Integer getOriginKeepaliveTimeout() {
return this.originKeepaliveTimeout;
}
/**
* <p>
* You can create a custom keep-alive timeout. All timeout units are in seconds. The default keep-alive timeout is 5
* seconds, but you can configure custom timeout lengths using the CloudFront API. The minimum timeout length is 1
* second; the maximum is 60 seconds.
* </p>
* <p>
* If you need to increase the maximum time limit, contact the <a
* href="https://console.aws.amazon.com/support/home#/">AWS Support Center</a>.
* </p>
*
* @param originKeepaliveTimeout
* You can create a custom keep-alive timeout. All timeout units are in seconds. The default keep-alive
* timeout is 5 seconds, but you can configure custom timeout lengths using the CloudFront API. The minimum
* timeout length is 1 second; the maximum is 60 seconds.</p>
* <p>
* If you need to increase the maximum time limit, contact the <a
* href="https://console.aws.amazon.com/support/home#/">AWS Support Center</a>.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CustomOriginConfig withOriginKeepaliveTimeout(Integer originKeepaliveTimeout) {
setOriginKeepaliveTimeout(originKeepaliveTimeout);
return this;
}
/**
* Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be
* redacted from this string using a placeholder value.
*
* @return A string representation of this object.
*
* @see java.lang.Object#toString()
*/
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("{");
if (getHTTPPort() != null)
sb.append("HTTPPort: ").append(getHTTPPort()).append(",");
if (getHTTPSPort() != null)
sb.append("HTTPSPort: ").append(getHTTPSPort()).append(",");
if (getOriginProtocolPolicy() != null)
sb.append("OriginProtocolPolicy: ").append(getOriginProtocolPolicy()).append(",");
if (getOriginSslProtocols() != null)
sb.append("OriginSslProtocols: ").append(getOriginSslProtocols()).append(",");
if (getOriginReadTimeout() != null)
sb.append("OriginReadTimeout: ").append(getOriginReadTimeout()).append(",");
if (getOriginKeepaliveTimeout() != null)
sb.append("OriginKeepaliveTimeout: ").append(getOriginKeepaliveTimeout());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof CustomOriginConfig == false)
return false;
CustomOriginConfig other = (CustomOriginConfig) obj;
if (other.getHTTPPort() == null ^ this.getHTTPPort() == null)
return false;
if (other.getHTTPPort() != null && other.getHTTPPort().equals(this.getHTTPPort()) == false)
return false;
if (other.getHTTPSPort() == null ^ this.getHTTPSPort() == null)
return false;
if (other.getHTTPSPort() != null && other.getHTTPSPort().equals(this.getHTTPSPort()) == false)
return false;
if (other.getOriginProtocolPolicy() == null ^ this.getOriginProtocolPolicy() == null)
return false;
if (other.getOriginProtocolPolicy() != null && other.getOriginProtocolPolicy().equals(this.getOriginProtocolPolicy()) == false)
return false;
if (other.getOriginSslProtocols() == null ^ this.getOriginSslProtocols() == null)
return false;
if (other.getOriginSslProtocols() != null && other.getOriginSslProtocols().equals(this.getOriginSslProtocols()) == false)
return false;
if (other.getOriginReadTimeout() == null ^ this.getOriginReadTimeout() == null)
return false;
if (other.getOriginReadTimeout() != null && other.getOriginReadTimeout().equals(this.getOriginReadTimeout()) == false)
return false;
if (other.getOriginKeepaliveTimeout() == null ^ this.getOriginKeepaliveTimeout() == null)
return false;
if (other.getOriginKeepaliveTimeout() != null && other.getOriginKeepaliveTimeout().equals(this.getOriginKeepaliveTimeout()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getHTTPPort() == null) ? 0 : getHTTPPort().hashCode());
hashCode = prime * hashCode + ((getHTTPSPort() == null) ? 0 : getHTTPSPort().hashCode());
hashCode = prime * hashCode + ((getOriginProtocolPolicy() == null) ? 0 : getOriginProtocolPolicy().hashCode());
hashCode = prime * hashCode + ((getOriginSslProtocols() == null) ? 0 : getOriginSslProtocols().hashCode());
hashCode = prime * hashCode + ((getOriginReadTimeout() == null) ? 0 : getOriginReadTimeout().hashCode());
hashCode = prime * hashCode + ((getOriginKeepaliveTimeout() == null) ? 0 : getOriginKeepaliveTimeout().hashCode());
return hashCode;
}
@Override
public CustomOriginConfig clone() {
try {
return (CustomOriginConfig) super.clone();
} catch (CloneNotSupportedException e) {
throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e);
}
}
}