Typed dictionaries#
Index > ServiceQuotas > Typed dictionaries
Auto-generated documentation for ServiceQuotas type annotations stubs module mypy-boto3-service-quotas.
DeleteServiceQuotaIncreaseRequestFromTemplateRequestRequestTypeDef#
# DeleteServiceQuotaIncreaseRequestFromTemplateRequestRequestTypeDef usage example
from mypy_boto3_service_quotas.type_defs import DeleteServiceQuotaIncreaseRequestFromTemplateRequestRequestTypeDef
def get_value() -> DeleteServiceQuotaIncreaseRequestFromTemplateRequestRequestTypeDef:
return {
"ServiceCode": ...,
"QuotaCode": ...,
"AwsRegion": ...,
}
# DeleteServiceQuotaIncreaseRequestFromTemplateRequestRequestTypeDef definition
class DeleteServiceQuotaIncreaseRequestFromTemplateRequestRequestTypeDef(TypedDict):
ServiceCode: str,
QuotaCode: str,
AwsRegion: str,
ErrorReasonTypeDef#
# ErrorReasonTypeDef usage example
from mypy_boto3_service_quotas.type_defs import ErrorReasonTypeDef
def get_value() -> ErrorReasonTypeDef:
return {
"ErrorCode": ...,
}
# ErrorReasonTypeDef definition
class ErrorReasonTypeDef(TypedDict):
ErrorCode: NotRequired[ErrorCodeType], # (1)
ErrorMessage: NotRequired[str],
- See ErrorCodeType
GetAWSDefaultServiceQuotaRequestRequestTypeDef#
# GetAWSDefaultServiceQuotaRequestRequestTypeDef usage example
from mypy_boto3_service_quotas.type_defs import GetAWSDefaultServiceQuotaRequestRequestTypeDef
def get_value() -> GetAWSDefaultServiceQuotaRequestRequestTypeDef:
return {
"ServiceCode": ...,
"QuotaCode": ...,
}
# GetAWSDefaultServiceQuotaRequestRequestTypeDef definition
class GetAWSDefaultServiceQuotaRequestRequestTypeDef(TypedDict):
ServiceCode: str,
QuotaCode: str,
GetAssociationForServiceQuotaTemplateResponseTypeDef#
# GetAssociationForServiceQuotaTemplateResponseTypeDef usage example
from mypy_boto3_service_quotas.type_defs import GetAssociationForServiceQuotaTemplateResponseTypeDef
def get_value() -> GetAssociationForServiceQuotaTemplateResponseTypeDef:
return {
"ServiceQuotaTemplateAssociationStatus": ...,
"ResponseMetadata": ...,
}
# GetAssociationForServiceQuotaTemplateResponseTypeDef definition
class GetAssociationForServiceQuotaTemplateResponseTypeDef(TypedDict):
ServiceQuotaTemplateAssociationStatus: ServiceQuotaTemplateAssociationStatusType, # (1)
ResponseMetadata: ResponseMetadataTypeDef, # (2)
GetRequestedServiceQuotaChangeRequestRequestTypeDef#
# GetRequestedServiceQuotaChangeRequestRequestTypeDef usage example
from mypy_boto3_service_quotas.type_defs import GetRequestedServiceQuotaChangeRequestRequestTypeDef
def get_value() -> GetRequestedServiceQuotaChangeRequestRequestTypeDef:
return {
"RequestId": ...,
}
# GetRequestedServiceQuotaChangeRequestRequestTypeDef definition
class GetRequestedServiceQuotaChangeRequestRequestTypeDef(TypedDict):
RequestId: str,
RequestedServiceQuotaChangeTypeDef#
# RequestedServiceQuotaChangeTypeDef usage example
from mypy_boto3_service_quotas.type_defs import RequestedServiceQuotaChangeTypeDef
def get_value() -> RequestedServiceQuotaChangeTypeDef:
return {
"Id": ...,
}
# RequestedServiceQuotaChangeTypeDef 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],
GetServiceQuotaIncreaseRequestFromTemplateRequestRequestTypeDef#
# GetServiceQuotaIncreaseRequestFromTemplateRequestRequestTypeDef usage example
from mypy_boto3_service_quotas.type_defs import GetServiceQuotaIncreaseRequestFromTemplateRequestRequestTypeDef
def get_value() -> GetServiceQuotaIncreaseRequestFromTemplateRequestRequestTypeDef:
return {
"ServiceCode": ...,
"QuotaCode": ...,
"AwsRegion": ...,
}
# GetServiceQuotaIncreaseRequestFromTemplateRequestRequestTypeDef definition
class GetServiceQuotaIncreaseRequestFromTemplateRequestRequestTypeDef(TypedDict):
ServiceCode: str,
QuotaCode: str,
AwsRegion: str,
ServiceQuotaIncreaseRequestInTemplateTypeDef#
# ServiceQuotaIncreaseRequestInTemplateTypeDef usage example
from mypy_boto3_service_quotas.type_defs import ServiceQuotaIncreaseRequestInTemplateTypeDef
def get_value() -> ServiceQuotaIncreaseRequestInTemplateTypeDef:
return {
"ServiceCode": ...,
}
# ServiceQuotaIncreaseRequestInTemplateTypeDef 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#
# GetServiceQuotaRequestRequestTypeDef usage example
from mypy_boto3_service_quotas.type_defs import GetServiceQuotaRequestRequestTypeDef
def get_value() -> GetServiceQuotaRequestRequestTypeDef:
return {
"ServiceCode": ...,
"QuotaCode": ...,
}
# GetServiceQuotaRequestRequestTypeDef definition
class GetServiceQuotaRequestRequestTypeDef(TypedDict):
ServiceCode: str,
QuotaCode: str,
ListAWSDefaultServiceQuotasRequestListAWSDefaultServiceQuotasPaginateTypeDef#
# ListAWSDefaultServiceQuotasRequestListAWSDefaultServiceQuotasPaginateTypeDef usage example
from mypy_boto3_service_quotas.type_defs import ListAWSDefaultServiceQuotasRequestListAWSDefaultServiceQuotasPaginateTypeDef
def get_value() -> ListAWSDefaultServiceQuotasRequestListAWSDefaultServiceQuotasPaginateTypeDef:
return {
"ServiceCode": ...,
}
# ListAWSDefaultServiceQuotasRequestListAWSDefaultServiceQuotasPaginateTypeDef definition
class ListAWSDefaultServiceQuotasRequestListAWSDefaultServiceQuotasPaginateTypeDef(TypedDict):
ServiceCode: str,
PaginationConfig: NotRequired[PaginatorConfigTypeDef], # (1)
ListAWSDefaultServiceQuotasRequestRequestTypeDef#
# ListAWSDefaultServiceQuotasRequestRequestTypeDef usage example
from mypy_boto3_service_quotas.type_defs import ListAWSDefaultServiceQuotasRequestRequestTypeDef
def get_value() -> ListAWSDefaultServiceQuotasRequestRequestTypeDef:
return {
"ServiceCode": ...,
}
# ListAWSDefaultServiceQuotasRequestRequestTypeDef definition
class ListAWSDefaultServiceQuotasRequestRequestTypeDef(TypedDict):
ServiceCode: str,
NextToken: NotRequired[str],
MaxResults: NotRequired[int],
ListRequestedServiceQuotaChangeHistoryByQuotaRequestListRequestedServiceQuotaChangeHistoryByQuotaPaginateTypeDef#
# ListRequestedServiceQuotaChangeHistoryByQuotaRequestListRequestedServiceQuotaChangeHistoryByQuotaPaginateTypeDef usage example
from mypy_boto3_service_quotas.type_defs import ListRequestedServiceQuotaChangeHistoryByQuotaRequestListRequestedServiceQuotaChangeHistoryByQuotaPaginateTypeDef
def get_value() -> ListRequestedServiceQuotaChangeHistoryByQuotaRequestListRequestedServiceQuotaChangeHistoryByQuotaPaginateTypeDef:
return {
"ServiceCode": ...,
"QuotaCode": ...,
}
# ListRequestedServiceQuotaChangeHistoryByQuotaRequestListRequestedServiceQuotaChangeHistoryByQuotaPaginateTypeDef definition
class ListRequestedServiceQuotaChangeHistoryByQuotaRequestListRequestedServiceQuotaChangeHistoryByQuotaPaginateTypeDef(TypedDict):
ServiceCode: str,
QuotaCode: str,
Status: NotRequired[RequestStatusType], # (1)
PaginationConfig: NotRequired[PaginatorConfigTypeDef], # (2)
ListRequestedServiceQuotaChangeHistoryByQuotaRequestRequestTypeDef#
# ListRequestedServiceQuotaChangeHistoryByQuotaRequestRequestTypeDef usage example
from mypy_boto3_service_quotas.type_defs import ListRequestedServiceQuotaChangeHistoryByQuotaRequestRequestTypeDef
def get_value() -> ListRequestedServiceQuotaChangeHistoryByQuotaRequestRequestTypeDef:
return {
"ServiceCode": ...,
"QuotaCode": ...,
}
# ListRequestedServiceQuotaChangeHistoryByQuotaRequestRequestTypeDef definition
class ListRequestedServiceQuotaChangeHistoryByQuotaRequestRequestTypeDef(TypedDict):
ServiceCode: str,
QuotaCode: str,
Status: NotRequired[RequestStatusType], # (1)
NextToken: NotRequired[str],
MaxResults: NotRequired[int],
ListRequestedServiceQuotaChangeHistoryRequestListRequestedServiceQuotaChangeHistoryPaginateTypeDef#
# ListRequestedServiceQuotaChangeHistoryRequestListRequestedServiceQuotaChangeHistoryPaginateTypeDef usage example
from mypy_boto3_service_quotas.type_defs import ListRequestedServiceQuotaChangeHistoryRequestListRequestedServiceQuotaChangeHistoryPaginateTypeDef
def get_value() -> ListRequestedServiceQuotaChangeHistoryRequestListRequestedServiceQuotaChangeHistoryPaginateTypeDef:
return {
"ServiceCode": ...,
}
# ListRequestedServiceQuotaChangeHistoryRequestListRequestedServiceQuotaChangeHistoryPaginateTypeDef definition
class ListRequestedServiceQuotaChangeHistoryRequestListRequestedServiceQuotaChangeHistoryPaginateTypeDef(TypedDict):
ServiceCode: NotRequired[str],
Status: NotRequired[RequestStatusType], # (1)
PaginationConfig: NotRequired[PaginatorConfigTypeDef], # (2)
ListRequestedServiceQuotaChangeHistoryRequestRequestTypeDef#
# ListRequestedServiceQuotaChangeHistoryRequestRequestTypeDef usage example
from mypy_boto3_service_quotas.type_defs import ListRequestedServiceQuotaChangeHistoryRequestRequestTypeDef
def get_value() -> ListRequestedServiceQuotaChangeHistoryRequestRequestTypeDef:
return {
"ServiceCode": ...,
}
# ListRequestedServiceQuotaChangeHistoryRequestRequestTypeDef definition
class ListRequestedServiceQuotaChangeHistoryRequestRequestTypeDef(TypedDict):
ServiceCode: NotRequired[str],
Status: NotRequired[RequestStatusType], # (1)
NextToken: NotRequired[str],
MaxResults: NotRequired[int],
ListServiceQuotaIncreaseRequestsInTemplateRequestListServiceQuotaIncreaseRequestsInTemplatePaginateTypeDef#
# ListServiceQuotaIncreaseRequestsInTemplateRequestListServiceQuotaIncreaseRequestsInTemplatePaginateTypeDef usage example
from mypy_boto3_service_quotas.type_defs import ListServiceQuotaIncreaseRequestsInTemplateRequestListServiceQuotaIncreaseRequestsInTemplatePaginateTypeDef
def get_value() -> ListServiceQuotaIncreaseRequestsInTemplateRequestListServiceQuotaIncreaseRequestsInTemplatePaginateTypeDef:
return {
"ServiceCode": ...,
}
# ListServiceQuotaIncreaseRequestsInTemplateRequestListServiceQuotaIncreaseRequestsInTemplatePaginateTypeDef definition
class ListServiceQuotaIncreaseRequestsInTemplateRequestListServiceQuotaIncreaseRequestsInTemplatePaginateTypeDef(TypedDict):
ServiceCode: NotRequired[str],
AwsRegion: NotRequired[str],
PaginationConfig: NotRequired[PaginatorConfigTypeDef], # (1)
ListServiceQuotaIncreaseRequestsInTemplateRequestRequestTypeDef#
# ListServiceQuotaIncreaseRequestsInTemplateRequestRequestTypeDef usage example
from mypy_boto3_service_quotas.type_defs import ListServiceQuotaIncreaseRequestsInTemplateRequestRequestTypeDef
def get_value() -> ListServiceQuotaIncreaseRequestsInTemplateRequestRequestTypeDef:
return {
"ServiceCode": ...,
}
# ListServiceQuotaIncreaseRequestsInTemplateRequestRequestTypeDef definition
class ListServiceQuotaIncreaseRequestsInTemplateRequestRequestTypeDef(TypedDict):
ServiceCode: NotRequired[str],
AwsRegion: NotRequired[str],
NextToken: NotRequired[str],
MaxResults: NotRequired[int],
ListServiceQuotasRequestListServiceQuotasPaginateTypeDef#
# ListServiceQuotasRequestListServiceQuotasPaginateTypeDef usage example
from mypy_boto3_service_quotas.type_defs import ListServiceQuotasRequestListServiceQuotasPaginateTypeDef
def get_value() -> ListServiceQuotasRequestListServiceQuotasPaginateTypeDef:
return {
"ServiceCode": ...,
}
# ListServiceQuotasRequestListServiceQuotasPaginateTypeDef definition
class ListServiceQuotasRequestListServiceQuotasPaginateTypeDef(TypedDict):
ServiceCode: str,
PaginationConfig: NotRequired[PaginatorConfigTypeDef], # (1)
ListServiceQuotasRequestRequestTypeDef#
# ListServiceQuotasRequestRequestTypeDef usage example
from mypy_boto3_service_quotas.type_defs import ListServiceQuotasRequestRequestTypeDef
def get_value() -> ListServiceQuotasRequestRequestTypeDef:
return {
"ServiceCode": ...,
}
# ListServiceQuotasRequestRequestTypeDef definition
class ListServiceQuotasRequestRequestTypeDef(TypedDict):
ServiceCode: str,
NextToken: NotRequired[str],
MaxResults: NotRequired[int],
ListServicesRequestListServicesPaginateTypeDef#
# ListServicesRequestListServicesPaginateTypeDef usage example
from mypy_boto3_service_quotas.type_defs import ListServicesRequestListServicesPaginateTypeDef
def get_value() -> ListServicesRequestListServicesPaginateTypeDef:
return {
"PaginationConfig": ...,
}
# ListServicesRequestListServicesPaginateTypeDef definition
class ListServicesRequestListServicesPaginateTypeDef(TypedDict):
PaginationConfig: NotRequired[PaginatorConfigTypeDef], # (1)
ListServicesRequestRequestTypeDef#
# ListServicesRequestRequestTypeDef usage example
from mypy_boto3_service_quotas.type_defs import ListServicesRequestRequestTypeDef
def get_value() -> ListServicesRequestRequestTypeDef:
return {
"NextToken": ...,
}
# ListServicesRequestRequestTypeDef definition
class ListServicesRequestRequestTypeDef(TypedDict):
NextToken: NotRequired[str],
MaxResults: NotRequired[int],
ServiceInfoTypeDef#
# ServiceInfoTypeDef usage example
from mypy_boto3_service_quotas.type_defs import ServiceInfoTypeDef
def get_value() -> ServiceInfoTypeDef:
return {
"ServiceCode": ...,
}
# ServiceInfoTypeDef definition
class ServiceInfoTypeDef(TypedDict):
ServiceCode: NotRequired[str],
ServiceName: NotRequired[str],
ListTagsForResourceRequestRequestTypeDef#
# ListTagsForResourceRequestRequestTypeDef usage example
from mypy_boto3_service_quotas.type_defs import ListTagsForResourceRequestRequestTypeDef
def get_value() -> ListTagsForResourceRequestRequestTypeDef:
return {
"ResourceARN": ...,
}
# ListTagsForResourceRequestRequestTypeDef definition
class ListTagsForResourceRequestRequestTypeDef(TypedDict):
ResourceARN: str,
TagTypeDef#
# TagTypeDef usage example
from mypy_boto3_service_quotas.type_defs import TagTypeDef
def get_value() -> TagTypeDef:
return {
"Key": ...,
"Value": ...,
}
# TagTypeDef definition
class TagTypeDef(TypedDict):
Key: str,
Value: str,
MetricInfoTypeDef#
# MetricInfoTypeDef usage example
from mypy_boto3_service_quotas.type_defs import MetricInfoTypeDef
def get_value() -> MetricInfoTypeDef:
return {
"MetricNamespace": ...,
}
# MetricInfoTypeDef definition
class MetricInfoTypeDef(TypedDict):
MetricNamespace: NotRequired[str],
MetricName: NotRequired[str],
MetricDimensions: NotRequired[Dict[str, str]],
MetricStatisticRecommendation: NotRequired[str],
PaginatorConfigTypeDef#
# PaginatorConfigTypeDef usage example
from mypy_boto3_service_quotas.type_defs import PaginatorConfigTypeDef
def get_value() -> PaginatorConfigTypeDef:
return {
"MaxItems": ...,
}
# PaginatorConfigTypeDef definition
class PaginatorConfigTypeDef(TypedDict):
MaxItems: NotRequired[int],
PageSize: NotRequired[int],
StartingToken: NotRequired[str],
PutServiceQuotaIncreaseRequestIntoTemplateRequestRequestTypeDef#
# PutServiceQuotaIncreaseRequestIntoTemplateRequestRequestTypeDef usage example
from mypy_boto3_service_quotas.type_defs import PutServiceQuotaIncreaseRequestIntoTemplateRequestRequestTypeDef
def get_value() -> PutServiceQuotaIncreaseRequestIntoTemplateRequestRequestTypeDef:
return {
"QuotaCode": ...,
"ServiceCode": ...,
"AwsRegion": ...,
"DesiredValue": ...,
}
# PutServiceQuotaIncreaseRequestIntoTemplateRequestRequestTypeDef definition
class PutServiceQuotaIncreaseRequestIntoTemplateRequestRequestTypeDef(TypedDict):
QuotaCode: str,
ServiceCode: str,
AwsRegion: str,
DesiredValue: float,
QuotaPeriodTypeDef#
# QuotaPeriodTypeDef usage example
from mypy_boto3_service_quotas.type_defs import QuotaPeriodTypeDef
def get_value() -> QuotaPeriodTypeDef:
return {
"PeriodValue": ...,
}
# QuotaPeriodTypeDef definition
class QuotaPeriodTypeDef(TypedDict):
PeriodValue: NotRequired[int],
PeriodUnit: NotRequired[PeriodUnitType], # (1)
- See PeriodUnitType
RequestServiceQuotaIncreaseRequestRequestTypeDef#
# RequestServiceQuotaIncreaseRequestRequestTypeDef usage example
from mypy_boto3_service_quotas.type_defs import RequestServiceQuotaIncreaseRequestRequestTypeDef
def get_value() -> RequestServiceQuotaIncreaseRequestRequestTypeDef:
return {
"ServiceCode": ...,
"QuotaCode": ...,
"DesiredValue": ...,
}
# RequestServiceQuotaIncreaseRequestRequestTypeDef definition
class RequestServiceQuotaIncreaseRequestRequestTypeDef(TypedDict):
ServiceCode: str,
QuotaCode: str,
DesiredValue: float,
ResponseMetadataTypeDef#
# ResponseMetadataTypeDef usage example
from mypy_boto3_service_quotas.type_defs import ResponseMetadataTypeDef
def get_value() -> ResponseMetadataTypeDef:
return {
"RequestId": ...,
"HostId": ...,
"HTTPStatusCode": ...,
"HTTPHeaders": ...,
"RetryAttempts": ...,
}
# ResponseMetadataTypeDef definition
class ResponseMetadataTypeDef(TypedDict):
RequestId: str,
HostId: str,
HTTPStatusCode: int,
HTTPHeaders: Dict[str, str],
RetryAttempts: int,
UntagResourceRequestRequestTypeDef#
# UntagResourceRequestRequestTypeDef usage example
from mypy_boto3_service_quotas.type_defs import UntagResourceRequestRequestTypeDef
def get_value() -> UntagResourceRequestRequestTypeDef:
return {
"ResourceARN": ...,
"TagKeys": ...,
}
# UntagResourceRequestRequestTypeDef definition
class UntagResourceRequestRequestTypeDef(TypedDict):
ResourceARN: str,
TagKeys: Sequence[str],
GetRequestedServiceQuotaChangeResponseTypeDef#
# GetRequestedServiceQuotaChangeResponseTypeDef usage example
from mypy_boto3_service_quotas.type_defs import GetRequestedServiceQuotaChangeResponseTypeDef
def get_value() -> GetRequestedServiceQuotaChangeResponseTypeDef:
return {
"RequestedQuota": ...,
"ResponseMetadata": ...,
}
# GetRequestedServiceQuotaChangeResponseTypeDef definition
class GetRequestedServiceQuotaChangeResponseTypeDef(TypedDict):
RequestedQuota: RequestedServiceQuotaChangeTypeDef, # (1)
ResponseMetadata: ResponseMetadataTypeDef, # (2)
ListRequestedServiceQuotaChangeHistoryByQuotaResponseTypeDef#
# ListRequestedServiceQuotaChangeHistoryByQuotaResponseTypeDef usage example
from mypy_boto3_service_quotas.type_defs import ListRequestedServiceQuotaChangeHistoryByQuotaResponseTypeDef
def get_value() -> ListRequestedServiceQuotaChangeHistoryByQuotaResponseTypeDef:
return {
"NextToken": ...,
"RequestedQuotas": ...,
"ResponseMetadata": ...,
}
# ListRequestedServiceQuotaChangeHistoryByQuotaResponseTypeDef definition
class ListRequestedServiceQuotaChangeHistoryByQuotaResponseTypeDef(TypedDict):
NextToken: str,
RequestedQuotas: List[RequestedServiceQuotaChangeTypeDef], # (1)
ResponseMetadata: ResponseMetadataTypeDef, # (2)
ListRequestedServiceQuotaChangeHistoryResponseTypeDef#
# ListRequestedServiceQuotaChangeHistoryResponseTypeDef usage example
from mypy_boto3_service_quotas.type_defs import ListRequestedServiceQuotaChangeHistoryResponseTypeDef
def get_value() -> ListRequestedServiceQuotaChangeHistoryResponseTypeDef:
return {
"NextToken": ...,
"RequestedQuotas": ...,
"ResponseMetadata": ...,
}
# ListRequestedServiceQuotaChangeHistoryResponseTypeDef definition
class ListRequestedServiceQuotaChangeHistoryResponseTypeDef(TypedDict):
NextToken: str,
RequestedQuotas: List[RequestedServiceQuotaChangeTypeDef], # (1)
ResponseMetadata: ResponseMetadataTypeDef, # (2)
RequestServiceQuotaIncreaseResponseTypeDef#
# RequestServiceQuotaIncreaseResponseTypeDef usage example
from mypy_boto3_service_quotas.type_defs import RequestServiceQuotaIncreaseResponseTypeDef
def get_value() -> RequestServiceQuotaIncreaseResponseTypeDef:
return {
"RequestedQuota": ...,
"ResponseMetadata": ...,
}
# RequestServiceQuotaIncreaseResponseTypeDef definition
class RequestServiceQuotaIncreaseResponseTypeDef(TypedDict):
RequestedQuota: RequestedServiceQuotaChangeTypeDef, # (1)
ResponseMetadata: ResponseMetadataTypeDef, # (2)
GetServiceQuotaIncreaseRequestFromTemplateResponseTypeDef#
# GetServiceQuotaIncreaseRequestFromTemplateResponseTypeDef usage example
from mypy_boto3_service_quotas.type_defs import GetServiceQuotaIncreaseRequestFromTemplateResponseTypeDef
def get_value() -> GetServiceQuotaIncreaseRequestFromTemplateResponseTypeDef:
return {
"ServiceQuotaIncreaseRequestInTemplate": ...,
"ResponseMetadata": ...,
}
# GetServiceQuotaIncreaseRequestFromTemplateResponseTypeDef definition
class GetServiceQuotaIncreaseRequestFromTemplateResponseTypeDef(TypedDict):
ServiceQuotaIncreaseRequestInTemplate: ServiceQuotaIncreaseRequestInTemplateTypeDef, # (1)
ResponseMetadata: ResponseMetadataTypeDef, # (2)
ListServiceQuotaIncreaseRequestsInTemplateResponseTypeDef#
# ListServiceQuotaIncreaseRequestsInTemplateResponseTypeDef usage example
from mypy_boto3_service_quotas.type_defs import ListServiceQuotaIncreaseRequestsInTemplateResponseTypeDef
def get_value() -> ListServiceQuotaIncreaseRequestsInTemplateResponseTypeDef:
return {
"ServiceQuotaIncreaseRequestInTemplateList": ...,
"NextToken": ...,
"ResponseMetadata": ...,
}
# ListServiceQuotaIncreaseRequestsInTemplateResponseTypeDef definition
class ListServiceQuotaIncreaseRequestsInTemplateResponseTypeDef(TypedDict):
ServiceQuotaIncreaseRequestInTemplateList: List[ServiceQuotaIncreaseRequestInTemplateTypeDef], # (1)
NextToken: str,
ResponseMetadata: ResponseMetadataTypeDef, # (2)
PutServiceQuotaIncreaseRequestIntoTemplateResponseTypeDef#
# PutServiceQuotaIncreaseRequestIntoTemplateResponseTypeDef usage example
from mypy_boto3_service_quotas.type_defs import PutServiceQuotaIncreaseRequestIntoTemplateResponseTypeDef
def get_value() -> PutServiceQuotaIncreaseRequestIntoTemplateResponseTypeDef:
return {
"ServiceQuotaIncreaseRequestInTemplate": ...,
"ResponseMetadata": ...,
}
# PutServiceQuotaIncreaseRequestIntoTemplateResponseTypeDef definition
class PutServiceQuotaIncreaseRequestIntoTemplateResponseTypeDef(TypedDict):
ServiceQuotaIncreaseRequestInTemplate: ServiceQuotaIncreaseRequestInTemplateTypeDef, # (1)
ResponseMetadata: ResponseMetadataTypeDef, # (2)
ListServicesResponseTypeDef#
# ListServicesResponseTypeDef usage example
from mypy_boto3_service_quotas.type_defs import ListServicesResponseTypeDef
def get_value() -> ListServicesResponseTypeDef:
return {
"NextToken": ...,
"Services": ...,
"ResponseMetadata": ...,
}
# ListServicesResponseTypeDef definition
class ListServicesResponseTypeDef(TypedDict):
NextToken: str,
Services: List[ServiceInfoTypeDef], # (1)
ResponseMetadata: ResponseMetadataTypeDef, # (2)
ListTagsForResourceResponseTypeDef#
# ListTagsForResourceResponseTypeDef usage example
from mypy_boto3_service_quotas.type_defs import ListTagsForResourceResponseTypeDef
def get_value() -> ListTagsForResourceResponseTypeDef:
return {
"Tags": ...,
"ResponseMetadata": ...,
}
# ListTagsForResourceResponseTypeDef definition
class ListTagsForResourceResponseTypeDef(TypedDict):
Tags: List[TagTypeDef], # (1)
ResponseMetadata: ResponseMetadataTypeDef, # (2)
- See TagTypeDef
- See ResponseMetadataTypeDef
TagResourceRequestRequestTypeDef#
# TagResourceRequestRequestTypeDef usage example
from mypy_boto3_service_quotas.type_defs import TagResourceRequestRequestTypeDef
def get_value() -> TagResourceRequestRequestTypeDef:
return {
"ResourceARN": ...,
"Tags": ...,
}
# TagResourceRequestRequestTypeDef definition
class TagResourceRequestRequestTypeDef(TypedDict):
ResourceARN: str,
Tags: Sequence[TagTypeDef], # (1)
- See TagTypeDef
ServiceQuotaTypeDef#
# ServiceQuotaTypeDef usage example
from mypy_boto3_service_quotas.type_defs import ServiceQuotaTypeDef
def get_value() -> ServiceQuotaTypeDef:
return {
"ServiceCode": ...,
}
# ServiceQuotaTypeDef 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)
- See MetricInfoTypeDef
- See QuotaPeriodTypeDef
- See ErrorReasonTypeDef
GetAWSDefaultServiceQuotaResponseTypeDef#
# GetAWSDefaultServiceQuotaResponseTypeDef usage example
from mypy_boto3_service_quotas.type_defs import GetAWSDefaultServiceQuotaResponseTypeDef
def get_value() -> GetAWSDefaultServiceQuotaResponseTypeDef:
return {
"Quota": ...,
"ResponseMetadata": ...,
}
# GetAWSDefaultServiceQuotaResponseTypeDef definition
class GetAWSDefaultServiceQuotaResponseTypeDef(TypedDict):
Quota: ServiceQuotaTypeDef, # (1)
ResponseMetadata: ResponseMetadataTypeDef, # (2)
GetServiceQuotaResponseTypeDef#
# GetServiceQuotaResponseTypeDef usage example
from mypy_boto3_service_quotas.type_defs import GetServiceQuotaResponseTypeDef
def get_value() -> GetServiceQuotaResponseTypeDef:
return {
"Quota": ...,
"ResponseMetadata": ...,
}
# GetServiceQuotaResponseTypeDef definition
class GetServiceQuotaResponseTypeDef(TypedDict):
Quota: ServiceQuotaTypeDef, # (1)
ResponseMetadata: ResponseMetadataTypeDef, # (2)
ListAWSDefaultServiceQuotasResponseTypeDef#
# ListAWSDefaultServiceQuotasResponseTypeDef usage example
from mypy_boto3_service_quotas.type_defs import ListAWSDefaultServiceQuotasResponseTypeDef
def get_value() -> ListAWSDefaultServiceQuotasResponseTypeDef:
return {
"NextToken": ...,
"Quotas": ...,
"ResponseMetadata": ...,
}
# ListAWSDefaultServiceQuotasResponseTypeDef definition
class ListAWSDefaultServiceQuotasResponseTypeDef(TypedDict):
NextToken: str,
Quotas: List[ServiceQuotaTypeDef], # (1)
ResponseMetadata: ResponseMetadataTypeDef, # (2)
ListServiceQuotasResponseTypeDef#
# ListServiceQuotasResponseTypeDef usage example
from mypy_boto3_service_quotas.type_defs import ListServiceQuotasResponseTypeDef
def get_value() -> ListServiceQuotasResponseTypeDef:
return {
"NextToken": ...,
"Quotas": ...,
"ResponseMetadata": ...,
}
# ListServiceQuotasResponseTypeDef definition
class ListServiceQuotasResponseTypeDef(TypedDict):
NextToken: str,
Quotas: List[ServiceQuotaTypeDef], # (1)
ResponseMetadata: ResponseMetadataTypeDef, # (2)