/* * 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.codedeploy.model; import java.io.Serializable; import javax.annotation.Generated; import com.amazonaws.protocol.StructuredPojo; import com.amazonaws.protocol.ProtocolMarshaller; /** *
* Information about an on-premises instance. *
* * @see AWS API * Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class InstanceInfo implements Serializable, Cloneable, StructuredPojo { /** ** The name of the on-premises instance. *
*/ private String instanceName; /** ** The ARN of the IAM session associated with the on-premises instance. *
*/ private String iamSessionArn; /** ** The IAM user ARN associated with the on-premises instance. *
*/ private String iamUserArn; /** ** The ARN of the on-premises instance. *
*/ private String instanceArn; /** ** The time at which the on-premises instance was registered. *
*/ private java.util.Date registerTime; /** ** If the on-premises instance was deregistered, the time at which the on-premises instance was deregistered. *
*/ private java.util.Date deregisterTime; /** ** The tags currently associated with the on-premises instance. *
*/ private com.amazonaws.internal.SdkInternalList* The name of the on-premises instance. *
* * @param instanceName * The name of the on-premises instance. */ public void setInstanceName(String instanceName) { this.instanceName = instanceName; } /** ** The name of the on-premises instance. *
* * @return The name of the on-premises instance. */ public String getInstanceName() { return this.instanceName; } /** ** The name of the on-premises instance. *
* * @param instanceName * The name of the on-premises instance. * @return Returns a reference to this object so that method calls can be chained together. */ public InstanceInfo withInstanceName(String instanceName) { setInstanceName(instanceName); return this; } /** ** The ARN of the IAM session associated with the on-premises instance. *
* * @param iamSessionArn * The ARN of the IAM session associated with the on-premises instance. */ public void setIamSessionArn(String iamSessionArn) { this.iamSessionArn = iamSessionArn; } /** ** The ARN of the IAM session associated with the on-premises instance. *
* * @return The ARN of the IAM session associated with the on-premises instance. */ public String getIamSessionArn() { return this.iamSessionArn; } /** ** The ARN of the IAM session associated with the on-premises instance. *
* * @param iamSessionArn * The ARN of the IAM session associated with the on-premises instance. * @return Returns a reference to this object so that method calls can be chained together. */ public InstanceInfo withIamSessionArn(String iamSessionArn) { setIamSessionArn(iamSessionArn); return this; } /** ** The IAM user ARN associated with the on-premises instance. *
* * @param iamUserArn * The IAM user ARN associated with the on-premises instance. */ public void setIamUserArn(String iamUserArn) { this.iamUserArn = iamUserArn; } /** ** The IAM user ARN associated with the on-premises instance. *
* * @return The IAM user ARN associated with the on-premises instance. */ public String getIamUserArn() { return this.iamUserArn; } /** ** The IAM user ARN associated with the on-premises instance. *
* * @param iamUserArn * The IAM user ARN associated with the on-premises instance. * @return Returns a reference to this object so that method calls can be chained together. */ public InstanceInfo withIamUserArn(String iamUserArn) { setIamUserArn(iamUserArn); return this; } /** ** The ARN of the on-premises instance. *
* * @param instanceArn * The ARN of the on-premises instance. */ public void setInstanceArn(String instanceArn) { this.instanceArn = instanceArn; } /** ** The ARN of the on-premises instance. *
* * @return The ARN of the on-premises instance. */ public String getInstanceArn() { return this.instanceArn; } /** ** The ARN of the on-premises instance. *
* * @param instanceArn * The ARN of the on-premises instance. * @return Returns a reference to this object so that method calls can be chained together. */ public InstanceInfo withInstanceArn(String instanceArn) { setInstanceArn(instanceArn); return this; } /** ** The time at which the on-premises instance was registered. *
* * @param registerTime * The time at which the on-premises instance was registered. */ public void setRegisterTime(java.util.Date registerTime) { this.registerTime = registerTime; } /** ** The time at which the on-premises instance was registered. *
* * @return The time at which the on-premises instance was registered. */ public java.util.Date getRegisterTime() { return this.registerTime; } /** ** The time at which the on-premises instance was registered. *
* * @param registerTime * The time at which the on-premises instance was registered. * @return Returns a reference to this object so that method calls can be chained together. */ public InstanceInfo withRegisterTime(java.util.Date registerTime) { setRegisterTime(registerTime); return this; } /** ** If the on-premises instance was deregistered, the time at which the on-premises instance was deregistered. *
* * @param deregisterTime * If the on-premises instance was deregistered, the time at which the on-premises instance was deregistered. */ public void setDeregisterTime(java.util.Date deregisterTime) { this.deregisterTime = deregisterTime; } /** ** If the on-premises instance was deregistered, the time at which the on-premises instance was deregistered. *
* * @return If the on-premises instance was deregistered, the time at which the on-premises instance was * deregistered. */ public java.util.Date getDeregisterTime() { return this.deregisterTime; } /** ** If the on-premises instance was deregistered, the time at which the on-premises instance was deregistered. *
* * @param deregisterTime * If the on-premises instance was deregistered, the time at which the on-premises instance was deregistered. * @return Returns a reference to this object so that method calls can be chained together. */ public InstanceInfo withDeregisterTime(java.util.Date deregisterTime) { setDeregisterTime(deregisterTime); return this; } /** ** The tags currently associated with the on-premises instance. *
* * @return The tags currently associated with the on-premises instance. */ public java.util.List* The tags currently associated with the on-premises instance. *
* * @param tags * The tags currently associated with the on-premises instance. */ public void setTags(java.util.Collection* The tags currently associated with the on-premises instance. *
** 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 * The tags currently associated with the on-premises instance. * @return Returns a reference to this object so that method calls can be chained together. */ public InstanceInfo withTags(Tag... tags) { if (this.tags == null) { setTags(new com.amazonaws.internal.SdkInternalList* The tags currently associated with the on-premises instance. *
* * @param tags * The tags currently associated with the on-premises instance. * @return Returns a reference to this object so that method calls can be chained together. */ public InstanceInfo withTags(java.util.Collection