Skip to content

Typed dictionaries

Index > ServiceQuotas > Typed dictionaries

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

DeleteServiceQuotaIncreaseRequestFromTemplateRequestRequestTypeDef

Usage Example
from mypy_boto3_service_quotas.type_defs import DeleteServiceQuotaIncreaseRequestFromTemplateRequestRequestTypeDef

def get_value() -> DeleteServiceQuotaIncreaseRequestFromTemplateRequestRequestTypeDef:
    return {
        "ServiceCode": ...,
        "QuotaCode": ...,
        "AwsRegion": ...,
    }
Definition
class DeleteServiceQuotaIncreaseRequestFromTemplateRequestRequestTypeDef(TypedDict):
    ServiceCode: str,
    QuotaCode: str,
    AwsRegion: str,

ErrorReasonTypeDef

Usage Example
from mypy_boto3_service_quotas.type_defs import ErrorReasonTypeDef

def get_value() -> ErrorReasonTypeDef:
    return {
        "ErrorCode": ...,
    }
Definition
class ErrorReasonTypeDef(TypedDict):
    ErrorCode: NotRequired[ErrorCodeType],  # (1)
    ErrorMessage: NotRequired[str],
  1. See ErrorCodeType

GetAWSDefaultServiceQuotaRequestRequestTypeDef

Usage Example
from mypy_boto3_service_quotas.type_defs import GetAWSDefaultServiceQuotaRequestRequestTypeDef

def get_value() -> GetAWSDefaultServiceQuotaRequestRequestTypeDef:
    return {
        "ServiceCode": ...,
        "QuotaCode": ...,
    }
Definition
class GetAWSDefaultServiceQuotaRequestRequestTypeDef(TypedDict):
    ServiceCode: str,
    QuotaCode: str,

ResponseMetadataTypeDef

Usage Example
from mypy_boto3_service_quotas.type_defs import ResponseMetadataTypeDef

def get_value() -> ResponseMetadataTypeDef:
    return {
        "RequestId": ...,
        "HostId": ...,
        "HTTPStatusCode": ...,
        "HTTPHeaders": ...,
        "RetryAttempts": ...,
    }
Definition
class ResponseMetadataTypeDef(TypedDict):
    RequestId: str,
    HostId: str,
    HTTPStatusCode: int,
    HTTPHeaders: Dict[str, str],
    RetryAttempts: int,

GetRequestedServiceQuotaChangeRequestRequestTypeDef

Usage Example
from mypy_boto3_service_quotas.type_defs import GetRequestedServiceQuotaChangeRequestRequestTypeDef

def get_value() -> GetRequestedServiceQuotaChangeRequestRequestTypeDef:
    return {
        "RequestId": ...,
    }
Definition
class GetRequestedServiceQuotaChangeRequestRequestTypeDef(TypedDict):
    RequestId: str,

RequestedServiceQuotaChangeTypeDef

Usage Example
from mypy_boto3_service_quotas.type_defs import RequestedServiceQuotaChangeTypeDef

def get_value() -> RequestedServiceQuotaChangeTypeDef:
    return {
        "Id": ...,
    }
Definition
class RequestedServiceQuotaChangeTypeDef(TypedDict):
    Id: NotRequired[str],
    CaseId: NotRequired[str],
    ServiceCode: NotRequired[str],
    ServiceName: NotRequired[str],
    QuotaCode: NotRequired[str],
    QuotaName: NotRequired[str],
    DesiredValue: NotRequired[float],
    Status: NotRequired[RequestStatusType],  # (1)
    Created: NotRequired[datetime],
    LastUpdated: NotRequired[datetime],
    Requester: NotRequired[str],
    QuotaArn: NotRequired[str],
    GlobalQuota: NotRequired[bool],
    Unit: NotRequired[str],
  1. See RequestStatusType

GetServiceQuotaIncreaseRequestFromTemplateRequestRequestTypeDef

Usage Example
from mypy_boto3_service_quotas.type_defs import GetServiceQuotaIncreaseRequestFromTemplateRequestRequestTypeDef

def get_value() -> GetServiceQuotaIncreaseRequestFromTemplateRequestRequestTypeDef:
    return {
        "ServiceCode": ...,
        "QuotaCode": ...,
        "AwsRegion": ...,
    }
Definition
class GetServiceQuotaIncreaseRequestFromTemplateRequestRequestTypeDef(TypedDict):
    ServiceCode: str,
    QuotaCode: str,
    AwsRegion: str,

