Skip to content

ServiceQuotasClient#

Index > ServiceQuotas > ServiceQuotasClient

Auto-generated documentation for ServiceQuotas type annotations stubs module mypy-boto3-service-quotas.

ServiceQuotasClient#

Type annotations and code completion for boto3.client("service-quotas"). boto3 documentation

# ServiceQuotasClient usage example

from boto3.session import Session
from mypy_boto3_service_quotas.client import ServiceQuotasClient

def get_service-quotas_client() -> ServiceQuotasClient:
    return Session().client("service-quotas")

Exceptions#

boto3 client exceptions are generated in runtime. This class provides code completion for boto3.client("service-quotas").exceptions structure.

# Exceptions.exceptions usage example

client = boto3.client("service-quotas")

try:
    do_something(client)
except (
    client.exceptions.AWSServiceAccessNotEnabledException,
    client.exceptions.AccessDeniedException,
    client.exceptions.ClientError,
    client.exceptions.DependencyAccessDeniedException,
    client.exceptions.IllegalArgumentException,
    client.exceptions.InvalidPaginationTokenException,
    client.exceptions.InvalidResourceStateException,
    client.exceptions.NoAvailableOrganizationException,
    client.exceptions.NoSuchResourceException,
    client.exceptions.OrganizationNotInAllFeaturesModeException,
    client.exceptions.QuotaExceededException,
    client.exceptions.ResourceAlreadyExistsException,
    client.exceptions.ServiceException,
    client.exceptions.ServiceQuotaTemplateNotInUseException,
    client.exceptions.TagPolicyViolationException,
    client.exceptions.TemplatesNotAvailableInRegionException,
    client.exceptions.TooManyRequestsException,
    client.exceptions.TooManyTagsException,
) as e:
    print(e)
# Exceptions.exceptions type checking example

from mypy_boto3_service_quotas.client import Exceptions

def handle_error(exc: Exceptions.AWSServiceAccessNotEnabledException) -> None:
    ...

Methods#

associate_service_quota_template#

Associates your quota request template with your organization.

Type annotations and code completion for boto3.client("service-quotas").associate_service_quota_template method. boto3 documentation

# associate_service_quota_template method definition

def associate_service_quota_template(
    self,
) -> Dict[str, Any]:
    ...

can_paginate#

Check if an operation can be paginated.

Type annotations and code completion for boto3.client("service-quotas").can_paginate method. boto3 documentation

# can_paginate method definition

def can_paginate(
    self,
    operation_name: str,
) -> bool:
    ...

close#

Closes underlying endpoint connections.

Type annotations and code completion for boto3.client("service-quotas").close method. boto3 documentation

# close method definition

def close(
    self,
) -> None:
    ...

delete_service_quota_increase_request_from_template#

Deletes the quota increase request for the specified quota from your quota request template.

Type annotations and code completion for boto3.client("service-quotas").delete_service_quota_increase_request_from_template method. boto3 documentation

# delete_service_quota_increase_request_from_template method definition

def delete_service_quota_increase_request_from_template(
    self,
    *,
    ServiceCode: str,
    QuotaCode: str,
    AwsRegion: str,
) -> Dict[str, Any]:
    ...
# delete_service_quota_increase_request_from_template method usage example with argument unpacking

kwargs: DeleteServiceQuotaIncreaseRequestFromTemplateRequestRequestTypeDef = {  # (1)
    "ServiceCode": ...,
    "QuotaCode": ...,
    "AwsRegion": ...,
}

parent.delete_service_quota_increase_request_from_template(**kwargs)
  1. See DeleteServiceQuotaIncreaseRequestFromTemplateRequestRequestTypeDef

disassociate_service_quota_template#

Disables your quota request template.

Type annotations and code completion for boto3.client("service-quotas").disassociate_service_quota_template method. boto3 documentation

# disassociate_service_quota_template method definition

def disassociate_service_quota_template(
    self,
) -> Dict[str, Any]:
    ...

generate_presigned_url#

Generate a presigned url given a client, its method, and arguments.

Type annotations and code completion for boto3.client("service-quotas").generate_presigned_url method. boto3 documentation

# generate_presigned_url method definition

def generate_presigned_url(
    self,
    ClientMethod: str,
    Params: Mapping[str, Any] = ...,
    ExpiresIn: int = 3600,
    HttpMethod: str = ...,
) -> str:
    ...

get_association_for_service_quota_template#

Retrieves the status of the association for the quota request template.

Type annotations and code completion for boto3.client("service-quotas").get_association_for_service_quota_template method. boto3 documentation

# get_association_for_service_quota_template method definition

