com.amazonaws.services.chimesdkidentity.model.AppInstanceUserEndpointSummary Maven / Gradle / Ivy
Show all versions of aws-java-sdk-chimesdkidentity Show documentation
/*
* Copyright 2019-2024 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 javax.annotation.Generated;
import com.amazonaws.protocol.StructuredPojo;
import com.amazonaws.protocol.ProtocolMarshaller;
/**
*
* Summary of the details of an AppInstanceUserEndpoint
.
*
*
* @see AWS API Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class AppInstanceUserEndpointSummary implements Serializable, Cloneable, StructuredPojo {
/**
*
* The ARN of the AppInstanceUser
.
*
*/
private String appInstanceUserArn;
/**
*
* The unique identifier of the AppInstanceUserEndpoint
.
*
*/
private String endpointId;
/**
*
* The name of the AppInstanceUserEndpoint
.
*
*/
private String name;
/**
*
* The type of the AppInstanceUserEndpoint
.
*
*/
private String type;
/**
*
* BBoolean that controls whether the AppInstanceUserEndpoint
is opted in to receive messages.
* ALL
indicates the endpoint will receive all messages. NONE
indicates the endpoint will
* receive no messages.
*
*/
private String allowMessages;
/**
*
* A read-only field that represent the state of an AppInstanceUserEndpoint
.
*
*/
private EndpointState endpointState;
/**
*
* The ARN of the AppInstanceUser
.
*
*
* @param appInstanceUserArn
* The ARN of the AppInstanceUser
.
*/
public void setAppInstanceUserArn(String appInstanceUserArn) {
this.appInstanceUserArn = appInstanceUserArn;
}
/**
*
* The ARN of the AppInstanceUser
.
*
*
* @return The ARN of the AppInstanceUser
.
*/
public String getAppInstanceUserArn() {
return this.appInstanceUserArn;
}
/**
*
* The ARN of the AppInstanceUser
.
*
*
* @param appInstanceUserArn
* The ARN of the AppInstanceUser
.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public AppInstanceUserEndpointSummary withAppInstanceUserArn(String appInstanceUserArn) {
setAppInstanceUserArn(appInstanceUserArn);
return this;
}
/**
*
* The unique identifier of the AppInstanceUserEndpoint
.
*
*
* @param endpointId
* The unique identifier of the AppInstanceUserEndpoint
.
*/
public void setEndpointId(String endpointId) {
this.endpointId = endpointId;
}
/**
*
* The unique identifier of the AppInstanceUserEndpoint
.
*
*
* @return The unique identifier of the AppInstanceUserEndpoint
.
*/
public String getEndpointId() {
return this.endpointId;
}
/**
*
* The unique identifier of the AppInstanceUserEndpoint
.
*
*
* @param endpointId
* The unique identifier of the AppInstanceUserEndpoint
.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public AppInstanceUserEndpointSummary withEndpointId(String endpointId) {
setEndpointId(endpointId);
return this;
}
/**
*
* The name of the AppInstanceUserEndpoint
.
*
*
* @param name
* The name of the AppInstanceUserEndpoint
.
*/
public void setName(String name) {
this.name = name;
}
/**
*
* The name of the AppInstanceUserEndpoint
.
*
*
* @return The name of the AppInstanceUserEndpoint
.
*/
public String getName() {
return this.name;
}
/**
*
* The name of the AppInstanceUserEndpoint
.
*
*
* @param name
* The name of the AppInstanceUserEndpoint
.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public AppInstanceUserEndpointSummary withName(String name) {
setName(name);
return this;
}
/**
*
* The type of the AppInstanceUserEndpoint
.
*
*
* @param type
* The type of the AppInstanceUserEndpoint
.
* @see AppInstanceUserEndpointType
*/
public void setType(String type) {
this.type = type;
}
/**
*
* The type of the AppInstanceUserEndpoint
.
*
*
* @return The type of the AppInstanceUserEndpoint
.
* @see AppInstanceUserEndpointType
*/
public String getType() {
return this.type;
}
/**
*
* The type of the AppInstanceUserEndpoint
.
*
*
* @param type
* The type of the AppInstanceUserEndpoint
.
* @return Returns a reference to this object so that method calls can be chained together.
* @see AppInstanceUserEndpointType
*/
public AppInstanceUserEndpointSummary withType(String type) {
setType(type);
return this;
}
/**
*
* The type of the AppInstanceUserEndpoint
.
*
*
* @param type
* The type of the AppInstanceUserEndpoint
.
* @return Returns a reference to this object so that method calls can be chained together.
* @see AppInstanceUserEndpointType
*/
public AppInstanceUserEndpointSummary withType(AppInstanceUserEndpointType type) {
this.type = type.toString();
return this;
}
/**
*
* BBoolean that controls whether the AppInstanceUserEndpoint
is opted in to receive messages.
* ALL
indicates the endpoint will receive all messages. NONE
indicates the endpoint will
* receive no messages.
*
*
* @param allowMessages
* BBoolean that controls whether the AppInstanceUserEndpoint
is opted in to receive messages.
* ALL
indicates the endpoint will receive all messages. NONE
indicates the
* endpoint will receive no messages.
* @see AllowMessages
*/
public void setAllowMessages(String allowMessages) {
this.allowMessages = allowMessages;
}
/**
*
* BBoolean that controls whether the AppInstanceUserEndpoint
is opted in to receive messages.
* ALL
indicates the endpoint will receive all messages. NONE
indicates the endpoint will
* receive no messages.
*
*
* @return BBoolean that controls whether the AppInstanceUserEndpoint
is opted in to receive messages.
* ALL
indicates the endpoint will receive all messages. NONE
indicates the
* endpoint will receive no messages.
* @see AllowMessages
*/
public String getAllowMessages() {
return this.allowMessages;
}
/**
*
* BBoolean that controls whether the AppInstanceUserEndpoint
is opted in to receive messages.
* ALL
indicates the endpoint will receive all messages. NONE
indicates the endpoint will
* receive no messages.
*
*
* @param allowMessages
* BBoolean that controls whether the AppInstanceUserEndpoint
is opted in to receive messages.
* ALL
indicates the endpoint will receive all messages. NONE
indicates the
* endpoint will receive no messages.
* @return Returns a reference to this object so that method calls can be chained together.
* @see AllowMessages
*/
public AppInstanceUserEndpointSummary withAllowMessages(String allowMessages) {
setAllowMessages(allowMessages);
return this;
}
/**
*
* BBoolean that controls whether the AppInstanceUserEndpoint
is opted in to receive messages.
* ALL
indicates the endpoint will receive all messages. NONE
indicates the endpoint will
* receive no messages.
*
*
* @param allowMessages
* BBoolean that controls whether the AppInstanceUserEndpoint
is opted in to receive messages.
* ALL
indicates the endpoint will receive all messages. NONE
indicates the
* endpoint will receive no messages.
* @return Returns a reference to this object so that method calls can be chained together.
* @see AllowMessages
*/
public AppInstanceUserEndpointSummary withAllowMessages(AllowMessages allowMessages) {
this.allowMessages = allowMessages.toString();
return this;
}
/**
*
* A read-only field that represent the state of an AppInstanceUserEndpoint
.
*
*
* @param endpointState
* A read-only field that represent the state of an AppInstanceUserEndpoint
.
*/
public void setEndpointState(EndpointState endpointState) {
this.endpointState = endpointState;
}
/**
*
* A read-only field that represent the state of an AppInstanceUserEndpoint
.
*
*
* @return A read-only field that represent the state of an AppInstanceUserEndpoint
.
*/
public EndpointState getEndpointState() {
return this.endpointState;
}
/**
*
* A read-only field that represent the state of an AppInstanceUserEndpoint
.
*
*
* @param endpointState
* A read-only field that represent the state of an AppInstanceUserEndpoint
.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public AppInstanceUserEndpointSummary withEndpointState(EndpointState endpointState) {
setEndpointState(endpointState);
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 (getAppInstanceUserArn() != null)
sb.append("AppInstanceUserArn: ").append(getAppInstanceUserArn()).append(",");
if (getEndpointId() != null)
sb.append("EndpointId: ").append(getEndpointId()).append(",");
if (getName() != null)
sb.append("Name: ").append("***Sensitive Data Redacted***").append(",");
if (getType() != null)
sb.append("Type: ").append(getType()).append(",");
if (getAllowMessages() != null)
sb.append("AllowMessages: ").append(getAllowMessages()).append(",");
if (getEndpointState() != null)
sb.append("EndpointState: ").append(getEndpointState());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof AppInstanceUserEndpointSummary == false)
return false;
AppInstanceUserEndpointSummary other = (AppInstanceUserEndpointSummary) obj;
if (other.getAppInstanceUserArn() == null ^ this.getAppInstanceUserArn() == null)
return false;
if (other.getAppInstanceUserArn() != null && other.getAppInstanceUserArn().equals(this.getAppInstanceUserArn()) == false)
return false;
if (other.getEndpointId() == null ^ this.getEndpointId() == null)
return false;
if (other.getEndpointId() != null && other.getEndpointId().equals(this.getEndpointId()) == 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.getType() == null ^ this.getType() == null)
return false;
if (other.getType() != null && other.getType().equals(this.getType()) == false)
return false;
if (other.getAllowMessages() == null ^ this.getAllowMessages() == null)
return false;
if (other.getAllowMessages() != null && other.getAllowMessages().equals(this.getAllowMessages()) == false)
return false;
if (other.getEndpointState() == null ^ this.getEndpointState() == null)
return false;
if (other.getEndpointState() != null && other.getEndpointState().equals(this.getEndpointState()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getAppInstanceUserArn() == null) ? 0 : getAppInstanceUserArn().hashCode());
hashCode = prime * hashCode + ((getEndpointId() == null) ? 0 : getEndpointId().hashCode());
hashCode = prime * hashCode + ((getName() == null) ? 0 : getName().hashCode());
hashCode = prime * hashCode + ((getType() == null) ? 0 : getType().hashCode());
hashCode = prime * hashCode + ((getAllowMessages() == null) ? 0 : getAllowMessages().hashCode());
hashCode = prime * hashCode + ((getEndpointState() == null) ? 0 : getEndpointState().hashCode());
return hashCode;
}
@Override
public AppInstanceUserEndpointSummary clone() {
try {
return (AppInstanceUserEndpointSummary) 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.chimesdkidentity.model.transform.AppInstanceUserEndpointSummaryMarshaller.getInstance().marshall(this, protocolMarshaller);
}
}