ServiceQuotaIncreaseRequestInTemplateTypeDef

Usage Example
from mypy_boto3_service_quotas.type_defs import ServiceQuotaIncreaseRequestInTemplateTypeDef

def get_value() -> ServiceQuotaIncreaseRequestInTemplateTypeDef:
    return {
        "ServiceCode": ...,
    }
Definition
class ServiceQuotaIncreaseRequestInTemplateTypeDef(TypedDict):
    ServiceCode: NotRequired[str],
    ServiceName: NotRequired[str],
    QuotaCode: NotRequired[str],
    QuotaName: NotRequired[str],
    DesiredValue: NotRequired[float],
    AwsRegion: NotRequired[str],
    Unit: NotRequired[str],
    GlobalQuota: NotRequired[bool],

GetServiceQuotaRequestRequestTypeDef

Usage Example
from mypy_boto3_service_quotas.type_defs import GetServiceQuotaRequestRequestTypeDef

def get_value() -> GetServiceQuotaRequestRequestTypeDef:
    return {
        "ServiceCode": ...,
        "QuotaCode": ...,
    }
Definition
class GetServiceQuotaRequestRequestTypeDef(TypedDict):
    ServiceCode: str,
    QuotaCode: str,

PaginatorConfigTypeDef

Usage Example
from mypy_boto3_service_quotas.type_defs import PaginatorConfigTypeDef

def get_value() -> PaginatorConfigTypeDef:
    return {
        "MaxItems": ...,
    }
Definition
class PaginatorConfigTypeDef(TypedDict):
    MaxItems: NotRequired[int],
    PageSize: NotRequired[int],
    StartingToken: NotRequired[str],

ListAWSDefaultServiceQuotasRequestRequestTypeDef

Usage Example
from mypy_boto3_service_quotas.type_defs import ListAWSDefaultServiceQuotasRequestRequestTypeDef

def get_value() -> ListAWSDefaultServiceQuotasRequestRequestTypeDef:
    return {
        "ServiceCode": ...,
    }
Definition
class ListAWSDefaultServiceQuotasRequestRequestTypeDef(TypedDict):
    ServiceCode: str,
    NextToken: NotRequired[str],
    MaxResults: NotRequired[int],

ListRequestedServiceQuotaChangeHistoryByQuotaRequestRequestTypeDef

Usage Example
from mypy_boto3_service_quotas.type_defs import ListRequestedServiceQuotaChangeHistoryByQuotaRequestRequestTypeDef

def get_value() -> ListRequestedServiceQuotaChangeHistoryByQuotaRequestRequestTypeDef:
    return {
        "ServiceCode": ...,
        "QuotaCode": ...,
    }
Definition
class ListRequestedServiceQuotaChangeHistoryByQuotaRequestRequestTypeDef(TypedDict):
    ServiceCode: str,
    QuotaCode: str,
    Status: NotRequired[RequestStatusType],  # (1)
    NextToken: NotRequired[str],
    MaxResults: NotRequired[int],
  1. See RequestStatusType

ListRequestedServiceQuotaChangeHistoryRequestRequestTypeDef

Usage Example
from mypy_boto3_service_quotas.type_defs import ListRequestedServiceQuotaChangeHistoryRequestRequestTypeDef

def get_value() -> ListRequestedServiceQuotaChangeHistoryRequestRequestTypeDef:
    return {
        "ServiceCode": ...,
    }
Definition
class ListRequestedServiceQuotaChangeHistoryRequestRequestTypeDef(TypedDict):
    ServiceCode: NotRequired[str],
    Status: NotRequired[RequestStatusType],  # (1)
    NextToken: NotRequired[str],
    MaxResults: NotRequired[int],
  1. See RequestStatusType

ListServiceQuotaIncreaseRequestsInTemplateRequestRequestTypeDef

Usage Example
from mypy_boto3_service_quotas.type_defs import ListServiceQuotaIncreaseRequestsInTemplateRequestRequestTypeDef

def get_value() -> ListServiceQuotaIncreaseRequestsInTemplateRequestRequestTypeDef:
    return {
        "ServiceCode": ...,
    }
Definition
class ListServiceQuotaIncreaseRequestsInTemplateRequestRequestTypeDef(TypedDict):
    ServiceCode: NotRequired[str],
    AwsRegion: NotRequired[str],
    NextToken: NotRequired[str],
    MaxResults: NotRequired[int],

