com.amazonaws.services.drs.model.ThrottlingException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aws-java-sdk-drs Show documentation
Show all versions of aws-java-sdk-drs Show documentation
The AWS Java SDK for Elastic Disaster Recovery module holds the client classes that are used for communicating with Elastic Disaster Recovery Service
/*
* 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.drs.model;
import javax.annotation.Generated;
/**
*
* The request was denied due to request throttling.
*
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class ThrottlingException extends com.amazonaws.services.drs.model.AWSdrsException {
private static final long serialVersionUID = 1L;
/**
*
* Quota code.
*
*/
private String quotaCode;
/**
*
* The number of seconds after which the request should be safe to retry.
*
*/
private String retryAfterSeconds;
/**
*
* Service code.
*
*/
private String serviceCode;
/**
* Constructs a new ThrottlingException with the specified error message.
*
* @param message
* Describes the error encountered.
*/
public ThrottlingException(String message) {
super(message);
}
/**
*
* Quota code.
*
*
* @param quotaCode
* Quota code.
*/
@com.fasterxml.jackson.annotation.JsonProperty("quotaCode")
public void setQuotaCode(String quotaCode) {
this.quotaCode = quotaCode;
}
/**
*
* Quota code.
*
*
* @return Quota code.
*/
@com.fasterxml.jackson.annotation.JsonProperty("quotaCode")
public String getQuotaCode() {
return this.quotaCode;
}
/**
*
* Quota code.
*
*
* @param quotaCode
* Quota code.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ThrottlingException withQuotaCode(String quotaCode) {
setQuotaCode(quotaCode);
return this;
}
/**
*
* The number of seconds after which the request should be safe to retry.
*
*
* @param retryAfterSeconds
* The number of seconds after which the request should be safe to retry.
*/
@com.fasterxml.jackson.annotation.JsonProperty("Retry-After")
public void setRetryAfterSeconds(String retryAfterSeconds) {
this.retryAfterSeconds = retryAfterSeconds;
}
/**
*
* The number of seconds after which the request should be safe to retry.
*
*
* @return The number of seconds after which the request should be safe to retry.
*/
@com.fasterxml.jackson.annotation.JsonProperty("Retry-After")
public String getRetryAfterSeconds() {
return this.retryAfterSeconds;
}
/**
*
* The number of seconds after which the request should be safe to retry.
*
*
* @param retryAfterSeconds
* The number of seconds after which the request should be safe to retry.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ThrottlingException withRetryAfterSeconds(String retryAfterSeconds) {
setRetryAfterSeconds(retryAfterSeconds);
return this;
}
/**
*
* Service code.
*
*
* @param serviceCode
* Service code.
*/
@com.fasterxml.jackson.annotation.JsonProperty("serviceCode")
public void setServiceCode(String serviceCode) {
this.serviceCode = serviceCode;
}
/**
*
* Service code.
*
*
* @return Service code.
*/
@com.fasterxml.jackson.annotation.JsonProperty("serviceCode")
public String getServiceCode() {
return this.serviceCode;
}
/**
*
* Service code.
*
*
* @param serviceCode
* Service code.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ThrottlingException withServiceCode(String serviceCode) {
setServiceCode(serviceCode);
return this;
}
}