def get_association_for_service_quota_template(
    self,
) -> GetAssociationForServiceQuotaTemplateResponseTypeDef:  # (1)
    ...
  1. See GetAssociationForServiceQuotaTemplateResponseTypeDef

get_aws_default_service_quota#

Retrieves the default value for the specified quota.

Type annotations and code completion for boto3.client("service-quotas").get_aws_default_service_quota method. boto3 documentation

# get_aws_default_service_quota method definition

def get_aws_default_service_quota(
    self,
    *,
    ServiceCode: str,
    QuotaCode: str,
) -> GetAWSDefaultServiceQuotaResponseTypeDef:  # (1)
    ...
  1. See GetAWSDefaultServiceQuotaResponseTypeDef
# get_aws_default_service_quota method usage example with argument unpacking

kwargs: GetAWSDefaultServiceQuotaRequestRequestTypeDef = {  # (1)
    "ServiceCode": ...,
    "QuotaCode": ...,
}

parent.get_aws_default_service_quota(**kwargs)
  1. See GetAWSDefaultServiceQuotaRequestRequestTypeDef

get_requested_service_quota_change#

Retrieves information about the specified quota increase request.

Type annotations and code completion for boto3.client("service-quotas").get_requested_service_quota_change method. boto3 documentation

# get_requested_service_quota_change method definition

def get_requested_service_quota_change(
    self,
    *,
    RequestId: str,
) -> GetRequestedServiceQuotaChangeResponseTypeDef:  # (1)
    ...
  1. See GetRequestedServiceQuotaChangeResponseTypeDef
# get_requested_service_quota_change method usage example with argument unpacking

kwargs: GetRequestedServiceQuotaChangeRequestRequestTypeDef = {  # (1)
    "RequestId": ...,
}

parent.get_requested_service_quota_change(**kwargs)
  1. See GetRequestedServiceQuotaChangeRequestRequestTypeDef

get_service_quota#

Retrieves the applied quota value for the specified quota.

Type annotations and code completion for boto3.client("service-quotas").get_service_quota method. boto3 documentation

# get_service_quota method definition

def get_service_quota(
    self,
    *,
    ServiceCode: str,
    QuotaCode: str,
    ContextId: str = ...,
) -> GetServiceQuotaResponseTypeDef:  # (1)
    ...
  1. See GetServiceQuotaResponseTypeDef
# get_service_quota method usage example with argument unpacking

kwargs: GetServiceQuotaRequestRequestTypeDef = {  # (1)
    "ServiceCode": ...,
    "QuotaCode": ...,
}

parent.get_service_quota(**kwargs)
  1. See GetServiceQuotaRequestRequestTypeDef

get_service_quota_increase_request_from_template#

Retrieves information about the specified quota increase request in your quota request template.

Type annotations and code completion for boto3.client("service-quotas").get_service_quota_increase_request_from_template method. boto3 documentation

# get_service_quota_increase_request_from_template method definition

def get_service_quota_increase_request_from_template(
    self,
    *,
    ServiceCode: str,
    QuotaCode: str,
    AwsRegion: str,
) -> GetServiceQuotaIncreaseRequestFromTemplateResponseTypeDef:  # (1)
    ...
  1. See GetServiceQuotaIncreaseRequestFromTemplateResponseTypeDef
# get_service_quota_increase_request_from_template method usage example with argument unpacking

kwargs: GetServiceQuotaIncreaseRequestFromTemplateRequestRequestTypeDef = {  # (1)
    "ServiceCode": ...,
    "QuotaCode": ...,
    "AwsRegion": ...,
}

parent.get_service_quota_increase_request_from_template(**kwargs)
  1. See GetServiceQuotaIncreaseRequestFromTemplateRequestRequestTypeDef

list_aws_default_service_quotas#

Lists the default values for the quotas for the specified Amazon Web Service.

Type annotations and code completion for boto3.client("service-quotas").list_aws_default_service_quotas method. boto3 documentation

# list_aws_default_service_quotas method definition

def list_aws_default_service_quotas(
    self,
    *,
    ServiceCode: str,
    NextToken: str = ...,
    MaxResults: int = ...,
) -> ListAWSDefaultServiceQuotasResponseTypeDef:  # (1)
    ...
  1. See ListAWSDefaultServiceQuotasResponseTypeDef
# list_aws_default_service_quotas method usage example with argument unpacking

kwargs: ListAWSDefaultServiceQuotasRequestRequestTypeDef = {  # (1)
    "ServiceCode": ...,
}

parent.list_aws_default_service_quotas(**kwargs)
  1. See ListAWSDefaultServiceQuotasRequestRequestTypeDef

list_requested_service_quota_change_history#

