Skip to content

Commit

Permalink
AWS SDK for Java 1.11.899
Browse files Browse the repository at this point in the history
  • Loading branch information
AWS committed Nov 12, 2020
1 parent 6f4f520 commit 1b427ce
Show file tree
Hide file tree
Showing 669 changed files with 125,222 additions and 1,504 deletions.
25 changes: 25 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,28 @@
# __1.11.899__ __2020-11-11__
## __AWS Amplify__
- ### Features
- Whereas previously custom headers were set via the app's buildspec, custom headers can now be set directly on the Amplify app for both ci/cd and manual deploy apps.

## __AWS Elemental MediaConvert__
- ### Features
- AWS Elemental MediaConvert SDK has added support for Automated ABR encoding and improved the reliability of embedded captions in accelerated outputs.

## __AWS Glue DataBrew__
- ### Features
- This is the initial SDK release for AWS Glue DataBrew. DataBrew is a visual data preparation tool that enables users to clean and normalize data without writing any code.

## __AWS Service Catalog__
- ### Features
- Adding support to remove a Provisioned Product launch role via UpdateProvisionedProductProperties

## __Amazon Forecast Service__
- ### Features
- Providing support of custom quantiles in CreatePredictor API.

## __Amazon QuickSight__
- ### Features
- QuickSight now supports Column-level security and connecting to Oracle data source.

