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

com.amazonaws.services.appfabric.model.CreateAppBundleRequest Maven / Gradle / Ivy

Go to download

The AWS Java SDK for AppFabric module holds the client classes that are used for communicating with AppFabric Service

There is a newer version: 1.12.778
Show 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.appfabric.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 CreateAppBundleRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable {

    /**
     * 

* Specifies a unique, case-sensitive identifier that you provide to ensure the idempotency of the request. This * lets you safely retry the request without accidentally performing the same operation a second time. Passing the * same value to a later call to an operation requires that you also pass the same value for all other parameters. * We recommend that you use a UUID type of * value. *

*

* If you don't provide this value, then Amazon Web Services generates a random one for you. *

*

* If you retry the operation with the same ClientToken, but with different parameters, the retry fails * with an IdempotentParameterMismatch error. *

*/ private String clientToken; /** *

* The Amazon Resource Name (ARN) of the Key Management Service (KMS) key to use to encrypt the application data. If * this is not specified, an Amazon Web Services owned key is used for encryption. *

*/ private String customerManagedKeyIdentifier; /** *

* A map of the key-value pairs of the tag or tags to assign to the resource. *

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

* Specifies a unique, case-sensitive identifier that you provide to ensure the idempotency of the request. This * lets you safely retry the request without accidentally performing the same operation a second time. Passing the * same value to a later call to an operation requires that you also pass the same value for all other parameters. * We recommend that you use a UUID type of * value. *

*

* If you don't provide this value, then Amazon Web Services generates a random one for you. *

*

* If you retry the operation with the same ClientToken, but with different parameters, the retry fails * with an IdempotentParameterMismatch error. *

* * @param clientToken * Specifies a unique, case-sensitive identifier that you provide to ensure the idempotency of the request. * This lets you safely retry the request without accidentally performing the same operation a second time. * Passing the same value to a later call to an operation requires that you also pass the same value for all * other parameters. We recommend that you use a UUID type of value.

*

* If you don't provide this value, then Amazon Web Services generates a random one for you. *

*

* If you retry the operation with the same ClientToken, but with different parameters, the * retry fails with an IdempotentParameterMismatch error. */ public void setClientToken(String clientToken) { this.clientToken = clientToken; } /** *

* Specifies a unique, case-sensitive identifier that you provide to ensure the idempotency of the request. This * lets you safely retry the request without accidentally performing the same operation a second time. Passing the * same value to a later call to an operation requires that you also pass the same value for all other parameters. * We recommend that you use a UUID type of * value. *

*

* If you don't provide this value, then Amazon Web Services generates a random one for you. *

*

* If you retry the operation with the same ClientToken, but with different parameters, the retry fails * with an IdempotentParameterMismatch error. *

* * @return Specifies a unique, case-sensitive identifier that you provide to ensure the idempotency of the request. * This lets you safely retry the request without accidentally performing the same operation a second time. * Passing the same value to a later call to an operation requires that you also pass the same value for all * other parameters. We recommend that you use a UUID type of value.

*

* If you don't provide this value, then Amazon Web Services generates a random one for you. *

*

* If you retry the operation with the same ClientToken, but with different parameters, the * retry fails with an IdempotentParameterMismatch error. */ public String getClientToken() { return this.clientToken; } /** *

* Specifies a unique, case-sensitive identifier that you provide to ensure the idempotency of the request. This * lets you safely retry the request without accidentally performing the same operation a second time. Passing the * same value to a later call to an operation requires that you also pass the same value for all other parameters. * We recommend that you use a UUID type of * value. *

*

* If you don't provide this value, then Amazon Web Services generates a random one for you. *

*

* If you retry the operation with the same ClientToken, but with different parameters, the retry fails * with an IdempotentParameterMismatch error. *

* * @param clientToken * Specifies a unique, case-sensitive identifier that you provide to ensure the idempotency of the request. * This lets you safely retry the request without accidentally performing the same operation a second time. * Passing the same value to a later call to an operation requires that you also pass the same value for all * other parameters. We recommend that you use a UUID type of value.

*

* If you don't provide this value, then Amazon Web Services generates a random one for you. *

*

* If you retry the operation with the same ClientToken, but with different parameters, the * retry fails with an IdempotentParameterMismatch error. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateAppBundleRequest withClientToken(String clientToken) { setClientToken(clientToken); return this; } /** *

* The Amazon Resource Name (ARN) of the Key Management Service (KMS) key to use to encrypt the application data. If * this is not specified, an Amazon Web Services owned key is used for encryption. *

* * @param customerManagedKeyIdentifier * The Amazon Resource Name (ARN) of the Key Management Service (KMS) key to use to encrypt the application * data. If this is not specified, an Amazon Web Services owned key is used for encryption. */ public void setCustomerManagedKeyIdentifier(String customerManagedKeyIdentifier) { this.customerManagedKeyIdentifier = customerManagedKeyIdentifier; } /** *

* The Amazon Resource Name (ARN) of the Key Management Service (KMS) key to use to encrypt the application data. If * this is not specified, an Amazon Web Services owned key is used for encryption. *

* * @return The Amazon Resource Name (ARN) of the Key Management Service (KMS) key to use to encrypt the application * data. If this is not specified, an Amazon Web Services owned key is used for encryption. */ public String getCustomerManagedKeyIdentifier() { return this.customerManagedKeyIdentifier; } /** *

* The Amazon Resource Name (ARN) of the Key Management Service (KMS) key to use to encrypt the application data. If * this is not specified, an Amazon Web Services owned key is used for encryption. *

* * @param customerManagedKeyIdentifier * The Amazon Resource Name (ARN) of the Key Management Service (KMS) key to use to encrypt the application * data. If this is not specified, an Amazon Web Services owned key is used for encryption. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateAppBundleRequest withCustomerManagedKeyIdentifier(String customerManagedKeyIdentifier) { setCustomerManagedKeyIdentifier(customerManagedKeyIdentifier); return this; } /** *

* A map of the key-value pairs of the tag or tags to assign to the resource. *

* * @return A map of the key-value pairs of the tag or tags to assign to the resource. */ public java.util.List getTags() { return tags; } /** *

* A map of the key-value pairs of the tag or tags to assign to the resource. *

* * @param tags * A map of the key-value pairs of the tag or tags to assign to the resource. */ public void setTags(java.util.Collection tags) { if (tags == null) { this.tags = null; return; } this.tags = new java.util.ArrayList(tags); } /** *

* A map of the key-value pairs of the tag or tags to assign to the resource. *

*

* 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 * A map of the key-value pairs of the tag or tags to assign to the resource. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateAppBundleRequest withTags(Tag... tags) { if (this.tags == null) { setTags(new java.util.ArrayList(tags.length)); } for (Tag ele : tags) { this.tags.add(ele); } return this; } /** *

* A map of the key-value pairs of the tag or tags to assign to the resource. *

* * @param tags * A map of the key-value pairs of the tag or tags to assign to the resource. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateAppBundleRequest 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 (getClientToken() != null) sb.append("ClientToken: ").append(getClientToken()).append(","); if (getCustomerManagedKeyIdentifier() != null) sb.append("CustomerManagedKeyIdentifier: ").append(getCustomerManagedKeyIdentifier()).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 CreateAppBundleRequest == false) return false; CreateAppBundleRequest other = (CreateAppBundleRequest) obj; if (other.getClientToken() == null ^ this.getClientToken() == null) return false; if (other.getClientToken() != null && other.getClientToken().equals(this.getClientToken()) == false) return false; if (other.getCustomerManagedKeyIdentifier() == null ^ this.getCustomerManagedKeyIdentifier() == null) return false; if (other.getCustomerManagedKeyIdentifier() != null && other.getCustomerManagedKeyIdentifier().equals(this.getCustomerManagedKeyIdentifier()) == 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 + ((getClientToken() == null) ? 0 : getClientToken().hashCode()); hashCode = prime * hashCode + ((getCustomerManagedKeyIdentifier() == null) ? 0 : getCustomerManagedKeyIdentifier().hashCode()); hashCode = prime * hashCode + ((getTags() == null) ? 0 : getTags().hashCode()); return hashCode; } @Override public CreateAppBundleRequest clone() { return (CreateAppBundleRequest) super.clone(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy