com.amazonaws.services.ssmcontacts.model.ServiceQuotaExceededException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aws-java-sdk-ssmcontacts Show documentation
Show all versions of aws-java-sdk-ssmcontacts Show documentation
The AWS Java SDK for AWS Systems Manager Incident Manager Contacts module holds the client classes that are used for communicating with AWS Systems Manager Incident Manager Contacts Service
The newest version!
/*
* 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.ssmcontacts.model;
import javax.annotation.Generated;
/**
*
* Request would cause a service quota to be exceeded.
*
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class ServiceQuotaExceededException extends com.amazonaws.services.ssmcontacts.model.AWSSSMContactsException {
private static final long serialVersionUID = 1L;
/** Identifier of the resource affected */
private String resourceId;
/** Type of the resource affected */
private String resourceType;
/** Service Quotas requirement to identify originating service */
private String quotaCode;
/** Service Quotas requirement to identify originating quota */
private String serviceCode;
/**
* Constructs a new ServiceQuotaExceededException with the specified error message.
*
* @param message
* Describes the error encountered.
*/
public ServiceQuotaExceededException(String message) {
super(message);
}
/**
* Identifier of the resource affected
*
* @param resourceId
* Identifier of the resource affected
*/
@com.fasterxml.jackson.annotation.JsonProperty("ResourceId")
public void setResourceId(String resourceId) {
this.resourceId = resourceId;
}
/**
* Identifier of the resource affected
*
* @return Identifier of the resource affected
*/
@com.fasterxml.jackson.annotation.JsonProperty("ResourceId")
public String getResourceId() {
return this.resourceId;
}
/**
* Identifier of the resource affected
*
* @param resourceId
* Identifier of the resource affected
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ServiceQuotaExceededException withResourceId(String resourceId) {
setResourceId(resourceId);
return this;
}
/**
* Type of the resource affected
*
* @param resourceType
* Type of the resource affected
*/
@com.fasterxml.jackson.annotation.JsonProperty("ResourceType")
public void setResourceType(String resourceType) {
this.resourceType = resourceType;
}
/**
* Type of the resource affected
*
* @return Type of the resource affected
*/
@com.fasterxml.jackson.annotation.JsonProperty("ResourceType")
public String getResourceType() {
return this.resourceType;
}
/**
* Type of the resource affected
*
* @param resourceType
* Type of the resource affected
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ServiceQuotaExceededException withResourceType(String resourceType) {
setResourceType(resourceType);
return this;
}
/**
* Service Quotas requirement to identify originating service
*
* @param quotaCode
* Service Quotas requirement to identify originating service
*/
@com.fasterxml.jackson.annotation.JsonProperty("QuotaCode")
public void setQuotaCode(String quotaCode) {
this.quotaCode = quotaCode;
}
/**
* Service Quotas requirement to identify originating service
*
* @return Service Quotas requirement to identify originating service
*/
@com.fasterxml.jackson.annotation.JsonProperty("QuotaCode")
public String getQuotaCode() {
return this.quotaCode;
}
/**
* Service Quotas requirement to identify originating service
*
* @param quotaCode
* Service Quotas requirement to identify originating service
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ServiceQuotaExceededException withQuotaCode(String quotaCode) {
setQuotaCode(quotaCode);
return this;
}
/**
* Service Quotas requirement to identify originating quota
*
* @param serviceCode
* Service Quotas requirement to identify originating quota
*/
@com.fasterxml.jackson.annotation.JsonProperty("ServiceCode")
public void setServiceCode(String serviceCode) {
this.serviceCode = serviceCode;
}
/**
* Service Quotas requirement to identify originating quota
*
* @return Service Quotas requirement to identify originating quota
*/
@com.fasterxml.jackson.annotation.JsonProperty("ServiceCode")
public String getServiceCode() {
return this.serviceCode;
}
/**
* Service Quotas requirement to identify originating quota
*
* @param serviceCode
* Service Quotas requirement to identify originating quota
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ServiceQuotaExceededException withServiceCode(String serviceCode) {
setServiceCode(serviceCode);
return this;
}
}