/* * Copyright 2010-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.chimesdkidentity.model; import java.io.Serializable; import com.amazonaws.AmazonWebServiceRequest; /** *

* Creates a bot under an Amazon Chime AppInstance. The request * consists of a unique Configuration and Name for * that bot. *

*/ public class CreateAppInstanceBotRequest extends AmazonWebServiceRequest implements Serializable { /** *

* The ARN of the AppInstance request. *

*

* Constraints:
* Length: 5 - 1600
* Pattern: * arn:[a-z0-9-\.]{1,63}:[a-z0-9-\.]{0,63}:[a-z0-9-\.]{0,63}: * [a-z0-9-\.]{0,63}:[^/].{0,1023}
*/ private String appInstanceArn; /** *

* The user's name. *

*

* Constraints:
* Length: 0 - 256
* Pattern: [ * -\u007E\u0085\u00A0-\uD7FF\uE000-\uFFFD\u10000-\u10FFFF]*
*/ private String name; /** *

* The request metadata. Limited to a 1KB string in UTF-8. *

*

* Constraints:
* Length: 0 - 1024
* Pattern: .*
*/ private String metadata; /** *

* The unique ID for the client making the request. Use different tokens for * different AppInstanceBots. *

*

* Constraints:
* Length: 2 - 64
* Pattern: [-_a-zA-Z0-9]*
*/ private String clientRequestToken; /** *

* The tags assigned to the AppInstanceBot. *

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

* Configuration information about the Amazon Lex V2 V2 bot. *

*/ private Configuration configuration; /** *

* The ARN of the AppInstance request. *

*

* Constraints:
* Length: 5 - 1600
* Pattern: * arn:[a-z0-9-\.]{1,63}:[a-z0-9-\.]{0,63}:[a-z0-9-\.]{0,63}: * [a-z0-9-\.]{0,63}:[^/].{0,1023}
* * @return

* The ARN of the AppInstance request. *

*/ public String getAppInstanceArn() { return appInstanceArn; } /** *

* The ARN of the AppInstance request. *

*

* Constraints:
* Length: 5 - 1600
* Pattern: * arn:[a-z0-9-\.]{1,63}:[a-z0-9-\.]{0,63}:[a-z0-9-\.]{0,63}: * [a-z0-9-\.]{0,63}:[^/].{0,1023}
* * @param appInstanceArn

* The ARN of the AppInstance request. *

*/ public void setAppInstanceArn(String appInstanceArn) { this.appInstanceArn = appInstanceArn; } /** *

* The ARN of the AppInstance request. *

*

* Returns a reference to this object so that method calls can be chained * together. *

* Constraints:
* Length: 5 - 1600
* Pattern: * arn:[a-z0-9-\.]{1,63}:[a-z0-9-\.]{0,63}:[a-z0-9-\.]{0,63}: * [a-z0-9-\.]{0,63}:[^/].{0,1023}
* * @param appInstanceArn

* The ARN of the AppInstance request. *

* @return A reference to this updated object so that method calls can be * chained together. */ public CreateAppInstanceBotRequest withAppInstanceArn(String appInstanceArn) { this.appInstanceArn = appInstanceArn; return this; } /** *

* The user's name. *

*

* Constraints:
* Length: 0 - 256
* Pattern: [ * -\u007E\u0085\u00A0-\uD7FF\uE000-\uFFFD\u10000-\u10FFFF]*
* * @return

* The user's name. *

*/ public String getName() { return name; } /** *

* The user's name. *

*

* Constraints:
* Length: 0 - 256
* Pattern: [ * -\u007E\u0085\u00A0-\uD7FF\uE000-\uFFFD\u10000-\u10FFFF]*
* * @param name

* The user's name. *

*/ public void setName(String name) { this.name = name; } /** *

* The user's name. *

*

* Returns a reference to this object so that method calls can be chained * together. *

* Constraints:
* Length: 0 - 256
* Pattern: [ * -\u007E\u0085\u00A0-\uD7FF\uE000-\uFFFD\u10000-\u10FFFF]*
* * @param name

* The user's name. *

* @return A reference to this updated object so that method calls can be * chained together. */ public CreateAppInstanceBotRequest withName(String name) { this.name = name; return this; } /** *

* The request metadata. Limited to a 1KB string in UTF-8. *

*

* Constraints:
* Length: 0 - 1024
* Pattern: .*
* * @return

* The request metadata. Limited to a 1KB string in UTF-8. *

*/ public String getMetadata() { return metadata; } /** *

* The request metadata. Limited to a 1KB string in UTF-8. *

*

* Constraints:
* Length: 0 - 1024
* Pattern: .*
* * @param metadata

* The request metadata. Limited to a 1KB string in UTF-8. *

*/ public void setMetadata(String metadata) { this.metadata = metadata; } /** *

* The request metadata. Limited to a 1KB string in UTF-8. *

*

* Returns a reference to this object so that method calls can be chained * together. *

* Constraints:
* Length: 0 - 1024
* Pattern: .*
* * @param metadata

* The request metadata. Limited to a 1KB string in UTF-8. *

* @return A reference to this updated object so that method calls can be * chained together. */ public CreateAppInstanceBotRequest withMetadata(String metadata) { this.metadata = metadata; return this; } /** *

* The unique ID for the client making the request. Use different tokens for * different AppInstanceBots. *

*

* Constraints:
* Length: 2 - 64
* Pattern: [-_a-zA-Z0-9]*
* * @return

* The unique ID for the client making the request. Use different * tokens for different AppInstanceBots. *

*/ public String getClientRequestToken() { return clientRequestToken; } /** *

* The unique ID for the client making the request. Use different tokens for * different AppInstanceBots. *

*

* Constraints:
* Length: 2 - 64
* Pattern: [-_a-zA-Z0-9]*
* * @param clientRequestToken

* The unique ID for the client making the request. Use different * tokens for different AppInstanceBots. *

*/ public void setClientRequestToken(String clientRequestToken) { this.clientRequestToken = clientRequestToken; } /** *

* The unique ID for the client making the request. Use different tokens for * different AppInstanceBots. *

*

* Returns a reference to this object so that method calls can be chained * together. *

* Constraints:
* Length: 2 - 64
* Pattern: [-_a-zA-Z0-9]*
* * @param clientRequestToken

* The unique ID for the client making the request. Use different * tokens for different AppInstanceBots. *

* @return A reference to this updated object so that method calls can be * chained together. */ public CreateAppInstanceBotRequest withClientRequestToken(String clientRequestToken) { this.clientRequestToken = clientRequestToken; return this; } /** *

* The tags assigned to the AppInstanceBot. *

* * @return

* The tags assigned to the AppInstanceBot. *

*/ public java.util.List getTags() { return tags; } /** *

* The tags assigned to the AppInstanceBot. *

* * @param tags

* The tags assigned to the AppInstanceBot. *

*/ public void setTags(java.util.Collection tags) { if (tags == null) { this.tags = null; return; } this.tags = new java.util.ArrayList(tags); } /** *

* The tags assigned to the AppInstanceBot. *

*

* Returns a reference to this object so that method calls can be chained * together. * * @param tags

* The tags assigned to the AppInstanceBot. *

* @return A reference to this updated object so that method calls can be * chained together. */ public CreateAppInstanceBotRequest withTags(Tag... tags) { if (getTags() == null) { this.tags = new java.util.ArrayList(tags.length); } for (Tag value : tags) { this.tags.add(value); } return this; } /** *

* The tags assigned to the AppInstanceBot. *

*

* Returns a reference to this object so that method calls can be chained * together. * * @param tags

* The tags assigned to the AppInstanceBot. *

* @return A reference to this updated object so that method calls can be * chained together. */ public CreateAppInstanceBotRequest withTags(java.util.Collection tags) { setTags(tags); return this; } /** *

* Configuration information about the Amazon Lex V2 V2 bot. *

* * @return

* Configuration information about the Amazon Lex V2 V2 bot. *

*/ public Configuration getConfiguration() { return configuration; } /** *

* Configuration information about the Amazon Lex V2 V2 bot. *

* * @param configuration

* Configuration information about the Amazon Lex V2 V2 bot. *

*/ public void setConfiguration(Configuration configuration) { this.configuration = configuration; } /** *

* Configuration information about the Amazon Lex V2 V2 bot. *

*

* Returns a reference to this object so that method calls can be chained * together. * * @param configuration

* Configuration information about the Amazon Lex V2 V2 bot. *

* @return A reference to this updated object so that method calls can be * chained together. */ public CreateAppInstanceBotRequest withConfiguration(Configuration configuration) { this.configuration = configuration; return this; } /** * Returns a string representation of this object; useful for testing and * debugging. * * @return A string representation of this object. * @see java.lang.Object#toString() */ @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("{"); if (getAppInstanceArn() != null) sb.append("AppInstanceArn: " + getAppInstanceArn() + ","); if (getName() != null) sb.append("Name: " + getName() + ","); if (getMetadata() != null) sb.append("Metadata: " + getMetadata() + ","); if (getClientRequestToken() != null) sb.append("ClientRequestToken: " + getClientRequestToken() + ","); if (getTags() != null) sb.append("Tags: " + getTags() + ","); if (getConfiguration() != null) sb.append("Configuration: " + getConfiguration()); sb.append("}"); return sb.toString(); } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getAppInstanceArn() == null) ? 0 : getAppInstanceArn().hashCode()); hashCode = prime * hashCode + ((getName() == null) ? 0 : getName().hashCode()); hashCode = prime * hashCode + ((getMetadata() == null) ? 0 : getMetadata().hashCode()); hashCode = prime * hashCode + ((getClientRequestToken() == null) ? 0 : getClientRequestToken().hashCode()); hashCode = prime * hashCode + ((getTags() == null) ? 0 : getTags().hashCode()); hashCode = prime * hashCode + ((getConfiguration() == null) ? 0 : getConfiguration().hashCode()); return hashCode; } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof CreateAppInstanceBotRequest == false) return false; CreateAppInstanceBotRequest other = (CreateAppInstanceBotRequest) obj; if (other.getAppInstanceArn() == null ^ this.getAppInstanceArn() == null) return false; if (other.getAppInstanceArn() != null && other.getAppInstanceArn().equals(this.getAppInstanceArn()) == false) return false; if (other.getName() == null ^ this.getName() == null) return false; if (other.getName() != null && other.getName().equals(this.getName()) == false) return false; if (other.getMetadata() == null ^ this.getMetadata() == null) return false; if (other.getMetadata() != null && other.getMetadata().equals(this.getMetadata()) == false) return false; if (other.getClientRequestToken() == null ^ this.getClientRequestToken() == null) return false; if (other.getClientRequestToken() != null && other.getClientRequestToken().equals(this.getClientRequestToken()) == false) return false; if (other.getTags() == null ^ this.getTags() == null) return false; if (other.getTags() != null && other.getTags().equals(this.getTags()) == false) return false; if (other.getConfiguration() == null ^ this.getConfiguration() == null) return false; if (other.getConfiguration() != null && other.getConfiguration().equals(this.getConfiguration()) == false) return false; return true; } }