com.amazonaws.services.securityhub.model.BatchEnableStandardsRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aws-java-sdk-securityhub Show documentation
Show all versions of aws-java-sdk-securityhub Show documentation
The AWS Java SDK for AWS SecurityHub module holds the client classes that are used for communicating with AWS SecurityHub Service
/*
* Copyright 2019-2024 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.securityhub.model;
import java.io.Serializable;
import javax.annotation.Generated;
import com.amazonaws.AmazonWebServiceRequest;
/**
*
* @see AWS
* API Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class BatchEnableStandardsRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable {
/**
*
* The list of standards checks to enable.
*
*/
private java.util.List standardsSubscriptionRequests;
/**
*
* The list of standards checks to enable.
*
*
* @return The list of standards checks to enable.
*/
public java.util.List getStandardsSubscriptionRequests() {
return standardsSubscriptionRequests;
}
/**
*
* The list of standards checks to enable.
*
*
* @param standardsSubscriptionRequests
* The list of standards checks to enable.
*/
public void setStandardsSubscriptionRequests(java.util.Collection standardsSubscriptionRequests) {
if (standardsSubscriptionRequests == null) {
this.standardsSubscriptionRequests = null;
return;
}
this.standardsSubscriptionRequests = new java.util.ArrayList(standardsSubscriptionRequests);
}
/**
*
* The list of standards checks to enable.
*
*
* NOTE: This method appends the values to the existing list (if any). Use
* {@link #setStandardsSubscriptionRequests(java.util.Collection)} or
* {@link #withStandardsSubscriptionRequests(java.util.Collection)} if you want to override the existing values.
*
*
* @param standardsSubscriptionRequests
* The list of standards checks to enable.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public BatchEnableStandardsRequest withStandardsSubscriptionRequests(StandardsSubscriptionRequest... standardsSubscriptionRequests) {
if (this.standardsSubscriptionRequests == null) {
setStandardsSubscriptionRequests(new java.util.ArrayList(standardsSubscriptionRequests.length));
}
for (StandardsSubscriptionRequest ele : standardsSubscriptionRequests) {
this.standardsSubscriptionRequests.add(ele);
}
return this;
}
/**
*
* The list of standards checks to enable.
*
*
* @param standardsSubscriptionRequests
* The list of standards checks to enable.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public BatchEnableStandardsRequest withStandardsSubscriptionRequests(java.util.Collection standardsSubscriptionRequests) {
setStandardsSubscriptionRequests(standardsSubscriptionRequests);
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 (getStandardsSubscriptionRequests() != null)
sb.append("StandardsSubscriptionRequests: ").append(getStandardsSubscriptionRequests());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof BatchEnableStandardsRequest == false)
return false;
BatchEnableStandardsRequest other = (BatchEnableStandardsRequest) obj;
if (other.getStandardsSubscriptionRequests() == null ^ this.getStandardsSubscriptionRequests() == null)
return false;
if (other.getStandardsSubscriptionRequests() != null
&& other.getStandardsSubscriptionRequests().equals(this.getStandardsSubscriptionRequests()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getStandardsSubscriptionRequests() == null) ? 0 : getStandardsSubscriptionRequests().hashCode());
return hashCode;
}
@Override
public BatchEnableStandardsRequest clone() {
return (BatchEnableStandardsRequest) super.clone();
}
}