Skip to content

Commit

Permalink
AWS SDK for Java 1.11.770
Browse files Browse the repository at this point in the history
  • Loading branch information
AWS committed Apr 27, 2020
1 parent 3613e0c commit 19943ad
Show file tree
Hide file tree
Showing 330 changed files with 7,530 additions and 917 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
# __1.11.770__ __2020-04-27__
## __AWS Data Exchange__
- ### Features
- This release introduces AWS Data Exchange support for configurable encryption parameters when exporting data sets to Amazon S3.

## __AWS Database Migration Service__
- ### Features
- Adding minimum replication engine version for describe-endpoint-types api.

## __Access Analyzer__
- ### Features
- This release adds support for inclusion of S3 Access Point policies in IAM Access Analyzer evaluation of S3 bucket access. IAM Access Analyzer now reports findings for buckets shared through access points and identifies the access point that permits access.

## __Amazon SageMaker Service__
- ### Features
- Change to the input, ResourceSpec, changing EnvironmentArn to SageMakerImageArn. This affects the following preview APIs: CreateDomain, DescribeDomain, UpdateDomain, CreateUserProfile, DescribeUserProfile, UpdateUserProfile, CreateApp and DescribeApp.

# __1.11.769__ __2020-04-24__
## __AWS IoT__
- ### Features
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ dependencies.
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-bom</artifactId>
<version>1.11.769</version>
<version>1.11.770</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.770-SNAPSHOT</version>
<version>1.11.770</version>
</parent>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-accessanalyzer</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ public class AnalyzedResource implements Serializable, Cloneable, StructuredPojo
private String resourceType;
/**
* <p>
* Indicates how the access that generated the finding is granted.
* Indicates how the access that generated the finding is granted. This is populated for Amazon S3 bucket findings.
* </p>
*/
private java.util.List<String> sharedVia;
Expand Down Expand Up @@ -482,10 +482,11 @@ public AnalyzedResource withResourceType(ResourceType resourceType) {

/**
* <p>
* Indicates how the access that generated the finding is granted.
* Indicates how the access that generated the finding is granted. This is populated for Amazon S3 bucket findings.
* </p>
*
* @return Indicates how the access that generated the finding is granted.
* @return Indicates how the access that generated the finding is granted. This is populated for Amazon S3 bucket
* findings.
*/

public java.util.List<String> getSharedVia() {
Expand All @@ -494,11 +495,12 @@ public java.util.List<String> getSharedVia() {

/**
* <p>
* Indicates how the access that generated the finding is granted.
* Indicates how the access that generated the finding is granted. This is populated for Amazon S3 bucket findings.
* </p>
*
* @param sharedVia
* Indicates how the access that generated the finding is granted.
* Indicates how the access that generated the finding is granted. This is populated for Amazon S3 bucket
* findings.
*/

public void setSharedVia(java.util.Collection<String> sharedVia) {
Expand All @@ -512,7 +514,7 @@ public void setSharedVia(java.util.Collection<String> sharedVia) {

/**
* <p>
* Indicates how the access that generated the finding is granted.
* Indicates how the access that generated the finding is granted. This is populated for Amazon S3 bucket findings.
* </p>
* <p>
* <b>NOTE:</b> This method appends the values to the existing list (if any). Use
Expand All @@ -521,7 +523,8 @@ public void setSharedVia(java.util.Collection<String> sharedVia) {
* </p>
*
* @param sharedVia
* Indicates how the access that generated the finding is granted.
* Indicates how the access that generated the finding is granted. This is populated for Amazon S3 bucket
* findings.
* @return Returns a reference to this object so that method calls can be chained together.
*/

Expand All @@ -537,11 +540,12 @@ public AnalyzedResource withSharedVia(String... sharedVia) {

/**
* <p>
* Indicates how the access that generated the finding is granted.
* Indicates how the access that generated the finding is granted. This is populated for Amazon S3 bucket findings.
* </p>
*
* @param sharedVia
* Indicates how the access that generated the finding is granted.
* Indicates how the access that generated the finding is granted. This is populated for Amazon S3 bucket
* findings.
* @return Returns a reference to this object so that method calls can be chained together.
*/

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,13 @@ public class Finding implements Serializable, Cloneable, StructuredPojo {
* </p>
*/
private String resourceType;
/**
* <p>
* The sources of the finding. This indicates how the access that generated the finding is granted. It is populated
* for Amazon S3 bucket findings.
* </p>
*/
private java.util.List<FindingSource> sources;
/**
* <p>
* The current status of the finding.
Expand Down Expand Up @@ -664,6 +671,84 @@ public Finding withResourceType(ResourceType resourceType) {
return this;
}

/**
* <p>
* The sources of the finding. This indicates how the access that generated the finding is granted. It is populated
* for Amazon S3 bucket findings.
* </p>
*
* @return The sources of the finding. This indicates how the access that generated the finding is granted. It is
* populated for Amazon S3 bucket findings.
*/

public java.util.List<FindingSource> getSources() {
return sources;
}

/**
* <p>
* The sources of the finding. This indicates how the access that generated the finding is granted. It is populated
* for Amazon S3 bucket findings.
* </p>
*
* @param sources
* The sources of the finding. This indicates how the access that generated the finding is granted. It is
* populated for Amazon S3 bucket findings.
*/

public void setSources(java.util.Collection<FindingSource> sources) {
if (sources == null) {
this.sources = null;
return;
}

this.sources = new java.util.ArrayList<FindingSource>(sources);
}

/**
* <p>
* The sources of the finding. This indicates how the access that generated the finding is granted. It is populated
* for Amazon S3 bucket findings.
* </p>
* <p>
* <b>NOTE:</b> This method appends the values to the existing list (if any). Use
* {@link #setSources(java.util.Collection)} or {@link #withSources(java.util.Collection)} if you want to override
* the existing values.
* </p>
*
* @param sources
* The sources of the finding. This indicates how the access that generated the finding is granted. It is
* populated for Amazon S3 bucket findings.
* @return Returns a reference to this object so that method calls can be chained together.
*/

public Finding withSources(FindingSource... sources) {
if (this.sources == null) {
setSources(new java.util.ArrayList<FindingSource>(sources.length));
}
for (FindingSource ele : sources) {
this.sources.add(ele);
}
return this;
}

/**
* <p>
* The sources of the finding. This indicates how the access that generated the finding is granted. It is populated
* for Amazon S3 bucket findings.
* </p>
*
* @param sources
* The sources of the finding. This indicates how the access that generated the finding is granted. It is
* populated for Amazon S3 bucket findings.
* @return Returns a reference to this object so that method calls can be chained together.
*/

public Finding withSources(java.util.Collection<FindingSource> sources) {
setSources(sources);
return this;
}

/**
* <p>
* The current status of the finding.
Expand Down Expand Up @@ -797,6 +882,8 @@ public String toString() {
sb.append("ResourceOwnerAccount: ").append(getResourceOwnerAccount()).append(",");
if (getResourceType() != null)
sb.append("ResourceType: ").append(getResourceType()).append(",");
if (getSources() != null)
sb.append("Sources: ").append(getSources()).append(",");
if (getStatus() != null)
sb.append("Status: ").append(getStatus()).append(",");
if (getUpdatedAt() != null)
Expand Down Expand Up @@ -859,6 +946,10 @@ public boolean equals(Object obj) {
return false;
if (other.getResourceType() != null && other.getResourceType().equals(this.getResourceType()) == false)
return false;
if (other.getSources() == null ^ this.getSources() == null)
return false;
if (other.getSources() != null && other.getSources().equals(this.getSources()) == false)
return false;
if (other.getStatus() == null ^ this.getStatus() == null)
return false;
if (other.getStatus() != null && other.getStatus().equals(this.getStatus()) == false)
Expand Down Expand Up @@ -886,6 +977,7 @@ public int hashCode() {
hashCode = prime * hashCode + ((getResource() == null) ? 0 : getResource().hashCode());
hashCode = prime * hashCode + ((getResourceOwnerAccount() == null) ? 0 : getResourceOwnerAccount().hashCode());
hashCode = prime * hashCode + ((getResourceType() == null) ? 0 : getResourceType().hashCode());
hashCode = prime * hashCode + ((getSources() == null) ? 0 : getSources().hashCode());
hashCode = prime * hashCode + ((getStatus() == null) ? 0 : getStatus().hashCode());
hashCode = prime * hashCode + ((getUpdatedAt() == null) ? 0 : getUpdatedAt().hashCode());
return hashCode;
Expand Down
Loading

0 comments on commit 19943ad

Please sign in to comment.