Retrieves the quota increase requests for the specified Amazon Web Service.

Type annotations and code completion for boto3.client("service-quotas").list_requested_service_quota_change_history method. boto3 documentation

# list_requested_service_quota_change_history method definition

def list_requested_service_quota_change_history(
    self,
    *,
    ServiceCode: str = ...,
    Status: RequestStatusType = ...,  # (1)
    NextToken: str = ...,
    MaxResults: int = ...,
    QuotaRequestedAtLevel: AppliedLevelEnumType = ...,  # (2)
) -> ListRequestedServiceQuotaChangeHistoryResponseTypeDef:  # (3)
    ...
  1. See RequestStatusType
  2. See AppliedLevelEnumType
  3. See ListRequestedServiceQuotaChangeHistoryResponseTypeDef
# list_requested_service_quota_change_history method usage example with argument unpacking

kwargs: ListRequestedServiceQuotaChangeHistoryRequestRequestTypeDef = {  # (1)
    "ServiceCode": ...,
}

parent.list_requested_service_quota_change_history(**kwargs)
  1. See ListRequestedServiceQuotaChangeHistoryRequestRequestTypeDef

list_requested_service_quota_change_history_by_quota#

Retrieves the quota increase requests for the specified quota.

Type annotations and code completion for boto3.client("service-quotas").list_requested_service_quota_change_history_by_quota method. boto3 documentation

# list_requested_service_quota_change_history_by_quota method definition

def list_requested_service_quota_change_history_by_quota(
    self,
    *,
    ServiceCode: str,
    QuotaCode: str,
    Status: RequestStatusType = ...,  # (1)
    NextToken: str = ...,
    MaxResults: int = ...,
    QuotaRequestedAtLevel: AppliedLevelEnumType = ...,  # (2)
) -> ListRequestedServiceQuotaChangeHistoryByQuotaResponseTypeDef:  # (3)
    ...
  1. See RequestStatusType
  2. See AppliedLevelEnumType
  3. See ListRequestedServiceQuotaChangeHistoryByQuotaResponseTypeDef
# list_requested_service_quota_change_history_by_quota method usage example with argument unpacking

kwargs: ListRequestedServiceQuotaChangeHistoryByQuotaRequestRequestTypeDef = {  # (1)
    "ServiceCode": ...,
    "QuotaCode": ...,
}

parent.list_requested_service_quota_change_history_by_quota(**kwargs)
  1. See ListRequestedServiceQuotaChangeHistoryByQuotaRequestRequestTypeDef

list_service_quota_increase_requests_in_template#

Lists the quota increase requests in the specified quota request template.

Type annotations and code completion for boto3.client("service-quotas").list_service_quota_increase_requests_in_template method. boto3 documentation

# list_service_quota_increase_requests_in_template method definition

def list_service_quota_increase_requests_in_template(
    self,
    *,
    ServiceCode: str = ...,
    AwsRegion: str = ...,
    NextToken: str = ...,
    MaxResults: int = ...,
) -> ListServiceQuotaIncreaseRequestsInTemplateResponseTypeDef:  # (1)
    ...
  1. See ListServiceQuotaIncreaseRequestsInTemplateResponseTypeDef
# list_service_quota_increase_requests_in_template method usage example with argument unpacking

kwargs: ListServiceQuotaIncreaseRequestsInTemplateRequestRequestTypeDef = {  # (1)
    "ServiceCode": ...,
}

parent.list_service_quota_increase_requests_in_template(**kwargs)
  1. See ListServiceQuotaIncreaseRequestsInTemplateRequestRequestTypeDef

list_service_quotas#

Lists the applied quota values for the specified Amazon Web Service.

Type annotations and code completion for boto3.client("service-quotas").list_service_quotas method. boto3 documentation

# list_service_quotas method definition

def list_service_quotas(
    self,
    *,
    ServiceCode: str,
    NextToken: str = ...,
    MaxResults: int = ...,
    QuotaCode: str = ...,
    QuotaAppliedAtLevel: AppliedLevelEnumType = ...,  # (1)
) -> ListServiceQuotasResponseTypeDef:  # (2)
    ...
  1. See AppliedLevelEnumType
  2. See ListServiceQuotasResponseTypeDef
# list_service_quotas method usage example with argument unpacking

kwargs: ListServiceQuotasRequestRequestTypeDef = {  # (1)
    "ServiceCode": ...,
}

parent.list_service_quotas(**kwargs)
  1. See ListServiceQuotasRequestRequestTypeDef

list_services#

Lists the names and codes for the Amazon Web Services integrated with Service Quotas.

Type annotations and code completion for boto3.client("service-quotas").list_services method. boto3 documentation

# list_services method definition

def list_services(
    self,
    *,
    NextToken: str = ...,
    MaxResults: int = ...,
) -> ListServicesResponseTypeDef:  # (1)
    ...
  1. See ListServicesResponseTypeDef
# list_services method usage example with argument unpacking

kwargs: ListServicesRequestRequestTypeDef = {  # (1)
    "NextToken": ...,
}

parent.list_services(**kwargs)
  1. See ListServicesRequestRequestTypeDef

list_tags_for_resource#

Returns a list of the tags assigned to the specified applied quota.

Type annotations and code completion for boto3.client("service-quotas").list_tags_for_resource method. boto3 documentation

# list_tags_for_resource method definition

def list_tags_for_resource(
    self,
    *,
    ResourceARN: str,
) -> ListTagsForResourceResponseTypeDef:  # (1)
    ...
  1. See ListTagsForResourceResponseTypeDef
# list_tags_for_resource method usage example with argument unpacking

kwargs: ListTagsForResourceRequestRequestTypeDef = {  # (1)
    "ResourceARN": ...,
}

parent.list_tags_for_resource(**kwargs)
  1. See ListTagsForResourceRequestRequestTypeDef

put_service_quota_increase_request_into_template#

Adds a quota increase request to your quota request template.

Type annotations and code completion for boto3.client("service-quotas").put_service_quota_increase_request_into_template method. boto3 documentation

# put_service_quota_increase_request_into_template method definition

def put_service_quota_increase_request_into_template(
    self,
    *,
    QuotaCode: str,
    ServiceCode: str,
    AwsRegion: str,
    DesiredValue: float,
) -> PutServiceQuotaIncreaseRequestIntoTemplateResponseTypeDef:  # (1)
    ...
  1. See PutServiceQuotaIncreaseRequestIntoTemplateResponseTypeDef
# put_service_quota_increase_request_into_template method usage example with argument unpacking

kwargs: PutServiceQuotaIncreaseRequestIntoTemplateRequestRequestTypeDef = {  # (1)
    "QuotaCode": ...,
    "ServiceCode": ...,
    "AwsRegion": ...,
    "DesiredValue": ...,
}

parent.put_service_quota_increase_request_into_template(**kwargs)
  1. See PutServiceQuotaIncreaseRequestIntoTemplateRequestRequestTypeDef

request_service_quota_increase#

Submits a quota increase request for the specified quota.

Type annotations and code completion for boto3.client("service-quotas").request_service_quota_increase method. boto3 documentation

# request_service_quota_increase method definition

def request_service_quota_increase(
    self,
    *,
    ServiceCode: str,
    QuotaCode: str,
    DesiredValue: float,
    ContextId: str = ...,
) -> RequestServiceQuotaIncreaseResponseTypeDef:  # (1)
    ...
  1. See RequestServiceQuotaIncreaseResponseTypeDef
# request_service_quota_increase method usage example with argument unpacking

kwargs: RequestServiceQuotaIncreaseRequestRequestTypeDef = {  # (1)
    "ServiceCode": ...,
    "QuotaCode": ...,
    "DesiredValue": ...,
}

parent.request_service_quota_increase(**kwargs)
  1. See RequestServiceQuotaIncreaseRequestRequestTypeDef

tag_resource#

Adds tags to the specified applied quota.

Type annotations and code completion for boto3.client("service-quotas").tag_resource method. boto3 documentation

# tag_resource method definition

def tag_resource(
    self,
    *,
    ResourceARN: str,
    Tags: Sequence[TagTypeDef],  # (1)
) -> Dict[str, Any]:
    ...
  1. See TagTypeDef
# tag_resource method usage example with argument unpacking

kwargs: TagResourceRequestRequestTypeDef = {  # (1)
    "ResourceARN": ...,
    "Tags": ...,
}

parent.tag_resource(**kwargs)
  1. See TagResourceRequestRequestTypeDef

untag_resource#

Removes tags from the specified applied quota.

Type annotations and code completion for boto3.client("service-quotas").untag_resource method. boto3 documentation

# untag_resource method definition

def untag_resource(
    self,
    *,
    ResourceARN: str,
    TagKeys: Sequence[str],
) -> Dict[str, Any]:
    ...
# untag_resource method usage example with argument unpacking

kwargs: UntagResourceRequestRequestTypeDef = {  # (1)
    "ResourceARN": ...,
    "TagKeys": ...,
}

parent.untag_resource(**kwargs)
  1. See UntagResourceRequestRequestTypeDef

get_paginator#

Type annotations and code completion for boto3.client("service-quotas").get_paginator method with overloads.