Skip to content

Commit 5694fc5

Browse files
author
AWS
committed
AWS SDK for Java 1.11.880
1 parent e95037b commit 5694fc5

File tree

454 files changed

+24132
-4011
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

454 files changed

+24132
-4011
lines changed

CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,24 @@
1+
# __1.11.880__ __2020-10-09__
2+
## __AWS Amplify__
3+
- ### Features
4+
- Performance mode optimizes for faster hosting performance by keeping content cached at the edge for a longer interval - enabling can make code changes can take up to 10 minutes to roll out.
5+
6+
## __AWS Elemental MediaLive__
7+
- ### Features
8+
- WAV audio output. Extracting ancillary captions in MP4 file inputs. Priority on channels feeding a multiplex (higher priority channels will tend to have higher video quality).
9+
10+
## __AWS Service Catalog__
11+
- ### Features
12+
- This new API takes either a ProvisonedProductId or a ProvisionedProductName, along with a list of 1 or more output keys and responds with the (key,value) pairs of those outputs.
13+
14+
## __Amazon Elastic Kubernetes Service__
15+
- ### Features
16+
- This release introduces a new Amazon EKS error code: "ClusterUnreachable"
17+
18+
## __Amazon Import/Export Snowball__
19+
- ### Features
20+
- We added new APIs to allow customers to better manage their device shipping. You can check if your shipping label expired, generate a new label, and tell us that you received or shipped your job.
21+
122
# __1.11.879__ __2020-10-08__
223
## __AWS Cost Explorer Service__
324
- ### Features

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ dependencies.
4848
<dependency>
4949
<groupId>com.amazonaws</groupId>
5050
<artifactId>aws-java-sdk-bom</artifactId>
51-
<version>1.11.879</version>
51+
<version>1.11.880</version>
5252
<type>pom</type>
5353
<scope>import</scope>
5454
</dependency>

aws-java-sdk-accessanalyzer/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.amazonaws</groupId>
77
<artifactId>aws-java-sdk-pom</artifactId>
8-
<version>1.11.879</version>
8+
<version>1.11.880</version>
99
</parent>
1010
<groupId>com.amazonaws</groupId>
1111
<artifactId>aws-java-sdk-accessanalyzer</artifactId>

aws-java-sdk-acm/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.amazonaws</groupId>
77
<artifactId>aws-java-sdk-pom</artifactId>
8-
<version>1.11.879</version>
8+
<version>1.11.880</version>
99
</parent>
1010
<groupId>com.amazonaws</groupId>
1111
<artifactId>aws-java-sdk-acm</artifactId>

aws-java-sdk-acmpca/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.amazonaws</groupId>
77
<artifactId>aws-java-sdk-pom</artifactId>
8-
<version>1.11.879</version>
8+
<version>1.11.880</version>
99
</parent>
1010
<groupId>com.amazonaws</groupId>
1111
<artifactId>aws-java-sdk-acmpca</artifactId>

aws-java-sdk-alexaforbusiness/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.amazonaws</groupId>
77
<artifactId>aws-java-sdk-pom</artifactId>
8-
<version>1.11.879</version>
8+
<version>1.11.880</version>
99
</parent>
1010
<groupId>com.amazonaws</groupId>
1111
<artifactId>aws-java-sdk-alexaforbusiness</artifactId>

aws-java-sdk-amplify/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.amazonaws</groupId>
77
<artifactId>aws-java-sdk-pom</artifactId>
8-
<version>1.11.879</version>
8+
<version>1.11.880</version>
99
</parent>
1010
<groupId>com.amazonaws</groupId>
1111
<artifactId>aws-java-sdk-amplify</artifactId>

aws-java-sdk-amplify/src/main/java/com/amazonaws/services/amplify/model/AutoBranchCreationConfig.java

Lines changed: 83 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,14 @@ public class AutoBranchCreationConfig implements Serializable, Cloneable, Struct
6464
* </p>
6565
*/
6666
private Boolean enableBasicAuth;
67+
/**
68+
* <p>
69+
* Performance mode optimizes for faster hosting performance by keeping content cached at the edge for a longer
70+
* interval. Enabling performance mode will mean that hosting configuration or code changes can take up to 10
71+
* minutes to roll out.
72+
* </p>
73+
*/
74+
private Boolean enablePerformanceMode;
6775
/**
6876
* <p>
6977
* The build specification (build spec) for the autocreated branch.
@@ -394,6 +402,74 @@ public Boolean isEnableBasicAuth() {
394402
return this.enableBasicAuth;
395403
}
396404

405+
/**
406+
* <p>
407+
* Performance mode optimizes for faster hosting performance by keeping content cached at the edge for a longer
408+
* interval. Enabling performance mode will mean that hosting configuration or code changes can take up to 10
409+
* minutes to roll out.
410+
* </p>
411+
*
412+
* @param enablePerformanceMode
413+
* Performance mode optimizes for faster hosting performance by keeping content cached at the edge for a
414+
* longer interval. Enabling performance mode will mean that hosting configuration or code changes can take
415+
* up to 10 minutes to roll out.
416+
*/
417+
418+
public void setEnablePerformanceMode(Boolean enablePerformanceMode) {
419+
this.enablePerformanceMode = enablePerformanceMode;
420+
}
421+
422+
/**
423+
* <p>
424+
* Performance mode optimizes for faster hosting performance by keeping content cached at the edge for a longer
425+
* interval. Enabling performance mode will mean that hosting configuration or code changes can take up to 10
426+
* minutes to roll out.
427+
* </p>
428+
*
429+
* @return Performance mode optimizes for faster hosting performance by keeping content cached at the edge for a
430+
* longer interval. Enabling performance mode will mean that hosting configuration or code changes can take
431+
* up to 10 minutes to roll out.
432+
*/
433+
434+
public Boolean getEnablePerformanceMode() {
435+
return this.enablePerformanceMode;
436+
}
437+
438+
/**
439+
* <p>
440+
* Performance mode optimizes for faster hosting performance by keeping content cached at the edge for a longer
441+
* interval. Enabling performance mode will mean that hosting configuration or code changes can take up to 10
442+
* minutes to roll out.
443+
* </p>
444+
*
445+
* @param enablePerformanceMode
446+
* Performance mode optimizes for faster hosting performance by keeping content cached at the edge for a
447+
* longer interval. Enabling performance mode will mean that hosting configuration or code changes can take
448+
* up to 10 minutes to roll out.
449+
* @return Returns a reference to this object so that method calls can be chained together.
450+
*/
451+
452+
public AutoBranchCreationConfig withEnablePerformanceMode(Boolean enablePerformanceMode) {
453+
setEnablePerformanceMode(enablePerformanceMode);
454+
return this;
455+
}
456+
457+
/**
458+
* <p>
459+
* Performance mode optimizes for faster hosting performance by keeping content cached at the edge for a longer
460+
* interval. Enabling performance mode will mean that hosting configuration or code changes can take up to 10
461+
* minutes to roll out.
462+
* </p>
463+
*
464+
* @return Performance mode optimizes for faster hosting performance by keeping content cached at the edge for a
465+
* longer interval. Enabling performance mode will mean that hosting configuration or code changes can take
466+
* up to 10 minutes to roll out.
467+
*/
468+
469+
public Boolean isEnablePerformanceMode() {
470+
return this.enablePerformanceMode;
471+
}
472+
397473
/**
398474
* <p>
399475
* The build specification (build spec) for the autocreated branch.
@@ -550,6 +626,8 @@ public String toString() {
550626
sb.append("BasicAuthCredentials: ").append("***Sensitive Data Redacted***").append(",");
551627
if (getEnableBasicAuth() != null)
552628
sb.append("EnableBasicAuth: ").append(getEnableBasicAuth()).append(",");
629+
if (getEnablePerformanceMode() != null)
630+
sb.append("EnablePerformanceMode: ").append(getEnablePerformanceMode()).append(",");
553631
if (getBuildSpec() != null)
554632
sb.append("BuildSpec: ").append(getBuildSpec()).append(",");
555633
if (getEnablePullRequestPreview() != null)
@@ -594,6 +672,10 @@ public boolean equals(Object obj) {
594672
return false;
595673
if (other.getEnableBasicAuth() != null && other.getEnableBasicAuth().equals(this.getEnableBasicAuth()) == false)
596674
return false;
675+
if (other.getEnablePerformanceMode() == null ^ this.getEnablePerformanceMode() == null)
676+
return false;
677+
if (other.getEnablePerformanceMode() != null && other.getEnablePerformanceMode().equals(this.getEnablePerformanceMode()) == false)
678+
return false;
597679
if (other.getBuildSpec() == null ^ this.getBuildSpec() == null)
598680
return false;
599681
if (other.getBuildSpec() != null && other.getBuildSpec().equals(this.getBuildSpec()) == false)
@@ -620,6 +702,7 @@ public int hashCode() {
620702
hashCode = prime * hashCode + ((getEnvironmentVariables() == null) ? 0 : getEnvironmentVariables().hashCode());
621703
hashCode = prime * hashCode + ((getBasicAuthCredentials() == null) ? 0 : getBasicAuthCredentials().hashCode());
622704
hashCode = prime * hashCode + ((getEnableBasicAuth() == null) ? 0 : getEnableBasicAuth().hashCode());
705+
hashCode = prime * hashCode + ((getEnablePerformanceMode() == null) ? 0 : getEnablePerformanceMode().hashCode());
623706
hashCode = prime * hashCode + ((getBuildSpec() == null) ? 0 : getBuildSpec().hashCode());
624707
hashCode = prime * hashCode + ((getEnablePullRequestPreview() == null) ? 0 : getEnablePullRequestPreview().hashCode());
625708
hashCode = prime * hashCode + ((getPullRequestEnvironmentName() == null) ? 0 : getPullRequestEnvironmentName().hashCode());

aws-java-sdk-amplify/src/main/java/com/amazonaws/services/amplify/model/Branch.java

Lines changed: 83 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,14 @@ public class Branch implements Serializable, Cloneable, StructuredPojo {
124124
* </p>
125125
*/
126126
private Boolean enableBasicAuth;
127+
/**
128+
* <p>
129+
* Performance mode optimizes for faster hosting performance by keeping content cached at the edge for a longer
130+
* interval. Enabling performance mode will mean that hosting configuration or code changes can take up to 10
131+
* minutes to roll out.
132+
* </p>
133+
*/
134+
private Boolean enablePerformanceMode;
127135
/**
128136
* <p>
129137
* The thumbnail URL for the branch of an Amplify app.
@@ -966,6 +974,74 @@ public Boolean isEnableBasicAuth() {
966974
return this.enableBasicAuth;
967975
}
968976

977+
/**
978+
* <p>
979+
* Performance mode optimizes for faster hosting performance by keeping content cached at the edge for a longer
980+
* interval. Enabling performance mode will mean that hosting configuration or code changes can take up to 10
981+
* minutes to roll out.
982+
* </p>
983+
*
984+
* @param enablePerformanceMode
985+
* Performance mode optimizes for faster hosting performance by keeping content cached at the edge for a
986+
* longer interval. Enabling performance mode will mean that hosting configuration or code changes can take
987+
* up to 10 minutes to roll out.
988+
*/
989+
990+
public void setEnablePerformanceMode(Boolean enablePerformanceMode) {
991+
this.enablePerformanceMode = enablePerformanceMode;
992+
}
993+
994+
/**
995+
* <p>
996+
* Performance mode optimizes for faster hosting performance by keeping content cached at the edge for a longer
997+
* interval. Enabling performance mode will mean that hosting configuration or code changes can take up to 10
998+
* minutes to roll out.
999+
* </p>
1000+
*
1001+
* @return Performance mode optimizes for faster hosting performance by keeping content cached at the edge for a
1002+
* longer interval. Enabling performance mode will mean that hosting configuration or code changes can take
1003+
* up to 10 minutes to roll out.
1004+
*/
1005+
1006+
public Boolean getEnablePerformanceMode() {
1007+
return this.enablePerformanceMode;
1008+
}
1009+
1010+
/**
1011+
* <p>
1012+
* Performance mode optimizes for faster hosting performance by keeping content cached at the edge for a longer
1013+
* interval. Enabling performance mode will mean that hosting configuration or code changes can take up to 10
1014+
* minutes to roll out.
1015+
* </p>
1016+
*
1017+
* @param enablePerformanceMode
1018+
* Performance mode optimizes for faster hosting performance by keeping content cached at the edge for a
1019+
* longer interval. Enabling performance mode will mean that hosting configuration or code changes can take
1020+
* up to 10 minutes to roll out.
1021+
* @return Returns a reference to this object so that method calls can be chained together.
1022+
*/
1023+
1024+
public Branch withEnablePerformanceMode(Boolean enablePerformanceMode) {
1025+
setEnablePerformanceMode(enablePerformanceMode);
1026+
return this;
1027+
}
1028+
1029+
/**
1030+
* <p>
1031+
* Performance mode optimizes for faster hosting performance by keeping content cached at the edge for a longer
1032+
* interval. Enabling performance mode will mean that hosting configuration or code changes can take up to 10
1033+
* minutes to roll out.
1034+
* </p>
1035+
*
1036+
* @return Performance mode optimizes for faster hosting performance by keeping content cached at the edge for a
1037+
* longer interval. Enabling performance mode will mean that hosting configuration or code changes can take
1038+
* up to 10 minutes to roll out.
1039+
*/
1040+
1041+
public Boolean isEnablePerformanceMode() {
1042+
return this.enablePerformanceMode;
1043+
}
1044+
9691045
/**
9701046
* <p>
9711047
* The thumbnail URL for the branch of an Amplify app.
@@ -1452,6 +1528,8 @@ public String toString() {
14521528
sb.append("TotalNumberOfJobs: ").append(getTotalNumberOfJobs()).append(",");
14531529
if (getEnableBasicAuth() != null)
14541530
sb.append("EnableBasicAuth: ").append(getEnableBasicAuth()).append(",");
1531+
if (getEnablePerformanceMode() != null)
1532+
sb.append("EnablePerformanceMode: ").append(getEnablePerformanceMode()).append(",");
14551533
if (getThumbnailUrl() != null)
14561534
sb.append("ThumbnailUrl: ").append(getThumbnailUrl()).append(",");
14571535
if (getBasicAuthCredentials() != null)
@@ -1550,6 +1628,10 @@ public boolean equals(Object obj) {
15501628
return false;
15511629
if (other.getEnableBasicAuth() != null && other.getEnableBasicAuth().equals(this.getEnableBasicAuth()) == false)
15521630
return false;
1631+
if (other.getEnablePerformanceMode() == null ^ this.getEnablePerformanceMode() == null)
1632+
return false;
1633+
if (other.getEnablePerformanceMode() != null && other.getEnablePerformanceMode().equals(this.getEnablePerformanceMode()) == false)
1634+
return false;
15531635
if (other.getThumbnailUrl() == null ^ this.getThumbnailUrl() == null)
15541636
return false;
15551637
if (other.getThumbnailUrl() != null && other.getThumbnailUrl().equals(this.getThumbnailUrl()) == false)
@@ -1614,6 +1696,7 @@ public int hashCode() {
16141696
hashCode = prime * hashCode + ((getActiveJobId() == null) ? 0 : getActiveJobId().hashCode());
16151697
hashCode = prime * hashCode + ((getTotalNumberOfJobs() == null) ? 0 : getTotalNumberOfJobs().hashCode());
16161698
hashCode = prime * hashCode + ((getEnableBasicAuth() == null) ? 0 : getEnableBasicAuth().hashCode());
1699+
hashCode = prime * hashCode + ((getEnablePerformanceMode() == null) ? 0 : getEnablePerformanceMode().hashCode());
16171700
hashCode = prime * hashCode + ((getThumbnailUrl() == null) ? 0 : getThumbnailUrl().hashCode());
16181701
hashCode = prime * hashCode + ((getBasicAuthCredentials() == null) ? 0 : getBasicAuthCredentials().hashCode());
16191702
hashCode = prime * hashCode + ((getBuildSpec() == null) ? 0 : getBuildSpec().hashCode());

0 commit comments

Comments
 (0)