ListServiceQuotasRequestRequestTypeDef

Usage Example
from mypy_boto3_service_quotas.type_defs import ListServiceQuotasRequestRequestTypeDef

def get_value() -> ListServiceQuotasRequestRequestTypeDef:
    return {
        "ServiceCode": ...,
    }
Definition
class ListServiceQuotasRequestRequestTypeDef(TypedDict):
    ServiceCode: str,
    NextToken: NotRequired[str],
    MaxResults: NotRequired[int],

ListServicesRequestRequestTypeDef

Usage Example
from mypy_boto3_service_quotas.type_defs import ListServicesRequestRequestTypeDef

def get_value() -> ListServicesRequestRequestTypeDef:
    return {
        "NextToken": ...,
    }
Definition
class ListServicesRequestRequestTypeDef(TypedDict):
    NextToken: NotRequired[str],
    MaxResults: NotRequired[int],

ServiceInfoTypeDef

Usage Example
from mypy_boto3_service_quotas.type_defs import ServiceInfoTypeDef

def get_value() -> ServiceInfoTypeDef:
    return {
        "ServiceCode": ...,
    }
Definition
class ServiceInfoTypeDef(TypedDict):
    ServiceCode: NotRequired[str],
    ServiceName: NotRequired[str],

ListTagsForResourceRequestRequestTypeDef

Usage Example
from mypy_boto3_service_quotas.type_defs import ListTagsForResourceRequestRequestTypeDef

def get_value() -> ListTagsForResourceRequestRequestTypeDef:
    return {
        "ResourceARN": ...,
    }
Definition
class ListTagsForResourceRequestRequestTypeDef(TypedDict):
    ResourceARN: str,

TagTypeDef

Usage Example
from mypy_boto3_service_quotas.type_defs import TagTypeDef

def get_value() -> TagTypeDef:
    return {
        "Key": ...,
        "Value": ...,
    }
Definition
class TagTypeDef(TypedDict):
    Key: str,
    Value: str,

MetricInfoTypeDef

Usage Example
from mypy_boto3_service_quotas.type_defs import MetricInfoTypeDef

def get_value() -> MetricInfoTypeDef:
    return {
        "MetricNamespace": ...,
    }
Definition
class MetricInfoTypeDef(TypedDict):
    MetricNamespace: NotRequired[str],
    MetricName: NotRequired[str],
    MetricDimensions: NotRequired[Dict[str, str]],
    MetricStatisticRecommendation: NotRequired[str],

PutServiceQuotaIncreaseRequestIntoTemplateRequestRequestTypeDef

Usage Example
from mypy_boto3_service_quotas.type_defs import PutServiceQuotaIncreaseRequestIntoTemplateRequestRequestTypeDef

def get_value() -> PutServiceQuotaIncreaseRequestIntoTemplateRequestRequestTypeDef:
    return {
        "QuotaCode": ...,
        "ServiceCode": ...,
        "AwsRegion": ...,
        "DesiredValue": ...,
    }
Definition
class PutServiceQuotaIncreaseRequestIntoTemplateRequestRequestTypeDef(TypedDict):
    QuotaCode: str,
    ServiceCode: str,
    AwsRegion: str,
    DesiredValue: float,

QuotaPeriodTypeDef

Usage Example
from mypy_boto3_service_quotas.type_defs import QuotaPeriodTypeDef

def get_value() -> QuotaPeriodTypeDef:
    return {
        "PeriodValue": ...,
    }
Definition
class QuotaPeriodTypeDef(TypedDict):
    PeriodValue: NotRequired[int],
    PeriodUnit: NotRequired[PeriodUnitType],  # (1)
  1. See PeriodUnitType

RequestServiceQuotaIncreaseRequestRequestTypeDef

Usage Example
from mypy_boto3_service_quotas.type_defs import RequestServiceQuotaIncreaseRequestRequestTypeDef

def get_value() -> RequestServiceQuotaIncreaseRequestRequestTypeDef:
    return {
        "ServiceCode": ...,
        "QuotaCode": ...,
        "DesiredValue": ...,
    }
Definition
class RequestServiceQuotaIncreaseRequestRequestTypeDef(TypedDict):
    ServiceCode: str,
    QuotaCode: str,
    DesiredValue: float,

UntagResourceRequestRequestTypeDef

