com.amazonaws.services.workmail.model.CreateAvailabilityConfigurationRequest Maven / Gradle / Ivy
Show all versions of aws-java-sdk-workmail 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.workmail.model;
import java.io.Serializable;
import javax.annotation.Generated;
import com.amazonaws.AmazonWebServiceRequest;
/**
*
* @see AWS API Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class CreateAvailabilityConfigurationRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable {
/**
*
* An idempotent token that ensures that an API request is executed only once.
*
*/
private String clientToken;
/**
*
* The WorkMail organization for which the AvailabilityConfiguration
will be created.
*
*/
private String organizationId;
/**
*
* The domain to which the provider applies.
*
*/
private String domainName;
/**
*
* Exchange Web Services (EWS) availability provider definition. The request must contain exactly one provider
* definition, either EwsProvider
or LambdaProvider
.
*
*/
private EwsAvailabilityProvider ewsProvider;
/**
*
* Lambda availability provider definition. The request must contain exactly one provider definition, either
* EwsProvider
or LambdaProvider
.
*
*/
private LambdaAvailabilityProvider lambdaProvider;
/**
*
* An idempotent token that ensures that an API request is executed only once.
*
*
* @param clientToken
* An idempotent token that ensures that an API request is executed only once.
*/
public void setClientToken(String clientToken) {
this.clientToken = clientToken;
}
/**
*
* An idempotent token that ensures that an API request is executed only once.
*
*
* @return An idempotent token that ensures that an API request is executed only once.
*/
public String getClientToken() {
return this.clientToken;
}
/**
*
* An idempotent token that ensures that an API request is executed only once.
*
*
* @param clientToken
* An idempotent token that ensures that an API request is executed only once.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateAvailabilityConfigurationRequest withClientToken(String clientToken) {
setClientToken(clientToken);
return this;
}
/**
*
* The WorkMail organization for which the AvailabilityConfiguration
will be created.
*
*
* @param organizationId
* The WorkMail organization for which the AvailabilityConfiguration
will be created.
*/
public void setOrganizationId(String organizationId) {
this.organizationId = organizationId;
}
/**
*
* The WorkMail organization for which the AvailabilityConfiguration
will be created.
*
*
* @return The WorkMail organization for which the AvailabilityConfiguration
will be created.
*/
public String getOrganizationId() {
return this.organizationId;
}
/**
*
* The WorkMail organization for which the AvailabilityConfiguration
will be created.
*
*
* @param organizationId
* The WorkMail organization for which the AvailabilityConfiguration
will be created.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateAvailabilityConfigurationRequest withOrganizationId(String organizationId) {
setOrganizationId(organizationId);
return this;
}
/**
*
* The domain to which the provider applies.
*
*
* @param domainName
* The domain to which the provider applies.
*/
public void setDomainName(String domainName) {
this.domainName = domainName;
}
/**
*
* The domain to which the provider applies.
*
*
* @return The domain to which the provider applies.
*/
public String getDomainName() {
return this.domainName;
}
/**
*
* The domain to which the provider applies.
*
*
* @param domainName
* The domain to which the provider applies.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateAvailabilityConfigurationRequest withDomainName(String domainName) {
setDomainName(domainName);
return this;
}
/**
*
* Exchange Web Services (EWS) availability provider definition. The request must contain exactly one provider
* definition, either EwsProvider
or LambdaProvider
.
*
*
* @param ewsProvider
* Exchange Web Services (EWS) availability provider definition. The request must contain exactly one
* provider definition, either EwsProvider
or LambdaProvider
.
*/
public void setEwsProvider(EwsAvailabilityProvider ewsProvider) {
this.ewsProvider = ewsProvider;
}
/**
*
* Exchange Web Services (EWS) availability provider definition. The request must contain exactly one provider
* definition, either EwsProvider
or LambdaProvider
.
*
*
* @return Exchange Web Services (EWS) availability provider definition. The request must contain exactly one
* provider definition, either EwsProvider
or LambdaProvider
.
*/
public EwsAvailabilityProvider getEwsProvider() {
return this.ewsProvider;
}
/**
*
* Exchange Web Services (EWS) availability provider definition. The request must contain exactly one provider
* definition, either EwsProvider
or LambdaProvider
.
*
*
* @param ewsProvider
* Exchange Web Services (EWS) availability provider definition. The request must contain exactly one
* provider definition, either EwsProvider
or LambdaProvider
.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateAvailabilityConfigurationRequest withEwsProvider(EwsAvailabilityProvider ewsProvider) {
setEwsProvider(ewsProvider);
return this;
}
/**
*
* Lambda availability provider definition. The request must contain exactly one provider definition, either
* EwsProvider
or LambdaProvider
.
*
*
* @param lambdaProvider
* Lambda availability provider definition. The request must contain exactly one provider definition, either
* EwsProvider
or LambdaProvider
.
*/
public void setLambdaProvider(LambdaAvailabilityProvider lambdaProvider) {
this.lambdaProvider = lambdaProvider;
}
/**
*
* Lambda availability provider definition. The request must contain exactly one provider definition, either
* EwsProvider
or LambdaProvider
.
*
*
* @return Lambda availability provider definition. The request must contain exactly one provider definition, either
* EwsProvider
or LambdaProvider
.
*/
public LambdaAvailabilityProvider getLambdaProvider() {
return this.lambdaProvider;
}
/**
*
* Lambda availability provider definition. The request must contain exactly one provider definition, either
* EwsProvider
or LambdaProvider
.
*
*
* @param lambdaProvider
* Lambda availability provider definition. The request must contain exactly one provider definition, either
* EwsProvider
or LambdaProvider
.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateAvailabilityConfigurationRequest withLambdaProvider(LambdaAvailabilityProvider lambdaProvider) {
setLambdaProvider(lambdaProvider);
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 (getClientToken() != null)
sb.append("ClientToken: ").append(getClientToken()).append(",");
if (getOrganizationId() != null)
sb.append("OrganizationId: ").append(getOrganizationId()).append(",");
if (getDomainName() != null)
sb.append("DomainName: ").append(getDomainName()).append(",");
if (getEwsProvider() != null)
sb.append("EwsProvider: ").append(getEwsProvider()).append(",");
if (getLambdaProvider() != null)
sb.append("LambdaProvider: ").append(getLambdaProvider());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof CreateAvailabilityConfigurationRequest == false)
return false;
CreateAvailabilityConfigurationRequest other = (CreateAvailabilityConfigurationRequest) obj;
if (other.getClientToken() == null ^ this.getClientToken() == null)
return false;
if (other.getClientToken() != null && other.getClientToken().equals(this.getClientToken()) == false)
return false;
if (other.getOrganizationId() == null ^ this.getOrganizationId() == null)
return false;
if (other.getOrganizationId() != null && other.getOrganizationId().equals(this.getOrganizationId()) == 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.getEwsProvider() == null ^ this.getEwsProvider() == null)
return false;
if (other.getEwsProvider() != null && other.getEwsProvider().equals(this.getEwsProvider()) == false)
return false;
if (other.getLambdaProvider() == null ^ this.getLambdaProvider() == null)
return false;
if (other.getLambdaProvider() != null && other.getLambdaProvider().equals(this.getLambdaProvider()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getClientToken() == null) ? 0 : getClientToken().hashCode());
hashCode = prime * hashCode + ((getOrganizationId() == null) ? 0 : getOrganizationId().hashCode());
hashCode = prime * hashCode + ((getDomainName() == null) ? 0 : getDomainName().hashCode());
hashCode = prime * hashCode + ((getEwsProvider() == null) ? 0 : getEwsProvider().hashCode());
hashCode = prime * hashCode + ((getLambdaProvider() == null) ? 0 : getLambdaProvider().hashCode());
return hashCode;
}
@Override
public CreateAvailabilityConfigurationRequest clone() {
return (CreateAvailabilityConfigurationRequest) super.clone();
}
}