# __1.11.898__ __2020-11-10__
## __Amazon Elastic Compute Cloud__
- ### Features
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ dependencies.
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-bom</artifactId>
<version>1.11.898</version>
<version>1.11.899</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand Down
2 changes: 1 addition & 1 deletion aws-java-sdk-accessanalyzer/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-pom</artifactId>
<version>1.11.898</version>
<version>1.11.899</version>
</parent>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-accessanalyzer</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion aws-java-sdk-acm/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-pom</artifactId>
<version>1.11.898</version>
<version>1.11.899</version>
</parent>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-acm</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion aws-java-sdk-acmpca/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-pom</artifactId>
<version>1.11.898</version>
<version>1.11.899</version>
</parent>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-acmpca</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion aws-java-sdk-alexaforbusiness/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-pom</artifactId>
<version>1.11.898</version>
<version>1.11.899</version>
</parent>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-alexaforbusiness</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion aws-java-sdk-amplify/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-pom</artifactId>
<version>1.11.898</version>
<version>1.11.899</version>
</parent>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-amplify</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,12 @@ public class App implements Serializable, Cloneable, StructuredPojo {
* </p>
*/
private String buildSpec;
/**
* <p>
* Describes the custom HTTP headers for the Amplify app.
* </p>
*/
private String customHeaders;
/**
* <p>
* Enables automated branch creation for the Amplify app.
Expand Down Expand Up @@ -1068,6 +1074,46 @@ public App withBuildSpec(String buildSpec) {
return this;
}

/**
* <p>
* Describes the custom HTTP headers for the Amplify app.
* </p>
*
* @param customHeaders
* Describes the custom HTTP headers for the Amplify app.
*/

public void setCustomHeaders(String customHeaders) {
this.customHeaders = customHeaders;
}

/**
* <p>
* Describes the custom HTTP headers for the Amplify app.
* </p>
*
* @return Describes the custom HTTP headers for the Amplify app.
*/

public String getCustomHeaders() {
return this.customHeaders;
}

/**
* <p>
* Describes the custom HTTP headers for the Amplify app.
* </p>
*
* @param customHeaders
* Describes the custom HTTP headers for the Amplify app.
* @return Returns a reference to this object so that method calls can be chained together.
*/

public App withCustomHeaders(String customHeaders) {
setCustomHeaders(customHeaders);
return this;
}

/**
* <p>
* Enables automated branch creation for the Amplify app.
Expand Down Expand Up @@ -1280,6 +1326,8 @@ public String toString() {
sb.append("ProductionBranch: ").append(getProductionBranch()).append(",");
if (getBuildSpec() != null)
sb.append("BuildSpec: ").append(getBuildSpec()).append(",");
if (getCustomHeaders() != null)
sb.append("CustomHeaders: ").append(getCustomHeaders()).append(",");
if (getEnableAutoBranchCreation() != null)
sb.append("EnableAutoBranchCreation: ").append(getEnableAutoBranchCreation()).append(",");
if (getAutoBranchCreationPatterns() != null)
Expand Down Expand Up @@ -1376,6 +1424,10 @@ public boolean equals(Object obj) {
return false;
if (other.getBuildSpec() != null && other.getBuildSpec().equals(this.getBuildSpec()) == false)
return false;
if (other.getCustomHeaders() == null ^ this.getCustomHeaders() == null)
return false;
if (other.getCustomHeaders() != null && other.getCustomHeaders().equals(this.getCustomHeaders()) == false)
return false;
if (other.getEnableAutoBranchCreation() == null ^ this.getEnableAutoBranchCreation() == null)
return false;
if (other.getEnableAutoBranchCreation() != null && other.getEnableAutoBranchCreation().equals(this.getEnableAutoBranchCreation()) == false)
Expand Down Expand Up @@ -1415,6 +1467,7 @@ public int hashCode() {
hashCode = prime * hashCode + ((getCustomRules() == null) ? 0 : getCustomRules().hashCode());
hashCode = prime * hashCode + ((getProductionBranch() == null) ? 0 : getProductionBranch().hashCode());
hashCode = prime * hashCode + ((getBuildSpec() == null) ? 0 : getBuildSpec().hashCode());
hashCode = prime * hashCode + ((getCustomHeaders() == null) ? 0 : getCustomHeaders().hashCode());
hashCode = prime * hashCode + ((getEnableAutoBranchCreation() == null) ? 0 : getEnableAutoBranchCreation().hashCode());
hashCode = prime * hashCode + ((getAutoBranchCreationPatterns() == null) ? 0 : getAutoBranchCreationPatterns().hashCode());
hashCode = prime * hashCode + ((getAutoBranchCreationConfig() == null) ? 0 : getAutoBranchCreationConfig().hashCode());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,10 +65,13 @@ public class AutoBranchCreationConfig implements Serializable, Cloneable, Struct
*/
private Boolean enableBasicAuth;
/**
* <p>
* Enables performance mode for the branch.
* </p>
* <p>
* Performance mode optimizes for faster hosting performance by keeping content cached at the edge for a longer
* interval. Enabling performance mode will mean that hosting configuration or code changes can take up to 10
* minutes to roll out.
* interval. When performance mode is enabled, hosting configuration or code changes can take up to 10 minutes to
* roll out.
* </p>
*/
private Boolean enablePerformanceMode;
Expand All @@ -80,7 +83,7 @@ public class AutoBranchCreationConfig implements Serializable, Cloneable, Struct
private String buildSpec;
/**
* <p>
* Enables pull request preview for the autocreated branch.
* Enables pull request previews for the autocreated branch.
* </p>
*/
private Boolean enablePullRequestPreview;
Expand Down Expand Up @@ -403,49 +406,64 @@ public Boolean isEnableBasicAuth() {
}

/**
* <p>
* Enables performance mode for the branch.
* </p>
* <p>
* Performance mode optimizes for faster hosting performance by keeping content cached at the edge for a longer
* interval. Enabling performance mode will mean that hosting configuration or code changes can take up to 10
* minutes to roll out.
* interval. When performance mode is enabled, hosting configuration or code changes can take up to 10 minutes to
* roll out.
* </p>
*
* @param enablePerformanceMode
* Enables performance mode for the branch.</p>
* <p>
* Performance mode optimizes for faster hosting performance by keeping content cached at the edge for a
* longer interval. Enabling performance mode will mean that hosting configuration or code changes can take
* up to 10 minutes to roll out.
* longer interval. When performance mode is enabled, hosting configuration or code changes can take up to 10
* minutes to roll out.
*/

public void setEnablePerformanceMode(Boolean enablePerformanceMode) {
this.enablePerformanceMode = enablePerformanceMode;
}

/**
* <p>
* Enables performance mode for the branch.
* </p>
* <p>
* Performance mode optimizes for faster hosting performance by keeping content cached at the edge for a longer
* interval. Enabling performance mode will mean that hosting configuration or code changes can take up to 10
* minutes to roll out.
* interval. When performance mode is enabled, hosting configuration or code changes can take up to 10 minutes to
* roll out.
* </p>
*
* @return Performance mode optimizes for faster hosting performance by keeping content cached at the edge for a
* longer interval. Enabling performance mode will mean that hosting configuration or code changes can take
* up to 10 minutes to roll out.
* @return Enables performance mode for the branch.</p>
* <p>
* Performance mode optimizes for faster hosting performance by keeping content cached at the edge for a
* longer interval. When performance mode is enabled, hosting configuration or code changes can take up to
* 10 minutes to roll out.
*/

public Boolean getEnablePerformanceMode() {
return this.enablePerformanceMode;
}

/**
* <p>
* Enables performance mode for the branch.
* </p>
* <p>
* Performance mode optimizes for faster hosting performance by keeping content cached at the edge for a longer
* interval. Enabling performance mode will mean that hosting configuration or code changes can take up to 10
* minutes to roll out.
* interval. When performance mode is enabled, hosting configuration or code changes can take up to 10 minutes to
* roll out.
* </p>
*
* @param enablePerformanceMode
* Enables performance mode for the branch.</p>
* <p>
* Performance mode optimizes for faster hosting performance by keeping content cached at the edge for a
* longer interval. Enabling performance mode will mean that hosting configuration or code changes can take
* up to 10 minutes to roll out.
* longer interval. When performance mode is enabled, hosting configuration or code changes can take up to 10
* minutes to roll out.
* @return Returns a reference to this object so that method calls can be chained together.
*/

Expand All @@ -455,15 +473,20 @@ public AutoBranchCreationConfig withEnablePerformanceMode(Boolean enablePerforma
}

/**
* <p>
* Enables performance mode for the branch.
* </p>
* <p>
* Performance mode optimizes for faster hosting performance by keeping content cached at the edge for a longer
* interval. Enabling performance mode will mean that hosting configuration or code changes can take up to 10
* minutes to roll out.
* interval. When performance mode is enabled, hosting configuration or code changes can take up to 10 minutes to
* roll out.
* </p>
*
* @return Performance mode optimizes for faster hosting performance by keeping content cached at the edge for a
* longer interval. Enabling performance mode will mean that hosting configuration or code changes can take
* up to 10 minutes to roll out.
* @return Enables performance mode for the branch.</p>
* <p>
* Performance mode optimizes for faster hosting performance by keeping content cached at the edge for a
* longer interval. When performance mode is enabled, hosting configuration or code changes can take up to
* 10 minutes to roll out.
*/

public Boolean isEnablePerformanceMode() {
Expand Down Expand Up @@ -512,11 +535,11 @@ public AutoBranchCreationConfig withBuildSpec(String buildSpec) {

/**
* <p>
* Enables pull request preview for the autocreated branch.
* Enables pull request previews for the autocreated branch.
* </p>
*
* @param enablePullRequestPreview
* Enables pull request preview for the autocreated branch.
* Enables pull request previews for the autocreated branch.
*/

public void setEnablePullRequestPreview(Boolean enablePullRequestPreview) {
Expand All @@ -525,10 +548,10 @@ public void setEnablePullRequestPreview(Boolean enablePullRequestPreview) {

/**
* <p>
* Enables pull request preview for the autocreated branch.
* Enables pull request previews for the autocreated branch.
* </p>
*
* @return Enables pull request preview for the autocreated branch.
* @return Enables pull request previews for the autocreated branch.
*/

public Boolean getEnablePullRequestPreview() {
Expand All @@ -537,11 +560,11 @@ public Boolean getEnablePullRequestPreview() {

/**
* <p>
* Enables pull request preview for the autocreated branch.
* Enables pull request previews for the autocreated branch.
* </p>
*
* @param enablePullRequestPreview
* Enables pull request preview for the autocreated branch.
* Enables pull request previews for the autocreated branch.
* @return Returns a reference to this object so that method calls can be chained together.
*/

Expand All @@ -552,10 +575,10 @@ public AutoBranchCreationConfig withEnablePullRequestPreview(Boolean enablePullR

/**
* <p>
* Enables pull request preview for the autocreated branch.
* Enables pull request previews for the autocreated branch.
* </p>
*
* @return Enables pull request preview for the autocreated branch.
* @return Enables pull request previews for the autocreated branch.
*/

public Boolean isEnablePullRequestPreview() {
Expand Down
Loading

0 comments on commit 1b427ce

Please sign in to comment.