/* * 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.amplify.model; import java.io.Serializable; import javax.annotation.Generated; import com.amazonaws.AmazonWebServiceRequest; /** *

* The request structure for the create domain association request. *

* * @see AWS * API Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class CreateDomainAssociationRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable { /** *

* The unique ID for an Amplify app. *

*/ private String appId; /** *

* The domain name for the domain association. *

*/ private String domainName; /** *

* Enables the automated creation of subdomains for branches. *

*/ private Boolean enableAutoSubDomain; /** *

* The setting for the subdomain. *

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

* Sets the branch patterns for automatic subdomain creation. *

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

* The required AWS Identity and Access Management (IAM) service role for the Amazon Resource Name (ARN) for * automatically creating subdomains. *

*/ private String autoSubDomainIAMRole; /** *

* The unique ID for an Amplify app. *

* * @param appId * The unique ID for an Amplify app. */ public void setAppId(String appId) { this.appId = appId; } /** *

* The unique ID for an Amplify app. *

* * @return The unique ID for an Amplify app. */ public String getAppId() { return this.appId; } /** *

* The unique ID for an Amplify app. *

* * @param appId * The unique ID for an Amplify app. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateDomainAssociationRequest withAppId(String appId) { setAppId(appId); return this; } /** *

* The domain name for the domain association. *

* * @param domainName * The domain name for the domain association. */ public void setDomainName(String domainName) { this.domainName = domainName; } /** *

* The domain name for the domain association. *

* * @return The domain name for the domain association. */ public String getDomainName() { return this.domainName; } /** *

* The domain name for the domain association. *

* * @param domainName * The domain name for the domain association. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateDomainAssociationRequest withDomainName(String domainName) { setDomainName(domainName); return this; } /** *

* Enables the automated creation of subdomains for branches. *

* * @param enableAutoSubDomain * Enables the automated creation of subdomains for branches. */ public void setEnableAutoSubDomain(Boolean enableAutoSubDomain) { this.enableAutoSubDomain = enableAutoSubDomain; } /** *

* Enables the automated creation of subdomains for branches. *

* * @return Enables the automated creation of subdomains for branches. */ public Boolean getEnableAutoSubDomain() { return this.enableAutoSubDomain; } /** *

* Enables the automated creation of subdomains for branches. *

* * @param enableAutoSubDomain * Enables the automated creation of subdomains for branches. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateDomainAssociationRequest withEnableAutoSubDomain(Boolean enableAutoSubDomain) { setEnableAutoSubDomain(enableAutoSubDomain); return this; } /** *

* Enables the automated creation of subdomains for branches. *

* * @return Enables the automated creation of subdomains for branches. */ public Boolean isEnableAutoSubDomain() { return this.enableAutoSubDomain; } /** *

* The setting for the subdomain. *

* * @return The setting for the subdomain. */ public java.util.List getSubDomainSettings() { return subDomainSettings; } /** *

* The setting for the subdomain. *

* * @param subDomainSettings * The setting for the subdomain. */ public void setSubDomainSettings(java.util.Collection subDomainSettings) { if (subDomainSettings == null) { this.subDomainSettings = null; return; } this.subDomainSettings = new java.util.ArrayList(subDomainSettings); } /** *

* The setting for the subdomain. *

*

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

* * @param subDomainSettings * The setting for the subdomain. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateDomainAssociationRequest withSubDomainSettings(SubDomainSetting... subDomainSettings) { if (this.subDomainSettings == null) { setSubDomainSettings(new java.util.ArrayList(subDomainSettings.length)); } for (SubDomainSetting ele : subDomainSettings) { this.subDomainSettings.add(ele); } return this; } /** *

* The setting for the subdomain. *

* * @param subDomainSettings * The setting for the subdomain. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateDomainAssociationRequest withSubDomainSettings(java.util.Collection subDomainSettings) { setSubDomainSettings(subDomainSettings); return this; } /** *

* Sets the branch patterns for automatic subdomain creation. *

* * @return Sets the branch patterns for automatic subdomain creation. */ public java.util.List getAutoSubDomainCreationPatterns() { return autoSubDomainCreationPatterns; } /** *

* Sets the branch patterns for automatic subdomain creation. *

* * @param autoSubDomainCreationPatterns * Sets the branch patterns for automatic subdomain creation. */ public void setAutoSubDomainCreationPatterns(java.util.Collection autoSubDomainCreationPatterns) { if (autoSubDomainCreationPatterns == null) { this.autoSubDomainCreationPatterns = null; return; } this.autoSubDomainCreationPatterns = new java.util.ArrayList(autoSubDomainCreationPatterns); } /** *

* Sets the branch patterns for automatic subdomain creation. *

*

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

* * @param autoSubDomainCreationPatterns * Sets the branch patterns for automatic subdomain creation. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateDomainAssociationRequest withAutoSubDomainCreationPatterns(String... autoSubDomainCreationPatterns) { if (this.autoSubDomainCreationPatterns == null) { setAutoSubDomainCreationPatterns(new java.util.ArrayList(autoSubDomainCreationPatterns.length)); } for (String ele : autoSubDomainCreationPatterns) { this.autoSubDomainCreationPatterns.add(ele); } return this; } /** *

* Sets the branch patterns for automatic subdomain creation. *

* * @param autoSubDomainCreationPatterns * Sets the branch patterns for automatic subdomain creation. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateDomainAssociationRequest withAutoSubDomainCreationPatterns(java.util.Collection autoSubDomainCreationPatterns) { setAutoSubDomainCreationPatterns(autoSubDomainCreationPatterns); return this; } /** *

* The required AWS Identity and Access Management (IAM) service role for the Amazon Resource Name (ARN) for * automatically creating subdomains. *

* * @param autoSubDomainIAMRole * The required AWS Identity and Access Management (IAM) service role for the Amazon Resource Name (ARN) for * automatically creating subdomains. */ public void setAutoSubDomainIAMRole(String autoSubDomainIAMRole) { this.autoSubDomainIAMRole = autoSubDomainIAMRole; } /** *

* The required AWS Identity and Access Management (IAM) service role for the Amazon Resource Name (ARN) for * automatically creating subdomains. *

* * @return The required AWS Identity and Access Management (IAM) service role for the Amazon Resource Name (ARN) for * automatically creating subdomains. */ public String getAutoSubDomainIAMRole() { return this.autoSubDomainIAMRole; } /** *

* The required AWS Identity and Access Management (IAM) service role for the Amazon Resource Name (ARN) for * automatically creating subdomains. *

* * @param autoSubDomainIAMRole * The required AWS Identity and Access Management (IAM) service role for the Amazon Resource Name (ARN) for * automatically creating subdomains. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateDomainAssociationRequest withAutoSubDomainIAMRole(String autoSubDomainIAMRole) { setAutoSubDomainIAMRole(autoSubDomainIAMRole); 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 (getAppId() != null) sb.append("AppId: ").append(getAppId()).append(","); if (getDomainName() != null) sb.append("DomainName: ").append(getDomainName()).append(","); if (getEnableAutoSubDomain() != null) sb.append("EnableAutoSubDomain: ").append(getEnableAutoSubDomain()).append(","); if (getSubDomainSettings() != null) sb.append("SubDomainSettings: ").append(getSubDomainSettings()).append(","); if (getAutoSubDomainCreationPatterns() != null) sb.append("AutoSubDomainCreationPatterns: ").append(getAutoSubDomainCreationPatterns()).append(","); if (getAutoSubDomainIAMRole() != null) sb.append("AutoSubDomainIAMRole: ").append(getAutoSubDomainIAMRole()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof CreateDomainAssociationRequest == false) return false; CreateDomainAssociationRequest other = (CreateDomainAssociationRequest) obj; if (other.getAppId() == null ^ this.getAppId() == null) return false; if (other.getAppId() != null && other.getAppId().equals(this.getAppId()) == false) return false; if (other.getDomainName() == null ^ this.getDomainName() == null) return false; if (other.getDomainName() != null && other.getDomainName().equals(this.getDomainName()) == false) return false; if (other.getEnableAutoSubDomain() == null ^ this.getEnableAutoSubDomain() == null) return false; if (other.getEnableAutoSubDomain() != null && other.getEnableAutoSubDomain().equals(this.getEnableAutoSubDomain()) == false) return false; if (other.getSubDomainSettings() == null ^ this.getSubDomainSettings() == null) return false; if (other.getSubDomainSettings() != null && other.getSubDomainSettings().equals(this.getSubDomainSettings()) == false) return false; if (other.getAutoSubDomainCreationPatterns() == null ^ this.getAutoSubDomainCreationPatterns() == null) return false; if (other.getAutoSubDomainCreationPatterns() != null && other.getAutoSubDomainCreationPatterns().equals(this.getAutoSubDomainCreationPatterns()) == false) return false; if (other.getAutoSubDomainIAMRole() == null ^ this.getAutoSubDomainIAMRole() == null) return false; if (other.getAutoSubDomainIAMRole() != null && other.getAutoSubDomainIAMRole().equals(this.getAutoSubDomainIAMRole()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getAppId() == null) ? 0 : getAppId().hashCode()); hashCode = prime * hashCode + ((getDomainName() == null) ? 0 : getDomainName().hashCode()); hashCode = prime * hashCode + ((getEnableAutoSubDomain() == null) ? 0 : getEnableAutoSubDomain().hashCode()); hashCode = prime * hashCode + ((getSubDomainSettings() == null) ? 0 : getSubDomainSettings().hashCode()); hashCode = prime * hashCode + ((getAutoSubDomainCreationPatterns() == null) ? 0 : getAutoSubDomainCreationPatterns().hashCode()); hashCode = prime * hashCode + ((getAutoSubDomainIAMRole() == null) ? 0 : getAutoSubDomainIAMRole().hashCode()); return hashCode; } @Override public CreateDomainAssociationRequest clone() { return (CreateDomainAssociationRequest) super.clone(); } }