All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.amazonaws.services.elasticloadbalancingv2.model.CreateTrustStoreRequest Maven / Gradle / Ivy

Go to download

The AWS Java SDK for Elastic Load Balancing module holds the client classes that are used for communicating with Elastic Load Balancing Service (API Version 2015-12-01)

The newest version!
/*
 * 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.elasticloadbalancingv2.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 CreateTrustStoreRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable {

    /**
     * 

* The name of the trust store. *

*

* This name must be unique per region and cannot be changed after creation. *

*/ private String name; /** *

* The Amazon S3 bucket for the ca certificates bundle. *

*/ private String caCertificatesBundleS3Bucket; /** *

* The Amazon S3 path for the ca certificates bundle. *

*/ private String caCertificatesBundleS3Key; /** *

* The Amazon S3 object version for the ca certificates bundle. If undefined the current version is used. *

*/ private String caCertificatesBundleS3ObjectVersion; /** *

* The tags to assign to the trust store. *

*/ private java.util.List tags; /** *

* The name of the trust store. *

*

* This name must be unique per region and cannot be changed after creation. *

* * @param name * The name of the trust store.

*

* This name must be unique per region and cannot be changed after creation. */ public void setName(String name) { this.name = name; } /** *

* The name of the trust store. *

*

* This name must be unique per region and cannot be changed after creation. *

* * @return The name of the trust store.

*

* This name must be unique per region and cannot be changed after creation. */ public String getName() { return this.name; } /** *

* The name of the trust store. *

*

* This name must be unique per region and cannot be changed after creation. *

* * @param name * The name of the trust store.

*

* This name must be unique per region and cannot be changed after creation. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateTrustStoreRequest withName(String name) { setName(name); return this; } /** *

* The Amazon S3 bucket for the ca certificates bundle. *

* * @param caCertificatesBundleS3Bucket * The Amazon S3 bucket for the ca certificates bundle. */ public void setCaCertificatesBundleS3Bucket(String caCertificatesBundleS3Bucket) { this.caCertificatesBundleS3Bucket = caCertificatesBundleS3Bucket; } /** *

* The Amazon S3 bucket for the ca certificates bundle. *

* * @return The Amazon S3 bucket for the ca certificates bundle. */ public String getCaCertificatesBundleS3Bucket() { return this.caCertificatesBundleS3Bucket; } /** *

* The Amazon S3 bucket for the ca certificates bundle. *

* * @param caCertificatesBundleS3Bucket * The Amazon S3 bucket for the ca certificates bundle. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateTrustStoreRequest withCaCertificatesBundleS3Bucket(String caCertificatesBundleS3Bucket) { setCaCertificatesBundleS3Bucket(caCertificatesBundleS3Bucket); return this; } /** *

* The Amazon S3 path for the ca certificates bundle. *

* * @param caCertificatesBundleS3Key * The Amazon S3 path for the ca certificates bundle. */ public void setCaCertificatesBundleS3Key(String caCertificatesBundleS3Key) { this.caCertificatesBundleS3Key = caCertificatesBundleS3Key; } /** *

* The Amazon S3 path for the ca certificates bundle. *

* * @return The Amazon S3 path for the ca certificates bundle. */ public String getCaCertificatesBundleS3Key() { return this.caCertificatesBundleS3Key; } /** *

* The Amazon S3 path for the ca certificates bundle. *

* * @param caCertificatesBundleS3Key * The Amazon S3 path for the ca certificates bundle. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateTrustStoreRequest withCaCertificatesBundleS3Key(String caCertificatesBundleS3Key) { setCaCertificatesBundleS3Key(caCertificatesBundleS3Key); return this; } /** *

* The Amazon S3 object version for the ca certificates bundle. If undefined the current version is used. *

* * @param caCertificatesBundleS3ObjectVersion * The Amazon S3 object version for the ca certificates bundle. If undefined the current version is used. */ public void setCaCertificatesBundleS3ObjectVersion(String caCertificatesBundleS3ObjectVersion) { this.caCertificatesBundleS3ObjectVersion = caCertificatesBundleS3ObjectVersion; } /** *

* The Amazon S3 object version for the ca certificates bundle. If undefined the current version is used. *

* * @return The Amazon S3 object version for the ca certificates bundle. If undefined the current version is used. */ public String getCaCertificatesBundleS3ObjectVersion() { return this.caCertificatesBundleS3ObjectVersion; } /** *

* The Amazon S3 object version for the ca certificates bundle. If undefined the current version is used. *

* * @param caCertificatesBundleS3ObjectVersion * The Amazon S3 object version for the ca certificates bundle. If undefined the current version is used. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateTrustStoreRequest withCaCertificatesBundleS3ObjectVersion(String caCertificatesBundleS3ObjectVersion) { setCaCertificatesBundleS3ObjectVersion(caCertificatesBundleS3ObjectVersion); return this; } /** *

* The tags to assign to the trust store. *

* * @return The tags to assign to the trust store. */ public java.util.List getTags() { return tags; } /** *

* The tags to assign to the trust store. *

* * @param tags * The tags to assign to the trust store. */ public void setTags(java.util.Collection tags) { if (tags == null) { this.tags = null; return; } this.tags = new java.util.ArrayList(tags); } /** *

* The tags to assign to the trust store. *

*

* NOTE: This method appends the values to the existing list (if any). Use * {@link #setTags(java.util.Collection)} or {@link #withTags(java.util.Collection)} if you want to override the * existing values. *

* * @param tags * The tags to assign to the trust store. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateTrustStoreRequest withTags(Tag... tags) { if (this.tags == null) { setTags(new java.util.ArrayList(tags.length)); } for (Tag ele : tags) { this.tags.add(ele); } return this; } /** *

* The tags to assign to the trust store. *

* * @param tags * The tags to assign to the trust store. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateTrustStoreRequest withTags(java.util.Collection tags) { setTags(tags); 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 (getName() != null) sb.append("Name: ").append(getName()).append(","); if (getCaCertificatesBundleS3Bucket() != null) sb.append("CaCertificatesBundleS3Bucket: ").append(getCaCertificatesBundleS3Bucket()).append(","); if (getCaCertificatesBundleS3Key() != null) sb.append("CaCertificatesBundleS3Key: ").append(getCaCertificatesBundleS3Key()).append(","); if (getCaCertificatesBundleS3ObjectVersion() != null) sb.append("CaCertificatesBundleS3ObjectVersion: ").append(getCaCertificatesBundleS3ObjectVersion()).append(","); if (getTags() != null) sb.append("Tags: ").append(getTags()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof CreateTrustStoreRequest == false) return false; CreateTrustStoreRequest other = (CreateTrustStoreRequest) obj; if (other.getName() == null ^ this.getName() == null) return false; if (other.getName() != null && other.getName().equals(this.getName()) == false) return false; if (other.getCaCertificatesBundleS3Bucket() == null ^ this.getCaCertificatesBundleS3Bucket() == null) return false; if (other.getCaCertificatesBundleS3Bucket() != null && other.getCaCertificatesBundleS3Bucket().equals(this.getCaCertificatesBundleS3Bucket()) == false) return false; if (other.getCaCertificatesBundleS3Key() == null ^ this.getCaCertificatesBundleS3Key() == null) return false; if (other.getCaCertificatesBundleS3Key() != null && other.getCaCertificatesBundleS3Key().equals(this.getCaCertificatesBundleS3Key()) == false) return false; if (other.getCaCertificatesBundleS3ObjectVersion() == null ^ this.getCaCertificatesBundleS3ObjectVersion() == null) return false; if (other.getCaCertificatesBundleS3ObjectVersion() != null && other.getCaCertificatesBundleS3ObjectVersion().equals(this.getCaCertificatesBundleS3ObjectVersion()) == false) return false; if (other.getTags() == null ^ this.getTags() == null) return false; if (other.getTags() != null && other.getTags().equals(this.getTags()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getName() == null) ? 0 : getName().hashCode()); hashCode = prime * hashCode + ((getCaCertificatesBundleS3Bucket() == null) ? 0 : getCaCertificatesBundleS3Bucket().hashCode()); hashCode = prime * hashCode + ((getCaCertificatesBundleS3Key() == null) ? 0 : getCaCertificatesBundleS3Key().hashCode()); hashCode = prime * hashCode + ((getCaCertificatesBundleS3ObjectVersion() == null) ? 0 : getCaCertificatesBundleS3ObjectVersion().hashCode()); hashCode = prime * hashCode + ((getTags() == null) ? 0 : getTags().hashCode()); return hashCode; } @Override public CreateTrustStoreRequest clone() { return (CreateTrustStoreRequest) super.clone(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy