/* * 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.proton.model; import java.io.Serializable; import javax.annotation.Generated; import com.amazonaws.protocol.StructuredPojo; import com.amazonaws.protocol.ProtocolMarshaller; /** *

* Summary data of an Proton environment account connection resource. *

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

* The Amazon Resource Name (ARN) of the environment account connection. *

*/ private String arn; /** *

* The Amazon Resource Name (ARN) of the IAM service role that Proton uses when provisioning directly defined * components in the associated environment account. It determines the scope of infrastructure that a component can * provision in the account. *

*

* The environment account connection must have a componentRoleArn to allow directly defined components * to be associated with any environments running in the account. *

*

* For more information about components, see Proton components in the * Proton User Guide. *

*/ private String componentRoleArn; /** *

* The ID of the environment account that's connected to the environment account connection. *

*/ private String environmentAccountId; /** *

* The name of the environment that's associated with the environment account connection. *

*/ private String environmentName; /** *

* The ID of the environment account connection. *

*/ private String id; /** *

* The time when the environment account connection was last modified. *

*/ private java.util.Date lastModifiedAt; /** *

* The ID of the management account that's connected to the environment account connection. *

*/ private String managementAccountId; /** *

* The time when the environment account connection request was made. *

*/ private java.util.Date requestedAt; /** *

* The IAM service role that's associated with the environment account connection. *

*/ private String roleArn; /** *

* The status of the environment account connection. *

*/ private String status; /** *

* The Amazon Resource Name (ARN) of the environment account connection. *

* * @param arn * The Amazon Resource Name (ARN) of the environment account connection. */ public void setArn(String arn) { this.arn = arn; } /** *

* The Amazon Resource Name (ARN) of the environment account connection. *

* * @return The Amazon Resource Name (ARN) of the environment account connection. */ public String getArn() { return this.arn; } /** *

* The Amazon Resource Name (ARN) of the environment account connection. *

* * @param arn * The Amazon Resource Name (ARN) of the environment account connection. * @return Returns a reference to this object so that method calls can be chained together. */ public EnvironmentAccountConnectionSummary withArn(String arn) { setArn(arn); return this; } /** *

* The Amazon Resource Name (ARN) of the IAM service role that Proton uses when provisioning directly defined * components in the associated environment account. It determines the scope of infrastructure that a component can * provision in the account. *

*

* The environment account connection must have a componentRoleArn to allow directly defined components * to be associated with any environments running in the account. *

*

* For more information about components, see Proton components in the * Proton User Guide. *

* * @param componentRoleArn * The Amazon Resource Name (ARN) of the IAM service role that Proton uses when provisioning directly defined * components in the associated environment account. It determines the scope of infrastructure that a * component can provision in the account.

*

* The environment account connection must have a componentRoleArn to allow directly defined * components to be associated with any environments running in the account. *

*

* For more information about components, see Proton components in the * Proton User Guide. */ public void setComponentRoleArn(String componentRoleArn) { this.componentRoleArn = componentRoleArn; } /** *

* The Amazon Resource Name (ARN) of the IAM service role that Proton uses when provisioning directly defined * components in the associated environment account. It determines the scope of infrastructure that a component can * provision in the account. *

*

* The environment account connection must have a componentRoleArn to allow directly defined components * to be associated with any environments running in the account. *

*

* For more information about components, see Proton components in the * Proton User Guide. *

* * @return The Amazon Resource Name (ARN) of the IAM service role that Proton uses when provisioning directly * defined components in the associated environment account. It determines the scope of infrastructure that * a component can provision in the account.

*

* The environment account connection must have a componentRoleArn to allow directly defined * components to be associated with any environments running in the account. *

*

* For more information about components, see Proton components in * the Proton User Guide. */ public String getComponentRoleArn() { return this.componentRoleArn; } /** *

* The Amazon Resource Name (ARN) of the IAM service role that Proton uses when provisioning directly defined * components in the associated environment account. It determines the scope of infrastructure that a component can * provision in the account. *

*

* The environment account connection must have a componentRoleArn to allow directly defined components * to be associated with any environments running in the account. *

*

* For more information about components, see Proton components in the * Proton User Guide. *

* * @param componentRoleArn * The Amazon Resource Name (ARN) of the IAM service role that Proton uses when provisioning directly defined * components in the associated environment account. It determines the scope of infrastructure that a * component can provision in the account.

*

* The environment account connection must have a componentRoleArn to allow directly defined * components to be associated with any environments running in the account. *

*

* For more information about components, see Proton components in the * Proton User Guide. * @return Returns a reference to this object so that method calls can be chained together. */ public EnvironmentAccountConnectionSummary withComponentRoleArn(String componentRoleArn) { setComponentRoleArn(componentRoleArn); return this; } /** *

* The ID of the environment account that's connected to the environment account connection. *

* * @param environmentAccountId * The ID of the environment account that's connected to the environment account connection. */ public void setEnvironmentAccountId(String environmentAccountId) { this.environmentAccountId = environmentAccountId; } /** *

* The ID of the environment account that's connected to the environment account connection. *

* * @return The ID of the environment account that's connected to the environment account connection. */ public String getEnvironmentAccountId() { return this.environmentAccountId; } /** *

* The ID of the environment account that's connected to the environment account connection. *

* * @param environmentAccountId * The ID of the environment account that's connected to the environment account connection. * @return Returns a reference to this object so that method calls can be chained together. */ public EnvironmentAccountConnectionSummary withEnvironmentAccountId(String environmentAccountId) { setEnvironmentAccountId(environmentAccountId); return this; } /** *

* The name of the environment that's associated with the environment account connection. *

* * @param environmentName * The name of the environment that's associated with the environment account connection. */ public void setEnvironmentName(String environmentName) { this.environmentName = environmentName; } /** *

* The name of the environment that's associated with the environment account connection. *

* * @return The name of the environment that's associated with the environment account connection. */ public String getEnvironmentName() { return this.environmentName; } /** *

* The name of the environment that's associated with the environment account connection. *

* * @param environmentName * The name of the environment that's associated with the environment account connection. * @return Returns a reference to this object so that method calls can be chained together. */ public EnvironmentAccountConnectionSummary withEnvironmentName(String environmentName) { setEnvironmentName(environmentName); return this; } /** *

* The ID of the environment account connection. *

* * @param id * The ID of the environment account connection. */ public void setId(String id) { this.id = id; } /** *

* The ID of the environment account connection. *

* * @return The ID of the environment account connection. */ public String getId() { return this.id; } /** *

* The ID of the environment account connection. *

* * @param id * The ID of the environment account connection. * @return Returns a reference to this object so that method calls can be chained together. */ public EnvironmentAccountConnectionSummary withId(String id) { setId(id); return this; } /** *

* The time when the environment account connection was last modified. *

* * @param lastModifiedAt * The time when the environment account connection was last modified. */ public void setLastModifiedAt(java.util.Date lastModifiedAt) { this.lastModifiedAt = lastModifiedAt; } /** *

* The time when the environment account connection was last modified. *

* * @return The time when the environment account connection was last modified. */ public java.util.Date getLastModifiedAt() { return this.lastModifiedAt; } /** *

* The time when the environment account connection was last modified. *

* * @param lastModifiedAt * The time when the environment account connection was last modified. * @return Returns a reference to this object so that method calls can be chained together. */ public EnvironmentAccountConnectionSummary withLastModifiedAt(java.util.Date lastModifiedAt) { setLastModifiedAt(lastModifiedAt); return this; } /** *

* The ID of the management account that's connected to the environment account connection. *

* * @param managementAccountId * The ID of the management account that's connected to the environment account connection. */ public void setManagementAccountId(String managementAccountId) { this.managementAccountId = managementAccountId; } /** *

* The ID of the management account that's connected to the environment account connection. *

* * @return The ID of the management account that's connected to the environment account connection. */ public String getManagementAccountId() { return this.managementAccountId; } /** *

* The ID of the management account that's connected to the environment account connection. *

* * @param managementAccountId * The ID of the management account that's connected to the environment account connection. * @return Returns a reference to this object so that method calls can be chained together. */ public EnvironmentAccountConnectionSummary withManagementAccountId(String managementAccountId) { setManagementAccountId(managementAccountId); return this; } /** *

* The time when the environment account connection request was made. *

* * @param requestedAt * The time when the environment account connection request was made. */ public void setRequestedAt(java.util.Date requestedAt) { this.requestedAt = requestedAt; } /** *

* The time when the environment account connection request was made. *

* * @return The time when the environment account connection request was made. */ public java.util.Date getRequestedAt() { return this.requestedAt; } /** *

* The time when the environment account connection request was made. *

* * @param requestedAt * The time when the environment account connection request was made. * @return Returns a reference to this object so that method calls can be chained together. */ public EnvironmentAccountConnectionSummary withRequestedAt(java.util.Date requestedAt) { setRequestedAt(requestedAt); return this; } /** *

* The IAM service role that's associated with the environment account connection. *

* * @param roleArn * The IAM service role that's associated with the environment account connection. */ public void setRoleArn(String roleArn) { this.roleArn = roleArn; } /** *

* The IAM service role that's associated with the environment account connection. *

* * @return The IAM service role that's associated with the environment account connection. */ public String getRoleArn() { return this.roleArn; } /** *

* The IAM service role that's associated with the environment account connection. *

* * @param roleArn * The IAM service role that's associated with the environment account connection. * @return Returns a reference to this object so that method calls can be chained together. */ public EnvironmentAccountConnectionSummary withRoleArn(String roleArn) { setRoleArn(roleArn); return this; } /** *

* The status of the environment account connection. *

* * @param status * The status of the environment account connection. * @see EnvironmentAccountConnectionStatus */ public void setStatus(String status) { this.status = status; } /** *

* The status of the environment account connection. *

* * @return The status of the environment account connection. * @see EnvironmentAccountConnectionStatus */ public String getStatus() { return this.status; } /** *

* The status of the environment account connection. *

* * @param status * The status of the environment account connection. * @return Returns a reference to this object so that method calls can be chained together. * @see EnvironmentAccountConnectionStatus */ public EnvironmentAccountConnectionSummary withStatus(String status) { setStatus(status); return this; } /** *

* The status of the environment account connection. *

* * @param status * The status of the environment account connection. * @return Returns a reference to this object so that method calls can be chained together. * @see EnvironmentAccountConnectionStatus */ public EnvironmentAccountConnectionSummary withStatus(EnvironmentAccountConnectionStatus status) { this.status = status.toString(); 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 (getArn() != null) sb.append("Arn: ").append(getArn()).append(","); if (getComponentRoleArn() != null) sb.append("ComponentRoleArn: ").append(getComponentRoleArn()).append(","); if (getEnvironmentAccountId() != null) sb.append("EnvironmentAccountId: ").append(getEnvironmentAccountId()).append(","); if (getEnvironmentName() != null) sb.append("EnvironmentName: ").append(getEnvironmentName()).append(","); if (getId() != null) sb.append("Id: ").append(getId()).append(","); if (getLastModifiedAt() != null) sb.append("LastModifiedAt: ").append(getLastModifiedAt()).append(","); if (getManagementAccountId() != null) sb.append("ManagementAccountId: ").append(getManagementAccountId()).append(","); if (getRequestedAt() != null) sb.append("RequestedAt: ").append(getRequestedAt()).append(","); if (getRoleArn() != null) sb.append("RoleArn: ").append(getRoleArn()).append(","); if (getStatus() != null) sb.append("Status: ").append(getStatus()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof EnvironmentAccountConnectionSummary == false) return false; EnvironmentAccountConnectionSummary other = (EnvironmentAccountConnectionSummary) obj; if (other.getArn() == null ^ this.getArn() == null) return false; if (other.getArn() != null && other.getArn().equals(this.getArn()) == false) return false; if (other.getComponentRoleArn() == null ^ this.getComponentRoleArn() == null) return false; if (other.getComponentRoleArn() != null && other.getComponentRoleArn().equals(this.getComponentRoleArn()) == false) return false; if (other.getEnvironmentAccountId() == null ^ this.getEnvironmentAccountId() == null) return false; if (other.getEnvironmentAccountId() != null && other.getEnvironmentAccountId().equals(this.getEnvironmentAccountId()) == false) return false; if (other.getEnvironmentName() == null ^ this.getEnvironmentName() == null) return false; if (other.getEnvironmentName() != null && other.getEnvironmentName().equals(this.getEnvironmentName()) == false) return false; if (other.getId() == null ^ this.getId() == null) return false; if (other.getId() != null && other.getId().equals(this.getId()) == false) return false; if (other.getLastModifiedAt() == null ^ this.getLastModifiedAt() == null) return false; if (other.getLastModifiedAt() != null && other.getLastModifiedAt().equals(this.getLastModifiedAt()) == false) return false; if (other.getManagementAccountId() == null ^ this.getManagementAccountId() == null) return false; if (other.getManagementAccountId() != null && other.getManagementAccountId().equals(this.getManagementAccountId()) == false) return false; if (other.getRequestedAt() == null ^ this.getRequestedAt() == null) return false; if (other.getRequestedAt() != null && other.getRequestedAt().equals(this.getRequestedAt()) == false) return false; if (other.getRoleArn() == null ^ this.getRoleArn() == null) return false; if (other.getRoleArn() != null && other.getRoleArn().equals(this.getRoleArn()) == false) return false; if (other.getStatus() == null ^ this.getStatus() == null) return false; if (other.getStatus() != null && other.getStatus().equals(this.getStatus()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getArn() == null) ? 0 : getArn().hashCode()); hashCode = prime * hashCode + ((getComponentRoleArn() == null) ? 0 : getComponentRoleArn().hashCode()); hashCode = prime * hashCode + ((getEnvironmentAccountId() == null) ? 0 : getEnvironmentAccountId().hashCode()); hashCode = prime * hashCode + ((getEnvironmentName() == null) ? 0 : getEnvironmentName().hashCode()); hashCode = prime * hashCode + ((getId() == null) ? 0 : getId().hashCode()); hashCode = prime * hashCode + ((getLastModifiedAt() == null) ? 0 : getLastModifiedAt().hashCode()); hashCode = prime * hashCode + ((getManagementAccountId() == null) ? 0 : getManagementAccountId().hashCode()); hashCode = prime * hashCode + ((getRequestedAt() == null) ? 0 : getRequestedAt().hashCode()); hashCode = prime * hashCode + ((getRoleArn() == null) ? 0 : getRoleArn().hashCode()); hashCode = prime * hashCode + ((getStatus() == null) ? 0 : getStatus().hashCode()); return hashCode; } @Override public EnvironmentAccountConnectionSummary clone() { try { return (EnvironmentAccountConnectionSummary) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } @com.amazonaws.annotation.SdkInternalApi @Override public void marshall(ProtocolMarshaller protocolMarshaller) { com.amazonaws.services.proton.model.transform.EnvironmentAccountConnectionSummaryMarshaller.getInstance().marshall(this, protocolMarshaller); } }