Usage Example
from mypy_boto3_service_quotas.type_defs import UntagResourceRequestRequestTypeDef

def get_value() -> UntagResourceRequestRequestTypeDef:
    return {
        "ResourceARN": ...,
        "TagKeys": ...,
    }
Definition
class UntagResourceRequestRequestTypeDef(TypedDict):
    ResourceARN: str,
    TagKeys: Sequence[str],

GetAssociationForServiceQuotaTemplateResponseTypeDef

Usage Example
from mypy_boto3_service_quotas.type_defs import GetAssociationForServiceQuotaTemplateResponseTypeDef

def get_value() -> GetAssociationForServiceQuotaTemplateResponseTypeDef:
    return {
        "ServiceQuotaTemplateAssociationStatus": ...,
        "ResponseMetadata": ...,
    }
Definition
class GetAssociationForServiceQuotaTemplateResponseTypeDef(TypedDict):
    ServiceQuotaTemplateAssociationStatus: ServiceQuotaTemplateAssociationStatusType,  # (1)
    ResponseMetadata: ResponseMetadataTypeDef,  # (2)
  1. See ServiceQuotaTemplateAssociationStatusType
  2. See ResponseMetadataTypeDef

GetRequestedServiceQuotaChangeResponseTypeDef

Usage Example
from mypy_boto3_service_quotas.type_defs import GetRequestedServiceQuotaChangeResponseTypeDef

def get_value() -> GetRequestedServiceQuotaChangeResponseTypeDef:
    return {
        "RequestedQuota": ...,
        "ResponseMetadata": ...,
    }
Definition
class GetRequestedServiceQuotaChangeResponseTypeDef(TypedDict):
    RequestedQuota: RequestedServiceQuotaChangeTypeDef,  # (1)
    ResponseMetadata: ResponseMetadataTypeDef,  # (2)
  1. See RequestedServiceQuotaChangeTypeDef
  2. See ResponseMetadataTypeDef

ListRequestedServiceQuotaChangeHistoryByQuotaResponseTypeDef

Usage Example
from mypy_boto3_service_quotas.type_defs import ListRequestedServiceQuotaChangeHistoryByQuotaResponseTypeDef

def get_value() -> ListRequestedServiceQuotaChangeHistoryByQuotaResponseTypeDef:
    return {
        "NextToken": ...,
        "RequestedQuotas": ...,
        "ResponseMetadata": ...,
    }
Definition
class ListRequestedServiceQuotaChangeHistoryByQuotaResponseTypeDef(TypedDict):
    NextToken: str,
    RequestedQuotas: List[RequestedServiceQuotaChangeTypeDef],  # (1)
    ResponseMetadata: ResponseMetadataTypeDef,  # (2)
  1. See RequestedServiceQuotaChangeTypeDef
  2. See ResponseMetadataTypeDef

ListRequestedServiceQuotaChangeHistoryResponseTypeDef

Usage Example
from mypy_boto3_service_quotas.type_defs import ListRequestedServiceQuotaChangeHistoryResponseTypeDef

def get_value() -> ListRequestedServiceQuotaChangeHistoryResponseTypeDef:
    return {
        "NextToken": ...,
        "RequestedQuotas": ...,
        "ResponseMetadata": ...,
    }
Definition
class ListRequestedServiceQuotaChangeHistoryResponseTypeDef(TypedDict):
    NextToken: str,
    RequestedQuotas: List[RequestedServiceQuotaChangeTypeDef],  # (1)
    ResponseMetadata: ResponseMetadataTypeDef,  # (2)
  1. See RequestedServiceQuotaChangeTypeDef
  2. See ResponseMetadataTypeDef

RequestServiceQuotaIncreaseResponseTypeDef

Usage Example
from mypy_boto3_service_quotas.type_defs import RequestServiceQuotaIncreaseResponseTypeDef

def get_value() -> RequestServiceQuotaIncreaseResponseTypeDef:
    return {
        "RequestedQuota": ...,
        "ResponseMetadata": ...,
    }
Definition
class RequestServiceQuotaIncreaseResponseTypeDef(TypedDict):
    RequestedQuota: RequestedServiceQuotaChangeTypeDef,  # (1)
    ResponseMetadata: ResponseMetadataTypeDef,  # (2)
  1. See RequestedServiceQuotaChangeTypeDef
  2. See ResponseMetadataTypeDef

