/* * Copyright 2018-2023 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.sqs.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 CreateQueueRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable { /** *

* The name of the new queue. The following limits apply to this name: *

* *

* Queue URLs and names are case-sensitive. *

*/ private String queueName; /** *

* A map of attributes with their corresponding values. *

*

* The following lists the names, descriptions, and values of the special request parameters that the * CreateQueue action uses: *

* *

* The following attributes apply only to dead-letter queues: *

* * *

* The dead-letter queue of a FIFO queue must also be a FIFO queue. Similarly, the dead-letter queue of a standard * queue must also be a standard queue. *

*
*

* The following attributes apply only to server-side-encryption: *

* *

* The following attributes apply only to FIFO * (first-in-first-out) queues: *

* *

* The following attributes apply only to high * throughput for FIFO queues: *

* *

* To enable high throughput for FIFO queues, do the following: *

* *

* If you set these attributes to anything other than the values shown for enabling high throughput, normal * throughput is in effect and deduplication occurs as specified. *

*

* For information on throughput quotas, see Quotas * related to messages in the Amazon SQS Developer Guide. *

*/ private com.amazonaws.internal.SdkInternalMap attributes; /** *

* Add cost allocation tags to the specified Amazon SQS queue. For an overview, see Tagging * Your Amazon SQS Queues in the Amazon SQS Developer Guide. *

*

* When you use queue tags, keep the following guidelines in mind: *

* *

* For a full list of tag restrictions, see Quotas related to queues in the Amazon SQS Developer Guide. *

* *

* To be able to tag a queue on creation, you must have the sqs:CreateQueue and * sqs:TagQueue permissions. *

*

* Cross-account permissions don't apply to this action. For more information, see Grant cross-account permissions to a role and a username in the Amazon SQS Developer Guide. *

*
*/ private com.amazonaws.internal.SdkInternalMap tags; /** * Default constructor for CreateQueueRequest object. Callers should use the setter or fluent setter (with...) * methods to initialize the object after creating it. */ public CreateQueueRequest() { } /** * Constructs a new CreateQueueRequest object. Callers should use the setter or fluent setter (with...) methods to * initialize any additional object members. * * @param queueName * The name of the new queue. The following limits apply to this name:

* *

* Queue URLs and names are case-sensitive. */ public CreateQueueRequest(String queueName) { setQueueName(queueName); } /** *

* The name of the new queue. The following limits apply to this name: *

* *

* Queue URLs and names are case-sensitive. *

* * @param queueName * The name of the new queue. The following limits apply to this name:

* *

* Queue URLs and names are case-sensitive. */ public void setQueueName(String queueName) { this.queueName = queueName; } /** *

* The name of the new queue. The following limits apply to this name: *

* *

* Queue URLs and names are case-sensitive. *

* * @return The name of the new queue. The following limits apply to this name:

* *

* Queue URLs and names are case-sensitive. */ public String getQueueName() { return this.queueName; } /** *

* The name of the new queue. The following limits apply to this name: *

* *

* Queue URLs and names are case-sensitive. *

* * @param queueName * The name of the new queue. The following limits apply to this name:

* *

* Queue URLs and names are case-sensitive. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateQueueRequest withQueueName(String queueName) { setQueueName(queueName); return this; } /** *

* A map of attributes with their corresponding values. *

*

* The following lists the names, descriptions, and values of the special request parameters that the * CreateQueue action uses: *

* *

* The following attributes apply only to dead-letter queues: *

* * *

* The dead-letter queue of a FIFO queue must also be a FIFO queue. Similarly, the dead-letter queue of a standard * queue must also be a standard queue. *

*
*

* The following attributes apply only to server-side-encryption: *

* *

* The following attributes apply only to FIFO * (first-in-first-out) queues: *

* *

* The following attributes apply only to high * throughput for FIFO queues: *

* *

* To enable high throughput for FIFO queues, do the following: *

* *

* If you set these attributes to anything other than the values shown for enabling high throughput, normal * throughput is in effect and deduplication occurs as specified. *

*

* For information on throughput quotas, see Quotas * related to messages in the Amazon SQS Developer Guide. *

* * @return A map of attributes with their corresponding values.

*

* The following lists the names, descriptions, and values of the special request parameters that the * CreateQueue action uses: *

* *

* The following attributes apply only to dead-letter queues: *

* * *

* The dead-letter queue of a FIFO queue must also be a FIFO queue. Similarly, the dead-letter queue of a * standard queue must also be a standard queue. *

*
*

* The following attributes apply only to server-side-encryption: *

* *

* The following attributes apply only to FIFO * (first-in-first-out) queues: *

* *

* The following attributes apply only to high throughput for FIFO queues: *

* *

* To enable high throughput for FIFO queues, do the following: *

* *

* If you set these attributes to anything other than the values shown for enabling high throughput, normal * throughput is in effect and deduplication occurs as specified. *

*

* For information on throughput quotas, see Quotas related to messages in the Amazon SQS Developer Guide. */ public java.util.Map getAttributes() { if (attributes == null) { attributes = new com.amazonaws.internal.SdkInternalMap(); } return attributes; } /** *

* A map of attributes with their corresponding values. *

*

* The following lists the names, descriptions, and values of the special request parameters that the * CreateQueue action uses: *

* *

* The following attributes apply only to dead-letter queues: *

* * *

* The dead-letter queue of a FIFO queue must also be a FIFO queue. Similarly, the dead-letter queue of a standard * queue must also be a standard queue. *

*
*

* The following attributes apply only to server-side-encryption: *

* *

* The following attributes apply only to FIFO * (first-in-first-out) queues: *

* *

* The following attributes apply only to high * throughput for FIFO queues: *

* *

* To enable high throughput for FIFO queues, do the following: *

* *

* If you set these attributes to anything other than the values shown for enabling high throughput, normal * throughput is in effect and deduplication occurs as specified. *

*

* For information on throughput quotas, see Quotas * related to messages in the Amazon SQS Developer Guide. *

* * @param attributes * A map of attributes with their corresponding values.

*

* The following lists the names, descriptions, and values of the special request parameters that the * CreateQueue action uses: *

* *

* The following attributes apply only to dead-letter queues: *

* * *

* The dead-letter queue of a FIFO queue must also be a FIFO queue. Similarly, the dead-letter queue of a * standard queue must also be a standard queue. *

*
*

* The following attributes apply only to server-side-encryption: *

* *

* The following attributes apply only to FIFO * (first-in-first-out) queues: *

* *

* The following attributes apply only to high throughput for FIFO queues: *

* *

* To enable high throughput for FIFO queues, do the following: *

* *

* If you set these attributes to anything other than the values shown for enabling high throughput, normal * throughput is in effect and deduplication occurs as specified. *

*

* For information on throughput quotas, see Quotas related to messages in the Amazon SQS Developer Guide. */ public void setAttributes(java.util.Map attributes) { this.attributes = attributes == null ? null : new com.amazonaws.internal.SdkInternalMap(attributes); } /** *

* A map of attributes with their corresponding values. *

*

* The following lists the names, descriptions, and values of the special request parameters that the * CreateQueue action uses: *

* *

* The following attributes apply only to dead-letter queues: *

* * *

* The dead-letter queue of a FIFO queue must also be a FIFO queue. Similarly, the dead-letter queue of a standard * queue must also be a standard queue. *

*
*

* The following attributes apply only to server-side-encryption: *

* *

* The following attributes apply only to FIFO * (first-in-first-out) queues: *

* *

* The following attributes apply only to high * throughput for FIFO queues: *

* *

* To enable high throughput for FIFO queues, do the following: *

* *

* If you set these attributes to anything other than the values shown for enabling high throughput, normal * throughput is in effect and deduplication occurs as specified. *

*

* For information on throughput quotas, see Quotas * related to messages in the Amazon SQS Developer Guide. *

* * @param attributes * A map of attributes with their corresponding values.

*

* The following lists the names, descriptions, and values of the special request parameters that the * CreateQueue action uses: *

* *

* The following attributes apply only to dead-letter queues: *

* * *

* The dead-letter queue of a FIFO queue must also be a FIFO queue. Similarly, the dead-letter queue of a * standard queue must also be a standard queue. *

*
*

* The following attributes apply only to server-side-encryption: *

* *

* The following attributes apply only to FIFO * (first-in-first-out) queues: *

* *

* The following attributes apply only to high throughput for FIFO queues: *

* *

* To enable high throughput for FIFO queues, do the following: *

* *

* If you set these attributes to anything other than the values shown for enabling high throughput, normal * throughput is in effect and deduplication occurs as specified. *

*

* For information on throughput quotas, see Quotas related to messages in the Amazon SQS Developer Guide. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateQueueRequest withAttributes(java.util.Map attributes) { setAttributes(attributes); return this; } /** * Add a single Attributes entry * * @see CreateQueueRequest#withAttributes * @returns a reference to this object so that method calls can be chained together. */ public CreateQueueRequest addAttributesEntry(String key, String value) { if (null == this.attributes) { this.attributes = new com.amazonaws.internal.SdkInternalMap(); } if (this.attributes.containsKey(key)) throw new IllegalArgumentException("Duplicated keys (" + key.toString() + ") are provided."); this.attributes.put(key, value); return this; } /** * Removes all the entries added into Attributes. * * @return Returns a reference to this object so that method calls can be chained together. */ public CreateQueueRequest clearAttributesEntries() { this.attributes = null; return this; } /** *

* Add cost allocation tags to the specified Amazon SQS queue. For an overview, see Tagging * Your Amazon SQS Queues in the Amazon SQS Developer Guide. *

*

* When you use queue tags, keep the following guidelines in mind: *

* *

* For a full list of tag restrictions, see Quotas related to queues in the Amazon SQS Developer Guide. *

* *

* To be able to tag a queue on creation, you must have the sqs:CreateQueue and * sqs:TagQueue permissions. *

*

* Cross-account permissions don't apply to this action. For more information, see Grant cross-account permissions to a role and a username in the Amazon SQS Developer Guide. *

*
* * @return Add cost allocation tags to the specified Amazon SQS queue. For an overview, see Tagging Your Amazon SQS Queues in the Amazon SQS Developer Guide.

*

* When you use queue tags, keep the following guidelines in mind: *

* *

* For a full list of tag restrictions, see Quotas related to queues in the Amazon SQS Developer Guide. *

* *

* To be able to tag a queue on creation, you must have the sqs:CreateQueue and * sqs:TagQueue permissions. *

*

* Cross-account permissions don't apply to this action. For more information, see Grant cross-account permissions to a role and a username in the Amazon SQS Developer Guide. *

*/ public java.util.Map getTags() { if (tags == null) { tags = new com.amazonaws.internal.SdkInternalMap(); } return tags; } /** *

* Add cost allocation tags to the specified Amazon SQS queue. For an overview, see Tagging * Your Amazon SQS Queues in the Amazon SQS Developer Guide. *

*

* When you use queue tags, keep the following guidelines in mind: *

*
    *
  • *

    * Adding more than 50 tags to a queue isn't recommended. *

    *
  • *
  • *

    * Tags don't have any semantic meaning. Amazon SQS interprets tags as character strings. *

    *
  • *
  • *

    * Tags are case-sensitive. *

    *
  • *
  • *

    * A new tag with a key identical to that of an existing tag overwrites the existing tag. *

    *
  • *
*

* For a full list of tag restrictions, see Quotas related to queues in the Amazon SQS Developer Guide. *

* *

* To be able to tag a queue on creation, you must have the sqs:CreateQueue and * sqs:TagQueue permissions. *

*

* Cross-account permissions don't apply to this action. For more information, see Grant cross-account permissions to a role and a username in the Amazon SQS Developer Guide. *

*
* * @param tags * Add cost allocation tags to the specified Amazon SQS queue. For an overview, see Tagging Your Amazon SQS Queues in the Amazon SQS Developer Guide.

*

* When you use queue tags, keep the following guidelines in mind: *

*
    *
  • *

    * Adding more than 50 tags to a queue isn't recommended. *

    *
  • *
  • *

    * Tags don't have any semantic meaning. Amazon SQS interprets tags as character strings. *

    *
  • *
  • *

    * Tags are case-sensitive. *

    *
  • *
  • *

    * A new tag with a key identical to that of an existing tag overwrites the existing tag. *

    *
  • *
*

* For a full list of tag restrictions, see Quotas related to queues in the Amazon SQS Developer Guide. *

* *

* To be able to tag a queue on creation, you must have the sqs:CreateQueue and * sqs:TagQueue permissions. *

*

* Cross-account permissions don't apply to this action. For more information, see Grant cross-account permissions to a role and a username in the Amazon SQS Developer Guide. *

*/ public void setTags(java.util.Map tags) { this.tags = tags == null ? null : new com.amazonaws.internal.SdkInternalMap(tags); } /** *

* Add cost allocation tags to the specified Amazon SQS queue. For an overview, see Tagging * Your Amazon SQS Queues in the Amazon SQS Developer Guide. *

*

* When you use queue tags, keep the following guidelines in mind: *

*
    *
  • *

    * Adding more than 50 tags to a queue isn't recommended. *

    *
  • *
  • *

    * Tags don't have any semantic meaning. Amazon SQS interprets tags as character strings. *

    *
  • *
  • *

    * Tags are case-sensitive. *

    *
  • *
  • *

    * A new tag with a key identical to that of an existing tag overwrites the existing tag. *

    *
  • *
*

* For a full list of tag restrictions, see Quotas related to queues in the Amazon SQS Developer Guide. *

* *

* To be able to tag a queue on creation, you must have the sqs:CreateQueue and * sqs:TagQueue permissions. *

*

* Cross-account permissions don't apply to this action. For more information, see Grant cross-account permissions to a role and a username in the Amazon SQS Developer Guide. *

*
* * @param tags * Add cost allocation tags to the specified Amazon SQS queue. For an overview, see Tagging Your Amazon SQS Queues in the Amazon SQS Developer Guide.

*

* When you use queue tags, keep the following guidelines in mind: *

*
    *
  • *

    * Adding more than 50 tags to a queue isn't recommended. *

    *
  • *
  • *

    * Tags don't have any semantic meaning. Amazon SQS interprets tags as character strings. *

    *
  • *
  • *

    * Tags are case-sensitive. *

    *
  • *
  • *

    * A new tag with a key identical to that of an existing tag overwrites the existing tag. *

    *
  • *
*

* For a full list of tag restrictions, see Quotas related to queues in the Amazon SQS Developer Guide. *

* *

* To be able to tag a queue on creation, you must have the sqs:CreateQueue and * sqs:TagQueue permissions. *

*

* Cross-account permissions don't apply to this action. For more information, see Grant cross-account permissions to a role and a username in the Amazon SQS Developer Guide. *

* @return Returns a reference to this object so that method calls can be chained together. */ public CreateQueueRequest withTags(java.util.Map tags) { setTags(tags); return this; } /** * Add a single Tags entry * * @see CreateQueueRequest#withTags * @returns a reference to this object so that method calls can be chained together. */ public CreateQueueRequest addTagsEntry(String key, String value) { if (null == this.tags) { this.tags = new com.amazonaws.internal.SdkInternalMap(); } if (this.tags.containsKey(key)) throw new IllegalArgumentException("Duplicated keys (" + key.toString() + ") are provided."); this.tags.put(key, value); return this; } /** * Removes all the entries added into Tags. * * @return Returns a reference to this object so that method calls can be chained together. */ public CreateQueueRequest clearTagsEntries() { this.tags = null; 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 (getQueueName() != null) sb.append("QueueName: ").append(getQueueName()).append(","); if (getAttributes() != null) sb.append("Attributes: ").append(getAttributes()).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 CreateQueueRequest == false) return false; CreateQueueRequest other = (CreateQueueRequest) obj; if (other.getQueueName() == null ^ this.getQueueName() == null) return false; if (other.getQueueName() != null && other.getQueueName().equals(this.getQueueName()) == false) return false; if (other.getAttributes() == null ^ this.getAttributes() == null) return false; if (other.getAttributes() != null && other.getAttributes().equals(this.getAttributes()) == 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 + ((getQueueName() == null) ? 0 : getQueueName().hashCode()); hashCode = prime * hashCode + ((getAttributes() == null) ? 0 : getAttributes().hashCode()); hashCode = prime * hashCode + ((getTags() == null) ? 0 : getTags().hashCode()); return hashCode; } @Override public CreateQueueRequest clone() { return (CreateQueueRequest) super.clone(); } }