GetServiceQuotaIncreaseRequestFromTemplateResponseTypeDef

Usage Example
from mypy_boto3_service_quotas.type_defs import GetServiceQuotaIncreaseRequestFromTemplateResponseTypeDef

def get_value() -> GetServiceQuotaIncreaseRequestFromTemplateResponseTypeDef:
    return {
        "ServiceQuotaIncreaseRequestInTemplate": ...,
        "ResponseMetadata": ...,
    }
Definition
class GetServiceQuotaIncreaseRequestFromTemplateResponseTypeDef(TypedDict):
    ServiceQuotaIncreaseRequestInTemplate: ServiceQuotaIncreaseRequestInTemplateTypeDef,  # (1)
    ResponseMetadata: ResponseMetadataTypeDef,  # (2)
  1. See ServiceQuotaIncreaseRequestInTemplateTypeDef
  2. See ResponseMetadataTypeDef

ListServiceQuotaIncreaseRequestsInTemplateResponseTypeDef

Usage Example
from mypy_boto3_service_quotas.type_defs import ListServiceQuotaIncreaseRequestsInTemplateResponseTypeDef

def get_value() -> ListServiceQuotaIncreaseRequestsInTemplateResponseTypeDef:
    return {
        "ServiceQuotaIncreaseRequestInTemplateList": ...,
        "NextToken": ...,
        "ResponseMetadata": ...,
    }
Definition
class ListServiceQuotaIncreaseRequestsInTemplateResponseTypeDef(TypedDict):
    ServiceQuotaIncreaseRequestInTemplateList: List[ServiceQuotaIncreaseRequestInTemplateTypeDef],  # (1)
    NextToken: str,
    ResponseMetadata: ResponseMetadataTypeDef,  # (2)
  1. See ServiceQuotaIncreaseRequestInTemplateTypeDef
  2. See ResponseMetadataTypeDef

PutServiceQuotaIncreaseRequestIntoTemplateResponseTypeDef

Usage Example
from mypy_boto3_service_quotas.type_defs import PutServiceQuotaIncreaseRequestIntoTemplateResponseTypeDef

def get_value() -> PutServiceQuotaIncreaseRequestIntoTemplateResponseTypeDef:
    return {
        "ServiceQuotaIncreaseRequestInTemplate": ...,
        "ResponseMetadata": ...,
    }
Definition
class PutServiceQuotaIncreaseRequestIntoTemplateResponseTypeDef(TypedDict):
    ServiceQuotaIncreaseRequestInTemplate: ServiceQuotaIncreaseRequestInTemplateTypeDef,  # (1)
    ResponseMetadata: ResponseMetadataTypeDef,  # (2)
  1. See ServiceQuotaIncreaseRequestInTemplateTypeDef
  2. See ResponseMetadataTypeDef

ListAWSDefaultServiceQuotasRequestListAWSDefaultServiceQuotasPaginateTypeDef

Usage Example
from mypy_boto3_service_quotas.type_defs import ListAWSDefaultServiceQuotasRequestListAWSDefaultServiceQuotasPaginateTypeDef

def get_value() -> ListAWSDefaultServiceQuotasRequestListAWSDefaultServiceQuotasPaginateTypeDef:
    return {
        "ServiceCode": ...,
    }
Definition
class ListAWSDefaultServiceQuotasRequestListAWSDefaultServiceQuotasPaginateTypeDef(TypedDict):
    ServiceCode: str,
    PaginationConfig: NotRequired[PaginatorConfigTypeDef],  # (1)
  1. See PaginatorConfigTypeDef

ListRequestedServiceQuotaChangeHistoryByQuotaRequestListRequestedServiceQuotaChangeHistoryByQuotaPaginateTypeDef

Usage Example
from mypy_boto3_service_quotas.type_defs import ListRequestedServiceQuotaChangeHistoryByQuotaRequestListRequestedServiceQuotaChangeHistoryByQuotaPaginateTypeDef

def get_value() -> ListRequestedServiceQuotaChangeHistoryByQuotaRequestListRequestedServiceQuotaChangeHistoryByQuotaPaginateTypeDef:
    return {
        "ServiceCode": ...,
        "QuotaCode": ...,
    }
Definition
class ListRequestedServiceQuotaChangeHistoryByQuotaRequestListRequestedServiceQuotaChangeHistoryByQuotaPaginateTypeDef(TypedDict):
    ServiceCode: str,
    QuotaCode: str,
    Status: NotRequired[RequestStatusType],  # (1)
    PaginationConfig: NotRequired[PaginatorConfigTypeDef],  # (2)
  1. See RequestStatusType
  2. See PaginatorConfigTypeDef

ListRequestedServiceQuotaChangeHistoryRequestListRequestedServiceQuotaChangeHistoryPaginateTypeDef

Usage Example
from mypy_boto3_service_quotas.type_defs import ListRequestedServiceQuotaChangeHistoryRequestListRequestedServiceQuotaChangeHistoryPaginateTypeDef

def get_value() -> ListRequestedServiceQuotaChangeHistoryRequestListRequestedServiceQuotaChangeHistoryPaginateTypeDef:
    return {
        "ServiceCode": ...,
    }
Definition
class ListRequestedServiceQuotaChangeHistoryRequestListRequestedServiceQuotaChangeHistoryPaginateTypeDef(TypedDict):
    ServiceCode: NotRequired[str],
    Status: NotRequired[RequestStatusType],  # (1)
    PaginationConfig: NotRequired[PaginatorConfigTypeDef],  # (2)
  1. See RequestStatusType
  2. See PaginatorConfigTypeDef

ListServiceQuotaIncreaseRequestsInTemplateRequestListServiceQuotaIncreaseRequestsInTemplatePaginateTypeDef

Usage Example
from mypy_boto3_service_quotas.type_defs import ListServiceQuotaIncreaseRequestsInTemplateRequestListServiceQuotaIncreaseRequestsInTemplatePaginateTypeDef

def get_value() -> ListServiceQuotaIncreaseRequestsInTemplateRequestListServiceQuotaIncreaseRequestsInTemplatePaginateTypeDef:
    return {
        "ServiceCode": ...,
    }
Definition
class ListServiceQuotaIncreaseRequestsInTemplateRequestListServiceQuotaIncreaseRequestsInTemplatePaginateTypeDef(TypedDict):
    ServiceCode: NotRequired[str],
    AwsRegion: NotRequired[str],
    PaginationConfig: NotRequired[PaginatorConfigTypeDef],  # (1)
  1. See PaginatorConfigTypeDef

ListServiceQuotasRequestListServiceQuotasPaginateTypeDef

Usage Example
from mypy_boto3_service_quotas.type_defs import ListServiceQuotasRequestListServiceQuotasPaginateTypeDef

def get_value() -> ListServiceQuotasRequestListServiceQuotasPaginateTypeDef:
    return {
        "ServiceCode": ...,
    }
Definition
class ListServiceQuotasRequestListServiceQuotasPaginateTypeDef(TypedDict):
    ServiceCode: str,
    PaginationConfig: NotRequired[PaginatorConfigTypeDef],  # (1)
  1. See PaginatorConfigTypeDef

ListServicesRequestListServicesPaginateTypeDef

Usage Example
from mypy_boto3_service_quotas.type_defs import ListServicesRequestListServicesPaginateTypeDef

def get_value() -> ListServicesRequestListServicesPaginateTypeDef:
    return {
        "PaginationConfig": ...,
    }
Definition
class ListServicesRequestListServicesPaginateTypeDef(TypedDict):
    PaginationConfig: NotRequired[PaginatorConfigTypeDef],  # (1)
  1. See PaginatorConfigTypeDef

ListServicesResponseTypeDef

Usage Example
from mypy_boto3_service_quotas.type_defs import ListServicesResponseTypeDef

def get_value() -> ListServicesResponseTypeDef:
    return {
        "NextToken": ...,
        "Services": ...,
        "ResponseMetadata": ...,
    }
Definition
class ListServicesResponseTypeDef(TypedDict):
    NextToken: str,
    Services: List[ServiceInfoTypeDef],  # (1)
    ResponseMetadata: ResponseMetadataTypeDef,  # (2)
  1. See ServiceInfoTypeDef
  2. See ResponseMetadataTypeDef

ListTagsForResourceResponseTypeDef

Usage Example
from mypy_boto3_service_quotas.type_defs import ListTagsForResourceResponseTypeDef

def get_value() -> ListTagsForResourceResponseTypeDef:
    return {
        "Tags": ...,
        "ResponseMetadata": ...,
    }
Definition
class ListTagsForResourceResponseTypeDef(TypedDict):
    Tags: List[TagTypeDef],  # (1)
    ResponseMetadata: ResponseMetadataTypeDef,  # (2)
  1. See TagTypeDef
  2. See ResponseMetadataTypeDef

TagResourceRequestRequestTypeDef

Usage Example
from mypy_boto3_service_quotas.type_defs import TagResourceRequestRequestTypeDef

def get_value() -> TagResourceRequestRequestTypeDef:
    return {
        "ResourceARN": ...,
        "Tags": ...,
    }
Definition
class TagResourceRequestRequestTypeDef(TypedDict):
    ResourceARN: str,
    Tags: Sequence[TagTypeDef],  # (1)
  1. See TagTypeDef

ServiceQuotaTypeDef

Usage Example
from mypy_boto3_service_quotas.type_defs import ServiceQuotaTypeDef

def get_value() -> ServiceQuotaTypeDef:
    return {
        "ServiceCode": ...,
    }
Definition
class ServiceQuotaTypeDef(TypedDict):
    ServiceCode: NotRequired[str],
    ServiceName: NotRequired[str],
    QuotaArn: NotRequired[str],
    QuotaCode: NotRequired[str],
    QuotaName: NotRequired[str],
    Value: NotRequired[float],
    Unit: NotRequired[str],
    Adjustable: NotRequired[bool],
    GlobalQuota: NotRequired[bool],
    UsageMetric: NotRequired[MetricInfoTypeDef],  # (1)
    Period: NotRequired[QuotaPeriodTypeDef],  # (2)
    ErrorReason: NotRequired[ErrorReasonTypeDef],  # (3)
  1. See MetricInfoTypeDef
  2. See QuotaPeriodTypeDef
  3. See ErrorReasonTypeDef

GetAWSDefaultServiceQuotaResponseTypeDef

Usage Example
from mypy_boto3_service_quotas.type_defs import GetAWSDefaultServiceQuotaResponseTypeDef

def get_value() -> GetAWSDefaultServiceQuotaResponseTypeDef:
    return {
        "Quota": ...,
        "ResponseMetadata": ...,
    }
Definition
class GetAWSDefaultServiceQuotaResponseTypeDef(TypedDict):
    Quota: ServiceQuotaTypeDef,  # (1)
    ResponseMetadata: ResponseMetadataTypeDef,  # (2)
  1. See ServiceQuotaTypeDef
  2. See ResponseMetadataTypeDef

GetServiceQuotaResponseTypeDef

Usage Example
from mypy_boto3_service_quotas.type_defs import GetServiceQuotaResponseTypeDef

def get_value() -> GetServiceQuotaResponseTypeDef:
    return {
        "Quota": ...,
        "ResponseMetadata": ...,
    }
Definition
class GetServiceQuotaResponseTypeDef(TypedDict):
    Quota: ServiceQuotaTypeDef,  # (1)
    ResponseMetadata: ResponseMetadataTypeDef,  # (2)
  1. See ServiceQuotaTypeDef
  2. See ResponseMetadataTypeDef

ListAWSDefaultServiceQuotasResponseTypeDef

Usage Example
from mypy_boto3_service_quotas.type_defs import ListAWSDefaultServiceQuotasResponseTypeDef

def get_value() -> ListAWSDefaultServiceQuotasResponseTypeDef:
    return {
        "NextToken": ...,
        "Quotas": ...,
        "ResponseMetadata": ...,
    }
Definition
class ListAWSDefaultServiceQuotasResponseTypeDef(TypedDict):
    NextToken: str,
    Quotas: List[ServiceQuotaTypeDef],  # (1)
    ResponseMetadata: ResponseMetadataTypeDef,  # (2)
  1. See ServiceQuotaTypeDef
  2. See ResponseMetadataTypeDef

ListServiceQuotasResponseTypeDef

Usage Example
from mypy_boto3_service_quotas.type_defs import ListServiceQuotasResponseTypeDef

def get_value() -> ListServiceQuotasResponseTypeDef:
    return {
        "NextToken": ...,
        "Quotas": ...,
        "ResponseMetadata": ...,
    }
Definition
class ListServiceQuotasResponseTypeDef(TypedDict):
    NextToken: str,
    Quotas: List[ServiceQuotaTypeDef],  # (1)
    ResponseMetadata: ResponseMetadataTypeDef,  # (2)
  1. See ServiceQuotaTypeDef
  2. See ResponseMetadataTypeDef