diff --git a/.vscode/settings.json b/.vscode/settings.json index e95901e..7097ef7 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -14,5 +14,6 @@ "sonarlint.connectedMode.project": { "connectionId": "reapit", "projectKey": "reapit_ts-cdk-constructs" - } + }, + "deepscan.enable": true } diff --git a/package.json b/package.json index 5080225..621cbc2 100644 --- a/package.json +++ b/package.json @@ -8,13 +8,13 @@ ], "scripts": { "test": "jest --passWithNoTests --ignoreProjects 'integration tests' --coverage", - "check": "tsc packages/**/*.ts --noEmit", + "check": "tsc --noEmit", "build": "yarn workspaces foreach --all -v run build", "lint": "yarn workspaces foreach --all -v run lint", "integ": "jest --passWithNoTests --ignoreProjects 'unit tests' --silent false", "root:test": "jest --passWithNoTests --ignoreProjects 'integration tests'", "root:integ": "jest --passWithNoTests --ignoreProjects 'unit tests' --silent false", - "root:check": "tsc", + "root:check": "tsc --noEmit", "generate-readme": "reapit-cdk-generate-readme" }, "devDependencies": { diff --git a/packages/constructs/cross-region-stack-export/readme.md b/packages/constructs/cross-region-stack-export/readme.md index 254b2d9..6892bc6 100644 --- a/packages/constructs/cross-region-stack-export/readme.md +++ b/packages/constructs/cross-region-stack-export/readme.md @@ -3,7 +3,7 @@ ![npm version](https://img.shields.io/npm/v/@reapit-cdk/cross-region-stack-export) ![npm downloads](https://img.shields.io/npm/dm/@reapit-cdk/cross-region-stack-export) -![coverage: 74.02%25](https://img.shields.io/badge/coverage-74.02%25-orange) +![coverage: 71.85%25](https://img.shields.io/badge/coverage-71.85%25-orange) ![Integ Tests: X](https://img.shields.io/badge/Integ%20Tests-X-red) Allows you to share values between stack across regions and accounts. diff --git a/packages/constructs/edge-api/readme.md b/packages/constructs/edge-api/readme.md index 81f4860..3df229b 100644 --- a/packages/constructs/edge-api/readme.md +++ b/packages/constructs/edge-api/readme.md @@ -118,6 +118,7 @@ api.addEndpoint({ // optional customMiddlewares: [ + // @ts-expect-error (req, mapping) => { // req is CloudfrontRequest https://github.com/DefinitelyTyped/DefinitelyTyped/blob/master/types/aws-lambda/common/cloudfront.d.ts#L44 // mapping is destination['user requested domain name'] e.g. mapping['example.org'] diff --git a/packages/constructs/edge-api/tests/construct.test.ts b/packages/constructs/edge-api/tests/construct.test.ts index eed3c04..d60a67a 100644 --- a/packages/constructs/edge-api/tests/construct.test.ts +++ b/packages/constructs/edge-api/tests/construct.test.ts @@ -581,6 +581,7 @@ describe('edge-api', () => { pathPattern: '/google', destination, customMiddlewares: [ + // @ts-expect-error (req, mapping) => { if (req.uri === '/authorize' || req.uri === '/login') { if (typeof mapping !== 'string') { diff --git a/packages/constructs/edge-api/usage.ts b/packages/constructs/edge-api/usage.ts index 121f3f6..82ee4a4 100644 --- a/packages/constructs/edge-api/usage.ts +++ b/packages/constructs/edge-api/usage.ts @@ -98,6 +98,7 @@ api.addEndpoint({ // optional customMiddlewares: [ + // @ts-expect-error (req, mapping) => { // req is CloudfrontRequest https://github.com/DefinitelyTyped/DefinitelyTyped/blob/master/types/aws-lambda/common/cloudfront.d.ts#L44 // mapping is destination['user requested domain name'] e.g. mapping['example.org'] diff --git a/packages/constructs/service-quotas/.gitignore b/packages/constructs/service-quotas/.gitignore new file mode 100644 index 0000000..aac8214 --- /dev/null +++ b/packages/constructs/service-quotas/.gitignore @@ -0,0 +1 @@ +quotas.json \ No newline at end of file diff --git a/packages/constructs/service-quotas/.npmignore b/packages/constructs/service-quotas/.npmignore new file mode 100644 index 0000000..7b21160 --- /dev/null +++ b/packages/constructs/service-quotas/.npmignore @@ -0,0 +1,4 @@ +src +tests +.eslintrc.js +tsconfig.json diff --git a/packages/constructs/service-quotas/package.json b/packages/constructs/service-quotas/package.json new file mode 100644 index 0000000..7df983d --- /dev/null +++ b/packages/constructs/service-quotas/package.json @@ -0,0 +1,53 @@ +{ + "name": "@reapit-cdk/service-quotas", + "version": "0.0.0", + "description": "This construct allows you to IaC your service quotas", + "homepage": "https://github.com/reapit/ts-cdk-constructs/blob/main/packages/modules/service-quotas", + "readme": "https://github.com/reapit/ts-cdk-constructs/blob/main/packages/modules/service-quotas/readme.md", + "bugs": { + "url": "https://github.com/reapit/ts-cdk-constructs/issues" + }, + "license": "MIT", + "author": { + "name": "Josh Balfour", + "email": "jbalfour@reapit.com" + }, + "repository": { + "url": "https://github.com/reapit/ts-cdk-constructs.git" + }, + "scripts": { + "build": "reapit-cdk-tsup --lambda", + "check": "yarn run root:check -p $(pwd)", + "lint": "echo 'skipping'", + "test": "yarn run root:test -- $(pwd)", + "prepack": "yarn build", + "integ": "yarn run root:integ -- $(pwd)", + "jsii:build": "rpt-cdk-jsii", + "jsii:publish": "rpt-cdk-jsii --publish", + "gen-types": "ts-node src/generate-types.ts" + }, + "main": "src/index.ts", + "types": "src/index.ts", + "publishConfig": { + "main": "dist/index.js", + "types": "dist/index.d.ts" + }, + "peerDependencies": { + "aws-cdk-lib": "^2.96.2", + "constructs": "^10.2.70" + }, + "devDependencies": { + "@aws-sdk/client-service-quotas": "3.414.0", + "@reapit-cdk/custom-resource-wrapper": "workspace:^", + "@reapit-cdk/eslint-config": "workspace:^", + "@reapit-cdk/integration-tests": "workspace:^", + "@reapit-cdk/jsii": "workspace:^", + "@reapit-cdk/tsup": "workspace:^", + "aws-cdk-lib": "^2.96.2", + "aws-lambda": "^1.0.7", + "aws-sdk-client-mock": "^3.0.0", + "constructs": "^10.2.70", + "ts-node": "^10.9.2", + "varname": "^6.0.0" + } +} diff --git a/packages/constructs/service-quotas/readme.md b/packages/constructs/service-quotas/readme.md new file mode 100644 index 0000000..00ec782 --- /dev/null +++ b/packages/constructs/service-quotas/readme.md @@ -0,0 +1,44 @@ +# @reapit-cdk/service-quotas + + +![npm version](https://img.shields.io/npm/v/@reapit-cdk/service-quotas) +![npm downloads](https://img.shields.io/npm/dm/@reapit-cdk/service-quotas) +![coverage: 0%25](https://img.shields.io/badge/coverage-0%25-red) +![Integ Tests: X](https://img.shields.io/badge/Integ%20Tests-X-red) + +This construct allows you to IaC your service quotas + +## Package Installation: + +```sh +yarn add --dev @reapit-cdk/service-quotas +# or +npm install @reapit-cdk/service-quotas --save-dev +``` + +## Usage +```ts +import { Stack, App } from 'aws-cdk-lib' +import { AWSService, AmazonCloudFrontQuota, ServiceQuotas } from '@reapit-cdk/service-quotas' + +const app = new App() +const stack = new Stack(app, 'stack-name') +const quotas = new ServiceQuotas(stack, 'service-quotas', { + // Fail the stack if your requests aren't granted yet + failIfNotGranted: true, + // Make another request if an existing one is denied + rerequestWhenDenied: true, +}) + +quotas.requestQuota( + // region + 'us-east-1', + // service (use the AWSService.${Service} helper or specify the e.g. 'cloudfront' string as any) + AWSService.AmazonCloudFront, + // quota (use the ${Service}Quota e.g. AmazonCloudFrontQuota helper or specify the 'LL-' string as any) + AmazonCloudFrontQuota.CacheBehaviorsPerDistribution, + // desired value + 100, +) + +``` \ No newline at end of file diff --git a/packages/constructs/service-quotas/src/construct.ts b/packages/constructs/service-quotas/src/construct.ts new file mode 100644 index 0000000..41dc62c --- /dev/null +++ b/packages/constructs/service-quotas/src/construct.ts @@ -0,0 +1,70 @@ +import { Construct } from 'constructs' +import { Code, Function, Runtime } from 'aws-cdk-lib/aws-lambda' +import * as path from 'path' +import { CustomResource, Duration, Lazy } from 'aws-cdk-lib' +import { PolicyStatement } from 'aws-cdk-lib/aws-iam' +import { Provider } from 'aws-cdk-lib/custom-resources' +import { Config, Quota } from './types' + +import { AWSService, ServiceQuotaMap } from './quotas' + +export class ServiceQuotas extends Construct { + private quotas: Quota[] = [] + config: Config + + constructor(scope: Construct, id: string, config: Config) { + super(scope, id) + + this.config = config + + const lambda = new Function(this, 'lambda', { + code: Code.fromAsset(path.join(__dirname, '..', 'dist', 'lambda')), + handler: 'lambda.onEvent', + runtime: Runtime.NODEJS_18_X, + timeout: Duration.minutes(15), + }) + + lambda.addToRolePolicy( + new PolicyStatement({ + actions: [ + 'servicequotas:ListRequestedServiceQuotaChangeHistoryByQuota', + 'servicequotas:GetServiceQuota', + 'servicequotas:RequestServiceQuotaIncrease', + ], + resources: ['*'], + }), + ) + + const provider = new Provider(this, 'provider', { + onEventHandler: lambda, + }) + + const self = this + + new CustomResource(this, 'custom-resource', { + serviceToken: provider.serviceToken, + properties: { + config: this.config, + quotas: Lazy.any({ + produce() { + return self.quotas + }, + }), + }, + }) + } + + requestQuota( + region: string, + service: S, + quota: Q, + desiredValue: number, + ) { + this.quotas.push({ + desiredValue, + quota: quota as string, + region, + service, + }) + } +} diff --git a/packages/constructs/service-quotas/src/generate-types.ts b/packages/constructs/service-quotas/src/generate-types.ts new file mode 100644 index 0000000..d84e8cb --- /dev/null +++ b/packages/constructs/service-quotas/src/generate-types.ts @@ -0,0 +1,166 @@ +import { + ServiceInfo, + ServiceQuotasClient, + paginateListServices, + paginateListServiceQuotas, + ServiceQuota, + AppliedLevelEnum, + paginateListAWSDefaultServiceQuotas, +} from '@aws-sdk/client-service-quotas' +import * as varname from 'varname' +import * as fs from 'fs/promises' +import * as path from 'path' + +const client = new ServiceQuotasClient({ + region: 'us-east-1', +}) + +const getServiceCodes = async (): Promise => { + const codes = paginateListServices( + { + client, + }, + { + MaxResults: 100, + }, + ) + const agg: ServiceInfo[] = [] + for await (const code of codes) { + agg.push(...(code.Services ?? [])) + } + return agg +} + +const getServiceQuotas = async (ServiceCode: string) => { + const quotas = paginateListServiceQuotas( + { + client, + }, + { + ServiceCode, + QuotaAppliedAtLevel: AppliedLevelEnum.ALL, + }, + ) + const agg: ServiceQuota[] = [] + for await (const quota of quotas) { + agg.push(...(quota.Quotas ?? [])) + } + + const defaultQuotas = paginateListAWSDefaultServiceQuotas( + { + client, + }, + { + ServiceCode, + }, + ) + for await (const quota of defaultQuotas) { + agg.push(...(quota.Quotas ?? [])) + } + return agg +} + +const varifyName = (name: string) => varname.camelcase(name) + +const enumify = (name: string, code: string) => { + return `${varifyName(name)} = '${code}'` +} + +type QuotaPair = { + code: string + name: string +} + +type NestedQuotaPair = QuotaPair & { + quotas: QuotaPair[] +} + +const tsify = (quotas: NestedQuotaPair[]) => { + return ` + ${quotas + .map(({ name, quotas }) => { + return `export enum ${varifyName(name)}Quota { + ${unq(quotas) + .map(({ name, code }) => { + return enumify(name, code) + }) + .join(',\n')} + }` + }) + .join('\n')} + export enum AWSService { + ${quotas + .map(({ name, code }) => { + return enumify(name, code) + }) + .join(',\n')} + } + export type ServiceQuotaMap = { + ${quotas + .map(({ name, code }) => { + return `'${code}': ${varifyName(name)}Quota` + }) + .join(',\n')} + } + + ` +} + +const wait = (ms: number) => new Promise((resolve) => setTimeout(resolve, ms)) + +const unq = (qps: QuotaPair[]): QuotaPair[] => { + const unqNames = [...new Set(qps.map((qp) => varifyName(qp.name)))] + return unqNames.map((name) => { + return qps.find((qp) => varifyName(qp.name) === name) + }) as QuotaPair[] +} + +const getAll = async (): Promise => { + const serviceCodes = await getServiceCodes() + + const toReturn: NestedQuotaPair[] = [] + + for (let i = 0; i < serviceCodes.length; i++) { + const { ServiceCode, ServiceName } = serviceCodes[i] + if (!ServiceCode) { + throw new Error('found service without code, ServiceName: ' + ServiceName) + } + const serviceQuotas = await getServiceQuotas(ServiceCode) + + toReturn.push({ + name: ServiceName ?? '', + code: ServiceCode, + quotas: serviceQuotas.map( + ({ QuotaCode, QuotaName }): QuotaPair => ({ + code: QuotaCode ?? '', + name: QuotaName ?? '', + }), + ), + }) + + await wait(10) + console.log(i, '/', serviceCodes.length) + } + + return toReturn +} + +const go = async () => { + const all = await getAll() + await fs.writeFile('quotas.json', JSON.stringify(all, null, '\t')) + await output(all) +} + +// const goCached = async () => { +// const all = JSON.parse(await fs.readFile('quotas.json', 'utf-8')) +// await output(all) +// } + +const output = async (all: NestedQuotaPair[]) => { + await fs.writeFile(path.resolve(__dirname, 'quotas.ts'), tsify(all)) +} + +go().catch((e) => { + console.error(e) + process.exit(1) +}) diff --git a/packages/constructs/service-quotas/src/index.ts b/packages/constructs/service-quotas/src/index.ts new file mode 100644 index 0000000..6fecd53 --- /dev/null +++ b/packages/constructs/service-quotas/src/index.ts @@ -0,0 +1,2 @@ +export * from './construct' +export * from './quotas' diff --git a/packages/constructs/service-quotas/src/lambda/lambda.ts b/packages/constructs/service-quotas/src/lambda/lambda.ts new file mode 100644 index 0000000..cea4fa7 --- /dev/null +++ b/packages/constructs/service-quotas/src/lambda/lambda.ts @@ -0,0 +1,7 @@ +import { requestQuotas } from './request-quota' +import { customResourceWrapper } from '@reapit-cdk/custom-resource-wrapper' + +export const onEvent = customResourceWrapper({ + onCreate: ({ quotas, config }) => requestQuotas(quotas, config), + onUpdate: ({ quotas, config }) => requestQuotas(quotas, config), +}) diff --git a/packages/constructs/service-quotas/src/lambda/request-quota.ts b/packages/constructs/service-quotas/src/lambda/request-quota.ts new file mode 100644 index 0000000..47983a4 --- /dev/null +++ b/packages/constructs/service-quotas/src/lambda/request-quota.ts @@ -0,0 +1,185 @@ +import { + ServiceQuotasClient, + GetServiceQuotaCommand, + paginateListRequestedServiceQuotaChangeHistoryByQuota, + RequestedServiceQuotaChange, + RequestStatus, + RequestServiceQuotaIncreaseCommand, +} from '@aws-sdk/client-service-quotas' +import { Config, Quota } from '../types' + +const getCurrentQuotaValue = async (region: string, service: string, quota: string): Promise => { + const client = new ServiceQuotasClient({ + region, + }) + + const res = await client.send( + new GetServiceQuotaCommand({ + ServiceCode: service, + QuotaCode: quota, + }), + ) + + if (typeof res.Quota?.Value === 'undefined') { + throw new Error(`Invalid response for ${service}/${quota}`) + } + + return res.Quota.Value +} + +const getRequestedQuotaChanges = async (region: string, service: string, quota: string) => { + const client = new ServiceQuotasClient({ + region, + }) + const changes = paginateListRequestedServiceQuotaChangeHistoryByQuota( + { + client, + }, + { + ServiceCode: service, + QuotaCode: quota, + }, + ) + + const agg: RequestedServiceQuotaChange[] = [] + for await (const code of changes) { + agg.push(...(code.RequestedQuotas ?? [])) + } + return agg +} + +const getPendingQuotaValue = async (region: string, service: string, quota: string) => { + const requestedChanges = await getRequestedQuotaChanges(region, service, quota) + const requests = requestedChanges.map((value) => { + if (!value.DesiredValue || !value.Created) { + throw new Error('invalid quota change request') + } + return { + status: value.Status as RequestStatus, + value: value.DesiredValue, + createdAt: value.Created, + } + }) + + return requests +} + +enum Status { + GRANTED, + REQUESTED, + DENIED, +} + +const deniedStatuses: string[] = [ + RequestStatus.DENIED, + RequestStatus.NOT_APPROVED, + RequestStatus.CASE_CLOSED, + RequestStatus.INVALID_REQUEST, +] +const pendingStatuses: string[] = [RequestStatus.CASE_OPENED, RequestStatus.PENDING, RequestStatus.APPROVED] + +const makeRequest = async (region: string, service: string, quota: string, desiredValue: number) => { + const client = new ServiceQuotasClient({ + region, + }) + + const res = await client.send( + new RequestServiceQuotaIncreaseCommand({ + DesiredValue: desiredValue, + QuotaCode: quota, + ServiceCode: service, + }), + ) + + const req = res.RequestedQuota + if (!req) { + throw new Error('bad response from RequestServiceQuotaIncreaseCommand') + } + return req +} + +const getStatus = (status: RequestStatus) => { + const isDenied = deniedStatuses.includes(status) + if (isDenied) { + return Status.DENIED + } + const isPending = pendingStatuses.includes(status) + if (isPending) { + return Status.REQUESTED + } + + return Status.GRANTED +} + +const createdAtSort = (a: { createdAt: Date }, b: { createdAt: Date }) => { + return new Date(b.createdAt).getTime() - new Date(a.createdAt).getTime() +} + +const requestQuota = async ( + { desiredValue, quota, region, service }: Quota, + { rerequestWhenDenied }: Config, +): Promise => { + const currentValue = await getCurrentQuotaValue(region, service, quota) + + if (desiredValue >= currentValue) { + const pending = await getPendingQuotaValue(region, service, quota) + const greaterThan = pending.filter((req) => { + return req.value >= desiredValue + }) + greaterThan.sort(createdAtSort) + + if (greaterThan.length) { + const [mostRecent] = greaterThan + const status = getStatus(mostRecent.status) + if (rerequestWhenDenied) { + if (status !== Status.DENIED) { + return status + } + } else { + return status + } + } + + const requested = await makeRequest(region, service, quota, desiredValue) + const status = requested.Status + if (!status) { + throw new Error('no status returned from request') + } + return getStatus(status as RequestStatus) + } + + return Status.GRANTED +} + +type Result = { + quota: Quota + status: Status +} + +export const requestQuotas = async (quotas: Quota[], config: Config) => { + const results: Result[] = [] + + for (const quota of quotas) { + const status = await requestQuota(quota, config) + results.push({ + quota, + status, + }) + } + + console.table( + results.map(({ quota, status }) => ({ + ...quota, + status, + })), + ) + + if (config.failIfNotGranted) { + const notGranted = results.filter((result) => result.status !== Status.GRANTED) + if (notGranted.length) { + throw new Error(`config.failIfNotGranted is true, and ${notGranted.length} quotas are not yet granted`) + } + } + + return results +} diff --git a/packages/constructs/service-quotas/src/quotas.ts b/packages/constructs/service-quotas/src/quotas.ts new file mode 100644 index 0000000..28f6d20 --- /dev/null +++ b/packages/constructs/service-quotas/src/quotas.ts @@ -0,0 +1,7864 @@ +export enum AwsCloudMapQuota { + NamespacesPerRegion = 'L-0FE3F50E', + DiscoverInstancesOperationPerAccountBurstRate = 'L-76CF203B', + DiscoverInstancesRevisionOperationPerAccountRate = 'L-0BA10AAE', + DiscoverInstancesOperationPerAccountSteadyRate = 'L-514A639A', + InstancesPerNamespace = 'L-D95E8A57', + InstancesPerService = 'L-2DA90E5C', + CustomAttributesPerInstance = 'L-D589BB26', +} +export enum AccessAnalyzerQuota { + PolicyGenerationCloudTrailDataSize = 'L-94099EDD', + ArchiveRulesPerAnalyzer = 'L-1E51937C', + AccountLevelAnalyzer = 'L-2F63646F', + PolicyGenerationCloudTrailTimeRange = 'L-96F55078', + AccessPreviewsPerAnalyzerPerHour = 'L-8750DAE0', + ConcurrentPolicyGenerations = 'L-4599575C', + CloudTrailLogFilesProcessedPerPolicyGeneration = 'L-5EFCE71D', + OrganizationLevelAnalyzer = 'L-6F85FE0C', + PolicyGenerationsPerDay = 'L-FD4CD927', +} +export enum AwsAccountManagementQuota { + RateOfDeleteAlternateContactRequestsPerAccount = 'L-727AE010', + RateOfGetContactInformationRequestsPerAccount = 'L-56505C89', + RateOfPutContactInformationRequestsPerAccount = 'L-6F84C5B8', + RateOfPutAlternateContactRequestsPerAccount = 'L-77A32B3F', + RateOfListRegionsRequestsPerAccount = 'L-E9209A61', + RateOfEnableRegionRequestsPerAccount = 'L-D02CFF0D', + RateOfDisableRegionRequestsPerAccount = 'L-74777ECD', + RateOfGetRegionOptStatusRequestsPerAccount = 'L-482659C3', + RateOfGetAlternateContactRequestsPerAccount = 'L-04F5ADCA', + NumberOfConcurrentRegionOptRequestsPerAccount = 'L-E37B66F4', + NumberOfConcurrentRegionOptRequestsPerOrganization = 'L-33A0F311', +} +export enum AwsCertificateManagerAcmQuota { + AcmCertificatesCreatedInLast365Days = 'L-DA1D8B98', + ImportedCertificates = 'L-D2CB7DE9', + DomainNamesPerAcmCertificate = 'L-FB94F0B0', + AcmCertificates = 'L-F141DD1D', + ImportedCertificatesInLast365Days = 'L-3808DC70', +} +export enum AwsPrivateCertificateAuthorityQuota { + RateOfImportCertificateAuthorityCertificateRequests = 'L-D0C21409', + RateOfDescribeCertificateAuthorityRequests = 'L-46ADAC63', + RateOfDeleteCertificateAuthorityRequests = 'L-4065FDCB', + RateOfCreatePermissionRequests = 'L-773738D3', + NumberOfPrivateCertificatesPerCa = 'L-F99AB81B', + RateOfCreateCertificateAuthorityAuditReportRequests = 'L-C0A08797', + RateOfListCertificateAuthoritiesRequests = 'L-5A3CF806', + RateOfIssueCertificateRequests = 'L-CAFB4993', + RateOfGetPolicyRequests = 'L-3549B861', + RateOfDeletePolicyRequests = 'L-F4B48431', + RateOfRevokeCertificateRequests = 'L-8842A328', + RateOfTagCertificateAuthorityRequests = 'L-E464E2C8', + NumberOfPrivateCertificateAuthoritiesCAs = 'L-799883CD', + RateOfGetCertificateAuthorityCsrRequests = 'L-7D3D103D', + RateOfDescribeCertificateAuthorityAuditReportRequests = 'L-6C9448CC', + RateOfUntagCertificateAuthorityRequests = 'L-0CD1C07A', + RateOfListTagsRequests = 'L-AF91D77C', + RateOfUpdateCertificateAuthorityRequests = 'L-8FDDE81D', + RateOfRestoreCertificateAuthorityRequests = 'L-F3EBB4C3', + NumberOfRevokedPrivateCertificatesPerCa = 'L-DFF54388', + RateOfPutPolicyRequests = 'L-506CC328', + RateOfGetCertificateRequests = 'L-1725E639', + RateOfDeletePermissionRequests = 'L-511291FD', + RateOfListPermissionsRequests = 'L-20AFF03D', + RateOfGetCertificateAuthorityCertificateRequests = 'L-6C533034', + RateOfCreateCertificateAuthorityRequests = 'L-01B8608D', +} +export enum AmazonManagedWorkflowsForApacheAirflowQuota { + EnvironmentsPerAccountPerRegion = 'L-67D41C6B', + WorkersPerEnvironment = 'L-78AC1883', +} +export enum AwsAmplifyQuota { + BuildArtifactSize = 'L-895E890C', + CacheArtifactSize = 'L-EC4C0FC7', + Apps = 'L-1BED97F3', + WebhooksPerApp = 'L-4113FC04', + EnvironmentCacheArtifactSize = 'L-A0FC4951', + ManualDeployZipFileSize = 'L-D95E5509', + MaximumAppCreationsPerHour = 'L-2FC3A2FA', + BranchesPerApp = 'L-A6716586', + ConcurrentJobs = 'L-2A8ABB91', + SubdomainsPerDomain = 'L-85685B2E', + DomainsPerApp = 'L-AD277529', +} +export enum AmplifyUiBuilderQuota { + ThemeSize = 'L-D500C0BA', + FormSize = 'L-A25B72F2', + ViewsPerApp = 'L-E4AD9560', + ComponentsPerApp = 'L-E5E3CF14', + ThemesPerApp = 'L-429DD3BA', + ComponentSize = 'L-4FE3AB63', + ViewSize = 'L-CA57203B', + FormsPerApp = 'L-F527F6EB', +} +export enum AmazonOpenSearchServerlessQuota { + EncryptionPolicySize = 'L-2005AF7E', + NetworkPolicySize = 'L-877395DB', + DefaultIndexingCapacityOcUs = 'L-50FA809B', + SamlProviders = 'L-1D4405ED', + DataAccessPolicySize = 'L-81F90FD2', + NetworkPolicies = 'L-92280D4D', + RetentionPolicySize = 'L-7077B8EB', + RetentionPolicies = 'L-F447691F', + DefaultSearchCapacityOcUs = 'L-4E98D4EB', + EncryptionPolicies = 'L-3EDA8079', + DataAccessPolicies = 'L-C3AEE11F', + MaximumIndexingCapacityOcUs = 'L-B813BFF3', + MaximumSearchCapacityOcUs = 'L-B0736F4C', + SamlProviderSize = 'L-380319CD', +} +export enum AmazonApiGatewayQuota { + RegionalApIs = 'L-AA0FF27B', + MaximumIterationsInMappingTemplate = 'L-8E6A5A87', + ThrottleRate = 'L-8A5B8E43', + ResourcesRoutesPerRestWebSocketApi = 'L-01C8A9E0', + WebSocketMessagePayloadSize = 'L-FD0EB744', + EdgeOptimizedApIs = 'L-B97207D0', + RoutesPerHttpApi = 'L-65B5C802', + WebSocketNewConnectionsBurstRate = 'L-E1465507', + StageVariablesPerStage = 'L-95BA6EA5', + WebSocketFrameSize = 'L-E11F7D5D', + ApiKeys = 'L-1D180A63', + TagsPerStage = 'L-FB4F0270', + VpcLinksV2 = 'L-608BDCD4', + EdgeApiUrlLength = 'L-9C147DE4', + StagesPerApi = 'L-379E48B0', + WebSocketNewConnectionsRate = 'L-9ED1E49A', + MaximumCombinedHeaderSize = 'L-E9EEB922', + RegionalApiUrlLength = 'L-A7033131', + CustomDomainNames = 'L-A93447B8', + UsagePlans = 'L-E8693075', + StageVariableKeyLength = 'L-3A613F94', + AwsLambdaAuthorizerResultSize = 'L-20859C74', + VpcLinks = 'L-A4C7274F', + SubnetsPerVpcLinkV2 = 'L-668C9B28', + StageVariableValueLength = 'L-B2CF62DC', + MaximumCachedResponseSize = 'L-CC2525B6', + UsagePlansPerApiKey = 'L-985EB478', + ThrottleBurstRate = 'L-CDF5615A', + WebSocketIdleConnectionTimeout = 'L-60AC41CD', + MethodArnLength = 'L-5244589D', + MaximumIntegrationTimeoutInMilliseconds = 'L-E5AE38E3', + MaximumApiCachingTtl = 'L-8C2F9A1D', + ApiPayloadSize = 'L-46624B39', + MaximumResourcePolicySizeInBytes = 'L-8B81B02C', + PrivateApIs = 'L-A966AB5C', + ClientCertificates = 'L-824C9E42', + ConnectionDurationForWebSocketApi = 'L-A6CCE716', + ApiStageThrottlesInAUsagePlan = 'L-A9DBC573', +} +export enum AmazonConnectApplicationIntegrationsQuota { + DataIntegrationAssociationsPerDataIntegration = 'L-3DEFA101', + EventIntegrationAssociationsPerEventIntegration = 'L-C1BC25C8', + EventIntegrationsPerRegion = 'L-152D3E9E', + DataIntegrationsPerRegion = 'L-013E1287', +} +export enum AwsAppConfigQuota { + MaximumNumberOfApplications = 'L-EEB0151E', + MaximumNumberOfEnvironmentsPerApplication = 'L-A52E46BE', + DeploymentSizeLimit = 'L-A5FC0339', + ConfigurationSizeLimitInAwsAppConfigHostedConfigurationStore = 'L-48F9B951', + MaximumNumberOfConfigurationProfilesPerApplication = 'L-FA210A1F', + MaximumNumberOfDeploymentStrategies = 'L-F59D302B', +} +export enum AwsAppFabricQuota { + ApplicationAuthorizations = 'L-BB0B9CE1', + ApplicationBundles = 'L-ED04F253', + IngestionDestinations = 'L-8C7820E5', + Ingestions = 'L-CF5F52C9', +} +export enum AmazonAppFlowQuota { + RateOfSalesforceFlowRuns = 'L-08C0216C', + RateOfDynatraceFlowRuns = 'L-E4F85654', + MarketoFlowRunSize = 'L-8D48E59D', + RateOfSingularFlowRuns = 'L-B83E07B6', + RateOfZendeskFlowRuns = 'L-B9D35708', + TotalFlows = 'L-A847D5B6', + GoogleAnalyticsDimensions = 'L-CB07633A', + SalesforceFlowRunDataImportSize = 'L-F2770EE5', + MonthlyFlowRuns = 'L-B96D9407', + SalesforceFlowRunDataExportSize = 'L-7B39106B', + RateOfVeevaFlowRuns = 'L-72533C43', + RateOfAmazonS3FlowRuns = 'L-83886F7C', + AmazonAppFlowFlowRunSize = 'L-D365AAEF', + ConcurrentFlowRuns = 'L-B2798F93', + RateOfMarketoFlowRuns = 'L-1C312742', + GoogleAnalyticsMetrics = 'L-C2298606', + AmplitudeFlowRunSize = 'L-82E46C0E', + ConnectorProfiles = 'L-0F8AA170', + RateOfSlackFlowRuns = 'L-31313F92', + SalesforceEventSize = 'L-120EC365', + AmazonEventBridgeEventSize = 'L-0F498C1E', + RateOfTrendMicroFlowRuns = 'L-5BA24048', + ServiceNowRecords = 'L-787B0C0A', + RateOfInforNexusFlowRuns = 'L-F3D880AA', + RateOfGoogleAnalyticsFlowRuns = 'L-DC8DB590', + RateOfServiceNowFlowRuns = 'L-AB51459B', + RateOfSalesforcePardotFlowRuns = 'L-ABFA35F9', + RateOfDatadogFlowRuns = 'L-DF14FA4F', + RateOfAmplitudeFlowRuns = 'L-FE9BF330', + RateOfAmazonAppFlowFlowRuns = 'L-7A25FF64', +} +export enum ApplicationAutoScalingQuota { + ScalableTargetsForDynamoDb = 'L-A1D42901', + ScalableTargetsForComprehend = 'L-17D5F681', + ScalableTargetsForAppStream = 'L-8998F403', + ScheduledActionsPerScalableTarget = 'L-95848B5F', + ScalableTargetsForEc2 = 'L-297D9EC9', + ScalableTargetsForLambda = 'L-A2AD6458', + ScalableTargetsForAmazonKeyspaces = 'L-799ACCDF', + ScalableTargetsForAmazonMsk = 'L-1A11EB4B', + ScalableTargetsForRds = 'L-800F6F7B', + ScalableTargetsForEmr = 'L-D75CA9D2', + ScalingPoliciesPerScalableTarget = 'L-B395C81B', + ScalableTargetsForSageMaker = 'L-1AAF0700', + StepAdjustmentsPerStepScalingPolicy = 'L-9C25247C', + ScalableTargetsForCustomResources = 'L-4A11ECEB', + ScalableTargetsForAmazonElastiCache = 'L-60E4E5E2', + ScalableTargetsForEcs = 'L-782A3EE2', +} +export enum AwsApplicationCostProfilerQuota { + RateOfDeleteReportDefinitionRequests = 'L-BBD581C3', + ImportApplicationUsageThrottleBurstLimit = 'L-FEF42E6F', + ListReportDefinitionsThrottleBurstLimit = 'L-F256677B', + RateOfGetReportDefinitionRequests = 'L-4C04D306', + DeleteReportDefinitionThrottleBurstLimit = 'L-E2B58659', + UpdateReportDefinitionThrottleBurstLimit = 'L-58C003B8', + RateOfPutReportDefinitionRequests = 'L-C7CB7496', + GetReportDefinitionThrottleBurstLimit = 'L-0DFF26C1', + MaximumSizeOfAnHourlyInstrumentationFile = 'L-4BF27576', + RateOfListReportDefinitionsRequests = 'L-FE0C4696', + RateOfUpdateReportDefinitionRequests = 'L-C390E0D6', + PutReportDefinitionThrottleBurstLimit = 'L-71F983E5', + RateOfImportApplicationUsageRequests = 'L-E5B36EF1', +} +export enum AwsAppMeshQuota { + VirtualNodesPerMesh = 'L-E043DFB4', + GatewayRoutesPerVirtualGateway = 'L-F6F26D09', + VirtualServicesPerMesh = 'L-DA7495A7', + BackendsPerVirtualNode = 'L-8775AB18', + VirtualRoutersPerMesh = 'L-50F6C35A', + ConnectedEnvoyProcessesPerVirtualNode = 'L-606A910B', + VirtualGatewaysPerMesh = 'L-87E74146', + RoutesPerVirtualRouter = 'L-BB90B7FF', + WeightedTargetsPerRoute = 'L-AE1D9567', + MeshesPerAccount = 'L-AC861A39', + ConnectedEnvoyProcessesPerVirtualGateway = 'L-33E8F9C9', +} +export enum AwsAppRunnerQuota { + Services = 'L-69F96A0C', + ObservabilityConfigurations = 'L-A0B46A0C', + Connections = 'L-1BDBAAB6', + AutoScalingConfigurations = 'L-1D8C5BDD', + VpcConnectors = 'L-F7ADEB8C', + VpcIngressConnections = 'L-4064914D', +} +export enum AmazonAppStream20Quota { + MemoryOptimizedZ1d3xlargeStreamingInstancesForImageBuilders = 'L-5F444726', + MemoryOptimizedZ1d12xlargeStreamingInstancesForImageBuilders = 'L-5A477D03', + GraphicsG58xlargeStreamingInstancesForFleets = 'L-756CAD5B', + GraphicsG4DnXlargeStreamingInstancesForImageBuilders = 'L-E0AF1F7E', + GraphicsG4Dn12xlargeStreamingInstancesForFleets = 'L-64A79F98', + MaxAppBlockBuildersWithWindowsServer2019PlatformAndStreamStandardSmallInstanceType = 'L-4015AFBC', + StandardMediumStreamingInstancesForFleets = 'L-59CF7EF6', + GraphicsG54xlargeStreamingInstancesForFleets = 'L-22A636D1', + Fleets = 'L-8A6F32DC', + StandardLargeStreamingInstancesForImageBuilders = 'L-76C589E8', + AppBlockBuilders = 'L-D949908C', + GraphicsDesign2xlargeStreamingInstancesForFleets = 'L-BA00F320', + GraphicsG512xlargeStreamingInstancesForImageBuilders = 'L-D6D82AD0', + GraphicsG4Dn8xlargeStreamingInstancesForImageBuilders = 'L-3E935099', + GraphicsG4Dn4xlargeStreamingInstancesForFleets = 'L-92328C81', + MaxConcurrentSessionsForElasticFleetsWithAmazonLinux2PlatformAndStreamStandardXlargeInstanceType = 'L-76EF9A4A', + GraphicsG52xlargeStreamingInstancesForFleets = 'L-880853F1', + MaxAppBlockBuildersWithWindowsServer2019PlatformAndStreamStandardMediumInstanceType = 'L-E98A2430', + MemoryOptimizedLargeStreamingInstancesForImageBuilders = 'L-7FFD9C23', + GraphicsPro16xlargeStreamingInstancesForFleets = 'L-C5E17995', + GraphicsDesignLargeStreamingInstancesForFleets = 'L-A9DBC136', + GraphicsG4Dn2xlargeStreamingInstancesForImageBuilders = 'L-537E304B', + MemoryOptimizedXlargeStreamingInstancesForFleets = 'L-BAEB3705', + MemoryOptimizedZ1d6xlargeStreamingInstancesForFleets = 'L-1DDAE257', + GraphicsG4Dn16xlargeStreamingInstancesForFleets = 'L-503FABB4', + MaxConcurrentSessionsForElasticFleetsWithAmazonLinux2PlatformAndStreamStandardMediumInstanceType = 'L-BF099F8F', + GraphicsDesktop2xlargeStreamingInstancesForImageBuilders = 'L-B3B2E1D8', + GraphicsG524xlargeStreamingInstancesForFleets = 'L-4ED95C84', + GraphicsG4Dn4xlargeStreamingInstancesForImageBuilders = 'L-15883678', + MemoryOptimized8xlargeStreamingInstancesForFleets = 'L-1C87C4A5', + StandardXlargeStreamingInstancesForImageBuilders = 'L-F8E20476', + ComputeOptimized2xlargeStreamingInstancesForFleets = 'L-22B15436', + GraphicsG58xlargeStreamingInstancesForImageBuilders = 'L-5D6E72E6', + GraphicsG4Dn16xlargeStreamingInstancesForImageBuilders = 'L-F3D0F9E2', + Stacks = 'L-A8B8B901', + MemoryOptimizedLargeStreamingInstancesForFleets = 'L-E200E807', + ComputeOptimized8xlargeStreamingInstancesForImageBuilders = 'L-88E58796', + MaxConcurrentSessionsForElasticFleetsWithWindowsServer2019PlatformAndStreamStandard2xlargeInstanceType = 'L-AAFE9A06', + StandardMediumStreamingInstancesForImageBuilders = 'L-B16A2AA7', + ImageBuilders = 'L-DE32F884', + GraphicsG5XlargeStreamingInstancesForFleets = 'L-5FE41F5B', + MemoryOptimized8xlargeStreamingInstancesForImageBuilders = 'L-0A26B79A', + ComputeOptimized4xlargeStreamingInstancesForFleets = 'L-2A70DFAA', + MemoryOptimizedZ1dXlargeStreamingInstancesForImageBuilders = 'L-99B57C8C', + MemoryOptimizedZ1d3xlargeStreamingInstancesForFleets = 'L-1883A661', + ImageSharingLimit = 'L-99A44980', + ComputeOptimizedLargeStreamingInstancesForFleets = 'L-63D777D1', + MemoryOptimizedZ1dLargeStreamingInstancesForFleets = 'L-19CE5BF0', + MemoryOptimizedZ1d12xlargeStreamingInstancesForFleets = 'L-C1822B2A', + StandardSmallStreamingInstancesForImageBuilders = 'L-94EC4C6F', + GraphicsDesign4xlargeStreamingInstancesForFleets = 'L-BDBE16B7', + MemoryOptimizedXlargeStreamingInstancesForImageBuilders = 'L-DE1021FB', + ComputeOptimizedXlargeStreamingInstancesForImageBuilders = 'L-A3782476', + Standard2xlargeStreamingInstancesForImageBuilders = 'L-7FBFD97B', + GraphicsG512xlargeStreamingInstancesForFleets = 'L-4942E302', + GraphicsDesignXlargeStreamingInstancesForImageBuilders = 'L-7D331840', + ComputeOptimized2xlargeStreamingInstancesForImageBuilders = 'L-400A7BA5', + GraphicsPro16xlargeStreamingInstancesForImageBuilders = 'L-B4068835', + StandardSmallStreamingInstancesForFleets = 'L-F302715A', + MemoryOptimized2xlargeStreamingInstancesForImageBuilders = 'L-53789675', + GraphicsG54xlargeStreamingInstancesForImageBuilders = 'L-ABD9CD0F', + MemoryOptimizedZ1d2xlargeStreamingInstancesForImageBuilders = 'L-C6026CF3', + UsersInTheUserPool = 'L-6A8C9986', + MemoryOptimizedZ1dLargeStreamingInstancesForImageBuilders = 'L-0E4BC645', + MaxConcurrentSessionsForElasticFleetsWithWindowsServer2019PlatformAndStreamStandardMediumInstanceType = 'L-80C2425D', + ComputeOptimizedXlargeStreamingInstancesForFleets = 'L-7F9576D3', + MaxConcurrentSessionsForElasticFleetsWithWindowsServer2019PlatformAndStreamStandardLargeInstanceType = 'L-FC27F387', + MaxAppBlockBuildersWithWindowsServer2019PlatformAndStreamStandard2xlargeInstanceType = 'L-FE087B3F', + GraphicsDesktop2xlargeStreamingInstancesForFleets = 'L-7549EFF1', + ActiveFleets = 'L-3FEADC0C', + ComputeOptimizedLargeStreamingInstancesForImageBuilders = 'L-6203AEB6', + GraphicsDesignLargeStreamingInstancesForImageBuilders = 'L-85C46326', + GraphicsG516xlargeStreamingInstancesForImageBuilders = 'L-A23829AD', + GraphicsPro8xlargeStreamingInstancesForImageBuilders = 'L-F53024C1', + StandardXlargeStreamingInstancesForFleets = 'L-8BCFD092', + MemoryOptimizedZ1d6xlargeStreamingInstancesForImageBuilders = 'L-0EF32B70', + MaxAppBlockBuildersWithWindowsServer2019PlatformAndStreamStandardLargeInstanceType = 'L-234D5738', + MaxConcurrentSessionsForElasticFleetsWithWindowsServer2019PlatformAndStreamStandardXlargeInstanceType = 'L-BCE5E288', + MemoryOptimizedZ1dXlargeStreamingInstancesForFleets = 'L-5A310F0A', + GraphicsG516xlargeStreamingInstancesForFleets = 'L-AAB87D99', + MemoryOptimized4xlargeStreamingInstancesForImageBuilders = 'L-D56E1EB1', + GraphicsG4DnXlargeStreamingInstancesForFleets = 'L-3D9782E8', + MaxConcurrentSessionsForElasticFleetsWithWindowsServer2019PlatformAndStreamStandardSmallInstanceType = 'L-36A62DB5', + MaxConcurrentSessionsForElasticFleetsWithAmazonLinux2PlatformAndStreamStandardSmallInstanceType = 'L-B2A2DC75', + GraphicsG524xlargeStreamingInstancesForImageBuilders = 'L-2F62DC97', + GraphicsG4Dn2xlargeStreamingInstancesForFleets = 'L-98A64E5D', + GraphicsG4Dn8xlargeStreamingInstancesForFleets = 'L-CAB64ED6', + StandardLargeStreamingInstancesForFleets = 'L-94844324', + ConcurrentImageCopiesPerDestinationRegion = 'L-60244546', + MaxConcurrentSessionsForElasticFleetsWithAmazonLinux2PlatformAndStreamStandardLargeInstanceType = 'L-27527629', + MemoryOptimized2xlargeStreamingInstancesForFleets = 'L-B901F589', + MemoryOptimized4xlargeStreamingInstancesForFleets = 'L-9BBA5ECA', + MemoryOptimizedZ1d2xlargeStreamingInstancesForFleets = 'L-93661678', + GraphicsDesignXlargeStreamingInstancesForFleets = 'L-A3275215', + GraphicsG52xlargeStreamingInstancesForImageBuilders = 'L-DDA4AD40', + GraphicsDesign2xlargeStreamingInstancesForImageBuilders = 'L-30CF85CE', + GraphicsDesign4xlargeStreamingInstancesForImageBuilders = 'L-32513EC9', + GraphicsG5XlargeStreamingInstancesForImageBuilders = 'L-5B2F0776', + Standard2xlargeStreamingInstancesForFleets = 'L-AD23D7D9', + MaxAppBlockBuildersWithWindowsServer2019PlatformAndStreamStandardXlargeInstanceType = 'L-E0AFD4FF', + PrivateImages = 'L-E1182CCA', + ComputeOptimized4xlargeStreamingInstancesForImageBuilders = 'L-C862459E', + GraphicsPro4xlargeStreamingInstancesForFleets = 'L-70318001', + GraphicsPro4xlargeStreamingInstancesForImageBuilders = 'L-B489BF44', + GraphicsPro8xlargeStreamingInstancesForFleets = 'L-6F6573C4', + MaxConcurrentSessionsForElasticFleetsWithAmazonLinux2PlatformAndStreamStandard2xlargeInstanceType = 'L-9528F248', + ComputeOptimized8xlargeStreamingInstancesForFleets = 'L-F15148F0', + GraphicsG4Dn12xlargeStreamingInstancesForImageBuilders = 'L-5E39616B', + ConcurrentImageUpdates = 'L-9B6418E0', +} +export enum AwsAppSyncQuota { + RateOfRequestTokens = 'L-FC5E46D0', + ApiKeysPerApi = 'L-06A0647C', + RequestExecutionTimeForMutationsQueriesAndSubscriptions = 'L-629488CF', + SubscriptionsPerConnection = 'L-AA33EB36', + MaxBatchSize = 'L-69193794', + SchemaDocumentSize = 'L-352DA8E7', + ApIsPerRegion = 'L-4DFA3D2F', + NumberOfCustomDomainNames = 'L-51A37BC6', + FunctionsPerPipelineResolver = 'L-855DA767', + NumberOfCachingKeys = 'L-58A9E1D6', + ResponseMappingTemplateSize = 'L-B94CDCB7', + SubscriptionPayloadSize = 'L-F21064F0', + RateOfSubscriptionInvalidationRequests = 'L-4456C49D', + IterationsInAForeachLoopInMappingTemplates = 'L-5684A2A5', + AuthenticationProvidersPerApi = 'L-E7CCBB11', + RequestMappingTemplateSize = 'L-7FC6D61A', + EvaluatedResolverTemplateSize = 'L-1BB7D45F', + ResolversExecutedInASingleRequest = 'L-97EB21C3', +} +export enum AmazonManagedPrometheusQuota { + NodesInAlertManagerRoutingTree = 'L-E3E60B3E', + WorkspacesPerRegionPerAccount = 'L-8873DB23', + AlertManagerDefinitionFileSize = 'L-3316EF76', + RuleEvaluationInterval = 'L-8DEDEE8E', + NumberOfApiOperationsInTransactionsPerSecond = 'L-8491EB93', + RequestSize = 'L-B71C1602', + MetadataPerMetric = 'L-469A77CF', + RulesPerWorkspace = 'L-3D15CDB4', + QueryChunksFetched = 'L-CB11FC5C', + AlertPayloadSizePerAlertManager = 'L-3E2A717A', + QuerySamples = 'L-D01F3F3F', + LabelSize = 'L-8E142053', + AlertsPerAlertManager = 'L-E9CD1A4F', + QueryBytesForRangeQueries = 'L-44FE2FA3', + RuleGroupNamespaceDefinitionFileSize = 'L-C62641E3', + ActiveSeriesPerWorkspace = 'L-5A151448', + HaTrackerClusters = 'L-110BFC6B', + IngestionBurstSizePerWorkspace = 'L-0CBB39EF', + QuerySeriesFetched = 'L-4D4AB00D', + QueryTimeRangeInDays = 'L-2551415B', + AlertAggregationGroupSizeInAlertManagerDefinitionFile = 'L-BDF9895D', + RetentionTimeForIngestedDataInDays = 'L-06C12D7C', + InhibitionRulesInAlertManagerDefinitionFile = 'L-46D5E194', + ActiveMetricsWithMetadataPerWorkspace = 'L-40DA9328', + LabelsPerMetricSeries = 'L-CDA4AB0F', + TemplatesInAlertManagerDefinitionFile = 'L-0F151AA2', + QueryBytesForInstantQueries = 'L-140BEF25', + IngestionRatePerWorkspace = 'L-F4BCE0BA', + MetadataLength = 'L-ECC75BFE', +} +export enum AmazonAthenaQuota { + ActiveDmlQueries = 'L-FC5F6546', + ActiveDdlQueries = 'L-3CE0BBA0', + ApacheSparkDpuConcurrency = 'L-5A8D5237', + DmlQueryTimeout = 'L-E80DC288', + DdlQueryTimeout = 'L-56A94400', + ProvisionedDpu = 'L-40F7C776', +} +export enum AwsAuditManagerQuota { + CustomFrameworks = 'L-8935A6F1', + RunningAssessments = 'L-92B50F18', + CustomControls = 'L-0255B75F', +} +export enum AmazonEc2AutoScalingQuota { + LaunchConfigurationsPerRegion = 'L-6B80B8FA', + AutoScalingGroupsPerRegion = 'L-CDE20ADC', + ClassicLoadBalancersPerAutoScalingGroup = 'L-F786B2E5', + StepAdjustmentsPerStepScalingPolicy = 'L-6C2A2F6E', + ScalingPoliciesPerAutoScalingGroup = 'L-72753F6F', + TargetGroupsPerAutoScalingGroup = 'L-05CB8B12', + ScheduledActionsPerAutoScalingGroup = 'L-F0B00D71', + SnsTopicsPerAutoScalingGroup = 'L-CEE5E714', + LifecycleHooksPerAutoScalingGroup = 'L-1312BBBF', +} +export enum AwsAutoScalingPlansQuota { + ScalingPlans = 'L-BD401546', + ScalingInstructionsPerScalingPlan = 'L-7FAA513E', + TargetTrackingConfigurationsPerScalingInstruction = 'L-6538FA5E', +} +export enum AwsMarketplaceDeploymentServiceQuota { + UntagResourceThrottleQuota = 'L-89CB4A7B', + AwsSecretsManagerUpdateQuota = 'L-C7D3422D', + ListTagsForResourceThrottleQuota = 'L-ED45E2CF', + DeploymentParameterQuota = 'L-E7D4DC07', + PutDeploymentParameterThrottleQuota = 'L-F2ACDC68', + SecretStringNameLength = 'L-D27023C6', + DeploymentParameterNameLength = 'L-5CF28861', + ClientTokenQuota = 'L-DCC6372C', + TagListQuota = 'L-400CDB96', + TagResourceThrottleQuota = 'L-ACDA722B', +} +export enum B2BDataInterchangeQuota { + Transformers = 'L-E15C983E', + Partnerships = 'L-CD5D2786', + Capabilities = 'L-19B5E505', + Profiles = 'L-05F6A9EF', +} +export enum AwsBackupQuota { + FrameworksPerReportPlan = 'L-9CAF0B92', + BackupVaultsPerRegionPerAccount = 'L-7705D2CB', + FrameworksPerRegionPerAccount = 'L-E43E0ED6', + FrameworkControlsPerRegionPerAccount = 'L-B4021FB0', + VersionsPerBackupPlan = 'L-9122A82F', + RecoveryPointsPerBackupVault = 'L-514878B6', + MaximumBackupNestLevel = 'L-C0A8C14B', + ConcurrentBackupJobsPerResource = 'L-366B61FD', + BackupPlansPerRegionPerAccount = 'L-BD69F607', + ReportPlansPerRegionPerAccount = 'L-C296F1F5', + MetadataTagsPerBackup = 'L-FB1D55EC', + ConcurrentBackupCopiesPerSupportedServicePerAccount = 'L-FFD6444F', +} +export enum AwsBatchQuota { + JobPayloadSizeLimit = 'L-6B86CF1E', + ComputeEnvironmentsPerJobQueueLimit = 'L-F8102809', + TransactionsPerSecondForSubmitJobLimit = 'L-E985971C', + JobDefinitionSizeLimit = 'L-E6A2743D', + JobDependenciesLimit = 'L-AD075A76', + SubmittedStateJobsLimit = 'L-65F8BA2C', + MaximumArraySizeLimit = 'L-F9381E33', + ComputeEnvironmentLimit = 'L-144F0CA5', + JobQueueLimit = 'L-4CEA37AD', + ShareIdentifiersPerJobQueueLimit = 'L-C997A649', +} +export enum AwsBillingAndCostManagementDataExportsQuota { + RateOfCreateExportRequests = 'L-6BC4036C', + RateOfGetExportRequests = 'L-D42ECD8D', + RateOfGetExecutionRequests = 'L-82ED4626', + RateOfListTablesRequests = 'L-7C44126E', + RateOfListTagsForResourceRequests = 'L-706FC373', + RateOfUntagResourceRequests = 'L-06343302', + NumberOfExportsForCostAndUsageDashboardTable = 'L-E91B9877', + RateOfListExportsRequests = 'L-0180E31A', + RateOfDeleteExportRequests = 'L-EE60D8DF', + RateOfGetTableRequests = 'L-4871EF9D', + RateOfUpdateExportRequests = 'L-7736CE93', + RateOfListExecutionsRequests = 'L-BE9B2CED', + RateOfTagResourceRequests = 'L-2066EB0C', + NumberOfExportsForCostAndUsageReportTable = 'L-640EAB70', +} +export enum AmazonBedrockQuota { + CustomModelsPerAccount = 'L-CB5B847D', + OnDemandInvokeModelTokensPerMinuteForAmazonTitanExpress = 'L-44992E63', + OnDemandInvokeModelTokensPerMinuteForAnthropicClaudeInstant = 'L-F7007F39', + OnDemandInvokeModelRequestsPerMinuteForCohereCommandLight = 'L-B802A131', + OnDemandInvokeModelTokensPerMinuteForCohereEmbedEnglish = 'L-A2BE277A', + OnDemandInvokeModelTokensPerMinuteForAi21LabsJurassic2Ultra = 'L-A4F5E139', + ModelUnitsPerProvisionedModelForAnthropicClaudeV2100K = 'L-C4522D0D', + OnDemandInvokeModelRequestsPerMinuteForAmazonTitanTextEmbeddings = 'L-879F6850', + OnDemandInvokeModelTokensPerMinuteForCohereCommandLight = 'L-B63536E3', + OnDemandInvokeModelRequestsPerMinuteForCohereCommand = 'L-3B3BFACF', + OnDemandInvokeModelTokensPerMinuteForAmazonTitanTextEmbeddings = 'L-74B5B793', + ModelUnitsPerProvisionedModelForAnthropicClaudeV21200K = 'L-A63633C5', + ModelUnitsPerProvisionedModelForAnthropicClaudeV218K = 'L-73573F44', + ModelUnitsPerProvisionedModelForStableDiffusionXl10 = 'L-9149A536', + OnDemandInvokeModelRequestsPerMinuteForMetaLlama2Chat13B = 'L-674F621D', + OnDemandInvokeModelRequestsPerMinuteForAi21LabsJurassic2Mid = 'L-75D9A33A', + ModelUnitsPerProvisionedModelForTitanEmbeddingsG1Text = 'L-F879F645', + OnDemandInvokeModelRequestsPerMinuteForAnthropicClaudeInstant = 'L-8CEDED9C', + ModelUnitsPerProvisionedModelForTitanTextG1Express8K = 'L-8129BF10', + ScheduledTrainingJobs = 'L-8CF23103', + ModelUnitsPerProvisionedModelForMetaLlama2Chat13B = 'L-AC6F8476', + OnDemandInvokeModelTokensPerMinuteForAnthropicClaudeV2 = 'L-B0D9183E', + OnDemandInvokeModelTokensPerMinuteForCohereCommand = 'L-4E833B8F', + OnDemandInvokeModelRequestsPerMinuteForAmazonTitanExpress = 'L-9EAB0D12', + OnDemandInvokeModelTokensPerMinuteForAi21LabsJurassic2Mid = 'L-ABEE1010', + OnDemandInvokeModelRequestsPerMinuteForAnthropicClaudeV2 = 'L-F3B698BE', + OnDemandInvokeModelRequestsPerMinuteForCohereEmbedMultilingual = 'L-9E5BD0C6', + ModelUnitsPerProvisionedModelForAnthropicClaudeV2118K = 'L-7478F443', + OnDemandInvokeModelTokensPerMinuteForMetaLlama2Chat13B = 'L-6DB35E51', + ModelUnitsPerProvisionedModelForAnthropicClaudeInstantV1100K = 'L-4A6D2F15', + OnDemandInvokeModelRequestsPerMinuteForCohereEmbedEnglish = 'L-FF8E7864', + OnDemandInvokeModelTokensPerMinuteForCohereEmbedMultilingual = 'L-C2F86908', + OnDemandInvokeModelRequestsPerMinuteForStabilityAiDiffusionXl10 = 'L-CC58F0A8', + OnDemandInvokeModelRequestsPerMinuteForAi21LabsJurassic2Ultra = 'L-A48E31B4', +} +export enum AmazonBedrockAgentQuota { + CharactersInAgentInstructions = 'L-6E3CDA2D', + AssociatedKnowledgeBasesPerAgent = 'L-13143995', + ApIsPerAgent = 'L-6B2DA87E', + AgentsPerAccount = 'L-97D79C54', + AssociatedAliasesPerAgent = 'L-6E57E827', + ActionGroupsPerAgent = 'L-5DAAE567', +} +export enum AwsBillingConductorQuota { + CustomLineItems = 'L-6A7F198B', + PricingRulesPerPricingPlan = 'L-65F90CBC', + PricingRules = 'L-AA2FA005', + AccountsPerBillingGroup = 'L-4008823B', + BillingGroups = 'L-10E5FE79', + CustomLineItemsWithLineItemFilters = 'L-E4FB5498', + ResourceValuesPerPercentageCustomLineItem = 'L-B185E19E', + PricingPlans = 'L-F16D2B15', + AssociationsPerFlatCustomLineItem = 'L-3384ACF5', + PricingPlansPerPricingRule = 'L-2DD50B87', +} +export enum AmazonBraketQuota { + MaximumNumberOfInstancesOfMlG548xlargeForJobs = 'L-273D7A29', + NumberOfConcurrentDm1Tasks = 'L-B1492482', + MaximumNumberOfInstancesOfMlP216xlargeForJobs = 'L-8FFA00B6', + MaximumNumberOfInstancesOfMlG58xlargeForJobs = 'L-F286AE81', + MaximumNumberOfInstancesOfMlC59xlargeForJobs = 'L-6717BDE3', + RateOfGetDeviceRequests = 'L-08E356CB', + NumberOfConcurrentSv1Tasks = 'L-5C6AF476', + MaximumNumberOfInstancesOfMlG4dn16xlargeForJobs = 'L-D0B25526', + MaximumNumberOfInstancesOfMlC52xlargeForJobs = 'L-1DE68820', + OneQubitGateLimitForAria = 'L-160EEC2D', + RateOfGetJobRequests = 'L-C4A587F5', + MaximumNumberOfInstancesOfMlP32xlargeForJobs = 'L-BC259EA2', + MaximumNumberOfInstancesOfMlP4d24xlargeForJobs = 'L-6EBE29BC', + RateOfGetQuantumTaskRequests = 'L-69571C39', + RateOfCancelJobRequests = 'L-9F76E1C6', + MaximumNumberOfInstancesOfMlM52xlargeForJobs = 'L-B4BD4D05', + MaximumNumberOfInstancesOfMlM42xlargeForJobs = 'L-35C855B5', + RateOfApiRequests = 'L-C9622EC0', + MaximumNumberOfInstancesOfMlM5XlargeForJobs = 'L-CEDB9365', + MaximumNumberOfInstancesOfMlG52xlargeForJobs = 'L-6ECB9FCD', + RateOfCreateQuantumTaskRequests = 'L-7DF279A8', + MaximumNumberOfInstancesOfMlM410xlargeForJobs = 'L-20DF4C21', + MaximumNumberOfInstancesOfMlC44xlargeForJobs = 'L-96E0F810', + NumberOfConcurrentTn1Tasks = 'L-A41DADC7', + RateOfSearchJobsRequests = 'L-622972C3', + MaximumNumberOfInstancesOfMlM4XlargeForJobs = 'L-A7DE49A7', + RateOfCreateJobRequests = 'L-1E4A0B71', + MaximumNumberOfInstancesOfMlC5n9xlargeForJobs = 'L-F39A58EA', + MaximumNumberOfInstancesOfMlG4dnXlargeForJobs = 'L-A95AE26D', + MaximumNumberOfInstancesOfMlC5XlargeForJobs = 'L-6976A449', + MaximumNumberOfInstancesOfMlC5n18xlargeForJobs = 'L-9E03561A', + RateOfSearchDevicesRequests = 'L-13BD7EBA', + MaximumNumberOfInstancesOfMlP38xlargeForJobs = 'L-9716E5CC', + RateOfSearchQuantumTasksRequests = 'L-D6597555', + TwoQubitGateLimitForAria = 'L-39357A2D', + MaximumNumberOfInstancesOfMlG4dn4xlargeForJobs = 'L-348592A9', + MaximumNumberOfInstancesOfMlC5n4xlargeForJobs = 'L-C32F31F5', + MaximumNumberOfInstancesOfMlC48xlargeForJobs = 'L-196E4F38', + MaximumNumberOfInstancesOfMlM54xlargeForJobs = 'L-935DC112', + MaximumNumberOfInstancesOfMlM44xlargeForJobs = 'L-E4856358', + MaximumNumberOfInstancesOfMlM524xlargeForJobs = 'L-8F2E9AB0', + MaximumNumberOfInstancesOfMlG4dn8xlargeForJobs = 'L-C3A58F27', + MaximumNumberOfInstancesOfMlG5XlargeForJobs = 'L-BC5AC149', + MaximumNumberOfInstancesOfMlP316xlargeForJobs = 'L-949DCF20', + MaximumNumberOfInstancesOfMlG4dn2xlargeForJobs = 'L-05622A08', + MaximumNumberOfInstancesOfMlC5nXlargeForJobs = 'L-5A303583', + MaximumNumberOfInstancesOfMlP2XlargeForJobs = 'L-2145059B', + MaximumNumberOfInstancesOfMlC4XlargeForJobs = 'L-899E4166', + MaximumNumberOfInstancesOfMlP3dn24xlargeForJobs = 'L-786BEA40', + MaximumNumberOfInstancesOfMlG54xlargeForJobs = 'L-7D59777E', + MaximumNumberOfInstancesOfMlP28xlargeForJobs = 'L-135B0588', + MaximumNumberOfInstancesOfMlM512xlargeForJobs = 'L-8EBDBB73', + MaximumNumberOfInstancesOfMlC54xlargeForJobs = 'L-0454F2B6', + MaximumNumberOfInstancesOfMlG512xlargeForJobs = 'L-223B68D6', + MaximumNumberOfInstancesOfMlG524xlargeForJobs = 'L-DFDAABC1', + MaximumNumberOfInstancesOfMlG516xlargeForJobs = 'L-6E6AF581', + RateOfCancelQuantumTaskRequests = 'L-4ADC64FC', + MaximumNumberOfInstancesOfMlG4dn12xlargeForJobs = 'L-3A92FCE1', + MaximumNumberOfInstancesOfMlM5LargeForJobs = 'L-D01386EB', + MaximumNumberOfInstancesOfMlC518xlargeForJobs = 'L-D76EFBC9', + MaximumNumberOfInstancesOfMlC5n2xlargeForJobs = 'L-8B0E23AD', + MaximumNumberOfInstancesOfMlC42xlargeForJobs = 'L-BDA9BB2A', + NumberOfConcurrentJobs = 'L-65BEB721', + MaximumNumberOfInstancesOfMlM416xlargeForJobs = 'L-15DC2286', + BurstRateOfGetJobRequests = 'L-FC813477', + BurstRateOfApiRequests = 'L-F745DB11', + BurstRateOfSearchQuantumTasksRequests = 'L-B7D624E6', + BurstRateOfCancelQuantumTaskRequests = 'L-8D5490DB', + BurstRateOfGetDeviceRequests = 'L-55B4A52E', + BurstRateOfCreateJobRequests = 'L-6995F793', + BurstRateOfSearchDevicesRequests = 'L-5331EF5B', + BurstRateOfGetQuantumTaskRequests = 'L-E72EF639', + BurstRateOfCreateQuantumTaskRequests = 'L-267FC218', + BurstRateOfSearchJobsRequests = 'L-DDEAA742', + MaximumAllowedComputeInstancesForAJob = 'L-5D1FC264', + BurstRateOfCancelJobRequests = 'L-E5D6ED91', +} +export enum AwsBugbustQuota { + ParticipantsPerBugBustEvent = 'L-77DF588D', + EventsPerAwsRegion = 'L-B85B67B8', + RepositoriesPerBugBustEvent = 'L-5524BC2D', + ProfilingGroupsPerBugBustEvent = 'L-E6CEA7E1', +} +export enum AmazonConnectCasesQuota { + ListTemplatesRateQuota = 'L-1F4F11B7', + GetLayoutRateQuota = 'L-E5EE4EDA', + CreateDomainRateQuota = 'L-9BEF063B', + ListTagsForResourceBurstQuota = 'L-4CE16517', + GetCaseRateQuota = 'L-8B6DA341', + LayoutsPerDomain = 'L-D0ED993F', + GetTemplateRateQuota = 'L-8AA97C3E', + UntagResourceRateQuota = 'L-515ED5E2', + BatchPutFieldOptionsBurstQuota = 'L-A298B896', + CreateLayoutRateQuota = 'L-7736E0FB', + FieldsPerDomain = 'L-C5B69356', + FieldOptionsPerField = 'L-E52A0E46', + SearchCasesBurstQuota = 'L-533535BF', + ListCasesForContactRateQuota = 'L-A246B577', + GetLayoutBurstQuota = 'L-B3860F14', + GetDomainRateQuota = 'L-FD0EC666', + ListLayoutsRateQuota = 'L-4B3D8F5F', + GetCaseBurstQuota = 'L-7D6B0EAF', + UpdateCaseBurstQuota = 'L-1D2B06EC', + CaseFieldsPerLayout = 'L-5B5E62BD', + SearchRelatedItemsBurstQuota = 'L-5E8805C5', + CreateLayoutBurstQuota = 'L-FF9E638C', + UpdateFieldBurstQuota = 'L-A96CA735', + PutCaseEventConfigurationRateQuota = 'L-5462CD7A', + BatchGetFieldBurstQuota = 'L-D3F1EBFD', + CreateRelatedItemRateQuota = 'L-1F185B9F', + UpdateLayoutBurstQuota = 'L-6743683C', + BatchPutFieldOptionsRateQuota = 'L-F5011010', + GetTemplateBurstQuota = 'L-1320C83D', + GetDomainBurstQuota = 'L-9B7552E3', + UpdateTemplateRateQuota = 'L-B5BE889D', + CreateTemplateBurstQuota = 'L-E77680D7', + ListFieldsRateQuota = 'L-D750A577', + CreateTemplateRateQuota = 'L-26EE2CFC', + UpdateFieldRateQuota = 'L-CC009CC4', + ListFieldOptionsRateQuota = 'L-B7E2C410', + ListFieldsBurstQuota = 'L-7CF7A4F0', + UpdateTemplateBurstQuota = 'L-2AD9F9AD', + ListLayoutsBurstQuota = 'L-960AA7D7', + TagResourceBurstQuota = 'L-1ECD16ED', + PutCaseEventConfigurationBurstQuota = 'L-D4F270D6', + ListTemplatesBurstQuota = 'L-B3BCA676', + SearchRelatedItemsRateQuota = 'L-3B58A5D3', + CreateDomainBurstQuota = 'L-B4BF7E31', + ListDomainsRateQuota = 'L-97677C0C', + Domains = 'L-C2B81BC3', + GetCaseEventConfigurationBurstQuota = 'L-74EA148C', + CreateFieldRateQuota = 'L-497703F2', + TemplatesPerDomain = 'L-0482161A', + SearchCasesRateQuota = 'L-AA3996A0', + UpdateLayoutRateQuota = 'L-D69D3749', + CreateFieldBurstQuota = 'L-F4DAA62B', + ListFieldOptionsBurstQuota = 'L-85809F5E', + ListCasesForContactBurstQuota = 'L-FF304B65', + CreateRelatedItemBurstQuota = 'L-5A125C02', + TagResourceRateQuota = 'L-C0E6C678', + ListTagsForResourceRateQuota = 'L-F62E3726', + BatchGetFieldRateQuota = 'L-2A8092BB', + RelatedItemsPerCase = 'L-C1AF8D37', + ListDomainsBurstQuota = 'L-3255B73C', + CreateCaseRateQuota = 'L-8FEA710A', + GetCaseEventConfigurationRateQuota = 'L-D69B27B2', + UpdateCaseRateQuota = 'L-6FE92BD9', + UntagResourceBurstQuota = 'L-AE0F3125', + CreateCaseBurstQuota = 'L-085C6605', +} +export enum AmazonKeyspacesForApacheCassandraQuota { + TableLevelWriteThroughputQuota = 'L-3D8ED127', + MaxClusteringKeySize = 'L-0659E12E', + TablesPerRegion = 'L-BF48748A', + MaxSchemaSize = 'L-E08A04C1', + AccountLevelReadThroughputQuotaProvisionedMode = 'L-E7DB0CFF', + ConcurrentDdlOperations = 'L-29E90199', + KeyspacesPerRegion = 'L-677FFD22', + MaxConcurrentTableRestoresUsingPointInTimeRecoveryPitr = 'L-F41E662B', + MaxRowSize = 'L-66AD5703', + AccountLevelWriteThroughputQuotaProvisionedMode = 'L-2C5B14BD', + MaxAmountOfDataRestoredUsingPointInTimeRecoveryPitr = 'L-4C49F3DB', + MaxSubqueriesPerInSelectStatement = 'L-2FC1B9A1', + TableLevelReadThroughputQuota = 'L-17766544', + MaxPartitionKeySize = 'L-324B5396', + MaxStaticDataPerLogicalPartition = 'L-5823D982', +} +export enum AwsCostExplorerQuota { + NumberOfAnomalyAlertSubscriptions = 'L-65438386', + NumberOfLinkedAccountCostCategoryAndCostAllocationTagAnomalyMonitors = 'L-0FB9E40C', + NumberOfAwsServicesAnomalyMonitors = 'L-499F0346', + NumberOfActiveCostAllocationTagKeys = 'L-FE0E51D7', + NumberOfRefreshRequestsForSavingsPlansRecommendationsPerDay = 'L-E9521C46', + NumberOfRulesPerCostCategoryUi = 'L-70EB5A3B', + NumberOfCostCategories = 'L-1782F291', + CostExplorerSavedReports = 'L-FB20A373', + NumberOfRulesPerCostCategoryApi = 'L-FD4BC3F8', +} +export enum AwsChatbotQuota { + MaximumNumberOfChimeWebhookConfigurationsPerAwsAccount = 'L-53DA9072', + MaximumNumberOfSlackChannelConfigurationsPerAwsAccount = 'L-9D6045B7', +} +export enum AmazonChimeQuota { + AmazonChimeSdkMeetingsCreateMeetingApiBurstRateInRequestsPerSecond = 'L-FE9F896D', + AmazonChimeSdkMeetingsLegacyEndpointCreateAttendeeApiRateInRequestsPerSecond = 'L-34A07B7C', + AmazonChimeSdkMeetingsGetMeetingApiRateInRequestsPerSecond = 'L-6FAB55D2', + AmazonChimeSdkMeetingsCreateAttendeeApiBurstRateInRequestsPerSecond = 'L-6B38EB2F', + AmazonChimeSdkMeetingsLegacyEndpointDeleteAttendeeApiBurstRateInRequestsPerSecond = 'L-A57C8C58', + AmazonChimeSdkCallAnalyticsMaximumPipelines = 'L-DA073F3A', + AmazonChimeSdkMeetingsTagResourceApiRateInRequestsPerSecond = 'L-3BB10AA7', + AmazonChimeSdkMeetingsDeleteMeetingApiRateInRequestsPerSecond = 'L-48F4CA7A', + AmazonChimeSdkMeetingsLegacyEndpointListMeetingsApiBurstRateInRequestsPerSecond = 'L-5A40F20B', + AmazonChimeSdkMeetingsLegacyEndpointBatchCreateAttendeesApiRateInRequestsPerSecond = 'L-24128B8B', + AmazonChimeSdkMeetingsReplicaMeetingsPerPrimaryMeeting = 'L-154D84D0', + AmazonChimeSdkMeetingsCreateAttendeeApiRateInRequestsPerSecond = 'L-563605EA', + AmazonChimeSdkMeetingsCreateMeetingWithAttendeesApiBurstRateInRequestsPerSecond = 'L-91426809', + AmazonChimeSdkMeetingsUnTagResourceApiRateInRequestsPerSecond = 'L-1AB05505', + AmazonChimeSdkMeetingsLegacyEndpointDeleteAttendeeApiRateInRequestsPerSecond = 'L-F3B27997', + AmazonChimeSdkMeetingsLegacyEndpointConcurrentMeetingQuota = 'L-A5C73716', + AmazonChimeSdkMediaPipelineMaximumAmazonKinesisVideoStreamPools = 'L-83E6B280', + AmazonChimeSdkMeetingsLegacyEndpointCreateMeetingWithAttendeesApiBurstRateInRequestsPerSecond = 'L-A4AAB8E1', + AmazonChimeSdkMeetingsListAttendeesApiRateInRequestsPerSecond = 'L-37BA0833', + AmazonChimeSdkMeetingsUpdateAttendeeCapabilitiesApiBurstRateInRequestsPerSecond = 'L-674630CB', + AmazonChimeSdkMeetingsBatchCreateAttendeesApiBurstRateInRequestsPerSecond = 'L-98193B78', + AmazonChimeSdkMeetingsLegacyEndpointCreateMeetingApiRateInRequestsPerSecond = 'L-528DEF61', + AmazonChimeSdkMeetingsListTagsForResourceApiRateInRequestsPerSecond = 'L-E79A53C7', + AmazonChimeSdkMeetingsConcurrentVideoStreamsPublishedPerMeeting = 'L-AC1D2091', + AmazonChimeSdkMediaPipelineApiRate = 'L-804108DA', + AmazonChimeSdkMeetingsConcurrentMeetingQuota = 'L-9F286451', + AmazonChimeSdkMeetingsAllMeetingManagementApiRateInRequestsPerSecond = 'L-F147F728', + AmazonChimeSdkMeetingsBatchCreateAttendeesApiRateInRequestsPerSecond = 'L-7B4DA565', + AmazonChimeSdkMeetingsLegacyEndpointListAttendeesApiRateInRequestsPerSecond = 'L-C355C9D5', + AmazonChimeSdkMeetingsDeleteMeetingApiBurstRateInRequestsPerSecond = 'L-A42FC7C2', + AmazonChimeSdkMediaPipelineAmazonKinesisVideoStreamPoolApiRate = 'L-F4340C7E', + AmazonChimeSdkMeetingsListMeetingsApiRateInRequestsPerSecond = 'L-793B6D9C', + AmazonChimeSdkMeetingsLegacyEndpointListMeetingsApiRateInRequestsPerSecond = 'L-1EB0CE0D', + AmazonChimeSdkMeetingsTagResourceApiBurstRateInRequestsPerSecond = 'L-DA021F73', + AmazonChimeSdkMeetingsLegacyEndpointAttendeesPerMeeting = 'L-2925AC37', + AmazonChimeSdkMeetingsBatchUpdateAttendeeCapabilitiesExceptApiBurstRateInRequestsPerSecond = 'L-7846C766', + AmazonChimeSdkMeetingsLegacyEndpointGetMeetingApiRateInRequestsPerSecond = 'L-7971C7BF', + AmazonChimeSdkMeetingsLegacyEndpointListAttendeesApiBurstRateInRequestsPerSecond = 'L-976FB720', + AmazonChimeSdkMeetingsDeleteAttendeeApiRateInRequestsPerSecond = 'L-2C15A6A8', + AmazonChimeSdkMeetingsLegacyEndpointCreateMeetingWithAttendeesApiRateInRequestsPerSecond = 'L-81F5D33C', + AmazonChimeSdkMeetingsGetMeetingApiBurstRateInRequestsPerSecond = 'L-58F5D62D', + AmazonChimeSdkMeetingsCreateMeetingWithAttendeesApiRateInRequestsPerSecond = 'L-5F1ABF39', + AmazonChimeSdkMeetingsLegacyEndpointBatchCreateAttendeesBurstQuota = 'L-95C5A502', + AmazonChimeSdkMeetingsConcurrentVideoStreamsSubscribedPerAttendee = 'L-0E2E2226', + AmazonChimeSdkCallAnalyticsMaximumConfigurations = 'L-668D1758', + AmazonChimeSdkMeetingsListMeetingsApiBurstRateInRequestsPerSecond = 'L-771FFB29', + AmazonChimeSdkMeetingsUpdateAttendeeCapabilitiesApiRateInRequestsPerSecond = 'L-3CC08C2F', + AmazonChimeSdkMeetingsLegacyEndpointCreateAttendeeApiBurstRateInRequestsPerSecond = 'L-35D4D0B3', + AmazonChimeSdkMeetingsAttendeesPerMeeting = 'L-B1CE561B', + AmazonChimeSdkMediaPipelineMaximumPipelines = 'L-7F583998', + AmazonChimeSdkMeetingsBatchUpdateAttendeeCapabilitiesExceptApiRateInRequestsPerSecond = 'L-44BD764A', + AmazonChimeSdkMeetingsLegacyEndpointDeleteMeetingApiRateInRequestsPerSecond = 'L-60D71AA7', + AmazonChimeSdkMeetingsLegacyEndpointAllMeetingManagementApiRateInRequestsPerSecond = 'L-74C506CA', + AmazonChimeSdkMeetingsUnTagResourceApiBurstRateInRequestsPerSecond = 'L-FA316003', + AmazonChimeSdkMeetingsLegacyEndpointDeleteMeetingApiBurstRateInRequestsPerSecond = 'L-8DBB7C50', + AmazonChimeSdkCallAnalyticsApiRate = 'L-CF24303F', + AmazonChimeSdkMeetingsLegacyEndpointAllMeetingManagementApiBurstRateInRequestsPerSecond = 'L-EB12830D', + AmazonChimeSdkMeetingsListAttendeesApiBurstRateInRequestsPerSecond = 'L-C875D9AA', + AmazonChimeSdkMeetingsCreateMeetingApiRateInRequestsPerSecond = 'L-8A6E3C7B', + AmazonChimeSdkMeetingsAllMeetingManagementApiBurstRateInRequestsPerSecond = 'L-63907FE3', + AmazonChimeSdkMeetingsDeleteAttendeeApiBurstRateInRequestsPerSecond = 'L-398B2BD6', + AmazonChimeSdkMeetingsLegacyEndpointCreateMeetingApiBurstRateInRequestsPerSecond = 'L-986AAC06', + AmazonChimeSdkMeetingsLegacyEndpointGetMeetingApiBurstRateInRequestsPerSecond = 'L-7684364C', + AmazonChimeSdkMessagingListingChannelMembershipsApiRequestsPerSecond = 'L-B5609908', + AmazonChimeSdkMediaPipelineLegacyEndpointApiRateInRequestsPerSecond = 'L-0F290948', + AmazonChimeSdkCallAnalyticsVoiceProfileDomainApiRate = 'L-C7906AAF', + AmazonChimeSdkIdentityAppInstanceApiRequestsPerSecond = 'L-0A68E24C', + AmazonChimeSdkMessagingWebsocketConnectApiRequestsPerSecond = 'L-74978BCC', + AmazonChimeSdkMessagingRequestsPerSecondOfCreateOrDeleteChannelMembershipsBansAndModeratorsForASpecificChannel = 'L-9B0D42EC', + AmazonChimeSdkIdentityDescribeAppInstanceApiRequestsPerSecond = 'L-3C5ED081', + AmazonChimeSdkMessagingMaximumElasticChannelsPerAppInstance = 'L-710A5D85', + AmazonChimeSdkSipTrunkingAndVoiceVoiceConnectors = 'L-8EE806B4', + AmazonChimeSdkMessagingMaximumChannelMembershipsPerSubChannel = 'L-FBA49761', + AmazonChimeSdkIdentityMaximumAppInstancesPerAwsAccount = 'L-0222B40A', + AmazonChimeSdkSipTrunkingAndVoiceUpdateSipMediaApplicationCallApiRateLimit = 'L-21762DC9', + AmazonChimeSdkIdentityDescribeAppInstanceUserApiRequestsPerSecond = 'L-13B02A3D', + AmazonChimeSdkIdentityMaximumAppInstanceUsersPerAppInstance = 'L-D54E9933', + AmazonChimeSdkSipTrunkingAndVoiceCallsPerSecondCps = 'L-B6F2C623', + AmazonChimeSdkMessagingMaximumChannelModeratorsPerChannel = 'L-3E511C5B', + AmazonChimeSdkMessagingAppInstanceUserApiRequestsPerSecond = 'L-A92E8EF9', + AmazonChimeSdkIdentityListAppInstanceUsersApiRequestsPerSecond = 'L-EA3B8D9B', + AmazonChimeSdkCallAnalyticsSpeakerSearchApiRate = 'L-BD254D8F', + AmazonChimeSdkMessagingListChannelMembershipsForAppInstanceUserApiRequestsPerSecond = 'L-06F4BAB8', + AmazonChimeSdkMessagingMaximumConcurrentActiveConnectionsPerAppInstanceUser = 'L-0EB74667', + AmazonChimeSdkMessagingMaximumChannelsPerAppInstance = 'L-0AC3ED57', + AmazonChimeSdkMessagingMaximumChannelDetailsEventsForPrefetch = 'L-E95601F2', + AmazonChimeSdkMessagingMaximumChannelFlowsPerAppInstance = 'L-D1550AB5', + AmazonChimeSdkMeetingsLegacyEndpointConcurrentVideoStreamsPublishedPerMeeting = 'L-4ED6EC7D', + AmazonChimeSdkMessagingDescribeChannelApiRequestsPerSecond = 'L-06A9F29A', + AmazonChimeSdkMessagingMaximumSubChannelsPerElasticChannel = 'L-81922B66', + AmazonChimeSdkSipTrunkingAndVoiceProvisionedPhoneNumbers = 'L-32405DBA', + AmazonChimeSdkMeetingsLegacyEndpointConcurrentVideoStreamsSubscribedPerAttendee = 'L-12FE91F7', + AmazonChimeSdkSipTrunkingAndVoiceCreateSipMediaApplicationCallApiRateLimit = 'L-C115F428', + AmazonChimeSdkIdentityAppInstanceUserApiRequestsPerSecond = 'L-D99DAB65', + AmazonChimeSdkMessagingMaximumChannelMembershipsInChannelDetailsEventsForPrefetch = 'L-7CE8F2DD', + AmazonChimeSdkCallAnalyticsVoiceToneAnalysisApiRate = 'L-310C21A9', + AmazonChimeSdkCallAnalyticsVoiceProfileApiRate = 'L-6EAE6AA6', + AmazonChimeSdkMediaPipelineLegacyEndpointMaximumMediaPipelines = 'L-B483BD4E', + AmazonChimeSdkMessagingListChannelMessagesApiRequestsPerSecond = 'L-37E67822', + AmazonChimeSdkSipTrunkingAndVoiceSipMediaApplicationsPerSipRule = 'L-8BA4EAA6', + AmazonChimeSdkMessagingMaximumChannelMessagesInChannelDetailsEventsForPrefetch = 'L-B2BA1F32', + AmazonChimeSdkSipTrunkingAndVoiceVoiceConnectorsPerVoiceConnectorGroup = 'L-FA2B043C', + AmazonChimeSdkSipTrunkingAndVoiceVoiceConnectorGroups = 'L-D3615084', + AmazonChimeSdkCallAnalyticsMaximumVoiceAnalyticsTasks = 'L-6B185CAC', + AmazonChimeSdkMessagingListSubChannelsApiRequestsPerSecond = 'L-303077AC', + AmazonChimeSdkIdentityListAppInstancesApiRequestsPerSecond = 'L-1DB18BA9', + AmazonChimeSdkMessagingBatchCreateChannelMembershipApiRequestsPerSecond = 'L-426F5480', + AmazonChimeSdkMessagingMaximumChannelMembershipsPerChannel = 'L-9A2511FF', + AmazonChimeSdkIdentityChimeSdkIdentityApiRequestsPerSecond = 'L-58DEE317', + AmazonChimeSdkCallAnalyticsMaximumVoiceProfileDomains = 'L-A60BCA6C', + AmazonChimeSdkIdentityMaximumAppInstanceUserAdminsPerAppInstance = 'L-9A7ECB60', + AmazonChimeSdkMessagingChannelApiRequestsPerSecond = 'L-53F2D722', + AmazonChimeSdkMediaPipelineLegacyEndpointMediaCaptureApiBurstRateInRequestsPerSecond = 'L-AB7C9FF4', + AmazonChimeSdkMessagingChannelMessageApiRequestsPerSecond = 'L-FE35185B', + AmazonChimeSdkCallAnalyticsVoiceProfilesPerVoiceProfileDomain = 'L-1F05D3D7', + AmazonChimeSdkMessagingListChannelsApiRequestsPerSecond = 'L-B17C47C8', + AmazonChimeSdkIdentityMaximumAppInstanceUserEndpointsPerAppInstanceUser = 'L-39BCA56C', + AmazonChimeSdkSipTrunkingAndVoiceSipMediaApplications = 'L-9DD490AB', + AmazonChimeSdkMessagingGetChannelMessageApiRequestsPerSecond = 'L-BB2EEB39', + AmazonChimeSdkMessagingMaximumChannelProcessorsPerChannelFlow = 'L-CA0C986A', + AmazonChimeSdkMessagingListChannelsModeratedByAppInstanceUserApiRequestsPerSecond = 'L-E8D9FB57', +} +export enum AwsCleanRoomsQuota { + ConfiguredAudienceModelAssociationsPerMembership = 'L-4596E0C1', + RateOfGetSchemaAnalysisRuleRequests = 'L-23D4B294', + RateOfListCollaborationsRequests = 'L-60C9F5C8', + AnalysisTemplatesPerMembership = 'L-AF88CE55', + MembersInvitedPerCollaboration = 'L-F7B26AF5', + RateOfGetMembershipRequests = 'L-6EE33BE8', + RateOfCreateMembershipRequests = 'L-AA83E042', + RateOfListMembersRequests = 'L-659B47CC', + RateOfGetConfiguredTableAnalysisRuleRequests = 'L-0FB3F147', + AnalysisRuleSize = 'L-ED3352DE', + TableAssociationsPerMembership = 'L-25AC34A7', + RateOfListMembershipsRequests = 'L-8CF613B7', + RateOfDeleteConfiguredTableAssociationRequests = 'L-88914C24', + RateOfUpdateCollaborationRequests = 'L-DDC82272', + RateOfCreateConfiguredTableRequests = 'L-971686CB', + RateOfBatchGetSchemaRequests = 'L-FA0B0432', + RateOfDeleteConfiguredTableAnalysisRuleRequests = 'L-6FF866CD', + RateOfStartProtectedQueryRequests = 'L-59F4710C', + MembershipsPerAccount = 'L-99A163CB', + CollaborationsCreatedPerAccount = 'L-F60C2030', + RateOfDeleteMemberRequests = 'L-46ADBA29', + ColumnsPerConfiguredTableAllowlist = 'L-14E81699', + RateOfGetConfiguredTableRequests = 'L-9FC85564', + ConfiguredTablesPerProtectedQuery = 'L-08F7F01C', + RateOfListConfiguredTablesRequests = 'L-4FA6F2CA', + RateOfDeleteConfiguredTableRequests = 'L-C0D69AA0', + RateOfListSchemasRequests = 'L-8C954508', + RateOfGetProtectedQueryRequests = 'L-5B356E2B', + RateOfUpdateConfiguredTableAssociationRequests = 'L-BC5338D1', + RateOfCreateCollaborationRequests = 'L-71F0D659', + QueryTextLength = 'L-0BF5D984', + RateOfGetCollaborationRequests = 'L-EA789CE8', + RateOfCreateConfiguredTableAnalysisRuleRequests = 'L-AA1FCC92', + RateOfGetSchemaRequests = 'L-0A3E7551', + RateOfCreateConfiguredTableAssociationRequests = 'L-58076094', + ConfiguredTablesPerAccount = 'L-7CEACCA0', + RateOfDeleteMembershipRequests = 'L-80DB73D7', + RateOfListConfiguredTableAssociationsRequests = 'L-D90468BB', + RateOfGetConfiguredTableAssociationRequests = 'L-1BCDF035', + ConcurrentOngoingQueriesPerMembership = 'L-F04AAAFE', + RateOfDeleteCollaborationRequests = 'L-F0A87380', + RateOfUpdateConfiguredTableRequests = 'L-DF3C63EF', + RateOfUpdateConfiguredTableAnalysisRuleRequests = 'L-39FE5CA0', + RateOfListProtectedQueriesRequests = 'L-2BCA0376', +} +export enum AwsCloud9Quota { + SshDevelopmentEnvironmentsForThisUser = 'L-5D26553C', + SshDevelopmentEnvironmentsForThisAccount = 'L-A29EDECE', + Ec2DevelopmentEnvironmentsForThisUser = 'L-C1302C17', + Ec2DevelopmentEnvironmentsForThisAccount = 'L-8ECD6BDB', + MembersPerDevelopmentEnvironment = 'L-65F36924', +} +export enum AwsCloudFormationQuota { + StackSetsPerAdministratorAccount = 'L-EC62D81A', + StackInstanceOperationsPerAdministratorAccount = 'L-6A4B2F69', + StackInstancesPerStackSet = 'L-C8225BA5', + StackCount = 'L-0485CB21', + OutputCountInCloudFormationTemplate = 'L-87D14FB7', + ModuleLimitPerAccount = 'L-DCC58E6D', + ParametersDeclaredInCloudFormationTemplate = 'L-72B9A393', + VersionLimitPerModule = 'L-7E146E2E', + NestedModules = 'L-05123385', + AttributesPerMappingInCloudFormationTemplate = 'L-1FFB6C73', + DeclaredMappingsInCloudFormationTemplate = 'L-63D096B8', + SizeOfMappingAttributeName = 'L-722F1E58', + SizeOfOutputNameInCloudFormationTemplate = 'L-38FD7965', + SizeOfParameterNameInCloudFormationTemplate = 'L-3B2D14A7', + SizeOfAResourceNameInCloudFormationTemplate = 'L-84B50260', + DataInCustomResourceProvider = 'L-FFB2925A', + SizeOfAParameterValueInCloudFormationTemplate = 'L-EFC95CFF', + SizeOfATemplateBodyInS3ObjectForAValidateStackRequest = 'L-125EDA8C', + CfnSignalWaitConditionData = 'L-4276301D', + SizeOfTemplateBodyInCreateStackRequest = 'L-9D8E1FDE', + ResourceLimitPerAccount = 'L-9DE8E4FB', + MaximumSizeOfATemplateDescriptionInACloudFormationTemplate = 'L-7C7532D4', + VersionLimitPerResource = 'L-EA1018E8', + ResourcesDeclaredInACloudFormationTemplate = 'L-05BC894F', +} +export enum AmazonCloudFrontQuota { + DistributionsAssociatedWithTheSameOriginRequestPolicy = 'L-8D662304', + FileInvalidationMaximumNumberOfFilesAllowedInActiveInvalidationRequestsExcludingWildcardInvalidations = 'L-AAB20803', + HeadersPerOriginRequestPolicy = 'L-C646B44B', + OriginsPerDistribution = 'L-B4048FB4', + MaximumLengthOfAFieldToEncrypt = 'L-AEB8FB8D', + MaximumNumberOfFieldsInARequestBodyWhenFieldLevelEncryptionIsConfigured = 'L-1E9C8594', + PublicKeysInASingleKeyGroup = 'L-9EBD26CA', + DistributionsPerAwsAccountThatYouCanCreateTriggersFor = 'L-D0C8D03A', + KeyGroupsPerAwsAccount = 'L-D64DA6E2', + FunctionTimeoutForAViewerRequestAndResponseEvent = 'L-A2E53DC5', + CloudFrontFunctionsMaximumNumberOfDistributionsAssociatedWithASingleFunction = 'L-435C8433', + ConnectionAttemptsPerOrigin = 'L-B688C4FA', + CacheBehaviorsPerDistribution = 'L-F432D044', + CachePoliciesPerAwsAccount = 'L-7D134442', + MaximumNumberOfFieldsToEncryptThatCanBeSpecifiedInOneProfile = 'L-55A85849', + WhitelistedHeadersPerCacheBehavior = 'L-1685304C', + CookiesPerCachePolicy = 'L-BEBABC60', + SslCertificatesPerAwsAccountWhenServingHttpsRequestsUsingDedicatedIpAddresses = 'L-DA9DCC93', + CustomHeadersMaximumLengthOfAllHeaderValuesAndNamesCombined = 'L-21FF7335', + OriginRequestPoliciesPerAwsAccount = 'L-C3659C43', + ConnectionTimeoutPerOrigin = 'L-64FCDDBC', + CustomHeadersMaximumLengthOfAHeaderValue = 'L-B0EC47BA', + MaximumNumberOfCloudFrontDistributionsThatCanBeAssociatedWithAFieldLevelEncryptionConfiguration = 'L-A2076525', + RequestTimeout = 'L-C65EE6F0', + OriginGroupsPerDistribution = 'L-1B2BD627', + WhitelistedQueryStringsPerCacheBehavior = 'L-779C7A0B', + WhitelistedCookiesPerCacheBehavior = 'L-9D26CF6B', + MaximumLengthOfAUrl = 'L-7CFFA62C', + SizeOfAResponseThatIsGeneratedByALambdaFunctionIncludingHeadersAndBodyOriginRequestAndResponseEvent = 'L-83718F29', + CustomHeadersMaximumNumberOfCustomHeadersThatYouCanConfigureCloudFrontToAddToOriginRequests = 'L-BE7788E4', + CookiesPerOriginRequestPolicy = 'L-68CBA03E', + MaximumNumberOfCharactersTotalForAllWhitelistedQueryStringsInTheSameParameter = 'L-4C005807', + RangeOfFileSizesThatCloudFrontCompresses = 'L-3D146566', + RequestBodySizeForViewerRequestsWhenReturningFromALambdaFunctionTextEncoding = 'L-AF199A9F', + RequestsPerSecond = 'L-A3F2DA32', + TriggersPerDistribution = 'L-C57D59CB', + RequestBodySizeForOriginRequestsExposedToALambdaEdgeFunction = 'L-0EB0396F', + CustomHeadersMaximumLengthOfAHeaderName = 'L-EDD87744', + WebDistributionsPerAwsAccount = 'L-24B04930', + RequestBodySizeForViewerRequestsExposedToALambdaEdgeFunction = 'L-6078EAE8', + MaximumNumberOfPublicKeysThatCanBeAddedToOneAwsAccount = 'L-302B5900', + SizeOfAResponseThatIsGeneratedByALambdaFunctionIncludingHeadersAndBodyViewerRequestAndResponseEvent = 'L-D6622F18', + QueryStringsPerCachePolicy = 'L-50C9D326', + MaximumNumberOfQueryArgumentProfileMappingsThatCanBeIncludedInAFieldLevelEncryptionConfiguration = 'L-D92991FD', + RequestBodySizeForOriginRequestsWhenReturningFromALambdaFunctionBase64Encoding = 'L-7917BC7C', + MaximumLengthOfARequestIncludingHeadersAndQueryStringsButNotIncludingTheBodyContent = 'L-A1A2AB28', + AlternateDomainNamesCnamEsPerDistribution = 'L-AAD4943E', + ResponseTimeoutPerOrigin = 'L-AECE9FA7', + RequestsPerSecondPerDistribution = 'L-A2C80159', + OriginAccessIdentitiesPerAccount = 'L-08884E5C', + TotalLengthOfTheUriIncludingQueryStringInALambdaEdgeFunction = 'L-DEB56C13', + DataTransferRatePerDistribution = 'L-0F1E9017', + KeyGroupsAssociatedWithASingleDistribution = 'L-E7E9ACEB', + ConcurrentExecutions = 'L-67B0F006', + OriginResponseTimeoutIdleTimeout = 'L-E1147159', + MaximumCompressedSizeOfALambdaFunctionAndAnyIncludedLibrariesViewerRequestAndResponseEvent = 'L-3AD6E5FC', + DistributionsAssociatedWithTheSameCachePolicy = 'L-D50EE3A2', + MaximumFileSizeForHttpGetPostAndPutRequests = 'L-5AA18B98', + FileInvalidationMaximumNumberOfActiveWildcardInvalidationsAllowed = 'L-DAD40481', + DistributionsAssociatedWithASingleKeyGroup = 'L-C19110C4', + MaximumCompressedSizeOfALambdaFunctionAndAnyIncludedLibrariesOriginRequestAndResponseEvent = 'L-5DCCC36C', + TotalNumberOfBytesInWhitelistedCookieNamesDoesnTApplyIfYouConfigureCloudFrontToForwardAllCookiesToTheOrigin = 'L-677CE719', + MaximumNumberOfCharactersInAWhitelistedQueryString = 'L-AACE0BFB', + QueryStringsPerOriginRequestPolicy = 'L-E47A582D', + TagsThatCanBeAddedToADistribution = 'L-EBD1DF93', + FunctionTimeoutOriginRequestAndResponseEvent = 'L-F36E9CEF', + MaximumLengthOfARequestBodyWhenFieldLevelEncryptionIsConfigured = 'L-3668F694', + MaximumNumberOfFieldLevelEncryptionProfilesThatCanBeAssociatedWithOneAwsAccount = 'L-469B97CA', + SslCertificatesThatCanBeAssociatedWithACloudFrontWebDistribution = 'L-18CCB0CF', + RequestBodySizeForOriginRequestsWhenReturningFromALambdaFunctionTextEncoding = 'L-E6A19CDA', + MaximumNumberOfFieldLevelEncryptionConfigurationsThatCanBeAssociatedWithOneAwsAccount = 'L-DE0FED64', + FunctionMemorySizeViewerRequestAndResponseEvent = 'L-B7908DC8', + RtmpDistributionsPerAwsAccount = 'L-7F663A86', + HeadersPerCachePolicy = 'L-4C99C1B4', + RequestBodySizeForViewerRequestsWhenReturningFromALambdaFunctionBase64Encoding = 'L-B62B1AE4', +} +export enum AwsCloudHsmQuota { + HsMsPerAwsRegionAndAwsAccount = 'L-95BA35D1', + ClustersPerAwsRegionAndAwsAccount = 'L-4B16B391', + KeysPerCloudHsmCluster = 'L-36814031', + LengthOfAPassword = 'L-F9BBB650', + HsMsPerCloudHsmCluster = 'L-0D8B0541', + NumberOfConcurrentClients = 'L-0B35A0E6', + UsersPerCloudHsmCluster = 'L-F847CBBF', + LengthOfAUsername = 'L-772318AE', + MinimumLengthOfAPassword = 'L-194EB2B8', +} +export enum AwsCloudShellQuota { + DataRetention = 'L-AFB6CE78', + HomeDirectorySize = 'L-91D31FC1', +} +export enum AwsCloudTrailQuota { + TransactionsPerSecondTpsForTheCancelQueryStartQueryApIs = 'L-6D9E712D', + TransactionsPerSecondTpsForTheLookupEventsApi = 'L-6826A2E9', + DataResourcesAcrossAllEventSelectorsInATrail = 'L-71DEA5C6', + EventDataStores = 'L-FAC66D2D', + EventSize = 'L-1433C85D', + TransactionsPerSecondTpsForAllOtherApIs = 'L-72FCFFCE', + TrailsPerRegion = 'L-1568E18E', + EventSelectors = 'L-9387CED7', + ConditionsAcrossAllAdvancedEventSelectors = 'L-203ED99D', + TransactionsPerSecondTpsForTheGetDescribeAndListApIs = 'L-CC7D14E0', +} +export enum AwsCodeArtifactQuota { + RequestsWithoutAuthenticationTokenPerIpAddress = 'L-BD902DFC', + ListPackageVersionAssetsRequestsPerSecond = 'L-3072382D', + ListPackagesRequestsPerSecond = 'L-6010CAF9', + WriteRequestsPerSecondFromASingleAwsAccount = 'L-A649E766', + PublishPackageVersionRequestsPerSecond = 'L-3E27C79F', + ListPackageVersionsRequestsPerSecond = 'L-CBBCDF5C', + RequestsPerSecondUsingASingleAuthenticationToken = 'L-37894301', + CopyPackageVersionsRequestsPerSecond = 'L-308A4050', + GetAuthorizationTokenRequestsPerSecond = 'L-0B362111', + UpstreamRepositoriesSearched = 'L-5D176989', + ReadRequestsPerSecondFromASingleAwsAccount = 'L-F39CF68A', + DirectUpstreamsPerRepository = 'L-D42B1EF2', + RepositoriesPerDomain = 'L-86608C96', + DomainsPerAwsAccount = 'L-DD7208D3', + AssetsPerPackageVersion = 'L-5B2BD2E1', + AssetFileSize = 'L-AA0DC56D', + GetPackageVersionAssetRequestsPerSecond = 'L-6C12FB34', +} +export enum AwsCodeBuildQuota { + ConcurrentlyRunningBuildsForLinuxLambda2GbEnvironment = 'L-1DFDD5F9', + ConcurrentlyRunningBuildsForWindowsServer2019MediumEnvironment = 'L-ECF1B2A0', + ConcurrentlyRunningBuildsForLinuxGpuSmallEnvironment = 'L-F1FE1B52', + ConcurrentlyRunningBuildsForLinuxLambda4GbEnvironment = 'L-39DB2B0B', + ConcurrentlyRunningBuildsForWindowsMediumEnvironment = 'L-B4157408', + BuildProjects = 'L-ACCF6C0D', + ConcurrentlyRunningBuildsForArmLambda4GbEnvironment = 'L-72045165', + ConcurrentlyRunningBuildsForArmLambda1GbEnvironment = 'L-FD92223D', + ConcurrentlyRunningBuildsForLinuxGpuLargeEnvironment = 'L-D906BEE7', + ConcurrentlyRunningBuildsForLinuxLambda10GbEnvironment = 'L-E692F494', + ConcurrentlyRunningBuildsForLinuxXLargeEnvironment = 'L-04E5CA62', + ConcurrentlyRunningBuildsForArmSmallEnvironment = 'L-5ED1D25B', + ConcurrentlyRunningBuildsForLinux2XLargeEnvironment = 'L-0397D009', + ConcurrentlyRunningBuildsForLinuxLambda8GbEnvironment = 'L-049948E0', + ConcurrentlyRunningBuildsForLinuxMediumEnvironment = 'L-2DC20C30', + ConcurrentlyRunningBuildsForArmLargeEnvironment = 'L-596BEAB4', + ConcurrentlyRunningBuildsForArmLambda2GbEnvironment = 'L-DE99852F', + ConcurrentlyRunningBuildsForLinuxLargeEnvironment = 'L-4DDC4A99', + ConcurrentlyRunningBuildsForArmLambda10GbEnvironment = 'L-36AF3CA5', + ConcurrentlyRunningBuildsForLinuxSmallEnvironment = 'L-9D07B6EF', + ConcurrentlyRunningBuildsForWindowsServer2019LargeEnvironment = 'L-2C3490D7', + ConcurrentlyRunningBuildsForLinuxLambda1GbEnvironment = 'L-03FBB1ED', + ConcurrentlyRunningBuildsForArmLambda8GbEnvironment = 'L-546A802A', + ConcurrentlyRunningBuildsForWindowsLargeEnvironment = 'L-4135EDF8', + MinimumPeriodForBuildTimeoutInMinutes = 'L-376C4764', + SecurityGroupsUnderVpcConfiguration = 'L-EDB7A61A', + ConcurrentRequestForInformationAboutBuilds = 'L-42CB2FCC', + SubnetsUnderVpcConfiguration = 'L-33638FE6', + AssociatedTagsPerProject = 'L-BECF4531', + ConcurrentRequestsForInformationOnBuildProjects = 'L-390F410B', + BuildTimeoutInMinutes = 'L-4167E76F', +} +export enum AwsCodeCommitQuota { + AllowedRepositories = 'L-81790602', +} +export enum AwsCodeDeployQuota { + AwsLambdaDeploymentRunInHours = 'L-604B54B8', + TrafficThatCanBeShiftedInOneIncrementDuringAnAwsLambdaDeployment = 'L-5FB5F09F', + MinutesBetweenTheFirstAndLastTrafficShiftDuringAnAwsLambdaCanaryOrLinearDeployment = 'L-86A1A2E1', + NumberOfInstancesUsedByConcurrentDeploymentsThatAreInProgressPerAccount = 'L-464411D9', + Ec2OnPremisesBlueGreenDeploymentRunInHours = 'L-DC0E5D95', + SizeOfDeploymentGroupName = 'L-D4ED2A8C', + SizeOfTagValue = 'L-B2AEFF5A', + SecondsUntilADeploymentLifecycleEventFailsIfNotCompleted = 'L-BB837EF6', + NumberOfListenersForATrafficRouteDuringAnAmazonEcsDeployment = 'L-C77AFF36', + MinutesUntilADeploymentFailsIfALifecycleEventDoesnTStart = 'L-9231961D', + NumberOfInstancesThatCanBePassedToTheBatchGetOnPremisesInstancesApiAction = 'L-31E782CD', + Ec2OnPremisesInPlaceDeploymentRunInHours = 'L-F0A94AA0', + DeploymentGroupsAssociatedWithASingleApplication = 'L-D9088B77', + ConcurrentDeploymentsPerDeploymentGroup = 'L-A8B8B32B', + MinutesABlueGreenDeploymentCanWaitAfterASuccessfulDeploymentBeforeTerminatingInstancesFromTheOriginalDeployment = 'L-69184564', + EventNotificationTriggersInADeploymentGroup = 'L-877B748B', + GitHubConnectionTokensPerAccount = 'L-B0CB7B38', + SizeOfTagKey = 'L-696A9A65', + ApplicationsAssociatedPerAccountPerRegion = 'L-3F19B6A5', + TagsInADeploymentGroup = 'L-826E27D8', + AutoScalingGroupsInADeploymentGroup = 'L-6DACB4EE', + ConcurrentDeploymentsPerAccount = 'L-AB125F0B', + HoursBetweenTheCompletionOfADeploymentAndTheTerminationOfTheOriginalInstancesDuringAnEc2OnPremisesBlueGreenDeployment = 'L-A58C473C', + CustomDeploymentConfigurationsPerAccount = 'L-5AD34096', + InstancesCountPerDeployment = 'L-6BCCFC85', + NumberOfDeploymentGroupsThatCanBeAssociatedWithAnAmazonEcsService = 'L-0CB3C26F', + HoursBetweenTheDeploymentOfARevisionAndWhenTrafficShiftsToTheReplacementInstancesDuringAnEc2OnPremisesBlueGreenDeployment = 'L-B8C6A115', + AssociatedAlarmsPerDeploymentGroup = 'L-9F835576', +} +export enum AmazonCodeGuruProfilerQuota { + NumberOfProfilingGroupsPerAccountAndRegion = 'L-DA8D4E8D', +} +export enum AmazonCodeGuruReviewerQuota { + AllowedCodeReviews = 'L-F5129FC6', +} +export enum AwsCodePipelineQuota { + TotalPipelines = 'L-78D200AD', + TotalActionsPerPipeline = 'L-1402209C', + TotalParallelActionsPerStage = 'L-2B3011E2', + MinimumActions = 'L-C57FFB43', + TotalPipelinesWithChangeDetectionSetToPeriodicallyCheckingForSourceChanges = 'L-C5885C1C', + TotalSequentialActionsPerStage = 'L-8DF1BAAD', + TotalCustomActions = 'L-519D5A90', + MinimumStagesPerPipeline = 'L-C8CB041B', + TotalStagesPerPipeline = 'L-A0A99E23', + TotalWebhooks = 'L-FE939BB2', + TotalActionsPerStage = 'L-570F1605', + TotalJsonObjectSizeForParameterOverrides = 'L-F8F56C9F', + AwsCodeDeployEcsBlueGreenActionTimeout = 'L-87C878A5', + AwsCodeDeployActionTimeout = 'L-CE1F2EE9', + TotalImageDefinitionsJsonFileSize = 'L-DCBA35EE', + ApprovalActionTimeout = 'L-A95CB60D', + ActionConfigurationKeyLength = 'L-182AE5D8', + TotalPeriodForExecutionHistory = 'L-31A751EC', + TotalSourceArtifactSizeForAmazonEbsDeployments = 'L-F2AD11A6', + ActionConfigurationValueLength = 'L-6F95DA01', + AwsCloudFormationActionTimeout = 'L-447DD651', + AwsLambdaActionTimeout = 'L-912817AD', + AmazonS3DeploymentActionTimeout = 'L-ABB870A7', + TotalAmazonS3SourceArtifactSize = 'L-9D72EF0D', + AwsCodeBuildActionTimeout = 'L-F7192911', + TotalInputArtifactSizeForAwsCloudFormationDeployments = 'L-3ECA8567', + ActionTimeout = 'L-5AA45A27', + TotalAwsCodeCommitOrGitHubSourceArtifactSize = 'L-1E23CE75', +} +export enum AmazonCognitoFederatedIdentitiesQuota { + RateOfUntagResourceRequests = 'L-0D31D6D2', + RateOfListTagsForResourceRequests = 'L-50C9AAB8', + RateOfListIdentitiesRequests = 'L-DBF99350', + RateOfGetOpenIdTokenForDeveloperIdentityRequests = 'L-0BF99E8D', + RateOfGetOpenIdTokenRequests = 'L-E97D135E', + RateOfGetIdRequests = 'L-A38ADA84', + RateOfGetCredentialsForIdentityRequests = 'L-5AE9F13D', + RateOfTagResourceRequests = 'L-DAF3EAFF', + RoleBasedAccessControlRules = 'L-1F1BC060', + IdentityPoolsPerAccount = 'L-8692CE1C', + ListApiCallResults = 'L-EAF710D2', + LoginProviderNameSize = 'L-B08F14B9', + IdentityPoolNameSize = 'L-29CA570C', + UserPoolProvidersPerIdentityPool = 'L-14403AD5', +} +export enum AmazonCognitoUserPoolsQuota { + RateOfUserTokenRequests = 'L-F21F8BB4', + RateOfUserFederationRequests = 'L-BB3E7CCF', + UserImportJobsPerUserPool = 'L-681BB884', + IdentityProvidersPerUserPool = 'L-1B44D826', + RateOfUserPoolResourceReadRequestsPerAccount = 'L-A01C9633', + RateOfUserResourceUpdateRequests = 'L-574C86AE', + RateOfUserListRequests = 'L-259E3368', + RateOfUserPoolReadRequests = 'L-CFFBE34A', + RateOfUserResourceReadRequests = 'L-55545DC8', + RateOfUserAccountRecoveryRequests = 'L-7D6E8ED3', + RateOfUserAuthenticationRequests = 'L-026ADBA3', + RateOfUserPoolUpdateRequests = 'L-60A0B411', + UserPoolsPerAccount = 'L-66E6DF30', + RateOfUserReadRequests = 'L-D6BD5178', + RateOfUserPoolResourceUpdateRequestsPerAccount = 'L-B7575496', + AppsPerUserPool = 'L-5EAB0605', + RateOfUserUpdateRequests = 'L-6621E65D', + ResourceServersPerUserPool = 'L-7CDAF993', + RateOfUserCreationRequests = 'L-5987B8A0', + RateOfUserPoolClientUpdateRequestsPerAccount = 'L-12C4D74A', + RateOfUserPoolClientReadRequestsPerAccount = 'L-A412573D', + RateOfUserPoolClientReadRequestsPerUserPool = 'L-F122EFFD', + ScopesPerResourceServer = 'L-770A44F8', + GroupsPerUser = 'L-3F0DE77D', + CustomDomainsPerAccount = 'L-71267F98', + GroupsPerUserPool = 'L-A585C375', + RateOfUserPoolResourceReadRequestsPerUserPool = 'L-181E40D0', + RateOfClientAuthenticationRequestsPerAccount = 'L-74D3DD04', + RateOfUserPoolClientUpdateRequestsPerUserPool = 'L-04F7DFB8', + RateOfUserPoolResourceUpdateRequestsPerUserPool = 'L-BC27731B', +} +export enum AmazonCognitoSyncQuota { + RecordsPerDataset = 'L-97A9518B', + DatasetSize = 'L-C5EE478A', + BulkPublishWaitTime = 'L-239B0C0A', + DatasetsPerIdentity = 'L-2625A4A0', + DatasetNameSize = 'L-4CD747A5', +} +export enum AmazonComprehendQuota { + ListDocumentClassificationJobsThrottleLimitInTransactionsPerSecond = 'L-A1F7E693', + ListEntitiesDetectionJobsThrottleLimitInTransactionsPerSecond = 'L-40A899B3', + StopSentimentDetectionJobThrottleLimitInTransactionsPerSecond = 'L-10AEC0BE', + DescribeEntityRecognizerThrottleLimitInTransactionsPerSecond = 'L-F039F1E3', + CreateFlywheelMaxActiveFlywheels = 'L-AE5B911F', + StartFlywheelIterationMaxConcurrentFlywheelIterations = 'L-C5F124CF', + DetectEntitiesMaxActiveJobs = 'L-2B8ECCAB', + EndpointsMaxActiveEndpoints = 'L-55642075', + CreateEntityRecognizerThrottleLimitInTransactionsPerSecond = 'L-A207C175', + DatasetsMaxConcurrentCreates = 'L-0C094DCD', + MaxTrainDatasetsPerFlywheel = 'L-7CC66BB8', + StartDocumentClassificationJobThrottleLimitInTransactionsPerSecond = 'L-5674A323', + DescribeDocumentClassificationJobThrottleLimitInTransactionsPerSecond = 'L-91446453', + DeleteEntityRecognizerThrottleLimitInTransactionsPerSecond = 'L-E7F70588', + DescribeDominantLanguageDetectionJobThrottleLimitInTransactionsPerSecond = 'L-60ABC79C', + EndpointsMaxInferenceUnitsPerEndpoint = 'L-70EC2949', + ListDominantLanguageDetectionJobsThrottleLimitInTransactionsPerSecond = 'L-8532F92C', + CreateFlywheelMaxConcurrent = 'L-8F55B05C', + EntityRecognizerMaxActiveJobs = 'L-4BDB4A9D', + DescribeDocumentClassifierThrottleLimitInTransactionsPerSecond = 'L-C39735E0', + DetectDominantLanguageMaxActiveJobs = 'L-7AC96081', + StartKeyPhrasesDetectionJobThrottleLimitInTransactionsPerSecond = 'L-4D712CC8', + DocumentClassifierMaxActiveJobs = 'L-94042C4D', + ListDocumentClassifiersThrottleLimitInTransactionsPerSecond = 'L-7820536E', + StartDominantLanguageDetectionJobThrottleLimitInTransactionsPerSecond = 'L-3FD9ACEB', + ListSentimentDetectionJobsThrottleLimitInTransactionsPerSecond = 'L-13861BA2', + ListTopicsDetectionJobsThrottleLimitInTransactionsPerSecond = 'L-438FD9AD', + EndpointsMaxInferenceUnitsPerAccount = 'L-2A73DEBC', + StartSentimentDetectionJobThrottleLimitInTransactionsPerSecond = 'L-7B91C94D', + StopDominantLanguageDetectionJobThrottleLimitInTransactionsPerSecond = 'L-67D99149', + DescribeKeyPhrasesDetectionJobThrottleLimitInTransactionsPerSecond = 'L-3E342F88', + StartEntitiesDetectionJobThrottleLimitInTransactionsPerSecond = 'L-8DD67684', + StopEntitiesDetectionJobThrottleLimitInTransactionsPerSecond = 'L-0B530363', + StopKeyPhrasesDetectionJobThrottleLimitInTransactionsPerSecond = 'L-C7E12CA2', + DetectKeyPhrasesMaxActiveJobs = 'L-BFFD1421', + StopTrainingDocumentClassifierThrottleLimitInTransactionsPerSecond = 'L-E1D53C9F', + UntagResourceThrottleLimitInTransactionsPerSecond = 'L-6ECBDFF6', + ListTagsForResourceThrottleLimitInTransactionsPerSecond = 'L-D4C039C8', + StartTopicsDetectionJobThrottleLimitInTransactionsPerSecond = 'L-F91E977B', + DescribeEntitiesDetectionJobThrottleLimitInTransactionsPerSecond = 'L-428EEE9B', + DeleteDocumentClassifierThrottleLimitInTransactionsPerSecond = 'L-D6BBB77F', + MaxTestDatasetsPerFlywheel = 'L-1666A7DF', + ListKeyPhrasesDetectionJobsThrottleLimitInTransactionsPerSecond = 'L-E9B0ABA2', + StopTrainingEntityRecognizerThrottleLimitInTransactionsPerSecond = 'L-CF92EEE2', + DescribeTopicsDetectionJobThrottleLimitInTransactionsPerSecond = 'L-13A0494F', + CreateDocumentClassifierThrottleLimitInTransactionsPerSecond = 'L-243FFDDD', + DetectSentimentMaxActiveJobs = 'L-32ABBB12', + TopicsDetectionMaxActiveJobs = 'L-F2BED405', + TagResourceThrottleLimitInTransactionsPerSecond = 'L-9A845B3A', + DocumentClassificationMaxActiveJobs = 'L-E65FE76A', + ListEntityRecognizersThrottleLimitInTransactionsPerSecond = 'L-5BADD54F', + DescribeSentimentDetectionJobThrottleLimitInTransactionsPerSecond = 'L-E0EFA344', + ListTargetedSentimentDetectionJobsThrottleLimitInTransactionsPerSecond = 'L-C220288F', + DescribePiiEntitiesDetectionJobThrottleLimitInTransactionsPerSecond = 'L-E9F2B1B1', + DetectPiiEntitiesMaxActiveJobs = 'L-D88E2B98', + StartTargetedSentimentDetectionJobThrottleLimitInTransactionsPerSecond = 'L-230B53F3', + DescribeTargetedSentimentDetectionJobThrottleLimitInTransactionsPerSecond = 'L-9E526A5F', + ListPiiEntitiesDetectionJobsThrottleLimitInTransactionsPerSecond = 'L-5454BD4C', + StopTargetedSentimentDetectionJobThrottleLimitInTransactionsPerSecond = 'L-4DD99000', + StartEventsDetectionJobThrottleLimitInTransactionsPerSecond = 'L-68C199F3', + DescribeEventsDetectionJobThrottleLimitInTransactionsPerSecond = 'L-A1AF2FE3', + DetectEventsMaxActiveJobs = 'L-471B41D6', + StopPiiEntitiesDetectionJobThrottleLimitInTransactionsPerSecond = 'L-1EEF8E8F', + ListEventsDetectionJobsThrottleLimitInTransactionsPerSecond = 'L-0F06FE42', + StopEventsDetectionJobThrottleLimitInTransactionsPerSecond = 'L-CA1326CD', + DetectTargetedSentimentMaxActiveJobs = 'L-358FBC4F', + StartPiiEntitiesDetectionJobThrottleLimitInTransactionsPerSecond = 'L-FBEC67FF', +} +export enum AmazonComprehendMedicalQuota { + TransactionsPerSecondTpsForTheStopIcd10CmInferenceJobOperation = 'L-2FF7DD8B', + TransactionsPerSecondTpsForTheDetectPhiOperation = 'L-E5CDCBCE', + TransactionsPerSecondTpsForTheStopSnomedctInferenceJobOperation = 'L-3645AB89', + MaximumDocumentSizeUtf8CharactersForTheDetectPhiOperation = 'L-067D6AC2', + MaximumDocumentSizeUtf8CharactersForTheDetectEntitiesOperation = 'L-861CEBF7', + TransactionsPerSecondTpsForTheListRxNormInferenceJobsOperation = 'L-BC0855C2', + TransactionsPerSecondTpsForTheStartSnomedctInferenceJobOperation = 'L-23625ADE', + TransactionsPerSecondTpsForTheStartRxNormInferenceJobOperation = 'L-65E555CE', + TransactionsPerSecondTpsForTheInferIcd10CmOperation = 'L-DCCE7022', + MaximumDocumentSizeUtf8CharactersForTheInferRxNormOperation = 'L-7D0DECFE', + TransactionsPerSecondTpsForTheInferRxNormOperation = 'L-144CE345', + TransactionsPerSecondTpsForTheDetectEntitiesOperation = 'L-A7AB2FD9', + TransactionsPerSecondTpsForTheDescribeIcd10CmInferenceJobOperation = 'L-D3E9A826', + TransactionsPerSecondTpsForTheDescribeRxNormInferenceJobOperation = 'L-9160F74C', + MaximumDocumentSizeUtf8CharactersForInferSnomedct = 'L-C66FE385', + CharactersPerSecondCpsForTheInferRxNormOperation = 'L-EBC89551', + MaximumDocumentSizeUtf8CharactersForTheInferIcd10CmOperation = 'L-FFBD9DE3', + MaximumIndividualFileSizeForBatchJobs = 'L-A02E8922', + MaximumIndividualFileSizeForInferSnomedctBatchJobs = 'L-362B6CD2', + TransactionsPerSecondTpsForTheDescribeEntitiesDetectionV2JobOperation = 'L-2E4FECDB', + CharactersPerSecondCpsForTheDetectPhiOperation = 'L-898A29B5', + TransactionsPerSecondTpsForTheDescribePhiDetectionJobOperation = 'L-6D2451A2', + OntologyIcd10RxNNormSnomedctLinkingMaximumBatchJobSizeSumTotalForAllTheFilesSubmittedInABatchJob = 'L-74A11988', + TransactionsPerSecondTpsForTheStartEntitiesDetectionV2JobOperation = 'L-CA412BC4', + TransactionsPerSecondTpsForTheStartIcd10CmInferenceJobOperation = 'L-A7A39B63', + TransactionsPerSecondTpsForTheStartPhiDetectionJobOperation = 'L-63264B74', + CharactersPerSecondCpsForTheDetectEntitiesOperation = 'L-0F270C16', + MinimumSizeOfBatchJobsAllFiles = 'L-E2695FEA', + TransactionsPerSecondTpsForTheStopRxNormInferenceJobOperation = 'L-6E23E26F', + MaximumDocumentSizeUtf8CharactersForTheDetectEntitiesV2Operation = 'L-534E8C6D', + TransactionsPerSecondTpsForTheListIcd10CmInferenceJobsOperation = 'L-697FACA2', + TransactionsPerSecondTpsForTheStopEntitiesDetectionV2JobOperation = 'L-5C7158CA', + TransactionsPerSecondTpsForTheStopPhiDetectionJobOperation = 'L-A599138D', + TransactionsPerSecondTpsForTheListPhiDetectionJobsOperation = 'L-ECD06837', + CharactersPerSecondCpsForTheInferIcd10CmOperation = 'L-2D8DD360', + MaximumBatchJobSizeSumTotalForAllTheFilesSubmittedInABatchJob = 'L-FA0DC70B', + CharactersPerSecondCpsForTheInferSnomedctOperation = 'L-94FD3525', + TransactionsPerSecondTpsForTheDetectEntitiesV2Operation = 'L-92538F24', + TransactionsPerSecondTpsForTheListEntitiesDetectionV2JobsOperation = 'L-D2B25B86', + TransactionsPerSecondTpsForTheInferSnomedctOperation = 'L-F142A440', + CharactersPerSecondCpsForTheDetectEntitiesV2Operation = 'L-DA25DEBE', +} +export enum AwsComputeOptimizerQuota { + TheNumberOfApiCallsPerSecondPerAccount = 'L-CF68B77A', +} +export enum AwsConfigQuota { + AwsConfigRulesPerRegion = 'L-0BE82991', +} +export enum AmazonConnectQuota { + RateOfUntagContactApiRequests = 'L-50C3EE60', + RateOfListPredefinedAttributesApiRequests = 'L-BE2447CC', + RateOfCreateQuickConnectApiRequests = 'L-272F1E62', + RateOfDeleteRuleApiRequests = 'L-7AA5113F', + RateOfListRoutingProfilesApiRequests = 'L-30929A21', + RateOfGetContactAttributesApiRequests = 'L-5AF7EB96', + RateOfListTaskTemplatesApiRequests = 'L-0D791E12', + RateOfStopContactApiRequests = 'L-650BD10F', + RateOfDisassociateRoutingProfileQueuesApiRequests = 'L-83963769', + RateOfListTrafficDistributionGroupsApiRequests = 'L-FF4585DE', + RateOfUpdateSecurityProfileApiRequests = 'L-17DC1373', + RateOfUpdateQueueHoursOfOperationApiRequests = 'L-1317E3B0', + RateOfDescribePhoneNumberApiRequests = 'L-34F440B5', + RateOfDisassociateQueueQuickConnectsApiRequests = 'L-BC61DC58', + RateOfListContactFlowModulesApiRequests = 'L-89B2A386', + RateOfReplicateInstanceApiRequests = 'L-5AD48B1A', + RateOfCreateUserHierarchyGroupApiRequests = 'L-E621D747', + RateOfDeleteIntegrationAssociationApiRequests = 'L-9CF39F22', + RateOfListUserProficienciesApiRequests = 'L-A59C54EE', + RateOfDescribeContactFlowModuleApiRequests = 'L-56B34560', + RateOfListContactReferencesApiRequests = 'L-6840C932', + RateOfMonitorContactApiRequests = 'L-230B11C5', + RateOfUpdateUserHierarchyStructureApiRequests = 'L-1775C3F8', + RateOfUpdateContactFlowContentApiRequests = 'L-4C062DDC', + RateOfTagResourceApiRequests = 'L-EA358306', + RateOfUpdateQuickConnectNameApiRequests = 'L-A84FDAD7', + RateOfStartContactStreamingApiRequests = 'L-93412F17', + RateOfListUserHierarchyGroupsApiRequests = 'L-E6DB6D6D', + RateOfSuspendContactRecordingApiRequests = 'L-22C4CED1', + RateOfCreateHoursOfOperationApiRequests = 'L-C32AFAAE', + RateOfListBotsApiRequests = 'L-6DF53542', + AwsLambdaFunctionsPerInstance = 'L-E3D2F503', + RateOfDeleteHoursOfOperationApiRequests = 'L-57EBCF95', + RateOfUntagResourceApiRequests = 'L-26D9F60B', + RateOfDeleteTaskTemplateApiRequests = 'L-D7F21423', + RateOfGetFederationTokenApiRequests = 'L-9AA558F3', + UserHierarchyGroupsPerInstance = 'L-D68AAAE4', + RateOfUpdateInstanceAttributeApiRequests = 'L-40F4B10D', + RateOfStartWebRtcContactApiRequests = 'L-5CFC10A5', + RateOfPutUserStatusApiRequests = 'L-50B4DE11', + RateOfAssociateSecurityKeyApiRequests = 'L-5B601B18', + RateOfDescribeInstanceAttributeApiRequests = 'L-2F996DE6', + RateOfUpdateUserSecurityProfilesApiRequests = 'L-64B27051', + HoursOfOperationPerInstance = 'L-20CD02F7', + RateOfSearchVocabulariesApiRequests = 'L-6C658B70', + RateOfListUseCasesApiRequests = 'L-D04B6FBE', + PredefinedAttributes = 'L-3828FBF0', + RateOfAssociateLambdaFunctionApiRequests = 'L-4AE2F6BF', + RateOfCreateQueueApiRequests = 'L-DF4FC88B', + RateOfSearchQueuesApiRequests = 'L-8157C163', + RateOfUpdateContactAttributesApiRequests = 'L-F001E5ED', + RateOfSearchPredefinedAttributesApiRequests = 'L-DB5F63B4', + RateOfAssociateDefaultVocabularyApiRequests = 'L-731F613E', + RateOfAssociatePhoneNumberContactFlowApiRequests = 'L-D2ECB451', + RoutingProfilesPerInstance = 'L-D3E7BE26', + RateOfUpdateUserProficienciesApiRequests = 'L-5A3065E6', + RateOfListPhoneNumbersApiRequests = 'L-9959E55D', + RateOfSearchAvailablePhoneNumbersApiRequests = 'L-AF3C38D5', + RateOfSearchPromptsApiRequests = 'L-E2244126', + RateOfClaimPhoneNumberApiRequests = 'L-21385E28', + AmazonConnectInstanceCount = 'L-AA17A6B9', + RateOfUpdateRuleApiRequests = 'L-AEFB3FB7', + RateOfListRoutingProfileQueuesApiRequests = 'L-16BF00C7', + RateOfListPhoneNumbersV2ApiRequests = 'L-B07B2C56', + RateOfUpdateTaskTemplateApiRequests = 'L-000B6A1A', + RateOfCreateRoutingProfileApiRequests = 'L-8CE99751', + RateOfDescribeRoutingProfileApiRequests = 'L-839A2EDC', + RateOfAssociateLexBotApiRequests = 'L-45BAE507', + QueuesPerRoutingProfilePerInstance = 'L-516BC0EB', + RateOfUpdateQuickConnectConfigApiRequests = 'L-B29D0CD1', + RateOfDescribeUserHierarchyGroupApiRequests = 'L-50D07AB9', + RateOfSearchHoursOfOperationsApiRequests = 'L-44BB2CC5', + RateOfTransferContactApiRequests = 'L-43B4F8CE', + RateOfDeleteUseCaseApiRequests = 'L-CDC861C1', + AmazonLexV2BotAliasesPerInstance = 'L-CCEA7427', + RateOfUpdateContactFlowMetadataApiRequests = 'L-96329A5A', + RateOfCreateVocabularyApiRequests = 'L-1AB8E9D9', + RateOfListHoursOfOperationsApiRequests = 'L-09AAE068', + RateOfUpdateHoursOfOperationApiRequests = 'L-6E6B18DB', + RateOfDisassociateBotApiRequests = 'L-C06273D6', + RateOfAssociateRoutingProfileQueuesApiRequests = 'L-01980B0F', + RateOfUpdateContactScheduleApiRequests = 'L-18108401', + RateOfStartChatContactApiRequests = 'L-AA48CD49', + RateOfGetCurrentUserDataApiRequests = 'L-9E54B88B', + RateOfDescribeHoursOfOperationApiRequests = 'L-F6EB2DE1', + RateOfDeleteQuickConnectApiRequests = 'L-EC633E57', + RateOfSearchResourceTagsApiRequests = 'L-3F3E67D1', + RateOfListInstanceStorageConfigsApiRequests = 'L-8BFD043A', + AmazonLexBotsPerInstance = 'L-B93A6612', + RateOfListInstancesApiRequests = 'L-98C95556', + RateOfUpdatePredefinedAttributeApiRequests = 'L-FBA0478F', + SecurityProfilesPerInstance = 'L-F325A715', + RateOfDeleteInstanceApiRequests = 'L-B9220F3B', + RateOfCreateIntegrationAssociationApiRequests = 'L-1A44121A', + PhoneNumbersPerInstance = 'L-8F812903', + ConcurrentActiveTasksPerInstance = 'L-60553137', + RateOfUpdateInstanceStorageConfigApiRequests = 'L-AEE2C982', + RateOfReleasePhoneNumberApiRequests = 'L-91A40F24', + RateOfUpdateTrafficDistributionApiRequests = 'L-E230854C', + RateOfCreateParticipantApiRequests = 'L-8FE21897', + RateOfDescribeSecurityProfileApiRequests = 'L-2AF5EEF5', + RateOfDeleteUserApiRequests = 'L-30488271', + QueuesPerInstance = 'L-19A87C94', + RateOfStartTaskContactApiRequests = 'L-E704D621', + RateOfUpdateRoutingProfileConcurrencyApiRequests = 'L-E0E93115', + RateOfCreateAgentStatusApiRequests = 'L-3118109A', + RateOfDisassociateUserProficienciesApiRequests = 'L-53E03705', + ContactFlowsPerInstance = 'L-22922690', + RateOfUpdateRoutingProfileDefaultOutboundQueueApiRequests = 'L-C8237495', + RateOfListSecurityKeysApiRequests = 'L-DB5A7716', + RateOfAssociateQueueQuickConnectsApiRequests = 'L-AFE616A6', + RateOfDeleteUserHierarchyGroupApiRequests = 'L-6751163B', + ReportsPerInstance = 'L-79564E52', + RateOfGetCurrentMetricDataApiRequests = 'L-ED2B0490', + RateOfCreateUseCaseApiRequests = 'L-5755F8EC', + RateOfDescribeAgentStatusApiRequests = 'L-08DF489D', + RateOfUpdatePhoneNumberApiRequests = 'L-B7E1268D', + RateOfListApprovedOriginsApiRequests = 'L-80A82D5F', + RateOfPauseContactApiRequests = 'L-759067FC', + RateOfStartOutboundVoiceContactApiRequests = 'L-4E9BCC96', + RateOfListContactFlowsApiRequests = 'L-4641705A', + RateOfDisassociateLambdaFunctionApiRequests = 'L-C5C511CD', + RateOfDescribeTrafficDistributionGroupApiRequests = 'L-DD5F6903', + RateOfListRulesApiRequests = 'L-0711FF1F', + RateOfListSecurityProfilePermissionsApiRequests = 'L-12900DCA', + RateOfUpdateContactFlowModuleMetadataApiRequests = 'L-80204DDC', + RateOfDisassociatePhoneNumberContactFlowApiRequests = 'L-F7E8A253', + RateOfDescribePromptApiRequests = 'L-3F6301E8', + ConcurrentActiveChatsPerInstance = 'L-D4BA6F6E', + RateOfDisassociateInstanceStorageConfigApiRequests = 'L-76EF4B62', + RateOfListLexBotsApiRequests = 'L-467CADD3', + RateOfListInstanceAttributesApiRequests = 'L-5CB19903', + RateOfListLambdaFunctionsApiRequests = 'L-D9BB0F83', + RateOfCreateInstanceApiRequests = 'L-2AADC77E', + RateOfUpdateQueueNameApiRequests = 'L-A250B0F6', + RateOfResumeContactRecordingApiRequests = 'L-7FA26DC8', + RateOfTagContactApiRequests = 'L-AAE06E27', + RateOfCreateTaskTemplateApiRequests = 'L-185BE3DB', + ProficienciesPerAgent = 'L-50375162', + RateOfCreateContactFlowApiRequests = 'L-A218697D', + RateOfDescribeContactFlowApiRequests = 'L-41C7214A', + RateOfUpdateRoutingProfileNameApiRequests = 'L-4AAC8E79', + RateOfUpdateUserHierarchyApiRequests = 'L-AEAF5C4B', + RateOfAssociateBotApiRequests = 'L-8C43A191', + RateOfUpdateUserIdentityInfoApiRequests = 'L-66B5F86E', + RateOfCreatePredefinedAttributeApiRequests = 'L-75490F5A', + RateOfDescribePredefinedAttributeApiRequests = 'L-753B94AB', + RateOfDismissUserContactApiRequests = 'L-2BDBF248', + ConcurrentCampaignActiveCallsPerInstance = 'L-E908C3A1', + RateOfListAgentStatusesApiRequests = 'L-D6D4A2DA', + RateOfDeleteContactFlowApiRequests = 'L-BBBDDEDC', + PromptsPerInstance = 'L-0865B754', + RateOfDescribeUserApiRequests = 'L-EE6F0D82', + RateOfListQuickConnectsApiRequests = 'L-44B5DA37', + RateOfDescribeQuickConnectApiRequests = 'L-2DE43297', + RateOfBatchPutContactApiRequests = 'L-76F318C5', + ScheduledReportsPerInstance = 'L-986AE5E3', + RateOfDisassociateApprovedOriginApiRequests = 'L-C595FFE9', + RateOfStopContactStreamingApiRequests = 'L-2FC23A76', + RateOfUpdateQueueMaxContactsApiRequests = 'L-4EA7C312', + RateOfSearchQuickConnectsApiRequests = 'L-6FB811CE', + RateOfListUsersApiRequests = 'L-CCC38177', + UsersPerInstance = 'L-9A46857E', + RateOfCreateTrafficDistributionGroupApiRequests = 'L-781E5E85', + RateOfDisassociateLexBotApiRequests = 'L-25E54F7C', + RateOfUpdateQueueStatusApiRequests = 'L-5AB302E1', + RateOfUpdateAgentStatusApiRequests = 'L-2DB48531', + RateOfGetTrafficDistributionApiRequests = 'L-379E909D', + RateOfStartContactRecordingApiRequests = 'L-3EEA2922', + QuickConnectsPerInstance = 'L-68BBE2E8', + RateOfCreateRuleApiRequests = 'L-75EE66CE', + RateOfUpdateContactFlowNameApiRequests = 'L-3741AF59', + RateOfGetTaskTemplateApiRequests = 'L-87C02971', + RateOfListIntegrationAssociationsApiRequests = 'L-A6BE227D', + RateOfDescribeVocabularyApiRequests = 'L-22F9A3D8', + RateOfUpdateContactApiRequests = 'L-40C15531', + RateOfListQueuesApiRequests = 'L-C56E3A3C', + RateOfSearchRoutingProfilesApiRequests = 'L-9DAC7B1B', + RateOfDeleteTrafficDistributionGroupApiRequests = 'L-4409B44A', + RateOfResumeContactApiRequests = 'L-1210FC76', + RateOfDescribeQueueApiRequests = 'L-FAC57D08', + RateOfSearchSecurityProfilesApiRequests = 'L-3481440F', + RateOfCreateUserApiRequests = 'L-CBDEE3E4', + RateOfDescribeContactApiRequests = 'L-371095B8', + RateOfUpdateRoutingProfileQueuesApiRequests = 'L-5E9E65F2', + AgentStatusPerInstance = 'L-D945C9A8', + FlowModulesPerInstance = 'L-19755C7E', + RateOfListTagsForResourceApiRequests = 'L-601C68F6', + RateOfUpdateUserPhoneConfigApiRequests = 'L-5D8210C3', + RateOfDescribeInstanceStorageConfigApiRequests = 'L-57DF9146', + RateOfAssociateApprovedOriginApiRequests = 'L-8787723E', + RateOfDisassociateSecurityKeyApiRequests = 'L-1F455046', + ConcurrentActiveCallsPerInstance = 'L-12AB7C57', + RateOfGetMetricDataV2ApiRequests = 'L-2E719449', + RateOfListDefaultVocabulariesApiRequests = 'L-78937F3A', + RateOfUpdateUserRoutingProfileApiRequests = 'L-418ABD80', + RateOfUpdateParticipantRoleConfigApiRequests = 'L-37E92540', + RateOfAssociateInstanceStorageConfigApiRequests = 'L-B1987D6A', + RateOfCreateSecurityProfileApiRequests = 'L-159E202B', + RateOfUpdateContactFlowModuleContentApiRequests = 'L-C260F37F', + RateOfDeleteSecurityProfileApiRequests = 'L-BD0B57EC', + RateOfCreateContactFlowModuleApiRequests = 'L-DA469EE8', + RateOfDeletePredefinedAttributeApiRequests = 'L-84CCC70A', + RateOfDescribeRuleApiRequests = 'L-40BDE29F', + RateOfStopContactRecordingApiRequests = 'L-C1DA0AD4', + RateOfUpdateQueueOutboundCallerConfigApiRequests = 'L-B1EC95D9', + RateOfListPromptsApiRequests = 'L-A9886A7C', + RateOfAssociateUserProficienciesApiRequests = 'L-2CCBA953', + RateOfListSecurityProfilesApiRequests = 'L-A408782D', + RateOfListQueueQuickConnectsApiRequests = 'L-6271E27A', + RateOfDeleteVocabularyApiRequests = 'L-78A553AE', + RateOfDeleteContactFlowModuleApiRequests = 'L-19D865C6', + RateOfGetMetricDataApiRequests = 'L-52794498', + RateOfSearchUsersApiRequests = 'L-E2C35CCE', + RateOfDescribeInstanceApiRequests = 'L-D14CF86E', + RateOfUpdateUserHierarchyGroupNameApiRequests = 'L-020883A7', + RateOfDescribeUserHierarchyStructureApiRequests = 'L-5F32FD78', + CapacityPlanningScenariosPerInstance = 'L-5CE2FEE8', + ConcurrentUploadsPerInstance = 'L-3233242F', + FileSizePerUploadOfCapacityPlanUserData = 'L-FBDF9277', + QueuesPerForecastGroup = 'L-E644BA2E', + StaffingGroupsPerSupervisor = 'L-67F605FD', + SupervisorsPerStaffingGroup = 'L-241FA7AE', + ShiftActivitiesPerShiftProfile = 'L-C174EC88', + AgentsPerSchedule = 'L-71DDC3F5', + ForecastGroupsPerInstance = 'L-64992552', + CapacityPlanUserDataUploadsPerInstance = 'L-CF8DBCAD', + StaffingGroupsPerInstance = 'L-A3079FC2', + FileSizePerUploadOfHistoricalActuals = 'L-FF826748', + StaffingGroupsPerForecastGroup = 'L-9FF2F6AB', + FileSizePerUploadOfCapacityPlanOverrides = 'L-3A13A048', + AgentsPerStaffingGroup = 'L-FA43E8DF', + CapacityPlansPerInstance = 'L-62CF8E4F', + SchedulesPerInstance = 'L-59F577B1', + CapacityPlanOverrideUploadsPerInstance = 'L-F9BE2186', + ShiftProfilesPerInstance = 'L-E423F15D', + HistoricalActualsUploadsPerInstance = 'L-E4666753', + ForecastOverrideUploadsPerInstance = 'L-E09E7401', + ShiftActivitiesPerInstance = 'L-8FAD6E1F', + FileSizePerUploadOfForecastOverrides = 'L-FA1E1138', +} +export enum AmazonConnectOutboundCampaignsQuota { + Campaigns = 'L-7F7B4C39', +} +export enum MechanicalTurkQuota { + MonthlyUsage = 'L-EC45676A', +} +export enum AwsGlueDataBrewQuota { + JobsPerAwsAccount = 'L-0D2C4DFC', + RecipesPerAwsAccount = 'L-EE2782A4', + VersionsPerRecipe = 'L-A386FCB8', + OpenProjectsPerAwsAccount = 'L-5748848E', + RulesetsPerDataset = 'L-131D2768', + RulesetsPerAwsAccount = 'L-955A1FA6', + RulesPerRuleset = 'L-640ABD4F', + ProjectsPerAwsAccount = 'L-CE9E9D8D', + ConcurrentJobsPerAwsAccount = 'L-935D4120', + SchedulesPerAwsAccount = 'L-BF3E0A94', + DatasetsPerAwsAccount = 'L-940C8930', + NodeCapacityPerAwsAccount = 'L-B06AE58E', +} +export enum AwsDataExchangeQuota { + ConcurrentInProgressJobsToCreateDataGrants = 'L-F1756D86', + RevisionsPerAmazonS3DataAccessDataSet = 'L-70B0F91E', + AwsLakeFormationDataPermissionAssetsPerRevision = 'L-D470FF0C', + AssetPerExportJobFromAmazonS3 = 'L-B13AFAD0', + ConcurrentInProgressJobsToImportAssetsFromAmazonS3 = 'L-307F71B5', + ConcurrentInProgressJobsToImportAssetsFromAnAwsLakeFormationTagPolicy = 'L-426BE746', + ConcurrentInProgressJobsToImportAssetsFromAmazonApiGateway = 'L-A1C96D1F', + PendingDataGrantsPerConsumer = 'L-1FA7039C', + ConcurrentInProgressJobsToCreateAmazonS3DataAccessAssetsFromS3Buckets = 'L-7878C4C3', + AssetsPerImportJobFromAmazonS3 = 'L-694A226E', + RevisionsPerAddRevisionsChangeSet = 'L-916D9CEE', + PrivateOffersPerAccount = 'L-CB9E1125', + DataSetsPerProduct = 'L-DE2ACC41', + RevisionsPerDataSet = 'L-375806A0', + AssetsPerRevision = 'L-92FCD39C', + ProductsPerAccount = 'L-DFF93383', + RevisionsPerAmazonApiGatewayApiDataSet = 'L-237CFF3D', + RevisionsPerAwsLakeFormationDataPermissionDataSet = 'L-A15CB065', + BringYourOwnSubscriptionOffersPerAccount = 'L-40666FB8', + ConcurrentInProgressJobsToImportAssetsFromASignedUrl = 'L-50515269', + ConcurrentInProgressJobsToExportAssetsToAmazonS3 = 'L-37C425C6', + DataSetsPerAccount = 'L-52E2E63A', + AssetSizeInGb = 'L-514CB613', + ProductsPerDataSet = 'L-D05CF9CD', + AmazonApiGatewayApiAssetsPerRevision = 'L-4F329808', + ConcurrentInProgressJobsToDeleteDataGrants = 'L-340ED0B2', + ConcurrentInProgressJobsToExportRevisionsToAmazonS3 = 'L-09B749AD', + ConcurrentInProgressJobsToExportAssetsToASignedUrl = 'L-52FCAA8A', + ActiveAndPendingDataGrants = 'L-4F23AFE3', + AmazonS3DataAccessAssetsPerRevision = 'L-60973A49', + AmazonRedshiftDatashareAssetsPerImportJobFromRedshift = 'L-2BA57A8A', + AmazonRedshiftDatashareAssetsPerRevision = 'L-9961D71E', + EventActionsPerAccount = 'L-8EB7960E', + ConcurrentInProgressJobsToImportAssetsFromAmazonRedshiftDatashares = 'L-9D7AE86C', + SampleFileSizeInMb = 'L-4621BEF4', + SamplesPerProduct = 'L-D8673932', + RevisionsPerAmazonRedshiftDatashareDataSet = 'L-A8722A7A', + AutoExportEventActionsPerDataSet = 'L-7053BE85', + DataDictionaryFileSizeInMb = 'L-6CFAE129', + DataDictionariesPerProduct = 'L-74F9E0C2', +} +export enum AwsDataPipelineQuota { + RateOfCreationOfAnInstanceFromAnObject = 'L-D6EAA5E9', + NumberOfObjectsPerPipeline = 'L-68BE1CDF', + NumberOfFieldsPerObject = 'L-3CF04A5A', + NumberOfRollUpsIntoASingleObject = 'L-1DC02F93', + NumberOfEc2InstancesPerEc2ResourceObject = 'L-69A30F0F', + NumberOfUtf8BytesPerObject = 'L-A7452F9F', + NumberOfUtf8BytesPerField = 'L-F1DEF7D4', + RetriesOfAPipelineActivityPerTask = 'L-6F30EEA5', + NumberOfPipelinesYouCanCreate = 'L-F826FAFA', + MinimumDelayBetweenRetryAttemptsInMinutes = 'L-FB27F190', + NumberOfActiveInstancesPerObject = 'L-38666D85', + MinimumSchedulingIntervalInMinutes = 'L-8BA2F77F', + NumberOfUtf8BytesPerFieldNameOrIdentifier = 'L-064F8D6F', +} +export enum AwsDataSyncQuota { + Tasks = 'L-74E04279', + ThroughputPerTask = 'L-1FEC79AD', + FilesPerTask = 'L-DF42D66D', +} +export enum AmazonDataZoneQuota { + Assets = 'L-06335BC6', + Glossaries = 'L-2C2845D2', + AssetTypes = 'L-9EF33583', + EnvironmentsInADomain = 'L-EDF6298B', + BusinessGlossaryTerms = 'L-DBBF7161', +} +export enum AmazonDynamoDbAcceleratorDaxQuota { + SubnetsPerSubnetGroup = 'L-E34C284B', + ParameterGroups = 'L-315AFD08', + TotalNumberOfNodes = 'L-AB139030', + SubnetGroups = 'L-F55BD408', + NodesPerCluster = 'L-87AEEBB5', +} +export enum AwsDeepLensQuota { + DevicesPerAccount = 'L-90BFE754', + VersionsPerProject = 'L-EDBF7FE4', + ProjectsPerAccount = 'L-D49D819B', + ModelsPerAccount = 'L-78C4BF0A', +} +export enum AwsDeepRacerQuota { + EvaluationJobs = 'L-E84DEF70', + Cars = 'L-47A52EC0', + TrainingJobs = 'L-B8B892E1', +} +export enum AwsDirectConnectQuota { + ActiveAwsDirectConnectDedicatedConnectionsPerLocation = 'L-A2659207', + TransitGatewaysPerAwsDirectConnectGateway = 'L-9BCB4CD9', + DedicatedConnectionsOrInterconnectsPerLinkAggregationGroupLag = 'L-5A971579', + NumberOfPrefixesPerAwsTransitGatewayFromAwsToOnPremisesOnATransitVirtualInterface = 'L-A1004C93', + LinkAggregationGroupsLaGsPerAwsRegion = 'L-42DEC0EF', + VirtualPrivateGatewaysPerAwsDirectConnectGateway = 'L-FDE06981', + GlobalMaximumNumberOfAwsDirectConnectGateways = 'L-62B7491E', + PrivateOrPublicVirtualInterfacesPerAwsDirectConnectDedicatedConnection = 'L-0B7EBFD7', + VirtualInterfacesPerAwsDirectConnectGateway = 'L-71C3BCCF', +} +export enum AwsApplicationDiscoveryServiceQuota { + DeletionsOfImportRecordsPerDay = 'L-D0845C33', + ApplicationsPerAccount = 'L-F2981287', + ImportedServerRecordsPerAccount = 'L-9031D934', + ActiveAgentsSendingDataToTheService = 'L-AD9963F2', + ImportedServersPerAccount = 'L-E92F1B88', + ServersPerApplication = 'L-B88D303A', + InactiveAgentsHeartbeatingButNotCollectingData = 'L-5BC4442B', + TagsPerServer = 'L-EC09FB9C', +} +export enum AmazonDataLifecycleManagerQuota { + TargetAccountsPerSharingRule = 'L-DCA05F2F', + PoliciesPerRegion = 'L-5407D8DA', +} +export enum AwsDatabaseMigrationServiceAwsDmsQuota { + EndpointCount = 'L-E17328E9', + TaskCount = 'L-7FD3593B', + ServerlessReplications = 'L-E569F59D', + EndpointsPerInstance = 'L-2146F1FD', + SubnetGroups = 'L-27B24FAD', + EventSubscriptions = 'L-D97343A2', + SubnetsPerSubnetGroup = 'L-4182EDE9', + CertificateCount = 'L-FE918D88', + TotalStorage = 'L-BBDCBDC8', + ReplicationInstances = 'L-C2341CDC', + NumberOfRunningDataMigrations = 'L-FBEA20FB', + NumberOfMonitoredObjectsInDmsFleetAdvisorCollector = 'L-49123F1B', + NumberOfDmsFleetAdvisorCollectorInstances = 'L-8D962DAE', + NumberOfDataFilesDmsFleetAdvisorCanSendPerHour = 'L-233F27C4', + NumberOfDataMigrations = 'L-1AB41EE0', + NumberOfDatabaseObjectsDmsFleetAdvisorCanProcess = 'L-70AA6054', + NumberOfMigrationProjects = 'L-DE63148C', + TheAmountOfCollectedDataInDmsFleetAdvisor = 'L-6FA8C1C1', + NumberOfDataMigrationsPerMigrationProject = 'L-62EFB27A', + NumberOfInstanceProfiles = 'L-D12045C2', + NumberOfDataProviders = 'L-9A47CA81', +} +export enum AmazonDocumentDbWithMongoDbCompatibilityQuota { + ReadReplicasPerCluster = 'L-5BA57179', + Instances = 'L-739A3A85', + ClusterParameterGroups = 'L-2A542E16', + EventSubscriptions = 'L-F7FABF71', + SubnetGroups = 'L-02DEA053', + VpcSecurityGroupsPerInstance = 'L-D02D85EA', + Clusters = 'L-13F31459', + ManualClusterSnapshots = 'L-B2551F83', + SubnetsPerSubnetGroup = 'L-36C7F3F8', + TagsPerResource = 'L-3B0E1499', +} +export enum AmazonDocumentDbElasticClustersQuota { + ShardsPerElasticCluster = 'L-5CF76496', + TagsPerResource = 'L-A5B61A35', + ManualClusterSnapshots = 'L-00CE4D32', + ElasticClusters = 'L-B3699347', + ElasticClustersVCpuLimit = 'L-BA054AA8', +} +export enum ElasticDisasterRecoveryQuota { + MaxSourceServersInAllJobs = 'L-05AFA8C6', + MaxTotalReplicatingSourceServersPerAwsAccount = 'L-C1D14A2B', + ConcurrentJobsInProgress = 'L-D88FAC3A', + MaxNumberOfSourceNetworksPerAwsAccount = 'L-4B0323BD', + MaxNumberOfLaunchConfigurationTemplatesPerAwsAccount = 'L-1F3FAE4D', + MaxSourceServersInASingleJob = 'L-B827C881', + MaxConcurrentJobsPerSourceServer = 'L-DD6D028C', + MaxTotalSourceServersPerAwsAccount = 'L-E28BE5E0', + MaxNumberOfLaunchActionsPerResource = 'L-0588D03B', +} +export enum AwsDirectoryServiceQuota { + AwsManagedMicrosoftAdManualSnapshots = 'L-92A19B29', + AwsManagedMicrosoftAdDomainControllers = 'L-25146888', + SimpleAdManualSnapshots = 'L-A18F1612', + AwsManagedMicrosoftAdDirectories = 'L-EF86B739', + AdConnectorDirectories = 'L-092080C3', + SimpleAdDirectories = 'L-5B5620DE', +} +export enum AmazonDynamoDbQuota { + GlobalSecondaryIndexesPerTable = 'L-F7858A77', + WriteThroughputLimitForDynamoDbStreamsProvisionedMode = 'L-923BEB7A', + MaximumNumberOfTables = 'L-F98FE922', + ConcurrentControlPlaneOperations = 'L-1BB77E89', + ProvisionedCapacityDecreasesPerDay = 'L-F3CA5463', + TableLevelWriteThroughputLimit = 'L-AB614373', + AccountLevelWriteThroughputLimitProvisionedMode = 'L-34F8CCC8', + TableLevelReadThroughputLimit = 'L-CF0CBE56', + AccountLevelReadThroughputLimitProvisionedMode = 'L-34F6A552', + MaximumIncrementalExportPeriodWindow = 'L-6F30DCE1', + MinimumIncrementalExportPeriodWindow = 'L-C2098644', + MaximumIncrementalExportConcurrentDataSize = 'L-2A593B99', + MaximumIncrementalExportConcurrentRequests = 'L-D98E8184', +} +export enum AmazonElasticBlockStoreAmazonEbsQuota { + ListSnapshotBlocksRequestsPerAccount = 'L-18E976AB', + PutSnapshotBlockRequestsPerSnapshot = 'L-1774F84A', + PendingSnapshotsPerAccount = 'L-94D7AB7D', + StartSnapshotRequestsPerAccount = 'L-AFEBDF7A', + IopsForProvisionedIopsSsdIo2Volumes = 'L-8D977E7E', + StorageModificationsForProvisionedIopsSsdIo2VolumesInTiB = 'L-9A0E0F82', + StorageModificationsForColdHddSc1VolumesInTiB = 'L-651D1834', + StorageModificationsForGeneralPurposeSsdGp3VolumesInTiB = 'L-59C8FC87', + IopsModificationsForProvisionedIopsSsdIo1Volumes = 'L-98A0B26D', + StorageModificationsForProvisionedIopsSsdIo1VolumesInTiB = 'L-5F80CA91', + ArchivedSnapshotsPerVolume = 'L-E20676C1', + SnapshotsPerRegion = 'L-309BACF6', + StorageForMagneticStandardVolumesInTiB = 'L-9CF3C2EB', + StorageForProvisionedIopsSsdIo2VolumesInTiB = 'L-09BD8365', + StorageForProvisionedIopsSsdIo1VolumesInTiB = 'L-FD252861', + StorageForColdHddSc1VolumesInTiB = 'L-17AF77E8', + StorageModificationsForMagneticStandardVolumesInTiB = 'L-B9F7C487', + GetSnapshotBlockRequestsPerSnapshot = 'L-028ACFB9', + ListChangedBlocksRequestsPerAccount = 'L-DB2FBAA1', + PutSnapshotBlockRequestsPerAccount = 'L-AFAE1BE8', + GetSnapshotBlockRequestsPerAccount = 'L-C125AE42', + CompleteSnapshotRequestsPerAccount = 'L-1D4D9345', + StorageModificationsForGeneralPurposeSsdGp2VolumesInTiB = 'L-F06E64A8', + IopsForProvisionedIopsSsdIo1Volumes = 'L-B3A130E6', + InProgressSnapshotArchivesPerAccount = 'L-3A0E616D', + StorageForThroughputOptimizedHddSt1VolumesInTiB = 'L-82ACEF56', + InProgressSnapshotRestoresFromArchivePerAccount = 'L-07399329', + StorageForGeneralPurposeSsdGp2VolumesInTiB = 'L-D18FCD1D', + StorageModificationsForThroughputOptimizedHddSt1VolumesInTiB = 'L-87C9DEA6', + IopsModificationsForProvisionedIopsSsdIo2Volumes = 'L-35B31D98', + FastSnapshotRestore = 'L-631ECBD3', + StorageForGeneralPurposeSsdGp3VolumesInTiB = 'L-7A658B76', + ConcurrentSnapshotsPerThroughputOptimizedHddSt1Volume = 'L-9F6E7C4E', + ConcurrentSnapshotsPerColdHddSc1Volume = 'L-915A3DBB', + ConcurrentSnapshotsPerProvisionedIopsSsdIo1Volume = 'L-DB70D580', + ConcurrentSnapshotCopiesPerDestinationRegion = 'L-8656991D', + ConcurrentSnapshotsPerProvisionedIopsSsdIo2Volume = 'L-D0291BE3', + ConcurrentSnapshotsPerMagneticStandardVolume = 'L-750405C3', + ConcurrentSnapshotsPerGeneralPurposeSsdGp3Volume = 'L-D8F37C68', + ConcurrentSnapshotsPerGeneralPurposeSsdGp2Volume = 'L-835364B2', +} +export enum AmazonElasticComputeCloudAmazonEc2Quota { + RunningDedicatedR6idnHosts = 'L-C4EABC2C', + RunningDedicatedMac2Hosts = 'L-5D8DADF5', + RunningDedicatedC3Hosts = 'L-8D142A2E', + RunningDedicatedC6gnHosts = 'L-5E3A299D', + RunningDedicatedM5dHosts = 'L-8CCBD91B', + RunningDedicatedG4dnHosts = 'L-CAE24619', + RunningDedicatedR5Hosts = 'L-EA4FD6CF', + RunningDedicatedC7aHosts = 'L-698B67E5', + RunningDedicatedI3Hosts = 'L-8E60B0B1', + RunningDedicatedI3enHosts = 'L-77EE2B11', + RunningOnDemandDlInstances = 'L-6E869C2A', + RunningDedicatedI2Hosts = 'L-6222C1B6', + RunningDedicatedM7iHosts = 'L-30E31217', + RunningDedicatedMac2M2proHosts = 'L-14F120D1', + AllDlSpotInstanceRequests = 'L-85EED4F7', + ClientVpnEndpointsPerRegion = 'L-8EA77D34', + AmIs = 'L-B665C33B', + MulticastDomainAssociationsPerVpc = 'L-9F8FA74B', + MulticastNetworkInterfacesPerTransitGateway = 'L-C673935A', + RunningDedicatedTrn1nHosts = 'L-39926A58', + RunningDedicatedX2idnHosts = 'L-A84ABF80', + RunningDedicatedU12tb1Hosts = 'L-D6994875', + RunningDedicatedZ1dHosts = 'L-F035E935', + RunningDedicatedDl1Hosts = 'L-AD667A3D', + RunningDedicatedR6idHosts = 'L-B89271A9', + AllXSpotInstanceRequests = 'L-E3A00192', + RunningDedicatedC5Hosts = 'L-81657574', + RunningDedicatedC7gnHosts = 'L-97677CE3', + RunningDedicatedM5adHosts = 'L-74F41837', + RunningDedicatedM7aHosts = 'L-4740F819', + RunningDedicatedA1Hosts = 'L-949445B0', + RunningOnDemandPInstances = 'L-417A185B', + RunningDedicatedInfHosts = 'L-5480EFD2', + RunningDedicatedC4Hosts = 'L-E4BF28E0', + RunningDedicatedU3tb1Hosts = 'L-7F5506AB', + RunningDedicatedU18tb1Hosts = 'L-5F7FD336', + NewReservedInstancesPerMonth = 'L-D0B7243C', + AttachmentsPerTransitGateway = 'L-E0233F82', + TransitGatewaysPerAccount = 'L-A2478D36', + RunningDedicatedIm4gnHosts = 'L-93155D6F', + RunningDedicatedG4adHosts = 'L-FD8E9B9A', + RunningDedicatedF1Hosts = 'L-5C4CD236', + RunningDedicatedC6inHosts = 'L-6C2C40CC', + RunningDedicatedX1Hosts = 'L-DE3D9563', + RunningDedicatedR6aHosts = 'L-BC1589C5', + RunningOnDemandFInstances = 'L-74FC7D96', + RunningDedicatedM6inHosts = 'L-D037CF10', + RunningDedicatedR7aHosts = 'L-4D15192B', + RunningDedicatedC7iHosts = 'L-587AA6E3', + RunningDedicatedC6idHosts = 'L-1BBC5241', + RunningDedicatedC6aHosts = 'L-D75D2E84', + RunningOnDemandXInstances = 'L-7295265B', + AllFSpotInstanceRequests = 'L-88CF9481', + RunningDedicatedU24tb1Hosts = 'L-FACBE655', + RunningDedicatedG5gHosts = 'L-4714FFEA', + ConcurrentClientConnectionsPerClientVpnEndpoint = 'L-C4B238BF', + VpnConnectionsPerVgw = 'L-B91E5754', + VpnConnectionsPerRegion = 'L-3E6EC3A3', + PendingPeeringAttachmentsPerTransitGateway = 'L-62499967', + RunningDedicatedR6iHosts = 'L-F13A970A', + RunningDedicatedMac2M2Hosts = 'L-B90B5B66', + RunningDedicatedC6gHosts = 'L-A749B537', + RunningDedicatedX2ieznHosts = 'L-888B4496', + RunningDedicatedVt1Hosts = 'L-A68CFBF7', + RunningDedicatedP3Hosts = 'L-A0A19F79', + RunningDedicatedH1Hosts = 'L-84391ECC', + RunningDedicatedC6iHosts = 'L-5FA3355A', + RunningDedicatedR7izHosts = 'L-BC9FCC71', + RunningDedicatedX2iednHosts = 'L-D0AA08B1', + RunningDedicatedM6aHosts = 'L-80F2B67F', + RunningDedicatedM6gdHosts = 'L-84FB37AA', + RunningDedicatedM5dnHosts = 'L-DA07429F', + RunningDedicatedC7gHosts = 'L-13B8FCE8', + RunningDedicatedC5nHosts = 'L-20F13EBD', + RunningDedicatedC6gdHosts = 'L-545AED39', + RunningOnDemandGAndVtInstances = 'L-DB2E81BA', + MembersPerTransitGatewayMulticastGroup = 'L-C768F2D6', + SourcesPerTransitGatewayMulticastGroup = 'L-4F2F99E3', + RunningDedicatedR5nHosts = 'L-52EF324A', + RunningDedicatedM5Hosts = 'L-8B7BF662', + RunningDedicatedP3dnHosts = 'L-B601B3B6', + RunningDedicatedR7iHosts = 'L-55E05032', + RunningOnDemandInfInstances = 'L-1945791B', + AllInfSpotInstanceRequests = 'L-B5D1601B', + RunningOnDemandHighMemoryInstances = 'L-43DA4232', + RunningDedicatedR5dnHosts = 'L-4AB14223', + RunningDedicatedInf2Hosts = 'L-E5BCF7B5', + RunningOnDemandStandardACDHIMRTZInstances = 'L-1216C47A', + AllGAndVtSpotInstanceRequests = 'L-3819A6DF', + RunningDedicatedM7gdHosts = 'L-F8516154', + RunningDedicatedR5bHosts = 'L-A2D59C67', + RunningDedicatedR6gHosts = 'L-B6D6065D', + RoutesPerTransitGateway = 'L-BCC1FB47', + MulticastDomainsPerTransitGateway = 'L-31775423', + AmiSharing = 'L-70015FFA', + CustomerGatewaysPerRegion = 'L-4FB7FF5D', + RunningDedicatedR6gdHosts = 'L-EF284EFB', + RunningDedicatedR7gHosts = 'L-67B8B4C7', + RunningDedicatedIs4genHosts = 'L-CB4F5825', + RunningDedicatedR6inHosts = 'L-EA99608B', + RunningDedicatedM6gHosts = 'L-D50A37FA', + RunningDedicatedU9tb1Hosts = 'L-98E1FFAC', + RunningDedicatedC7gdHosts = 'L-EF58B059', + RunningDedicatedM5znHosts = 'L-BD9BD803', + RunningDedicatedX1eHosts = 'L-DEF8E115', + AllStandardACDHIMRTZSpotInstanceRequests = 'L-34B43A08', + RunningDedicatedR5adHosts = 'L-EC7178B6', + RunningDedicatedT3Hosts = 'L-1586174D', + AllTrnSpotInstanceRequests = 'L-6B0D517C', + RunningDedicatedR3Hosts = 'L-B7208018', + RunningDedicatedM6idHosts = 'L-FDB0A352', + RunningDedicatedD2Hosts = 'L-8B27377A', + RunningDedicatedC5dHosts = 'L-C93F66A2', + RoutesPerClientVpnEndpoint = 'L-401D78F7', + AttachmentsPerVpc = 'L-6DA43717', + RunningDedicatedP5Hosts = 'L-5136197D', + RunningDedicatedM4Hosts = 'L-EF30B25E', + RunningDedicatedG3Hosts = 'L-DE82EABA', + RunningOnDemandHpcInstances = 'L-F7808C92', + RunningDedicatedM7gHosts = 'L-9126620E', + RunningDedicatedR5aHosts = 'L-8FE30D52', + RunningDedicatedM6iHosts = 'L-D269BEFD', + RunningDedicatedX2gdHosts = 'L-5CC9EA82', + RunningDedicatedP2Hosts = 'L-2753CF59', + RunningDedicatedM5aHosts = 'L-B10F70D6', + RunningDedicatedM3Hosts = 'L-3C82F907', + AllP4P3AndP2SpotInstanceRequests = 'L-7212CCBC', + RunningOnDemandTrnInstances = 'L-2C3B7624', + RunningDedicatedM5nHosts = 'L-24D7D4AD', + RunningDedicatedMac1Hosts = 'L-A8448DC5', + RunningDedicatedM6idnHosts = 'L-9721EDD9', + RunningDedicatedI4iHosts = 'L-0300530D', + RunningDedicatedTrn1Hosts = 'L-5E4FB836', + LaunchTemplateVersions = 'L-142B4294', + AuthorizationRulesPerClientVpnEndpoint = 'L-9A1BC94B', + RunningDedicatedU6tb1Hosts = 'L-89870E8E', + RunningDedicatedR7gdHosts = 'L-01137DCE', + RunningDedicatedR4Hosts = 'L-313524BA', + RunningDedicatedI4gHosts = 'L-F62CBADB', + RunningDedicatedP4dHosts = 'L-86A789C3', + RunningDedicatedR5dHosts = 'L-8814B54F', + AllP5SpotInstanceRequests = 'L-C4BD4855', + RunningDedicatedG5Hosts = 'L-A6E7FE5E', + RunningDedicatedG3sHosts = 'L-9675FDCD', + RunningDedicatedC5aHosts = 'L-03F01FD8', + PeeringAttachmentsPerTransitGateway = 'L-A1B5A36F', + VirtualPrivateGatewaysPerRegion = 'L-7029FAB6', + PublicAmIs = 'L-0E3CBAB9', + Ec2VpcElasticIPs = 'L-0263D0A3', + LaunchTemplates = 'L-FB451C26', + VerifiedAccessGroups = 'L-3829BC77', + VerifiedAccessTrustProviders = 'L-AF309E5E', + Ec2ClassicElasticIPs = 'L-CEED54BB', + VerifiedAccessEndpoints = 'L-5D439CF7', + VerifiedAccessInstances = 'L-17A8BD20', + RouteTablesPerTransitGateway = 'L-43872EB7', + ConcurrentOperationsPerClientVpnEndpoint = 'L-ED8A7771', + RoutesAdvertisedFromVpnConnectionToCgw = 'L-DB0BBC4E', + VpcAttachmentBandwidth = 'L-D92B9F5B', + NumberOfElasticGraphicsAccelerators = 'L-862D9275', + DirectConnectGatewaysPerTransitGateway = 'L-350B2172', + AmazonFpgaImagesAfIs = 'L-8FBBDF0C', + TransitGatewaysPerDirectConnectGateway = 'L-6B192186', + DynamicRoutesAdvertisedFromCgwToVpnConnection = 'L-92B73F21', + EntriesInAClientCertificateRevocationListForClientVpnEndpoints = 'L-6AF8B990', +} +export enum IpamQuota { + CidRsPerIpamPool = 'L-0BC051D6', + IpamPoolDepth = 'L-047C0565', + IpaMsPerRegion = 'L-F8B4A9E6', + ResourceDiscoveryAssociationsPerIpam = 'L-037D1B6C', + PoolsPerIpamScope = 'L-7319AFC3', + ScopesPerIpam = 'L-F493CFD2', + ResourceDiscoveriesPerRegion = 'L-F0D8E837', +} +export enum Ec2FastLaunchQuota { + ParallelInstanceLaunches = 'L-DC79B53E', +} +export enum AmazonElasticContainerRegistryAmazonEcrQuota { + PullThroughCacheRulesPerRegistry = 'L-6EF7FC96', + RateOfPutImageRequests = 'L-AD52DFB2', + RateOfUploadLayerPartRequests = 'L-A1670B10', + RateOfGetDownloadUrlForLayerRequests = 'L-A60A366D', + RateOfInitiateLayerUploadRequests = 'L-95B28F8D', + RateOfGetAuthorizationTokenRequests = 'L-55A41110', + RateOfCompleteLayerUploadRequests = 'L-44194860', + RateOfBatchCheckLayerAvailabilityRequests = 'L-B9173138', + RateOfBatchGetImageRequests = 'L-16E70933', + RulesPerLifecyclePolicy = 'L-8BE1781E', + UniqueDestinationsAcrossAllRulesInAReplicationConfiguration = 'L-24725E9A', + RateOfImageScans = 'L-CB63E564', + TagsPerImage = 'L-9C9D5A08', + MaximumLayerPartSize = 'L-343F3D94', + MaximumLayerSize = 'L-A71EAF5A', + LayerParts = 'L-EF8F6F4E', + MinimumLayerPartSize = 'L-1165B4AE', + RulesPerReplicationConfiguration = 'L-9B60BFFB', + RegisteredRepositories = 'L-CFEB8E8D', + ImagesPerRepository = 'L-03A36CE1', + LifecyclePolicyLength = 'L-C0B33BA1', + FiltersPerRuleInAReplicationConfiguration = 'L-241DEEBA', +} +export enum AmazonElasticContainerRegistryPublicAmazonEcrPublicQuota { + RateOfBatchCheckLayerAvailabilityRequests = 'L-A1FEAB1E', + MaximumLayerSize = 'L-EA4C3F88', + TagsPerImage = 'L-35252E1F', + RateOfImagePullsToAwsResources = 'L-58412CC0', + RegisteredRepositories = 'L-502CB705', + LayerParts = 'L-5A4948AD', + RateOfCompleteLayerUploadRequests = 'L-8FA37FDE', + RateOfUploadLayerPartRequests = 'L-B6387A7C', + RateOfPutImageRequests = 'L-EF0362CE', + MaximumLayerPartSize = 'L-BE235D18', + RateOfUnauthenticatedImagePulls = 'L-1AA1B7DE', + RateOfInitiateLayerUploadRequests = 'L-1EDF7132', + ImagesPerRepository = 'L-F0CAD50B', + RateOfAuthenticatedImagePulls = 'L-33392ECC', + MinimumLayerPartSize = 'L-F9678923', + RateOfGetAuthorizationTokenRequests = 'L-B5773E0E', +} +export enum AmazonElasticContainerServiceAmazonEcsQuota { + ClassicLoadBalancersPerService = 'L-E4A1E1D7', + CapacityProvidersPerCluster = 'L-A24B7D58', + ServicesPerNamespace = 'L-2D029656', + RateOfTasksLaunchedByAServiceOnAwsFargate = 'L-0314F8C9', + TargetGroupsPerService = 'L-A04A77EF', + TaskDefinitionSize = 'L-6FA51D7A', + TasksInProvisioningStatePerCluster = 'L-B7718569', + ServicesPerCluster = 'L-9EF96962', + ClustersPerAccount = 'L-21C621EB', + ContainersPerTaskDefinition = 'L-5046A93A', + TagsPerResource = 'L-9B84EC66', + RevisionsPerTaskDefinitionFamily = 'L-B9151B48', + TasksPerService = 'L-92E49DE3', + ContainerInstancesPerStartTask = 'L-DD98B2F8', + SubnetsPerAwsvpcConfiguration = 'L-2AB0A1F7', + TasksLaunchedPerRunTask = 'L-8C118AA8', + RateOfTasksLaunchedByAServiceOnAnAmazonEc2OrExternalInstance = 'L-D3FB61D9', + EcsExecSessions = 'L-7BCA4F94', + SecurityGroupsPerAwsvpcConfiguration = 'L-D57338CD', + ContainerInstancesPerCluster = 'L-86C34207', +} +export enum AmazonElasticKubernetesServiceAmazonEksQuota { + ControlPlaneSecurityGroupsPerCluster = 'L-11427A54', + EksAnywhereEnterpriseSubscriptions = 'L-EA277FDC', + RegisteredClusters = 'L-FDFA5F81', + NodesPerManagedNodeGroup = 'L-BD136A63', + FargateProfilesPerCluster = 'L-33415657', + LabelPairsPerFargateProfileSelector = 'L-23414FF3', + SelectorsPerFargateProfile = 'L-D78D8AF8', + ManagedNodeGroupsPerCluster = 'L-6D54EA21', + PublicEndpointAccessCidrRangesPerCluster = 'L-93A74D60', + Clusters = 'L-1194D53C', + AccessEntriesPerCluster = 'L-C56B9FC3', +} +export enum AmazonElasticInferenceQuota { + NumberOfElasticInferenceAccelerators = 'L-495D9A1B', +} +export enum AmazonElastiCacheQuota { + ShardsPerClusterRedisClusterModeDisabled = 'L-D060B150', + SecurityGroupsPerRegion = 'L-D2FEF667', + NodesPerClusterPerInstanceTypeRedisClusterModeEnabled = 'L-AF354865', + NodesPerRegion = 'L-DFE45DF3', + NodesPerShardRedis = 'L-7D6587E6', + SubnetGroupsPerRegion = 'L-3E7F7726', + SubnetsPerSubnetGroup = 'L-A87EE522', + NodesPerClusterMemcached = 'L-8C334AD1', + ParameterGroupsPerRegion = 'L-3F15A733', +} +export enum AwsElasticBeanstalkQuota { + ConfigurationTemplates = 'L-9838E43F', + Applications = 'L-1CEABD17', + ApplicationVersions = 'L-D64F1F14', + CustomPlatformVersions = 'L-E593A077', + Environments = 'L-8EFC1C51', +} +export enum AmazonElasticFileSystemEfsQuota { + SecurityGroupsPerMountTarget = 'L-3D348029', + FileHardLinks = 'L-A139E5A7', + VpCsPerFileSystem = 'L-03A6A61D', + LocksAcrossUniqueFileProcessPairs = 'L-C8C0D2A0', + DirectoryDepth = 'L-F3C5D9EF', + ActiveUsersPerNfsClient = 'L-FA0AAA42', + MinimumWaitTimeBetweenProvisionedThroughputDecreases = 'L-1E30FF38', + FileSystemsPerAccount = 'L-848C634D', + ProvisionedThroughput = 'L-BFB6FB19', + MountTargetsPerVpc = 'L-7391004C', + OpenFilesPerNfsClient = 'L-48B15094', + MountTargetsPerAvailabilityZone = 'L-6D380DD0', + MinimumWaitTimeBetweenThroughputModeChanges = 'L-D6548EE7', + BurstingThroughput = 'L-CDCE244F', + ThroughputPerNfsClient = 'L-06519EB8', + RateOfFileSystemOperations = 'L-336A920F', + FileSystemNameLength = 'L-207AE8E0', + EfsFileLocks = 'L-509A1582', + Tags = 'L-29770CF9', + FileSystemSymbolicLinkSymlinkLength = 'L-B8B14E21', + FileSize = 'L-7FEABCD7', + AccessPointsPerFileSystem = 'L-4CCB99B3', +} +export enum ElasticLoadBalancingElbQuota { + TargetGroupsPerApplicationLoadBalancer = 'L-822D1B1B', + ListenersPerClassicLoadBalancer = 'L-1A491844', + ConditionValuesPerRule = 'L-EBC0C08B', + RegisteredInstancesPerClassicLoadBalancer = 'L-CE3125E5', + ConditionWildcardsPerRule = 'L-A012D4E8', + CertificatesPerNetworkLoadBalancer = 'L-52964454', + NetworkLoadBalancersPerRegion = 'L-69A177A2', + ListenersPerApplicationLoadBalancer = 'L-B6DF7632', + TargetGroupsPerActionPerApplicationLoadBalancer = 'L-057ECE54', + TargetGroupsPerRegion = 'L-B22855CB', + ApplicationLoadBalancersPerRegion = 'L-53DA6B97', + TargetsPerTargetGroupPerRegion = 'L-A0D0B863', + TargetsPerApplicationLoadBalancer = 'L-7E6692B2', + CertificatesPerApplicationLoadBalancer = 'L-9365A611', + TargetsPerAvailabilityZonePerNetworkLoadBalancer = 'L-B211E961', + TargetsPerNetworkLoadBalancer = 'L-EEF1AD04', + ListenersPerNetworkLoadBalancer = 'L-57A373D6', + RulesPerApplicationLoadBalancer = 'L-7EED9B64', + TargetGroupsPerActionPerNetworkLoadBalancer = 'L-AFDDADBF', + ClassicLoadBalancersPerRegion = 'L-E9E9831D', + NetworkLoadBalancerEnIsPerVpc = 'L-23568085', +} +export enum AmazonEmrQuota { + TheMaximumNumberOfAddInstanceFleetApiRequestsThatYouCanMakePerSecond = 'L-0E64D90C', + EmrWalWorkspaces = 'L-B0BD2695', + ReplenishmentRateOfListInstanceGroupsCalls = 'L-84D58688', + TheMaximumNumberOfAddTagsApiRequestsThatYouCanMakePerSecond = 'L-9547F71F', + ReplenishmentRateOfSetVisibleToAllUsersCalls = 'L-41EE964A', + ReplenishmentRateOfDescribeStepCalls = 'L-72BCD5B1', + ReplenishmentRateOfDescribeSecurityConfigurationCalls = 'L-8029315A', + TheMaximumNumberOfApiRequestsThatYouCanMakePerSecond = 'L-283CCA2A', + TheMaximumNumberOfModifyInstanceFleetApiRequestsThatYouCanMakePerSecond = 'L-5E87FF33', + ReplenishmentRateOfSetTerminationProtectionCalls = 'L-8027FD2D', + TheMaximumNumberOfListInstanceGroupsApiRequestsThatYouCanMakePerSecond = 'L-2266B3CF', + ReplenishmentRateOfDescribeClusterCalls = 'L-D74118B4', + TheMaximumNumberOfDeleteSecurityConfigurationApiRequestsThatYouCanMakePerSecond = 'L-F0B1A0AC', + ReplenishmentRateOfAddInstanceFleetCalls = 'L-3AD9CD3B', + ReplenishmentRateOfRemoveTagsCalls = 'L-67E5FE4A', + ReplenishmentRateOfAddInstanceGroupsCalls = 'L-0224B14B', + TheMaximumNumberOfRunJobFlowApiRequestsThatYouCanMakePerSecond = 'L-A21DE5E2', + TheMaximumNumberOfAddJobFlowStepsApiRequestsThatYouCanMakePerSecond = 'L-7E42A979', + TheMaximumNumberOfModifyInstanceGroupsApiRequestsThatYouCanMakePerSecond = 'L-A3F85680', + ReplenishmentRateOfListInstancesCalls = 'L-76CEF085', + TheMaximumNumberOfPutAutoScalingPolicyApiRequestsThatYouCanMakePerSecond = 'L-888B48A6', + ReplenishmentRateOfListClustersCalls = 'L-ECF78C67', + ReplenishmentRateOfRemoveAutoScalingPolicyCalls = 'L-F902E21E', + TheMaximumNumberOfCreateSecurityConfigurationApiRequestsThatYouCanMakePerSecond = 'L-49AA2AC0', + ReplenishmentRateOfListStepsCalls = 'L-8AF88BF0', + ReplenishmentRateOfAddTagsCalls = 'L-9CCE25C7', + TheMaximumNumberOfListInstanceFleetsApiRequestsThatYouCanMakePerSecond = 'L-85BA8360', + ReplenishmentRateOfListBootstrapActionsCalls = 'L-CCF40647', + ReplenishmentRateOfCreateSecurityConfigurationCalls = 'L-16E4E927', + ReplenishmentRateOfDescribeJobFlowsCalls = 'L-68268EEB', + TheMaximumNumberOfListClustersApiRequestsThatYouCanMakePerSecond = 'L-2C4B0A7F', + TheMaximumNumberOfActiveInstancesPerInstanceGroup = 'L-77B909B1', + TheMaximumNumberOfActiveClustersCanBeRunAtTheSameTime = 'L-1EE7982C', + TheMaximumNumberOfListInstancesApiRequestsThatYouCanMakePerSecond = 'L-41AA02AE', + WriteAheadLogsEmrWal = 'L-032DEEF2', + TheMaximumNumberOfRemoveTagsApiRequestsThatYouCanMakePerSecond = 'L-C00B9F83', + ReplenishmentRateOfPutAutoScalingPolicyCalls = 'L-985D82D4', + ReplenishmentRateOfModifyClusterCalls = 'L-73E44B2E', + TheMaximumNumberOfCancelStepsApiRequestsThatYouCanMakePerSecond = 'L-815103CB', + ReplenishmentRateOfModifyInstanceFleetCalls = 'L-9EFF5880', + TheMaximumNumberOfListStepsApiRequestsThatYouCanMakePerSecond = 'L-7D1BF903', + TheMaximumNumberOfTerminateJobFlowsApiRequestsThatYouCanMakePerSecond = 'L-2625B75B', + TheMaximumRateAtWhichYourBucketReplenishesForAllEmrOperations = 'L-432FAB44', + ReplenishmentRateOfModifyInstanceGroupsCalls = 'L-87EDCC64', + TheMaximumNumberOfSetTerminationProtectionApiRequestsThatYouCanMakePerSecond = 'L-F06A869F', + TheMaximumNumberOfModifyClusterApiRequestsThatYouCanMakePerSecond = 'L-A552C9A0', + TheMaximumNumberOfDescribeSecurityConfigurationApiRequestsThatYouCanMakePerSecond = 'L-27AD4F43', + TheMaximumNumberOfDescribeStepApiRequestsThatYouCanMakePerSecond = 'L-B810434D', + ReplenishmentRateOfTerminateJobFlowsCalls = 'L-4D731391', + TheMaximumNumberOfDescribeClusterApiRequestsThatYouCanMakePerSecond = 'L-81AF5123', + TheMaximumNumberOfListSecurityConfigurationsApiRequestsThatYouCanMakePerSecond = 'L-160E516B', + ReplenishmentRateOfListSecurityConfigurationsCalls = 'L-D145AF1C', + TheMaximumNumberOfDescribeJobFlowsApiRequestsThatYouCanMakePerSecond = 'L-9F63B487', + ReplenishmentRateOfListInstanceFleetsCalls = 'L-C0B235E1', + TheMaximumNumberOfListBootstrapActionsApiRequestsThatYouCanMakePerSecond = 'L-BF4AD168', + ReplenishmentRateOfAddJobFlowStepsCalls = 'L-40A3F1BE', + ReplenishmentRateOfCancelStepsCalls = 'L-A90C264E', + ReplenishmentRateOfDeleteSecurityConfigurationCalls = 'L-EB8F427D', + TheMaximumNumberOfRemoveAutoScalingPolicyApiRequestsThatYouCanMakePerSecond = 'L-361D364D', + TheMaximumNumberOfAddInstanceGroupsApiRequestsThatYouCanMakePerSecond = 'L-E5202B33', + ReplenishmentRateOfRunJobFlowCalls = 'L-62231AC0', + TheMaximumNumberOfSetVisibileToAllUsersApiRequestsThatYouCanMakePerSecond = 'L-2268EC50', +} +export enum AmazonElasticTranscoderQuota { + UserDefinedPresets = 'L-EAB82560', + Pipelines = 'L-B6FAEE7E', + RateOfReadJobRequests = 'L-301A2D88', + QueuedJobsPerPipeline = 'L-1B3E3FFC', + BurstSizeOfReadJobRequests = 'L-73E60F57', + ConcurrentJobsPerPipeline = 'L-EAE6F7FC', + RateOfCreateJobRequests = 'L-0BDCC49D', + BurstSizeOfCreateJobRequests = 'L-25A79362', +} +export enum AmazonEmrServerlessQuota { + MaxConcurrentVCpUsPerAccount = 'L-D05C8A75', +} +export enum AwsEntityResolutionQuota { + ConcurrentMatchingJobs = 'L-6FC8FD6D', + ConcurrentIdMappingJobs = 'L-0A2F654F', + SchemaMappings = 'L-00E43259', + MatchingWorkflows = 'L-60DAF647', + IdMappingWorkflows = 'L-C5A3094C', + RateOfGetMatchIdApiRequests = 'L-1E6F8596', + ConcurrentProviderServiceMatchingJobs = 'L-06117805', +} +export enum AmazonOpenSearchServiceQuota { + WarmInstancesPerDomain = 'L-1F053E6F', + InstancesPerDomain = 'L-6408ABDE', + DedicatedMasterInstancesPerDomain = 'L-AE676A72', + DomainsPerRegion = 'L-076D529E', + InstancesPerDomainT2InstanceType = 'L-E9BC8C95', +} +export enum AmazonEventBridgeCloudWatchEventsQuota { + ThrottleLimitInTransactionsPerSecond = 'L-3C47459F', + EventPatternSize = 'L-664C5505', + InvocationsThrottleLimitInTransactionsPerSecond = 'L-5540C5E3', + CreateEndpointThrottleLimitInTransactionsPerSecond = 'L-CB72B930', + RateOfInvocationsPerApiDestination = 'L-755FD01C', + NumberOfRules = 'L-244521F2', + EventBusPolicySize = 'L-FC354966', + EventBuses = 'L-658A4FD9', + ApiDestinations = 'L-FB1C3A6D', + PutEventsThrottleLimitInTransactionsPerSecond = 'L-9B653E91', + Connections = 'L-595D6D42', + DeleteEndpointThrottleLimitInTransactionsPerSecond = 'L-5425B7E9', + Endpoints = 'L-EAC9A2AC', + TargetsPerRule = 'L-388D1D08', + UpdateEndpointThrottleLimitInTransactionsPerSecond = 'L-A8AFA624', +} +export enum AmazonCloudWatchEvidentlyQuota { + RunningExperimentsPerProject = 'L-738C873C', + RateOfPostProjectEventsRequests = 'L-2992F357', + RateOfBatchEvaluateFeatureRequests = 'L-ECD3E408', + ProjectsPerAwsAccount = 'L-B63A538F', + RunningLaunchesPerProject = 'L-DA4D659A', + RateOfEvaluateFeatureRequests = 'L-4F58F1DC', + TotalExperimentsPerProject = 'L-E477E349', + TotalLaunchesPerProject = 'L-63083ACB', + FeaturesPerProject = 'L-E6200B63', +} +export enum AwsFargateQuota { + FargateOnDemandVCpuResourceCount = 'L-3032A538', + FargateSpotVCpuResourceCount = 'L-36FBB829', +} +export enum AmazonFinSpaceQuota { + KxS2xlargeNodes = 'L-3B1B408E', + TotalKdbEnvironments = 'L-C49840B4', + KxSg4xlargeScalingGroupNodes = 'L-9EFEF0D8', + ManagedKdbVolumeWriteMounts = 'L-0FC2034E', + KxSg32xlargeScalingGroupNodes = 'L-F9DDF688', + KxS8xlargeNodes = 'L-79C359E7', + KxSg8xlargeScalingGroupNodes = 'L-8116797B', + KxS4xlargeNodes = 'L-6271C28F', + ManagedKdbClusterUsers = 'L-A18C5C9A', + ManagedKdbScalingGroups = 'L-8F9600BF', + KxSXlargeNodes = 'L-8D2987C0', + ManagedKdbVolumes = 'L-9DDBB72F', + ManagedKdbConcurrentChangesetIngestions = 'L-05F8CB95', + KxS16xlargeNodes = 'L-8995E194', + KxSg124xlargeScalingGroupNodes = 'L-8C2FDE0C', + ManagedKdbSavedownStorage = 'L-9EDD8654', + ManagedKdbVolumeReadMounts = 'L-CD999E75', + ManagedKdbClusters = 'L-403A8F92', + ManagedKdbDataviews = 'L-4F92BAA2', + ManagedKdbDatabases = 'L-EB49E8B0', + ManagedKdbDatabaseClusterCacheSize = 'L-C8CECF7C', + ManagedKdbVolumeStorage = 'L-2B5C0922', + ConcurrentDataviewVersionProcessing = 'L-8798EB61', + KxSg116xlargeScalingGroupNodes = 'L-EE85DFB8', + ManagedKdbMultiAzClusters = 'L-7CF802FB', + KxS32xlargeNodes = 'L-BA1748AE', + ManagedKdbSingleAzClusters = 'L-7E609E02', + KxSg16xlargeScalingGroupNodes = 'L-B75F5AE2', + KxSLargeNodes = 'L-816D4CEA', + ControlledVocabulariesAndCategories = 'L-669A142A', + DataViewsPerDataset = 'L-7682C473', + Users = 'L-2AA8A0CC', + ClustersPerUser = 'L-6E3A1A62', + PermissionGroups = 'L-6B8BCEA6', + NotebookStorage = 'L-6997032A', + Datasets = 'L-4BDBD2F7', + FilesPerChangeset = 'L-E4BB6ED1', + DatasetsPerPermissionGroup = 'L-33511B45', + ConcurrentDataViewsProcessing = 'L-077DA164', + ConcurrentChangesetsProcessing = 'L-9FC1D048', + FileSizePerChangeset = 'L-4AB90B30', + Environments = 'L-687E8054', + AttributeSets = 'L-ABE17502', +} +export enum AmazonKinesisDataFirehoseQuota { + DeliveryStreams = 'L-14BB0BE7', + RateOfDeleteDeliveryStreamRequests = 'L-3A800C3A', + RateOfListDeliveryStreamRequests = 'L-FDED3C5B', + RateOfListTagsForDeliveryStreamRequests = 'L-36A7E04C', + DynamicPartitions = 'L-23F03908', + RateOfRecords = 'L-17D4EADE', + RateOfDescribeDeliveryStreamRequests = 'L-61E2CA1D', + RateOfData = 'L-937C879B', + RateOfStopDeliveryStreamEncryptionRequests = 'L-09E8B729', + RateOfTagDeliveryStreamRequests = 'L-ED7DA7FC', + RateOfUpdateDestinationRequests = 'L-CC1FDDAA', + RateOfStartDeliveryStreamEncryptionRequests = 'L-0D32C2BC', + RateOfCreateDeliveryStreamRequests = 'L-040D05FF', + RateOfPutRequests = 'L-7681C790', + RateOfUntagDeliveryStreamRequests = 'L-47C73A38', +} +export enum AwsFaultInjectionServiceFisQuota { + TargetSubnetsForAwsNetworkDisruptConnectivity = 'L-1F59732D', + TargetTasksForAwsEcsTaskKillProcess = 'L-0A7016E5', + TargetReplicationGroupsForAwsElasticacheInterruptClusterAzPower = 'L-B0012750', + ExperimentDurationInHours = 'L-6C1E4427', + TargetPodsForAwsEksPodIoStress = 'L-397A8E65', + TargetAccountConfigurationsPerExperimentTemplate = 'L-47D4AE5B', + TargetTasksForAwsEcsTaskNetworkPacketLoss = 'L-52F5389C', + TargetTasksForAwsEcsTaskNetworkLatency = 'L-B34128D0', + TargetAutoScalingGroupsForAwsEc2AsgInsufficientInstanceCapacityError = 'L-97338E0D', + StopConditionsPerExperimentTemplate = 'L-872EC72B', + TargetSubnetsForAwsNetworkRouteTableDisruptCrossRegionConnectivity = 'L-100E963F', + TargetPodsForAwsEksPodCpuStress = 'L-5A59540D', + TargetTasksForAwsEcsTaskIoStress = 'L-4939706C', + MaximumNumberOfManagedPrefixListsInAwsNetworkRouteTableDisruptCrossRegionConnectivity = 'L-C7DC78F0', + TargetPodsForAwsEksPodNetworkLatency = 'L-5AC5092A', + ParallelActionsPerExperiment = 'L-EB051440', + ActionDurationInHours = 'L-A7622DAA', + TargetClustersForAwsEcsDrainContainerInstances = 'L-B2CDA938', + ActiveExperiments = 'L-F5FCA485', + TargetInstancesForAwsSsmSendCommand = 'L-D0A62255', + MaximumNumberOfRoutesInAwsNetworkRouteTableDisruptCrossRegionConnectivity = 'L-C9A268F2', + CompletedExperimentDataRetentionInDays = 'L-9D601129', + TargetTasksForAwsEcsTaskCpuStress = 'L-C901BF0F', + TargetTasksForAwsEcsStopTask = 'L-48D12416', + TargetPodsForAwsEksPodDelete = 'L-08B3DB00', + TargetInstancesForAwsEc2RebootInstances = 'L-9C6F1F94', + TargetTransitGatewaysForAwsNetworkTransitGatewayDisruptCrossRegionConnectivity = 'L-2CF2B517', + TargetNodegroupsForAwsEksTerminateNodegroupInstances = 'L-CCA14F79', + TargetSpotInstancesForAwsEc2SendSpotInstanceInterruptions = 'L-F3F4B54A', + ActionsPerExperimentTemplate = 'L-0BFE6B67', + TargetBucketsForAwsS3BucketPauseReplication = 'L-4B06CB4E', + TargetTasksForAwsEcsTaskNetworkBlackholePort = 'L-5035601B', + MaximumNumberOfRouteTablesInAwsNetworkRouteTableDisruptCrossRegionConnectivity = 'L-A5537B7C', + TargetInstancesForAwsEc2StopInstances = 'L-3F98B425', + TargetPodsForAwsEksPodNetworkPacketLoss = 'L-CFF34A14', + TargetClustersForAwsRdsFailoverDbCluster = 'L-7D222253', + TargetDbInstancesForAwsRdsRebootDbInstances = 'L-6CBFC7D2', + ExperimentTemplates = 'L-2FF3254A', + TargetPodsForAwsEksPodNetworkBlackholePort = 'L-52F95FBE', + TargetPodsForAwsEksPodMemoryStress = 'L-B8FF73F5', + TargetInstancesForAwsEc2TerminateInstances = 'L-EE64095D', +} +export enum AwsFirewallManagerQuota { + Route53ResolverDnsFirewallRuleGroupsPerDnsFirewallPolicy = 'L-5A240155', + RuleGroupsPerAwsWafPolicy = 'L-F8EEB3E5', + TagsToIncludeOrExcludeResourcesPerPolicy = 'L-CDB85E02', + WebAclCapacityUnitsWcuUsedInAnAwsWafPolicy = 'L-D86ED2F3', + AmazonVpcInstancesInScopeOfACommonSecurityGroupPolicy = 'L-F0708C36', + VpCsThatASingleNetworkFirewallPolicyCanAutomaticallyRemediate = 'L-B776A355', + ProtocolsPerProtocolList = 'L-1513E67B', + ExplicitlyIncludedOrExcludedAccountsPerPolicyPerRegion = 'L-0C779DC8', + ApplicationsPerApplicationList = 'L-A423D1D9', + CustomManagedApplicationListsInAnyContentAuditSecurityGroupPolicySetting = 'L-A2E8868B', + AuditSecurityGroupsPerSecurityGroupContentAuditPolicy = 'L-5EE030D6', + PrimarySecurityGroupsPerCommonSecurityGroupPolicy = 'L-2898441F', + CustomManagedApplicationListsPerAccount = 'L-0E131699', + OrganizationalUnitsInScopePerPolicyPerRegion = 'L-7D53B479', + AwsWafClassicRuleGroupsPerAwsWafClassicPolicy = 'L-C3E59AC9', + Ipv4CidRsForANetworkFirewallPolicy = 'L-7D7D928E', + CustomManagedProtocolListsInAnyContentAuditSecurityGroupPolicySetting = 'L-4F5BB25D', + CustomManagedProtocolListsPerAccount = 'L-C6CF2DBB', + FirewallManagerPoliciesPerOrganizationPerRegion = 'L-0B28E140', +} +export enum AmazonForecastQuota { + MaximumNumberOfColumnsInAnItemMetadataDataset = 'L-F37CCDC6', + MaximumNumberOfPredictorBacktestExportJobs = 'L-E1AC300F', + MaximumNumberOfDatasets = 'L-D613D53B', + TheMaximumNumberOfWhatIfAnalyses = 'L-235B11D6', + MaximumParallelRunningCreatePredictorTasksUsingAutoMl = 'L-BDD6E332', + MaximumParallelRunningCreateForecastTasks = 'L-10DDC31D', + MaximumNumberOfDatasetsInADatasetGroup = 'L-D71794C7', + MaximumNumberOfTagsYouCanAddToAResource = 'L-60743B41', + MaximumParallelRunningCreateForecastExportJobTasks = 'L-02D995E1', + MaximumNumberOfPredictors = 'L-9C589A93', + MaximumParallelRunningCreateWhatIfAnalysisTasks = 'L-3DED4AA6', + MaximumNumberOfColumnsInATargetTimeSeriesDataset = 'L-9FD32A46', + TheMaximumNumberOfWhatIfForecasts = 'L-762142D9', + MaximumNumberOfFilesInYourAmazonS3Bucket = 'L-3F8C5D53', + MaximumTimeForWhichAForecastCanBeQueriedOnConsoleOrQueryForecastApi = 'L-B8197A69', + MaximumParallelRunningQueryForecastApiTasks = 'L-B77118AF', + MaximumNumberOfBacktestWindows = 'L-4F7B6EC8', + MaximumNumberOfForecastExportJobs = 'L-561FC25E', + MaximumNumberOfDatasetGroups = 'L-5054D782', + MaximumParallelRunningCreateDatasetImportJobTasks = 'L-407BD890', + MaximumNumberOfRowsInADataset = 'L-618F5043', + TheMaximumNumberOfWhatIfForecastsInACreateWhatIfForecastExportTask = 'L-50FA8F07', + MaximumParallelRunningCreateWhatIfForecastTasks = 'L-5EC8963B', + MaximumParallelRunningCreatePredictorBacktestExportJobTasks = 'L-C4147F5F', + TheMaximumNumberOfWhatIfForecastExports = 'L-6AD28BD9', + MaximumNumberOfTimeSeriesPerPredictor = 'L-4A218FD9', + MaximumNumberOfDatasetImportJobs = 'L-1306EC42', + MaximumNumberOfForecasts = 'L-884F7F75', + MaximumForecastHorizon = 'L-57E6FE87', + MaximumNumberOfColumnsInARelatedTimeSeriesDataset = 'L-3D30706E', + MaximumParallelRunningCreateWhatIfForecastExportTasks = 'L-B50F9B6C', + MaximumCumulativeSizeOfAllFilesInYourAmazonS3Bucket = 'L-690B4DB2', + MaximumParallelRunningCreatePredictorTasks = 'L-3154C698', + TheMaximumNumberOfAutoPredictors = 'L-FBF2B427', + MaximumParallelRunningCreateExplainabilityTasks = 'L-A6F48898', + MaximumParallelRunningCreateAutoPredictorTasks = 'L-24281831', + MaximumParallelRunningCreateExplainabilityExportTasks = 'L-143E66E3', + MaximumNumberOfExplainabilityExports = 'L-928BCA42', + MaximumParallelRunningStopJobsPerResourceType = 'L-710D1193', + MaximumNumberOfExplainabilities = 'L-F58E51A9', +} +export enum AmazonFraudDetectorQuota { + ModelsPerAccount = 'L-A499790A', + OutcomesPerAccount = 'L-A8E1A12A', + VersionsPerModel = 'L-17F80A78', + DeployedModelVersions = 'L-2A06444E', + SizeOfGetPredictionRequests = 'L-B866C3AA', + RateOfGetPredictionRequests = 'L-7D855745', + ModelsIncludingExternalModelsPerDetectorVersion = 'L-A9872AF8', + TrainingDataSize = 'L-FD6E2577', + VariablesPerAccount = 'L-6A39223B', + DetectorsPerAccount = 'L-EB925C6F', + VersionsPerDetector = 'L-10D6B82C', + TotalConcurrentTrainingJobs = 'L-9729D5BB', + RulesPerAccount = 'L-4CB84A5D', + ConcurrentTrainingJobsPerModel = 'L-46EB4650', + ListsPerAccount = 'L-889822E1', + LabelsPerAccount = 'L-D3D8860F', + EventTypePerAccount = 'L-6952AC52', + EntityTypePerAccount = 'L-CE9FFC2E', + TotalConcurrentEventTypeStatisticsUpdateOperations = 'L-71AAD453', +} +export enum AmazonFSxQuota { + LustreScratchFileSystems = 'L-C48231E5', + LustrePersistent1FileSystems = 'L-9AFA1F09', + OpenZfsBackups = 'L-DD0F7417', + LustreCache1StorageCapacity = 'L-15D9FE87', + LustreBackups = 'L-CD5E0524', + WindowsBackups = 'L-E94C1C19', + OntapThroughputCapacity = 'L-C5F860DD', + WindowsFileSystems = 'L-5B89F9CE', + OntapFileSystems = 'L-C28C1403', + WindowsTotalSsdIops = 'L-901C77F5', + OpenZfsFileSystems = 'L-59D0763F', + LustrePersistentHddStorageCapacityPerFileSystem = 'L-736F3D6F', + LustreCache1Caches = 'L-60836D3E', + OntapSsdIops = 'L-57578687', + LustrePersistent2FileSystems = 'L-FD6F2F22', + LustrePersistent1StorageCapacity = 'L-C8640C82', + OpenZfsSsdStorageCapacity = 'L-88479C21', + WindowsThroughputCapacity = 'L-FD89CA8A', + OpenZfsSsdStorageCapacityPerFileSystem = 'L-7D5FDD38', + LustreScratchStorageCapacity = 'L-AD2FC696', + OntapSsdStorageCapacity = 'L-E2C89679', + WindowsHddStorageCapacity = 'L-84EAF187', + WindowsSsdStorageCapacity = 'L-E43BDB2E', + OpenZfsDiskIops = 'L-E24B4DE4', + OntapBackups = 'L-C431DBA3', + LustrePersistent2StorageCapacity = 'L-8F1B9C74', + OpenZfsThroughputCapacity = 'L-4EDE4065', +} +export enum AmazonGameLiftQuota { + QueueDestinationsPerGameSessionQueue = 'L-BB62CF1D', + ComputePerAnywhereFleet = 'L-0536A98D', + ScriptCapacity = 'L-ED58E8F8', + CustomLocationsPerRegion = 'L-C6F4238C', + GameServerGroupsPerRegion = 'L-8D885299', + ServerProcessesPerInstanceGameLiftSdkV3AndUp = 'L-C30AA854', + MatchmakingRuleSetsPerRegion = 'L-8AE49BBD', + MatchmakingConfigurationsPerRegion = 'L-73F6E300', + AliasesPerRegion = 'L-AED4A06A', + KeyValuePairsPerStringToDoubleMapMatchmakingPlayerAttribute = 'L-A8C1B434', + PlayerSessionTimeout = 'L-24BE0A39', + GameServersPerGameServerGroup = 'L-51AF299A', + BuildsPerRegion = 'L-90D24F1B', + StringsPerStringListMatchmakingPlayerAttribute = 'L-8EBC4E87', + MaximumNewGameSessionsPerCreatorPerFleetConfiguration = 'L-3A43EF3C', + ScriptsPerRegion = 'L-293B0017', + PlayerAttributesPerMatchmakingPlayer = 'L-CCBBB4DA', + MaximumPolicyPeriodInMinutesPerFleetConfiguration = 'L-9F9DE0B2', + PlayersPerMatchmakingTicket = 'L-67477D57', + PlayerSessionsPerGameSession = 'L-EC03D793', + ManagedEc2FleetEbsVolume = 'L-BFEEB817', + ManagedEc2FleetsPerRegion = 'L-FDDD1260', + BuildCapacity = 'L-11948650', + GameSessionLogFileSize = 'L-E8D8BD94', + GameSessionQueuesPerRegion = 'L-22451070', + AnywhereFleetsPerRegion = 'L-593688D9', + LocationsInAFleetPerRegion = 'L-55650DB7', +} +export enum AmazonLocationServiceAmazonLocationQuota { + RateOfCreateKeyApiRequests = 'L-0C20A2F2', + RateOfBatchPutGeofenceApiRequests = 'L-4D8FB6E2', + RateOfUpdateTrackerApiRequests = 'L-5C766737', + RateOfUpdateKeyApiRequests = 'L-E31E6201', + RateOfUpdatePlaceIndexApiRequests = 'L-AE2D8C2E', + RateOfDeleteGeofenceCollectionApiRequests = 'L-779B9CA5', + RouteCalculatorResourcesPerAccount = 'L-D4E15F64', + RateOfListTrackerConsumersApiRequests = 'L-3B5E6DAC', + RateOfBatchGetDevicePositionApiRequests = 'L-1D4EB556', + RateOfListTagsForResourceApiRequests = 'L-E976E608', + RateOfDescribeRouteCalculatorApiRequests = 'L-EA3098B7', + RateOfCreateTrackerApiRequests = 'L-0316544D', + RateOfBatchEvaluateGeofencesApiRequests = 'L-9A0A3162', + RateOfTagResourceApiRequests = 'L-2CA6C84D', + RateOfGetGeofenceApiRequests = 'L-E2B35742', + RateOfDescribePlaceIndexApiRequests = 'L-772C0B77', + RateOfGetMapSpritesApiRequests = 'L-C2D15753', + RateOfBatchDeleteDevicePositionHistoryApiRequests = 'L-CA16DE37', + TrackerConsumersPerTracker = 'L-7B55057C', + RateOfUntagResourceApiRequests = 'L-C236DAD6', + RateOfDeleteKeyApiRequests = 'L-FF8C0CDC', + RateOfUpdateGeofenceCollectionApiRequests = 'L-4D54A4EF', + RateOfListTrackersApiRequests = 'L-F0E58BD7', + RateOfCreateGeofenceCollectionApiRequests = 'L-DFE2C362', + RateOfGetDevicePositionHistoryApiRequests = 'L-9A60EA62', + GeofenceCollectionResourcesPerAccount = 'L-93FB3073', + RateOfBatchDeleteGeofenceApiRequests = 'L-93F5D44A', + RateOfCalculateRouteApiRequests = 'L-44B9F1A6', + RateOfListDevicePositionsApiRequests = 'L-B26E5E95', + PlaceIndexResourcesPerAccount = 'L-AF0CC293', + RateOfAssociateTrackerConsumerApiRequests = 'L-664067C5', + RateOfDescribeKeyApiRequests = 'L-4B4C2391', + RateOfDeletePlaceIndexApiRequests = 'L-D012773A', + RateOfPutGeofenceApiRequests = 'L-8C4D918C', + RateOfDisassociateTrackerConsumerApiRequests = 'L-32299313', + RateOfListGeofenceCollectionsApiRequests = 'L-42524A80', + RateOfDescribeGeofenceCollectionApiRequests = 'L-68C0FF09', + RateOfSearchPlaceIndexForPositionApiRequests = 'L-201B3D58', + RateOfDescribeTrackerApiRequests = 'L-4BA89359', + RateOfUpdateRouteCalculatorApiRequests = 'L-85DB3370', + RateOfCreatePlaceIndexApiRequests = 'L-0A4EAAD0', + RateOfDescribeMapApiRequests = 'L-3B6F7C26', + RateOfSearchPlaceIndexForTextApiRequests = 'L-20F1367A', + RateOfUpdateMapApiRequests = 'L-123EEE95', + RateOfListRouteCalculatorsApiRequests = 'L-D3A51B68', + RateOfGetMapStyleDescriptorApiRequests = 'L-05EFD12D', + RateOfListKeysApiRequests = 'L-BE8C4A7E', + RateOfSearchPlaceIndexForSuggestionsApiRequests = 'L-EC3CCC13', + RateOfListGeofencesApiRequests = 'L-2A3A5399', + GeofencesPerGeofenceCollection = 'L-DDC336FA', + ApiKeyResourcesPerAccount = 'L-AE411BEA', + MapResourcesPerAccount = 'L-A94FDED2', + RateOfGetDevicePositionApiRequests = 'L-55FCDA52', + TrackerResourcesPerAccount = 'L-8CDBA5E9', + RateOfCalculateRouteMatrixApiRequests = 'L-0E174A76', + RateOfGetPlaceApiRequests = 'L-CF1B7B95', + RateOfDeleteMapApiRequests = 'L-66B4C7B5', + RateOfDeleteTrackerApiRequests = 'L-24CBFF24', + RateOfListMapsApiRequests = 'L-004FBC04', + RateOfGetMapTileApiRequests = 'L-7FB5719A', + RateOfDeleteRouteCalculatorApiRequests = 'L-EF11EFBE', + RateOfBatchUpdateDevicePositionApiRequests = 'L-16C77FC0', + RateOfCreateMapApiRequests = 'L-8A769EC2', + RateOfGetMapGlyphsApiRequests = 'L-25528367', + RateOfListPlaceIndexesApiRequests = 'L-E3E8B4BC', + RateOfCreateRouteCalculatorApiRequests = 'L-AF53BB1C', +} +export enum AmazonGlacierQuota { + MultipartPartsSize = 'L-4BF4C362', + NumberOfRandomRestoreRequests = 'L-0D9D2530', + VaultsPerAccount = 'L-D1C67346', + NumberOfVaultTags = 'L-153F5D45', + ArchiveSize = 'L-E0D19AD1', + NumberOfMultipartParts = 'L-982DEA76', + ProvisionedCapacityUnits = 'L-F127DF29', + ArchiveSizeInGb = 'L-E96017CA', +} +export enum AwsGlobalAcceleratorQuota { + CustomRoutingAcceleratorsPerAwsAccount = 'L-BB449727', + EndpointsPerEndpointGroupEc2Instances = 'L-2151CAA1', + EndpointsPerEndpointGroupApplicationLoadBalancers = 'L-64AB1D03', + StandardAcceleratorsPerAwsAccount = 'L-BE074EF3', + PortOverridesPerEndpointGroup = 'L-7B7A9DD5', + TagsPerAccelerator = 'L-BBFAF73D', + EndpointsPerEndpointGroupElasticIpAddresses = 'L-B7B05447', + EndpointsPerEndpointGroupNetworkLoadBalancers = 'L-6975C1FD', + ListenersPerAccelerator = 'L-C6F903E5', + EndpointsPerEndpointGroupVpcSubnets = 'L-83098BD3', + EndpointsPerEndpointGroupMoreThanOneEndpointType = 'L-D299765E', + CrossAccountAttachmentsPerAwsAccount = 'L-E201D224', + PrincipalsPerCrossAccountAttachment = 'L-3D1423D2', + PortRangesPerListener = 'L-8EECD8DD', + EndpointGroupsPerAccelerator = 'L-33758EFD', + EndpointResourcesPerCrossAccountAttachment = 'L-DFAF9939', +} +export enum AwsGlueQuota { + MaximumNumberOfInFlightCompletionRequestsAllowedPerAccount = 'L-958728D1', + MaxTaskDpUsPerAccount = 'L-08F3B322', + MaxDatabasesPerAccount = 'L-F953935E', + ConcurrentComputeCapacityForRayWorkerInstancesInMDpUsPerAccount = 'L-E6C807E7', + MaxTablesPerDatabase = 'L-B8497671', + MaxTriggersPerAccount = 'L-F1653A6D', + NumberOfColumnStatisticsTasksRunningConcurrentlyPerAccount = 'L-3890A802', + MaxJobsPerAccount = 'L-611FDDE4', + MaxTablesPerAccount = 'L-94D025B7', + MaxJobsPerTrigger = 'L-EEC98450', + MaxConcurrentJobRunsPerAccount = 'L-5E4153CA', + MaxPartitionsPerAccount = 'L-FEBBFA7A', + MaxDpUsPerDevEndpoint = 'L-76EC689B', + MaxDataQualityRulesetsPerAccount = 'L-87F5991C', + ConcurrentMachineLearningTaskRunsPerTransform = 'L-E15CE20A', + MaxConcurrentDataQualityRulesetEvaluationRunsPerAccount = 'L-C3952F6C', + MaxConnectionPerAccount = 'L-4256D6D2', + MaxPartitionsPerTable = 'L-2C3F5401', + NumberOfCrawlersPerAccount = 'L-11FA2C1A', + LabelFileSize = 'L-B78896B9', + NumberOfCrawlersRunningConcurrentlyPerAccount = 'L-4071B0E3', + MaxConcurrentDataQualityRulesetRecommendationRunsPerAccount = 'L-ACAC12B6', + MaxConcurrentJobRunsPerJob = 'L-F574AED9', + TotalConcurrentMachineLearningTaskRunsForTransformsPerAccount = 'L-83A59AA6', + MaxTableVersionsPerTable = 'L-071ABE08', + MaxFunctionsPerAccount = 'L-D987EC31', + MaxDevelopmentEndpointPerAccount = 'L-DBA56E2F', + MaxSecurityConfigurationsPerAccount = 'L-83192DBF', + NumberOfWorkflows = 'L-7DD7C33A', + MaxFunctionsPerDatabase = 'L-1DD415D5', + MaxSpareComputeCapacityConsumedInDataProcessingUnitsDpUsPerAccount = 'L-096DBB95', + MaxTableVersionsPerAccount = 'L-337244C9', + MaxDatabasesPerCatalog = 'L-A57B5BCE', + NumberOfMachineLearningTransforms = 'L-04CEE988', + NumberOfMetadataKeyValuePairsPerSchemaVersion = 'L-CB69DFA0', + NumberOfSchemaVersions = 'L-AD871090', + NumberOfSchemaRegistries = 'L-64A88F0A', +} +export enum AmazonManagedGrafanaQuota { + NumberOfWorkspaces = 'L-2C2D5119', + RateOfUpdatePermissionsRequests = 'L-5420120D', + RateOfDescribeWorkspaceRequests = 'L-C1661D81', + RateOfCreateWorkspaceRequests = 'L-6134480C', + RateOfDisassociateLicenseRequests = 'L-482DE601', + RateOfListPermissionsRequests = 'L-EF9C1A59', + RateOfAssociateLicenseRequests = 'L-A947D66C', + RateOfListWorkspacesRequests = 'L-F61AFA49', + RateOfUpdateWorkspaceAuthenticationRequests = 'L-6A33FFDD', + RateOfUpdateWorkspaceRequests = 'L-0F096599', + RateOfDeleteWorkspaceRequests = 'L-DE04A994', + RateOfDescribeWorkspaceAuthenticationRequests = 'L-B3CBC037', +} +export enum AwsIoTGreengrassQuota { + DeploymentDocumentSizeWithLargeConfigurationSupport = 'L-B4267AEE', + ResourcesPerLambdaFunctionV1 = 'L-966A9851', + RateOfCreateComponentVersionRequests = 'L-7B8C20A0', + TotalComponentArtifactSize = 'L-1F85CE8B', + RateOfCreateDeploymentRequestsV1 = 'L-B905B13E', + ThingGroupDeploymentDocumentSizeWithoutLargeConfigurationSupport = 'L-EF192347', + Components = 'L-4676BC3D', + ThingDeploymentDocumentSizeWithoutLargeConfigurationSupport = 'L-99B77DDC', + ResourcesPerGreengrassGroup = 'L-56EE2BF6', + SubscriptionsWithCloudMessageSourcePerGreengrassGroup = 'L-59276CBA', + CoreDeviceThingNameLength = 'L-AB912DF1', + LambdaFunctionsPerGreengrassGroup = 'L-F7F6CD87', + AwsIoTDevicesPerGreengrassGroup = 'L-172983AD', + ComponentRecipeSize = 'L-4424F8F0', + SubscriptionsPerGreengrassGroup = 'L-AC2D5DCC', + VersionsPerComponent = 'L-FC3754BD', + RateOfApiRequests = 'L-7A577824', +} +export enum AwsGroundStationQuota { + ConfigLimit = 'L-5CCF0BC2', + EphemerisValidationLimit = 'L-DE376FC5', + ScheduledContactsLimit = 'L-DF7B6DEC', + ScheduledMinutesLimit = 'L-FED20749', + ContactLeadTimeMaximum = 'L-09DEC198', + EnabledEphemeridesLimit = 'L-BD84767C', + MaximumContactDuration = 'L-CCFDE387', + DataflowEndpointsPerGroupLimit = 'L-98A63A85', + DataflowEndpointGroupLimit = 'L-D6A1915B', + MissionProfileLimit = 'L-5342B9BF', +} +export enum AmazonGuardDutyQuota { + ThreatIntelSets = 'L-2C0E14B9', + Filters = 'L-9ABF7A23', + Detectors = 'L-FA6D6E3D', + MemberAccountsThroughAwsOrganizations = 'L-8B0D7135', + FindingRetentionPeriod = 'L-373487E5', + TrustedIpSets = 'L-AFBA2260', + MemberAccountsByInvitation = 'L-F51A2830', +} +export enum AwsHealthLakeQuota { + RateOfStartFhirExportJobRequestsPerAccount = 'L-89C5695B', + RateOfSearchRequestsUsingGetPerAccount = 'L-98AD4FBA', + RateOfPutRequestsPerDataStore = 'L-9375C7A1', + RateOfSearchRequestsUsingPostPerDataStore = 'L-7366BBDE', + RateOfStartFhirImportJobRequestsPerAccount = 'L-30C48F20', + RateOfDescribeFhirDatastoreRequestsPerAccount = 'L-08562F99', + RateOfPostRequestsPerDataStore = 'L-9EB60712', + NumberOfResourcesPerBundle = 'L-DEE2AD8C', + SizeOfIndividualImportedFile = 'L-193CCF4A', + RateOfPutRequestsPerAccount = 'L-0BAE502B', + RateOfBundleRequestsPerDataStore = 'L-51420D3D', + RateOfListTagsforResourceRequestsPerAccount = 'L-9A686AFF', + RateOfDeleteRequestsPerDataStore = 'L-C208C0FF', + RateOfDiscoveryRequestsPerAccount = 'L-F9693125', + TotalImportJobSize = 'L-DEBEEE9B', + RateOfBundleRequestsPerAccount = 'L-D0D9461D', + NumberOfFilesInAStartFhirImportJob = 'L-529B6D50', + NumberOfConcurrentStartFhirImportJobJobs = 'L-C50C0FBE', + RateOfUntagResourceRequestsPerAccount = 'L-A6C0FA25', + RateOfCreateFhirDatastoreRequestsPerAccount = 'L-721C6162', + RateOfListFhirImportJobsRequestsPerAccount = 'L-D3C3D97F', + RateOfSearchRequestsUsingGetPerDataStore = 'L-611058A1', + RateOfDeleteRequestsPerAccount = 'L-B24305BE', + RateOfGetRequestsPerAccount = 'L-F39A95A1', + NumberOfCharactersInAMedicalNote = 'L-A877B121', + RateOfDescribeFhirExportJobRequestsPerAccount = 'L-4AF06720', + NumberOfDataStoresPerAccount = 'L-3EA1D6C3', + RateOfPostRequestsPerAccount = 'L-B94D535B', + NumberOfConcurrentStartFhirExportJobJobs = 'L-C81E556E', + RateOfDescribeFhirExportJobRequestsUsingGetPerAccount = 'L-EA9D0A0E', + RateOfListFhirDatastoresRequestsPerAccount = 'L-37C7D0F4', + RateOfDescribeFhirImportJobRequestsPerAccount = 'L-CEC25D2E', + RateOfStartFhirExportJobRequestsUsingPostPerAccount = 'L-2CC47481', + RateOfGetRequestsPerDataStore = 'L-863A7B88', + RateOfListFhirExportJobsRequestsPerAccount = 'L-F42E27CF', + RateOfSearchRequestsUsingPostPerAccount = 'L-6FDC6068', + RateOfTagResourceRequestsPerAccount = 'L-80C56DBE', + RateOfGetCapabilitiesRequestsPerAccount = 'L-EDA92DAB', + RateOfCancelFhirExportJobRequestsUsingDeletePerAccount = 'L-0ADA6AFF', + RateOfDeleteFhirDatastoreRequestsPerAccount = 'L-6F6B4950', +} +export enum AwsIdentityAndAccessManagementIamQuota { + ManagedPoliciesPerRole = 'L-0DA4ABF3', + ServerCertificatesPerAccount = 'L-BF35879D', + UsersPerAccount = 'L-F55AF5E4', + TagsPerUser = 'L-FC9EC213', + RoleTrustPolicyLength = 'L-C07B4B0D', + IdentityProvidersPerIamSamlProviderObject = 'L-3AD47CAE', + GroupsPerAccount = 'L-F4A5425F', + VersionsPerManagedPolicy = 'L-8E23FFD8', + ManagedPolicyLength = 'L-ED111B8C', + InstanceProfilesPerAccount = 'L-6E65F664', + ManagedPoliciesPerUser = 'L-4019AD8B', + TagsPerRole = 'L-B39FB15B', + RolesPerAccount = 'L-FE177D64', + SshPublicKeysPerUser = 'L-F1176D35', + KeysPerSamlProvider = 'L-C4DF001E', + CustomerManagedPoliciesPerAccount = 'L-E95E4862', + SamlProvidersPerAccount = 'L-DB618D39', + ManagedPoliciesPerGroup = 'L-384571C4', + AccessKeysPerUser = 'L-8758042E', + IamGroupsPerUser = 'L-7A1621EC', + OpenIdConnectProvidersPerAccount = 'L-858F3967', + MfaDevicesPerUser = 'L-19F2CF71', + SigningCertificatesPerUser = 'L-76C48054', +} +export enum Ec2ImageBuilderQuota { + ComponentSize = 'L-D5DC1FB3', + ImageRecipes = 'L-1DF98342', + DockerTemplateSize = 'L-84F5AB81', + ConcurrentAmiCopiesPerDistributionConfiguration = 'L-69312229', + ParametersPerImageWorkflow = 'L-E49825CC', + ImageWorkflowSize = 'L-22EAF8F8', + ConcurrentResourceStateUpdate = 'L-5E848392', + LaunchTemplatesModifiedPerDistributionConfiguration = 'L-D5665818', + LifecyclePolicies = 'L-6105A4EE', + DistributionConfigurations = 'L-2BAA05D8', + ParametersPerComponent = 'L-A58CFBED', + ComponentParameterLength = 'L-10D22E0D', + ComponentsPerImageRecipe = 'L-59EC76F6', + ImageWorkflows = 'L-0DF2752F', + ImageWorkflowParameter = 'L-A26B27A7', + InfrastructureConfigurations = 'L-D9EF98D9', + Components = 'L-9B183655', + StepsPerImageWorkflow = 'L-D9E1BB3C', + ImageWorkflowsPerImage = 'L-31E5726E', + ImagePipelines = 'L-7A0E01E3', + ContainerRecipes = 'L-28A502FD', + ConcurrentBuilds = 'L-BA4D191B', +} +export enum AmazonInspectorClassicQuota { + InstancesInRunningAssessments = 'L-6750F872', + AssessmentTargets = 'L-E1AFB5F4', + AssessmentRuns = 'L-12943E2F', + AssessmentTemplates = 'L-7A3AEC10', +} +export enum AmazonInspectorQuota { + NumberOfSuppressionRules = 'L-3CFEE10A', +} +export enum CloudWatchInternetMonitorQuota { + MonitorsPerAccountPerAwsRegion = 'L-99A570F6', + DaysThatHealthEventsAreRetained = 'L-4C7E946E', + ResourcesPerMonitor = 'L-D43DFC35', +} +export enum AwsIoTQuota { + ListAuditMitigationActionsTasksApiTps = 'L-08C28D29', + DescribeTunnelApiThrottleLimit = 'L-382CCFC0', + MetricDimensions = 'L-8B5F47E6', + GetJobDocumentThrottleLimit = 'L-86FC5D66', + ListMetricValuesApiTps = 'L-DC1637B1', + DeleteSecurityProfileApiTps = 'L-A6ABB02F', + CreateAuditSuppressionApiTps = 'L-0C3BA39D', + UpdateMitigationActionApiTps = 'L-1CB31CD2', + DeleteDimensionApiTps = 'L-C002DA39', + MaximumNumberOfWildcardOperatorsPerQueryTerm = 'L-D92F6C41', + MaximumLengthOfAQuery = 'L-C3993A6F', + MaximumNumberOfCustomFieldsInAwsThingGroupsIndex = 'L-8B2A08E6', + StatusDetailMapKeyValuePairs = 'L-95D5D7AB', + ListJobExecutionsForJobThrottleLimit = 'L-9CCB5F90', + GetOtaUpdateApiTps = 'L-74CF42C0', + DescribeAccountAuditConfigurationApiTps = 'L-01C40691', + ListAuditTasksApiTps = 'L-B78A9E08', + MaximumBandwidthPerTunnel = 'L-6D2A593E', + DeleteOtaUpdateApiTps = 'L-FCC8A955', + DescribeAuditFindingApiTps = 'L-6A19A60F', + MitigationActions = 'L-1A084077', + ListJobsThrottleLimit = 'L-145FD0E6', + DescribeCustomMetricApiTps = 'L-6F3753D8', + ListJobExecutionsForThingThrottleLimit = 'L-10F35433', + CustomMetrics = 'L-53A90E98', + S3JobDocumentLength = 'L-7C5B0274', + MaximumNumberOfQueryTermsPerDynamicGroup = 'L-90F8C878', + BehaviorMetricValueElementsForEachSecurityProfile = 'L-971FA845', + ScheduledAudits = 'L-0D30EFBA', + DataRetention = 'L-B475FD53', + ListSecurityProfilesForTargetApiTps = 'L-9299DD15', + PreSignedUrlLifetime = 'L-FBBB476F', + StatusDetailMapKeyLength = 'L-85B5C2FD', + DescribeDetectMitigationActionsTaskApiTps = 'L-DCAEF14C', + MaximumTagValueLength = 'L-B8CB01EA', + MaximumNumberOfJobTemplates = 'L-B2C87795', + CreateJobThrottleLimit = 'L-23F244D4', + ListIndicesRate = 'L-C0894219', + UntagResourceApiTrottleLimit = 'L-BF877B05', + ListOtaUpdatesApiTps = 'L-6A50FCE7', + StepTimer = 'L-717A207E', + CancelAuditTaskApiTps = 'L-3AA926CF', + StatusDetailMapValueLength = 'L-36FC3065', + CommentLength = 'L-3123807D', + DeleteAccountAuditConfigurationApiTps = 'L-C6AA7145', + GetCardinalityRate = 'L-B359270D', + StorageDurationForAuditFindings = 'L-F5608FF9', + ListMitigationActionsApiTps = 'L-62C55F58', + UpdateAuditSuppressionApiTps = 'L-CA8BDEFC', + DescribeAuditSuppressionApiTps = 'L-ADA44585', + DeleteAuditSuppressionApiTps = 'L-E70CF14E', + MaximumNumberOfPercentileValuesPerFleetMetric = 'L-24513B55', + ListActiveViolationsApiTps = 'L-6891CC02', + InProgressTimeout = 'L-6A6494DD', + CreateStreamApiTps = 'L-86E241A6', + GetPercentilesRate = 'L-4627F3A5', + CloseTunnelApiThrottleLimit = 'L-4C86F053', + SimultaneousInProgressOnDemandAudits = 'L-1EF777B4', + StartOnDemandAuditTaskApiTps = 'L-471C1537', + StreamsPerAccount = 'L-4C271B57', + MaximumNumberOfQueryTermsPerFleetMetric = 'L-F7BC9359', + MinimumPeriodOfAFleetMetric = 'L-4B5EBCAE', + MaximumNumberOfCustomFieldsInAwsThingsIndex = 'L-AE68DCD9', + ActiveSnapshotJobs = 'L-D80B05DB', + ListAuditSuppressionsApiTps = 'L-9227E25C', + ListStreamsApiTps = 'L-4026757A', + MaximumNumberOfTagsPerResource = 'L-CE4D15EC', + MaximumTunnelLifetime = 'L-465123DA', + UpdateCustomMetricApiTps = 'L-ABC0EA56', + JobTargets = 'L-9D1E0A0D', + DescribeJobTemplateThrottleLimit = 'L-D3020048', + CreateOtaUpdateApiTps = 'L-EFEC7F9B', + ListDetectMitigationActionsExecutionsApiTps = 'L-8D3E8509', + StartNextPendingJobExecutionUpdateJobExecutionThrottleLimit = 'L-C8F5F7B3', + MaximumNumberOfTargetsInTheGeoLocationsFilter = 'L-7068DC7F', + MaximumNumberOfDynamicGroups = 'L-2F036C7C', + DeleteStreamApiTps = 'L-4BB13F2B', + DescribeMitigationActionApiTps = 'L-145287EF', + ListResultsPerPage = 'L-786CEEF0', + FileSize = 'L-B68A9868', + JobDescriptionLength = 'L-94973834', + SearchIndexRate = 'L-908D0FBE', + MaximumNumberOfNamesInTheNamedShadowNamesFilter = 'L-57F7D467', + DescribeJobThrottleLimit = 'L-609D00CE', + ListAuditMitigationActionsExecutionsApiTps = 'L-C6D7A02D', + TagResourceApiThrottleLimit = 'L-5755407D', + CreateScheduledAuditApiTps = 'L-60251A2B', + UpdateAccountAuditConfigurationApiTps = 'L-F62705AB', + ListAuditFindingsApiTps = 'L-0321A666', + CreateMitigationActionApiTps = 'L-EFA916AE', + DescribeSecurityProfileApiTps = 'L-8AEAB7FE', + ListJobTemplatesThrottleLimit = 'L-59178860', + MaximumNumberOfQueryTermsPerQuery = 'L-00E8EC16', + ActiveContinuousJobs = 'L-4E068A30', + UpdateStreamApiTps = 'L-59F27FE9', + JobTemplateDescriptionLength = 'L-CEAD881C', + ListScheduledAuditsApiTps = 'L-016FB677', + DescribeAuditTaskApiTps = 'L-146D20C5', + ListTargetsForSecurityProfileApiTps = 'L-014BF26E', + DescribeDimensionApiTps = 'L-002E66AE', + MaximumTagKeyLength = 'L-47B4076F', + StorageDurationForDetectMetrics = 'L-2B367AAD', + DeleteJobExecutionThrottleLimit = 'L-4AB367B4', + ListViolationEventsApiTps = 'L-56E94C1D', + StartDetectMitigationActionsTaskApiTps = 'L-670D7C85', + DeviceMetricPeakReportingRateForAnAccount = 'L-9AE67DFC', + ListDetectMitigationActionsTasksApiTps = 'L-D18738F6', + OpenTunnelApiThrottleLimit = 'L-E72C1C85', + DescribeScheduledAuditApiTps = 'L-42A0EE7E', + DescribeIndexRate = 'L-23B1CFB2', + DescribeJobExecutionGetPendingJobExecutionsThrottleLimit = 'L-62AE8B9D', + DeviceMetricMinimumDelay = 'L-7BF41710', + JobIdLength = 'L-E41D2F60', + MaximumPeriodOfAFleetMetric = 'L-FC067223', + MaximumConnectionRate = 'L-00511A32', + DescribeStreamApiTps = 'L-F288A443', + ListDimensionsApiTps = 'L-0A17A254', + ListSecurityProfilesApiTps = 'L-DACF0EDE', + ValidateSecurityProfileBehaviorsApiTps = 'L-88D87918', + UpdateIndexingConfigurationRate = 'L-632CA122', + DeleteScheduledAuditApiTps = 'L-7C0B717A', + GetStatisticsRate = 'L-090EA78D', + MaximumNumberOfFleetMetrics = 'L-A5B47E14', + DeleteCustomMetricApiTps = 'L-CD7FC91A', + MinimumPreSignedUrlLifetime = 'L-EC6F1940', + GetIndexingConfigurationRate = 'L-4F362163', + MinimumJobExecutionRollOutRate = 'L-22D1A126', + PutVerificationStateOnViolationApiTps = 'L-46522656', + DeleteMitigationActionApiTps = 'L-5C712B10', + JobExecutionRollOutRate = 'L-026DF298', + AssociateTargetsWithJobThrottleLimit = 'L-D7A534B0', + SecurityProfilesForEachTarget = 'L-FF03CD81', + CancelAuditMitigationActionsTaskApiTps = 'L-03D9A452', + CreateSecurityProfileApiTps = 'L-A2577F1F', + BehaviorsForEachSecurityProfile = 'L-2F1C9734', + CancelJobExecutionThrottleLimit = 'L-5D01DB62', + CreateJobTemplateThrottleLimit = 'L-224318E9', + CancelDetectMitigationActionsTaskApiTps = 'L-13B49C07', + ListCustomMetricsApiTps = 'L-D45EEF28', + DeleteJobTemplateThrottleLimit = 'L-99780C4B', + UpdateJobThrottleLimit = 'L-7365ADF8', + UpdateSecurityProfileApiTps = 'L-2145354D', + JobTemplateIdLength = 'L-3470FAF6', + DocumentSourceLength = 'L-13B86658', + AttachSecurityProfileApiTps = 'L-E9111144', + FilesPerStream = 'L-D32D434B', + UpdateScheduledAuditApiTps = 'L-211671C6', + DetachSecurityProfileApiTps = 'L-CF4F23BC', + ListTagsForResourceApiThrottleLimit = 'L-60A7ED34', + StartAuditMitigationActionsTaskApiTps = 'L-81189B2F', + DescribeJobExecutionThrottleLimit = 'L-B731A266', + CancelJobThrottleLimit = 'L-DEC656C5', + DescribeAuditMitigationActionsTaskApiTps = 'L-32F19277', + MaximumLengthOfACustomFieldName = 'L-4832A12B', + CreateCustomMetricApiTps = 'L-E68D12E6', + ConcurrentJobs = 'L-FBF5CD89', + DeleteJobThrottleLimit = 'L-46C255C8', + UpdateDimensionApiTps = 'L-68A50D88', + ListTunnelsApiThrottleLimit = 'L-B7CAF86D', + StorageDurationForDetectViolations = 'L-C8D2DE05', +} +export enum AwsIoT1ClickQuota { + UntagResourceApiTps = 'L-B8F71D9E', + ListProjectsApiTps = 'L-AF8DAEC8', + CreateProjectApiTps = 'L-31E52C69', + ListTagsForResourceApiTps = 'L-F2F590C3', + AssociateDeviceWithPlacementApiTps = 'L-D3B2744A', + DisassociateDeviceFromPlacementApiTps = 'L-3E9AF126', + ListPlacementsApiTps = 'L-F62A47FD', + UpdateProjectApiTps = 'L-E2D5A54F', + TagResourceApiTps = 'L-0388312D', + CreatePlacementApiTps = 'L-8241639D', + GetDevicesInPlacementApiTps = 'L-201CEE84', + DescribePlacementApiTps = 'L-BA3EA82D', + DeletePlacementApiTps = 'L-8370AE24', + DeleteProjectApiTps = 'L-F4A7907D', + UpdatePlacementApiTps = 'L-CD276513', + DescribeProjectApiTps = 'L-57C1C7AB', +} +export enum AwsIoTAnalyticsQuota { + NumberOfStartPipelineReprocessingRequests = 'L-EFB6780D', + NumberOfPartitionsInADataStore = 'L-BA86816F', + DataStoresPerAccount = 'L-86CFEC61', + ConcurrentContainerDatasetRuns = 'L-6AE7A88C', + NumberOfParquetSchemaDefinitionColumns = 'L-41F5CE82', + SizeOfBatchPutMessageMessages = 'L-A9F757CF', + RateOfBatchPutMessageMessages = 'L-CFCA90F1', + ContainerDatasetsTriggeredPerSqlDataSet = 'L-94D1C11F', + BatchSizeOfBatchPutMessageMessages = 'L-59E2DC0E', + MinimumDataSetRefreshInterval = 'L-5CD4F96D', + PipelinesPerAccount = 'L-0AED1111', + DataSetsPerAccount = 'L-4BFEAE82', + ChannelsPerAccount = 'L-321F3834', + ConcurrentDataSetContentGeneration = 'L-9514024B', + RateOfCreateDatasetContentRequests = 'L-546EC585', + DepthOfParquetSchemaDefinitionColumn = 'L-B7F65767', + ActivitiesPerPipeline = 'L-8363A0C2', + RateOfRunPipelineActivityRequests = 'L-C770541D', + RateOfSampleChannelDataRequests = 'L-C24E823A', +} +export enum AwsIoTCoreQuota { + RemoveThingFromBillingGroupApiTps = 'L-FAF5733F', + DeleteBillingGroupApiTps = 'L-6C20C764', + CreateCertificateProviderApiTps = 'L-EF8DF306', + ListBillingGroupsApiTps = 'L-BB923BC2', + DetachThingPrincipalApiTps = 'L-B5EE4A16', + DescribeThingTypeApiTps = 'L-DDCF8E97', + DescribeBillingGroupApiTps = 'L-23DF46E7', + CreateDynamicThingGroupApiTps = 'L-7E0F5745', + DeleteThingTypeApiTps = 'L-CFBDB489', + CreateThingTypeApiTps = 'L-8650816F', + ListThingGroupsApiTps = 'L-1E5260D6', + CreateThingGroupApiTps = 'L-512F449C', + UpdateCertificateProviderApiTps = 'L-EBD13534', + RemoveThingFromThingGroupApiTps = 'L-2A81A394', + ListCertificateProvidersApiTps = 'L-D9543C11', + UpdateThingGroupApiTps = 'L-5D84F9FE', + DeprecateThingTypeApiTps = 'L-7F1DBFAE', + ListThingsInThingGroupApiTps = 'L-D33FD5F9', + AddThingToThingGroupApiTps = 'L-2904683A', + ListThingPrincipalsApiTps = 'L-FC3EF4D9', + UpdateThingApiTps = 'L-211F680E', + DeleteThingApiTps = 'L-889800F7', + AddThingToBillingGroupApiTps = 'L-1F4BE39E', + DeleteDynamicThingGroupApiTps = 'L-9DF61146', + TagResourceApiTps = 'L-06E76376', + ListThingTypesApiTps = 'L-F9EBF527', + ListPrincipalThingsApiTps = 'L-C481616A', + DeleteThingGroupApiTps = 'L-FCAB1AF4', + UpdateDynamicThingGroupApiTps = 'L-E06BBD5F', + UntagResourceApiTps = 'L-8996ACA8', + DescribeThingApiTps = 'L-0EF0F5EE', + ListThingsInBillingGroupApiTps = 'L-E8797DCC', + DescribeThingGroupApiTps = 'L-52E1E197', + UpdateBillingGroupApiTps = 'L-88CA286A', + AttachThingPrincipalApiTps = 'L-F64D1AA6', + DeleteCertificateProviderApiTps = 'L-E694C311', + CreateBillingGroupApiTps = 'L-F2D09BC8', + ListTagsForResourceApiTps = 'L-D127B7BE', + ListThingsApiTps = 'L-57AAC135', + CreateThingApiTps = 'L-64CBACAC', + ListThingGroupsForThingApiTps = 'L-75F129AD', + DescribeCertificateProviderApiTps = 'L-EE822245', + MaximumNumberOfInFlightUnacknowledgedMessagesPerThing = 'L-23F45906', + SharedSubscriptionGroupsPerAccount = 'L-850876C0', + MaximumNumberOfRetainedMessagesPerAccount = 'L-57BADEF0', + ConnectRequestsPerSecondPerClientId = 'L-033DE216', + MaximumSizeOfAThingGroupAttributeValueInChars = 'L-AF06EF1C', + GetRetainedMessageApiTps = 'L-1243AB32', + MaximumMqtt5PacketSize = 'L-78413E12', + MaximumMqtt5CorrelationDataSize = 'L-7E9783FF', + UpdateCertificateApiTps = 'L-77B523DC', + ListTopicRuleDestinationsApiTps = 'L-CFF04779', + MaximumLineLength = 'L-D4CA1ECC', + HttpActionMaximumSizeOfAHeaderKey = 'L-927E0A91', + HttpActionRequestTimeout = 'L-F9709CF8', + DeleteCertificateApiTps = 'L-EEB8F0B1', + RejectCertificateTransferApiTps = 'L-E82C8FBF', + CreateTopicRuleDestinationApiTps = 'L-BBB14FFD', + ConnectionInactivityKeepAliveInterval = 'L-E77027EF', + MinimumMqtt5MaximumPacketSize = 'L-64BE4C6D', + ListProvisioningTemplatesApiTps = 'L-53E8A280', + EnableTopicRuleApiTps = 'L-24EAC95F', + NumberOfThingTypesThatCanBeAssociatedWithAThing = 'L-7D0B47D6', + MaximumShadowNameSize = 'L-724130CC', + RetainedMessageInboundPublishRequestsPerSecondPerTopic = 'L-771FD74A', + DeleteCaCertificateApiTps = 'L-944099F0', + FleetProvisioningRegisterThingMqttApiTps = 'L-B2BBBD8C', + MaximumDepthOfJsonDeviceStateDocuments = 'L-2A7BC612', + RegisterCertificateApiTps = 'L-8C0011A3', + RequestsPerSecondPerThing = 'L-EFF4BE08', + MaximumMessageExpiryInterval = 'L-BD70FE3A', + DeletePolicyVersionApiTps = 'L-2990EF9F', + SetLoggingOptionsApiTps = 'L-79328B0C', + RegisterCertificateWithoutCaApiTps = 'L-4671C7C8', + MaximumNumberOfDynamicGroups = 'L-6EC13FE5', + OutboundPublishRequestsPerSecondPerAccount = 'L-FE4EDCF9', + RegistrationTaskTermination = 'L-97D120C3', + SubscribeAndUnsubscribeRequestsPerSecondPerGroup = 'L-757705D9', + CreateRoleAliasApiTps = 'L-E892E94A', + AttachPolicyApiTps = 'L-CA7D4E3E', + MaximumRetryIntervalForDeliveringQoS1Messages = 'L-675FC798', + HttpActionMaximumTopicRuleDestinationsPerAwsAccount = 'L-8E2FCD9D', + MaximumNumberOfResourceSpecificLoggingConfigurationsPerAwsAccount = 'L-E1FD4738', + MaximumNumberOfCaCertificatesWithTheSameSubjectFieldAllowedPerAwsAccountPerRegion = 'L-A26060BE', + WebSocketConnectionDuration = 'L-3F401592', + MaximumMqtt5TopicAliasValue = 'L-C0EA6C17', + CustomAuthenticationMaximumNumberOfAuthorizersPerAccount = 'L-78E3C43F', + RuleEvaluationsPerSecondPerAwsAccount = 'L-5E9B88DA', + DeleteRegistrationCodeApiTps = 'L-D5D09DC2', + UpdateCaCertificateApiTps = 'L-A755E860', + GetRegistrationCodeApiTps = 'L-83705EE2', + MaximumNumberOfPoliciesThatCanBeAttachedToACertificateOrAmazonCognitoIdentity = 'L-BC2638B3', + MaximumNumberOfThingGroupsAThingCanBelongTo = 'L-C12BBB7E', + DescribeEventConfigurationsApiTps = 'L-AC832B8A', + DeleteProvisioningTemplateApiTps = 'L-066C37B5', + DeleteDomainConfigurationApiTps = 'L-FBA96CAB', + MaximumNumberOfSlashesInTopicAndTopicFilter = 'L-AD5A8D4F', + UpdateEventConfigurationsApiTps = 'L-9C512C33', + RegisterThingApiTps = 'L-C0B2EF8B', + ListCertificatesApiTps = 'L-97DA2C60', + MaximumSizeOfFleetProvisioningTemplate = 'L-3B9C1B78', + ListPrincipalPoliciesApiTps = 'L-129466FE', + FleetProvisioningCreateCertificateFromCsrMqttApiTps = 'L-83161BB8', + DescribeProvisioningTemplateApiTps = 'L-261C415C', + CreateProvisioningTemplateVersionApiTps = 'L-7C43D13A', + MaximumInboundUnacknowledgedQoS1PublishRequests = 'L-8736D8E0', + DeleteTopicRuleApiTps = 'L-B8E3A42A', + SetV2LoggingOptionsApiTps = 'L-137EE1A7', + UpdateRoleAliasApiTps = 'L-447FFBFB', + UpdateAuthorizerApiTps = 'L-6355B513', + DeleteAuthorizerApiTps = 'L-B6E97F34', + ListTargetsForPolicyApiTps = 'L-D7C50543', + DataRetentionPolicy = 'L-8B5FA95E', + RuleSize = 'L-4FB8C075', + MaximumThingNameSize = 'L-83BC2FA9', + CreatePolicyVersionApiTps = 'L-BD4A365E', + AttachPrincipalPolicyApiTps = 'L-81689EEF', + ListCaCertificatesApiTps = 'L-15185D92', + SizeOfThingAttributesPerThing = 'L-5104A2FD', + MaximumSizeOfAThingGroupAttributeNameInChars = 'L-AB8384AA', + MaximumNumberOfFleetProvisioningTemplatesPerCustomer = 'L-345B62A1', + DeletePolicyApiTps = 'L-58129C66', + ListOutgoingCertificatesApiTps = 'L-56AB20B6', + DescribeEndpointApiTps = 'L-F30831DF', + CancelCertificateTransferApiTps = 'L-14E3C32E', + MqttPayloadSize = 'L-13573643', + MaximumNumberOfActionsPerRule = 'L-51309716', + ConnectRequestsPerSecondPerAccount = 'L-AEA1E176', + RetainedMessageInboundPublishRequestsPerSecondPerAccount = 'L-BAFC6221', + MaximumNumberOfThingAttributesForAThingWithoutAThingType = 'L-945D2414', + DescribeCaCertificateApiTps = 'L-E72BB356', + CreateTopicRuleApiTps = 'L-E817179B', + HttpActionMaximumLengthOfAnEndpointUrl = 'L-B6E73822', + DeleteProvisioningTemplateVersionApiTps = 'L-307251B7', + ListProvisioningTemplateVersionsApiTps = 'L-80CBA176', + ListPolicyVersionsApiTps = 'L-E67DF416', + MaximumThingGroupNameSize = 'L-3BB07D58', + MaximumUserPropertiesTotalSize = 'L-7201B389', + GetPolicyVersionApiTps = 'L-1FE17093', + QueuedMessagesPerSecondPerAccount = 'L-35DA9240', + MaximumNumberOfAwsIoTCoreRoleAliases = 'L-8AF17D80', + DescribeDomainConfigurationApiTps = 'L-7027E8DD', + ClearDefaultAuthorizerApiTps = 'L-5BDDC7FE', + UpdateTopicRuleDestinationApiTps = 'L-BD9799A6', + ListTopicRulesApiTps = 'L-860C3E36', + ListAttachedPoliciesApiTps = 'L-B2DA2A45', + CreateCertificateFromCsrApiTps = 'L-01BCDDCA', + UpdateDomainConfigurationApiTps = 'L-D624FA43', + FleetProvisioningCreateKeysAndCertificateMqttApiTps = 'L-CAFFCA46', + GetV2LoggingOptionsApiTps = 'L-3084D098', + ListDomainConfigurationsApiTps = 'L-4BDBE56D', + SetDefaultAuthorizerApiTps = 'L-51C95546', + ListV2LoggingLevelsApiTps = 'L-D74B77D3', + ListThingRegistrationTaskApiTps = 'L-B2CCE1DE', + DescribeThingRegistrationTaskApiTps = 'L-4673EACA', + StopThingRegistrationTaskApiTps = 'L-DADCC3DA', + MaximumPolicyDocumentSize = 'L-D9B73671', + GetTopicRuleDestinationApiTps = 'L-E99F934A', + MaximumDepthOfAThingGroupHierarchy = 'L-1AC7411F', + UpdateProvisioningTemplateApiTps = 'L-1FD03A8A', + MaximumNumberOfDomainConfigurationsPerAccountPerRegion = 'L-B0F131C8', + MaximumConcurrentClientConnectionsPerAccount = 'L-75CAB723', + AcceptCertificateTransferApiTps = 'L-136C6B71', + MaximumNumberOfThingAttributesForAThingWithAThingType = 'L-3964F400', + MaximumNumberOfProvisioningClaimsThatCanBeGeneratedPerSecondByTrustedUser = 'L-220198EC', + ClientIdSize = 'L-E2D9C89C', + DescribeProvisioningTemplateVersionApiTps = 'L-35130141', + ConfigurableEndpointsMaximumNumberOfDomainConfigurationsPerAccount = 'L-89635276', + TopicSize = 'L-ECD9BEEF', + DescribeDefaultAuthorizerApiTps = 'L-A34ABBD3', + ListRoleAliasesApiTps = 'L-F22E433B', + SubscriptionsPerSecondPerAccount = 'L-589D5E1D', + MaximumOutboundUnacknowledgedQoS1PublishRequests = 'L-0DD80F19', + DeleteV2LoggingLevelApiTps = 'L-2BF8F5C1', + DetachPrincipalPolicyApiTps = 'L-A20A8794', + InboundPublishRequestsPerSecondPerAccount = 'L-4B33E451', + ListAuthorizersApiTps = 'L-9BF00264', + CreateKeysAndCertificateApiTps = 'L-40B55430', + AllowedRegistrationTasks = 'L-E0945F24', + UpdateCertificateTagApiTps = 'L-B9586B46', + SetDefaultPolicyVersionApiTps = 'L-4F16A45D', + ListPolicyPrincipalsApiTps = 'L-073010AA', + CreateDomainConfigurationApiTps = 'L-9410BF75', + RegisterCaCertificateApiTps = 'L-B3AC62F0', + AssumeRoleWithCertificateApiTps = 'L-DA868E55', + PersistentSessionExpiryPeriod = 'L-3BB6AFBC', + SharedSubscriptionsPerGroup = 'L-EB813241', + CreateAuthorizerApiTps = 'L-866D6FAF', + MaximumSizeOfAJsonStateDocument = 'L-A295A064', + ListPoliciesApiTps = 'L-2B86A5A0', + DetachPolicyApiTps = 'L-EC88D510', + ListCertificatesByCaApiTps = 'L-5A0AFD83', + DescribeCertificateTagApiTps = 'L-7E496DB6', + MaximumNumberOfDeviceCertificatesThatCanBeRegisteredPerSecond = 'L-3E927DFC', + GetPolicyApiTps = 'L-5CE9072D', + GetEffectivePoliciesApiTps = 'L-CE45290D', + ThroughputPerSecondPerConnection = 'L-D9C66F9D', + DeleteTopicRuleDestinationApiTps = 'L-16C54232', + DeviceShadowApiRequestsSecondPerAccount = 'L-6CC6395A', + CreatePolicyApiTps = 'L-1B2EEF52', + MaximumNumberOfFleetProvisioningTemplateVersionsPerTemplate = 'L-71FA7EC4', + MaximumNumberOfAttributesAssociatedWithAThingGroup = 'L-DC6BC7AF', + DescribeCertificateApiTps = 'L-FC864907', + SubscriptionsPerConnection = 'L-45957C13', + MaximumSubscriptionsPerSubscribeRequest = 'L-A6574E9E', + ListThingRegistrationTaskReportsApiTps = 'L-51D1E673', + GetTopicRuleApiTps = 'L-EF53B0E4', + GetLoggingOptionsApiTps = 'L-407F7533', + MaximumNumberOfRulesPerAwsAccount = 'L-954FA751', + StartThingRegistrationTaskApiTps = 'L-7278F198', + MaximumNumberOfDirectChildGroups = 'L-9D744041', + ListRetainedMessagesApiTps = 'L-0AA974E3', + DescribeAuthorizerApiTps = 'L-19FEFCAA', + ReplaceTopicRuleApiTps = 'L-D12550DB', + MaximumNumberOfNamedPolicyVersions = 'L-5F6C2444', + PublishRequestsPerSecondPerConnection = 'L-083F3861', + TestInvokeAuthorizerApiTps = 'L-39DBF618', + MaximumMqtt5ContentTypeSize = 'L-037A5A45', + DescribeRoleAliasApiTps = 'L-82706932', + DisableTopicRuleApiTps = 'L-0D3E2C36', + TestAuthorizationApiTps = 'L-31D9CC26', + HttpActionMaximumNumberOfHeadersPerAction = 'L-5C16DE50', + CreateProvisioningTemplateApiTps = 'L-0DF9E6AC', + TransferCertificateApiTps = 'L-9A4156D0', + SubscriptionsPerAccount = 'L-52CBB99B', + UpdateCertificateModeApiTps = 'L-06D0B96B', + DeleteRoleAliasApiTps = 'L-22E81A4A', + CreateProvisioningClaimApiTps = 'L-33A2AE15', + CustomAuthenticationMaximumNumberOfActiveAuthorizersPerAccount = 'L-FC25158E', + SetV2LoggingLevelApiTps = 'L-BF6AC917', +} +export enum AwsIoTCoreDeviceAdvisorQuota { + RateOfGetSuiteDefinitionApiRequests = 'L-47C420DE', + RateOfGetSuiteRunApiRequests = 'L-78EB42FA', + RateOfUntagResourceApiRequests = 'L-F1F720AA', + RateOfListSuiteDefinitionsApiRequests = 'L-D87936C6', + ConcurrentlyConnectedDevices = 'L-814F086E', + RateOfListTestCasesApiRequests = 'L-AB741764', + TestCaseExecutionTime = 'L-3F694CF6', + ConnectionsPerTestEndpoint = 'L-F9A7549C', + RateOfDeleteSuiteDefinitionApiRequests = 'L-C0257F24', + MqttConnectRequestsPerClientId = 'L-A93693EE', + MqttConnectRequestsPerAccount = 'L-B2C37235', + RateOfStartSuiteRunApiRequests = 'L-D95868BC', + RateOfTagResourceApiRequests = 'L-038F5083', + ConcurrentlyRunningTestSuites = 'L-3A1E53E8', + TestCasesPerTestSuite = 'L-5DB0F1ED', + RateOfCreateSuiteDefinitionApiRequests = 'L-72BB0AC2', + RateOfListTagsForResourceApiRequests = 'L-ACC4886B', + RateOfListSuiteRunsApiRequests = 'L-3BBA7D5E', + RateOfGetSuiteRunReportApiRequests = 'L-E1EAD877', + RateOfUpdateSuiteDefinitionApiRequests = 'L-A9BBB1E8', +} +export enum AwsIoTEventsQuota { + MaximumAlarmModelsPerInput = 'L-F7E2E007', + DetectorModelDefinitionSize = 'L-27919AE8', + MaximumActionsPerEvent = 'L-4E41133E', + MaximumTransitionEventsPerState = 'L-FCDB3431', + MaximumAlarmModelsPerAccount = 'L-134442DD', + MessagesPerDetectorPerSecond = 'L-7F0B14C2', + MaximumTotalMessagesEvaluatedPerSecond = 'L-41C77D73', + MaximumNumberOfRecipientsPerNotificationActionInAnAlarmModel = 'L-DE2C2CBE', + MaximumAlarmModelVersionsPerAlarmModel = 'L-2FA8EFB5', + MaximumEventsPerState = 'L-C0F716CA', + MessageSize = 'L-1EE1AE32', + TriggerExpressions = 'L-BE1D061A', + DetectorModelVersions = 'L-1B3BA3EE', + MaximumAlarmsPerAlarmModel = 'L-52F0DBB4', + Inputs = 'L-C031B6B8', + MaximumMessagesPerAlarmPerSecond = 'L-C4A5E0B8', + MaximumNumberOfAlarmModelsPerPropertyInAnAwsIoTSiteWiseAssetModel = 'L-EBDD79FD', + TimersScheduledPerDetector = 'L-89B1F2C1', + StatesPerDetectorModel = 'L-0B548925', + DetectorsPerDetectorModel = 'L-3ED590C1', + NumberOfDetectorModelAnalysesInRunningStatus = 'L-18935129', + StateVariablesPerDetectorModelDefinition = 'L-46EA5101', + MinimumTimerDuration = 'L-D86BAB00', + MaximumActionsPerAlarmModel = 'L-EB687A61', + DetectorModels = 'L-279A67DA', + DetectorModelsPerInput = 'L-17157277', +} +export enum AwsIoTFleetHubQuota { + NumberOfApplicationsPerRegionPerAwsAccount = 'L-65C37C15', +} +export enum AwsIoTFleetWiseQuota { + NumberOfModelManifestsForEachAccountInAnAwsRegion = 'L-72103FA9', + NumberOfSignalCatalogsForEachAccountInAnAwsRegion = 'L-8AFF6AA2', + NumberOfVehiclesInAFleetForEachAccountInAnAwsRegion = 'L-85AC6579', + NumberOfCampaignsForEachAccountInAnAwsRegion = 'L-17D821A8', + NumberOfDecoderManifestsForAModelManifestForEachAccountInAnAwsRegion = 'L-9EE083E6', + NumberOfNodesInASignalCatalogForEachAccountInAnAwsRegion = 'L-FE285ED4', + NumberOfSignalsInACampaignForEachAccountInAnAwsRegion = 'L-86E70888', + RateOfIngestingMessagesForEachAccountInAnAwsRegion = 'L-B91464DC', + RateOfIngestingMessagesForEachVehicleInAnAwsRegion = 'L-FDD53FA4', + RateOfApiRequestsForEachAccountInAnAwsRegion = 'L-6ED070A2', +} +export enum AwsIoTRoboRunnerQuota { + RateOfListWorkerFleetsRequests = 'L-05FCE31A', + RateOfDeleteWorkerRequests = 'L-8F4E0588', + RateOfCreateDestinationRequests = 'L-82D49091', + RateOfListSitesRequests = 'L-075EABEF', + WorkerFleets = 'L-B5779483', + RateOfGetWorkerRequests = 'L-F1A29027', + RateOfDeleteDestinationRequests = 'L-663908B0', + RateOfListDestinationsRequests = 'L-4BA8605A', + Workers = 'L-9529A31E', + RateOfCreateWorkerFleetRequests = 'L-DEDA6004', + RateOfCreateWorkerRequests = 'L-B1807BEA', + RateOfUpdateWorkerRequests = 'L-3708E5FF', + Sites = 'L-56B55996', + RateOfDeleteWorkerFleetRequests = 'L-4FD38797', + RateOfDeleteSiteRequests = 'L-1468662C', + RateOfUpdateDestinationRequests = 'L-601DA2C1', + RateOfUpdateWorkerFleetRequests = 'L-5B4B3BA3', + RateOfGetSiteRequests = 'L-99DF3ACA', + RateOfListWorkersRequests = 'L-A7EE90CA', + RateOfCreateSiteRequests = 'L-638EA2C6', + RateOfGetWorkerFleetRequests = 'L-187C00C7', + RateOfGetDestinationRequests = 'L-64FF2763', + RateOfUpdateSiteRequests = 'L-380968E1', + Destinations = 'L-E297453B', +} +export enum AwsIoTSiteWiseQuota { + RateOfGetAssetPropertyAggregatesRequestAndBatchGetAssetPropertyAggregatesEntryQueriesPerAssetProperty = 'L-5C19C834', + RequestRateForCreateAssetModel = 'L-76DAFFD4', + NumberOfPropertiesPerAssetModel = 'L-22D944EE', + RateOfGetInterpolatedAssetPropertyValuesRequests = 'L-27B1043C', + RequestRateForBatchPutAssetPropertyValue = 'L-A52C4EC3', + RequestRateForListActions = 'L-4F4858F1', + RequestRateForExecuteAction = 'L-74A3AF8B', + RequestRateForDisassociateAssets = 'L-8833D569', + RequestRateForDeleteAssetModelCompositeModel = 'L-C866EFAE', + NumberOfPropertiesAtRootOfEachAssetModelOfTypeAssetModel = 'L-6D30607C', + NumberOfChildAssetsPerParentAsset = 'L-8603AA0E', + NumberOfPropertiesPerCompositeModel = 'L-F22F6963', + NumberOfProjectsPerPortal = 'L-116F669B', + NumberOfCompositeModelsPerAssetModel = 'L-41A20986', + NumberOfMetricsPerDashboardVisualization = 'L-2C0E5B73', + NumberOfPropertyVariablesPerPropertyFormulaExpression = 'L-69ADF876', + RequestRateForDescribeAssetModel = 'L-30ACF5DC', + RateOfDatapointsRetrievedFromGetAssetPropertyValueHistoryAndBatchGetAssetPropertyValueHistory = 'L-A6B45284', + RequestRateForListAssetRelationships = 'L-D1C7039E', + RequestRateForListTimeSeries = 'L-EFD4443A', + RequestRateForAssociateAssets = 'L-A6CC6143', + NumberOfDashboardsPerProject = 'L-81C6A4F0', + NumberOfAssetModelsPerRegionPerAwsAccount = 'L-21EF301F', + NumberOfDaysBetweenTheTimestampInThePastAndToday = 'L-09CA1CF6', + RequestRateForGetAssetPropertyValue = 'L-CDF30604', + RequestRateForTagResource = 'L-97DCC2B9', + RequestRateForListAssetModelCompositeModels = 'L-1AC5759B', + RequestRateForListCompositionRelationships = 'L-0E1DA1E4', + NumberOfAssetModelsPerHierarchyTree = 'L-61CA7915', + RequestRateForPutDefaultEncryptionConfiguration = 'L-4C7927F2', + NumberOfGatewaysPerRegionPerAwsAccount = 'L-179151C6', + NumberOfOpcUaSourcesPerGateway = 'L-19AC6080', + RequestRateForListAssociatedAssets = 'L-DF999358', + NumberOfUniqueMeasurementsPerParquetRowGroup = 'L-77F9BBAB', + NumberOfFunctionsPerPropertyFormulaExpression = 'L-EE3C13A8', + RequestRateForGetAssetPropertyValueHistory = 'L-D7745D01', + RequestRateForListTagsForResource = 'L-C65D47B0', + RequestRateForCreateAssetModelCompositeModel = 'L-6A07E983', + RequestRateForDescribeStorageConfiguration = 'L-DFA2B5CE', + RequestRateForCreateAsset = 'L-FAC80CD0', + NumberOfPropertiesThatDependOnASingleProperty = 'L-7BD26CC6', + RequestRateForDeleteAsset = 'L-1A4574EB', + RequestRateForUpdateAsset = 'L-5ABA0B04', + RequestRateForPutLoggingOptions = 'L-A9C0553C', + NumberOfPortalsPerRegionPerAwsAccount = 'L-A5652910', + RequestRateForDisassociateTimeSeriesFromAssetProperty = 'L-AD488EF9', + RateOfGetAssetPropertyValueHistoryRequestAndBatchGetAssetPropertyValueHistoryEntryQueriesPerAssetProperty = 'L-2D9D17D4', + RateOfGetAssetPropertyValueRequestAndBatchGetAssetPropertyValueEntryQueriesPerAssetProperty = 'L-F1C2A50D', + NumberOfVisualizationsPerDashboard = 'L-95E7BD97', + RequestRateForDescribeAssetCompositeModel = 'L-C95674C2', + RequestRateForBatchGetAssetPropertyValue = 'L-6A0446E9', + RequestRateForGetAssetPropertyAggregates = 'L-36098D32', + RequestRateForUpdateAssetProperty = 'L-0ED7CAC0', + RequestRateForDescribeLoggingOptions = 'L-71344A05', + CompositeModelDepth = 'L-F8F8820C', + RequestRateForBatchGetAssetPropertyAggregates = 'L-1F08A062', + NumberOfPropertiesThatDirectlyDependOnASingleProperty = 'L-3D4720EF', + SizeOfTheCsvFileForAdaptiveIngestion = 'L-3BBC7449', + RequestRateForDescribeAssetModelCompositeModel = 'L-FF65FBE9', + SizeOfTheUncompressedParquetRowGroup = 'L-EDB90FC8', + RequestRateForUpdateAssetModel = 'L-A2DC172E', + RequestRateForDescribeTimeSeries = 'L-99ECDFE8', + NumberOfAssetsPerAssetModel = 'L-A0C6AD02', + NumberOfDataPointsPerSecondPerDataQualityPerAssetProperty = 'L-2FE796CC', + RequestRateForListAssetModels = 'L-2E6A6BE6', + NumberOfUniqueAssetModelsThatUseTheSameComponentModel = 'L-5436A081', + RequestRateForUntagResource = 'L-11052945', + SizeOfTheUncompressedParquetFile = 'L-BF4717A0', + RequestRateForDescribeDefaultEncryptionConfiguration = 'L-9AB54A74', + RequestRateForListAssets = 'L-FD327B60', + RateOfBatchPutAssetPropertyValueEntriesIngestedPerAssetProperty = 'L-2F3AE092', + RequestRateForAssociateTimeSeriesToAssetProperty = 'L-FC916B9F', + RequestRateForPutStorageConfiguration = 'L-1DAFF3FA', + NumberOfRootAssetsPerProject = 'L-AF558AF7', + RequestRateForBatchGetAssetPropertyValueHistory = 'L-6BA71B50', + RequestRateForDeleteTimeSeries = 'L-0B4FE3AE', + RequestRateForDescribeAssetProperty = 'L-FE40635A', + DepthOfAssetModelHierarchyTree = 'L-4F226831', + RateOfDataPointsIngested = 'L-055D0253', + NumberOfParentAssetModelsPerChildAssetModel = 'L-088AB397', + NumberOfHierarchyDefinitionsPerAssetModel = 'L-558B5F90', + RequestRateForDescribeAsset = 'L-EC3E9870', + RequestRateForDeleteAssetModel = 'L-E824E02D', + NumberOfDaysBetweenTheStartDateInThePastAndTodayForGetInterpolatedAssetPropertyValues = 'L-45729B29', + RequestRateForUpdateAssetModelCompositeModel = 'L-EF35D760', + NumberOfResultsPerGetInterpolatedAssetPropertyValuesRequest = 'L-DABC3942', + RequestRateForDescribeAction = 'L-8CACB17D', +} +export enum AwsIoTThingsGraphQuota { + TpsLimitForGetSystemTemplate = 'L-AC9ABC2C', + TpsLimitForUpdateSystemTemplate = 'L-972FA3D1', + TpsLimitForCreateSystemTemplate = 'L-1568A699', + TpsLimitForCreateFlowTemplate = 'L-563B2C2B', + TpsLimitForGetFlowTemplate = 'L-2418C55F', + TotalFlowDefinitionsInANamespace = 'L-F4F0FE93', + TpsLimitForGetSystemTemplateRevisions = 'L-183A0E79', + TpsLimitForUploadEntityDefinitions = 'L-A7AA5340', + MaximumNumberOfStepsExecutedPerDeployment = 'L-D957C70D', + TpsLimitForSearchThings = 'L-90007F3D', + TpsLimitForDescribeNamespace = 'L-E59F5B29', + TpsLimitForUpdateFlowTemplate = 'L-918B3687', + TpsLimitForDeleteNamespace = 'L-6C64452B', + TotalDeploymentConfigurationsInANamespace = 'L-4E1874BC', + TpsLimitForGetRecentUploads = 'L-93B499C4', + TpsLimitForAssociateEntityToThing = 'L-B8ACA268', + TpsLimitForDeprecateSystemTemplate = 'L-7E34BF4F', + TpsLimitForListMappingPaths = 'L-9FF7971D', + TpsLimitForCreateDeploymentConfiguration = 'L-EB25BD02', + TpsLimitForGetSystemInstance = 'L-E286E5D0', + TpsLimitForCreateSystemInstance = 'L-33DDBCD0', + TpsLimitForDeploySystemInstance = 'L-A93CEC05', + TpsLimitForDeployConfigurationToTarget = 'L-833ED17B', + FlowDefinitionSize = 'L-3B8999A1', + TpsLimitForSearchDeploymentConfigurations = 'L-BDB80152', + TpsLimitForValidateEntityDefinitions = 'L-7CD26E32', + TpsLimitForDeprecateDeploymentConfiguration = 'L-D3A10EC3', + TpsLimitForDeleteFlowTemplate = 'L-C10D50DA', + TpsLimitForDeprecateFlowTemplate = 'L-9150B976', + UploadRequestSize = 'L-EB21B17C', + TpsLimitForSearchEntities = 'L-3AEFB560', + TpsLimitForGetUploadStatus = 'L-5403F04A', + TpsLimitForDissociateEntityFromThing = 'L-F90E5D50', + TpsLimitForListFlowExecutionMessages = 'L-A026818C', + TpsLimitForGetNamespaceDeletionStatus = 'L-74BF2A1A', + TpsLimitForGetEntities = 'L-FA04A690', + TotalEntitiesInANamespace = 'L-1241A2A2', + TpsLimitForSearchFlowTemplates = 'L-E935AE5C', + TpsLimitForUndeploySystemInstance = 'L-A6120C65', + TpsLimitForDeleteSystemTemplate = 'L-39620E3B', + TpsLimitForSearchSystemTemplates = 'L-0B5ED49C', + TpsLimitForSearchFlowExecutions = 'L-19877104', + TpsLimitForDeleteSystemInstance = 'L-2AA3EB03', + MaximumNumberOfFlowsTriggered = 'L-B12EB258', + TpsLimitForGetFlowTemplateRevisions = 'L-14349E56', + TpsLimitForSearchSystemInstance = 'L-A7E96D49', + TpsLimitForGetDeploymentConfiguration = 'L-23793080', + TpsLimitForDeleteDeploymentConfiguration = 'L-3197C8C1', +} +export enum AwsIoTTwinMakerQuota { + TagsPerResource = 'L-6A666826', + WorkspacesInThisAccountInTheCurrentRegion = 'L-3BCB51AD', + ComponentsPerEntity = 'L-FE672086', + ComponentTypeCompositionTreeDepth = 'L-6B0BA854', + SizeOfTheMetadataTransferJobImportFile = 'L-09F67DF4', + EntitiesPerWorkspace = 'L-ADB4D9B9', + PropertiesPerComponentTypeOrComponent = 'L-D8DF6F6C', + ScenesPerWorkspace = 'L-8E0F7923', + DepthOfEntityHierarchy = 'L-019A0AE4', + DepthOfComponentTypeHierarchy = 'L-C511254B', + ComponentTypesPerWorkspace = 'L-E97A4C92', + ParentComponentTypesPerChildComponentType = 'L-0169BFDB', + ComponentTypeCompositionTreeSize = 'L-62EFDD1A', + NumberOfMetadataTransferJobsInQueue = 'L-F123ACD6', +} +export enum AwsIoTWirelessQuota { + TpsLimitForResetResourceLogLevel = 'L-9CF47CC5', + TpsLimitForAssociateWirelessDeviceWithFuotaTask = 'L-4AC6BBEA', + TpsLimitForGetWirelessGatewayTaskDefinition = 'L-7AF1469B', + TpsLimitForDeleteWirelessGateway = 'L-6DEF44D2', + TpsLimitForDeleteNetworkAnalyzerConfiguration = 'L-4F7C7CD3', + TpsLimitForGetPartnerAccount = 'L-DEFAE009', + TpsLimitForUpdateDestination = 'L-AA413BB8', + TpsLimitForSendDataToMulticastGroup = 'L-1346D5EC', + TpsLimitForCreateNetworkAnalyzerConfiguration = 'L-6796B05C', + TpsLimitForUpdateResourcePosition = 'L-E01F1EA2', + TpsLimitForDeleteWirelessGatewayTaskDefinition = 'L-182F8619', + TpsLimitForGetPositionEstimate = 'L-D6B79324', + TpsLimitForListWirelessGatewayTaskDefinitions = 'L-CC2D61C3', + TpsLimitForDisassociateMulticastGroupFromFuotaTask = 'L-61A27891', + TpsLimitForGetFuotaTask = 'L-D33E220F', + TpsLimitForCreateDeviceProfile = 'L-6829C2D4', + TpsLimitForListDevicesForWirelessDeviceImportTask = 'L-18A5F69F', + TpsLimitForGetWirelessDevice = 'L-2639F0B0', + TpsLimitForCreateWirelessDevice = 'L-3B5AF547', + TpsLimitForListNetworkAnalyzerConfigurations = 'L-0F5F17D1', + TpsLimitForAssociateMulticastGroupWithFuotaTask = 'L-E91B60DF', + TpsLimitForUpdateWirelessDevice = 'L-B4636E40', + TpsLimitForDisassociateWirelessDeviceFromMulticastGroup = 'L-1DF3438B', + TpsLimitForListDeviceProfiles = 'L-E6CBA335', + TpsLimitForDeleteServiceProfile = 'L-A25EC315', + TpsLimitForListPartnerAccounts = 'L-FB636C37', + TpsLimitForListQueuedMessages = 'L-D91B7067', + TpsLimitForTagResource = 'L-9D5A90BD', + TpsLimitForAssociateWirelessGatewayWithCertificate = 'L-4915A563', + TpsLimitForGetServiceEndpoint = 'L-13F3B5DD', + TpsLimitForAssociateWirelessDeviceWithMulticastGroup = 'L-92ECAB75', + TpsLimitForCancelMulticastGroupSession = 'L-72AB9EAE', + TpsLimitForCreateWirelessGatewayTask = 'L-05BE3C0D', + TpsLimitForListDestinations = 'L-E54A2621', + TpsLimitForDeregisterWirelessDevice = 'L-D260A47D', + TpsLimitForStartWirelessDeviceImportTask = 'L-9C8BB3C8', + TpsLimitForGetWirelessDeviceStatistics = 'L-CCEFD4AF', + TpsLimitForGetServiceProfile = 'L-905ED905', + TpsLimitForListEventConfigurations = 'L-A2058506', + TpsLimitForResetAllResourceLogLevels = 'L-96FA888E', + TpsLimitForCreateWirelessGatewayTaskDefinition = 'L-8FFCC81A', + TpsLimitForGetNetworkAnalyzerConfiguration = 'L-6AF47E8B', + TpsLimitForDisassociateWirelessGatewayFromThing = 'L-33206197', + TpsLimitForDisassociateAwsAccountFromPartnerAccount = 'L-A432E505', + TpsLimitForDeleteWirelessDeviceImportTask = 'L-85E750DE', + TpsLimitForGetResourceEventConfiguration = 'L-E4F0512E', + TpsLimitForPutResourceLogLevel = 'L-12D6182B', + TpsLimitForTestWirelessDevice = 'L-FC84B266', + TpsLimitForGetDestination = 'L-8E7EAF51', + TpsLimitForListMulticastGroups = 'L-4DEB3C3F', + TpsLimitForListWirelessDeviceImportTasks = 'L-9704EC18', + TpsLimitForGetResourcePosition = 'L-F654617D', + TpsLimitForUpdateMulticastGroup = 'L-8E864D54', + TpsLimitForUpdateFuotaTask = 'L-5369BF7E', + TpsLimitForDisassociateWirelessDeviceFromFuotaTask = 'L-0C83FCE2', + TpsLimitForCreateMulticastGroup = 'L-D07E0E7A', + TpsLimitForUpdateEventConfigurationByResourceTypes = 'L-882084A6', + TpsLimitForDisassociateWirelessDeviceFromThing = 'L-4951240E', + TpsLimitForStartMulticastGroupSession = 'L-6FC5E39D', + TpsLimitForAssociateAwsAccountWithPartnerAccount = 'L-13EE3A12', + TpsLimitForUpdateResourceEventConfiguration = 'L-70D824D9', + TpsLimitForDisassociateWirelessGatewayFromCertificate = 'L-907EFF6F', + TpsLimitForCreateWirelessGateway = 'L-C2F6FC68', + TpsLimitForDeleteDeviceProfile = 'L-50B185BA', + TpsLimitForGetEventConfigurationByResourceTypes = 'L-FAE31118', + TpsLimitForListWirelessDevices = 'L-35D1818B', + TpsLimitForListMulticastGroupsByFuotaTask = 'L-7CE08A6C', + TpsLimitForGetResourceLogLevel = 'L-6175FC12', + TpsLimitForSendDataToWirelessDevice = 'L-0E4BA92F', + TpsLimitForListWirelessGateways = 'L-F881E3D9', + TpsLimitForStartSingleWirelessDeviceImportTask = 'L-7B8D0453', + TpsLimitForGetMulticastGroup = 'L-72A5D5E0', + TpsLimitForGetWirelessGatewayStatistics = 'L-3103F50C', + TpsLimitForListPositionConfigurations = 'L-F4D43AC0', + TpsLimitForStartBulkDisassociateWirelessDeviceFromMulticastGroup = 'L-8DBB3861', + TpsLimitForPutPositionConfiguration = 'L-A4CD53FD', + TpsLimitForGetDeviceProfile = 'L-4FCAEFF0', + TpsLimitForUntagResource = 'L-DF869DBB', + TpsLimitForDeleteQueuedMessages = 'L-B6937DF9', + TpsLimitForGetMulticastGroupSession = 'L-9C8C92B3', + TpsLimitForStartNetworkAnalyzerStream = 'L-9E25CA04', + TpsLimitForUpdatePartnerAccount = 'L-3AC27648', + TpsLimitForAssociateWirelessGatewayWithThing = 'L-B29C7ECC', + TpsLimitForCreateFuotaTask = 'L-E3C6A79E', + TpsLimitForGetPosition = 'L-B8A41F6F', + TpsLimitForGetWirelessDeviceImportTask = 'L-16EAB1D1', + TpsLimitForUpdateWirelessDeviceImportTask = 'L-E8B6C4D2', + TpsLimitForCreateDestination = 'L-0641E5DC', + TpsLimitForDeleteWirelessGatewayTask = 'L-B0F3D444', + TpsLimitForDeleteFuotaTask = 'L-89C556FB', + TpsLimitForListServiceProfiles = 'L-647D6C46', + TpsLimitForUpdateNetworkAnalyzerConfiguration = 'L-8367137B', + TpsLimitForStartFuotaTask = 'L-DB770805', + TpsLimitForCreateServiceProfile = 'L-F8530DBD', + TpsLimitForUpdateLogLevelsByResourceTypes = 'L-0D8E249D', + TpsLimitForUpdatePosition = 'L-C80BC655', + TpsLimitForDeleteMulticastGroup = 'L-93C5A1DB', + TpsLimitForUpdateWirelessGateway = 'L-A1F96616', + TpsLimitForDeleteWirelessDevice = 'L-A755236A', + TpsLimitForListTagsForResource = 'L-DEC8385B', + TpsLimitForAssociateWirelessDeviceWithThing = 'L-6407631C', + TpsLimitForGetPositionConfiguration = 'L-5FCBB48D', + TpsLimitForGetWirelessGatewayTask = 'L-334EA895', + TpsLimitForGetWirelessGatewayFirmwareInformation = 'L-0C3B538C', + TpsLimitForStartBulkAssociateWirelessDeviceWithMulticastGroup = 'L-F930F6AD', + TpsLimitForGetLogLevelsByResourceTypes = 'L-C2175B1E', + TpsLimitForListFuotaTasks = 'L-0604C085', + TpsLimitForGetWirelessGateway = 'L-42B55186', + TpsLimitForGetWirelessGatewayCertificate = 'L-81B64868', + TpsLimitForDeleteDestination = 'L-EB538AAC', +} +export enum AmazonInteractiveVideoServiceQuota { + Stages = 'L-47F0B706', + TotalNumberOfDestinationsPerComposition = 'L-9C6AF7E0', + Compositions = 'L-E945C199', + StageParticipantsSubscribers = 'L-160C013D', + StageParticipantsPublishers = 'L-9965E8BE', + ConcurrentViews = 'L-77A18D5D', + RecordingConfigurations = 'L-90ABAB37', + Channels = 'L-C01DFF58', + MaxCompositionDuration = 'L-25CC60E6', + StorageConfigurations = 'L-BF843A02', + ConcurrentStreams = 'L-FD1EB8A7', + StreamKey = 'L-80F95143', + EncoderConfigurations = 'L-F7C5B6C9', + PlaybackTokenSize = 'L-BE74979C', + PutMetadataRatePerChannel = 'L-4189D9D0', + IngestBitrateChannelTypeStandard = 'L-832F442C', + PlaybackAuthorizationKeyPairs = 'L-5339BD50', + IngestBitrateChannelTypeBasic = 'L-3B5D0A1C', + MetadataPayload = 'L-8D348609', +} +export enum AmazonInteractiveVideoServiceChatQuota { + RateOfDisconnectUserRequests = 'L-0CF8D910', + Rooms = 'L-85B84D18', + LoggingConfigurations = 'L-F87B0F22', + RateOfDeleteMessageRequests = 'L-766F0845', + RateOfSendMessageRequests = 'L-B11841BF', + ConcurrentChatConnections = 'L-2D7A45DA', + RateOfMessagingRequestsPerConnection = 'L-B96AB553', + MessageReviewHandlerTimeoutPeriod = 'L-12580D29', +} +export enum AmazonManagedStreamingForKafkaMskQuota { + NumberOfBrokersPerCluster = 'L-FAB9E493', + NumberOfRevisionsPerConfiguration = 'L-36D29E8C', + NumberOfReplicatorsPerAccount = 'L-8F940D28', + NumberOfBrokersPerAccount = 'L-EDD31C36', + NumberOfConfigurationsPerAccount = 'L-B2FDE22A', +} +export enum ManagedStreamingForKafkaConnectQuota { + MaximumCustomPlugins = 'L-F71212B3', + MaximumWorkerConfigurations = 'L-5BED8C47', + MaximumConnectWorkers = 'L-C78B0952', +} +export enum AmazonKendraQuota { + CharactersInQueryText = 'L-7107C1BC', + DataSourcesEnterpriseEdition = 'L-91D7F3F0', + SynonymsPerTerm = 'L-E8BFBD04', + QuerySuggestionsMaxAdditionalResponseAttributesInApi = 'L-31DA7514', + SynonymRulesPerThesaurus = 'L-6BFC06E7', + FaQs = 'L-522F5A9C', + DeveloperEditionIndexes = 'L-51C776DF', + EnterpriseEditionIndexes = 'L-4704867A', + Thesauri = 'L-408FF1D0', + CollapsedResultsToExpand = 'L-25C6FEE8', + QuerySuggestionsBlockLists = 'L-5A68C0A6', + FeaturedDocumentsPerFeaturedResultsSet = 'L-2BF8365C', + SortConfigurations = 'L-543AB3EE', + FeaturedResultsSetsPerIndex = 'L-22D37218', + IngestionAttributesStringListSize = 'L-5D790B76', + QueryCapacityUnits = 'L-332A3A1A', + QueryAttributesUserGroupListSize = 'L-78CBE960', + DataSourcesDeveloperEdition = 'L-7BC65C3F', + ThesaurusFileSize = 'L-C0EA1398', + QuerySuggestionsReturnedInApi = 'L-4E1777B8', + FileSize = 'L-C108EA1B', + QuerySuggestionsBlockListFileSize = 'L-4FC16EE5', + ItemsInAQuerySuggestionsBlockList = 'L-DCB3B6C6', + QuerySuggestionsMaxSuggestableAttributesInApi = 'L-27DC8932', + StorageCapacityUnits = 'L-E8A56FA5', + SpellCorrectionQuerySuggestions = 'L-740FA277', + ExtractedTextSize = 'L-962D0B14', + ExpandedResultsPerCollapsedResultItem = 'L-90A916B2', +} +export enum AmazonKendraIntelligentRankingQuota { + MaximumTokensPerDocumentBody = 'L-C0B580BB', + MaximumTokensPerDocumentTitle = 'L-B329A296', + MaximumDocumentsPerGroupPerRescoreRequest = 'L-287E18CF', + RescoreCapacityUnitsPerAccount = 'L-B6E8F579', + MaximumRescoreCapacityUnitsPerExecutionPlan = 'L-B4084F86', + MaximumUniqueDocumentsPerRescoreRequest = 'L-B524EEB2', +} +export enum AmazonKinesisDataStreamsQuota { + ShardsPerRegion = 'L-0918CF54', +} +export enum AmazonManagedServiceForApacheFlinkQuota { + ApacheFlinkKinesisProcessingUnitsKpUs = 'L-3A88E041', + InputParallelismInInputStreamsForSqlApplications = 'L-59171AE6', + ApplicationCount = 'L-3729A2EF', + SqlKinesisProcessingUnitsKpUs = 'L-90BEDB9D', +} +export enum AmazonKinesisVideoStreamsQuota { + RateOfListTagsForResourceApiRequests = 'L-FD6244B8', + GetMediaForFragmentListFragments = 'L-EDF96A63', + RateOfUpdateDataRetentionApiRequestsPerStream = 'L-B7CB457B', + RateOfCreateSignalingChannelApiRequests = 'L-32D5DC79', + PutMediaMinimumFragmentDuration = 'L-2C56AD83', + RateOfUntagStreamApiRequestsPerStream = 'L-409E30B3', + GetClipFragments = 'L-00CBFFF8', + RateOfDescribeMappedResourceConfigurationApiRequests = 'L-6F95545E', + RateOfDeleteStreamApiRequests = 'L-A34FDF94', + TurnSessionBandwidth = 'L-E4F56E4A', + RateOfDeleteSignalingChannelApiRequests = 'L-F7EF17C6', + RateOfDeleteSignalingChannelApiRequestsPerSignalingChannel = 'L-FDF11C98', + RateOfUpdateSignalingChannelApiRequestsPerSignalingChannel = 'L-1190DACE', + RateOfGetDashManifestPlaylistApiRequestsPerSession = 'L-004D0B56', + GetHlsMediaPlaylistFragments = 'L-DAAD01CD', + RateOfUntagResourceApiRequests = 'L-C030232D', + RateOfConnectAsViewerApiRequestsPerSignalingChannel = 'L-3DF8FB52', + RateOfListTagsForStreamApiRequestsPerStream = 'L-4450B3B7', + RateOfUntagStreamApiRequests = 'L-4E1944F3', + PutMediaFragmentDuration = 'L-EDC0C00D', + RateOfGetHlsMediaPlaylistApiRequestsPerSession = 'L-EDC81B7E', + ConnectAsMasterGoAwayMessageGracePeriod = 'L-1FE8DF31', + ConnectAsViewerIdleConnectionTimeout = 'L-0528E1BD', + TurnSessionConcurrentAllocationsPerSignalingChannel = 'L-AB63770C', + RateOfDeleteStreamApiRequestsPerStream = 'L-18823A76', + RateOfSendSdpAnswerApiRequestsPerWebsocketConnection = 'L-38A739F2', + ConnectAsViewerConnectionDuration = 'L-F0B5EFE9', + RateOfListStreamsApiRequests = 'L-B16CD5E1', + RateOfListTagsForStreamApiRequests = 'L-A8327CB5', + GetClipFileSize = 'L-FD863935', + ConnectAsMasterConnectionDuration = 'L-33EBA7A5', + ConnectAsMasterConnectionsPerSignalingChannel = 'L-C122494E', + RateOfUntagResourceApiRequestsPerResource = 'L-C0373393', + RateOfStartEdgeConfigurationUpdateApiRequests = 'L-1D1B9375', + RateOfGetHlsMasterPlaylistApiRequestsPerSession = 'L-031A11B8', + RateOfGetMp4InitFragmentApiRequestsPerSession = 'L-F65F9A02', + RateOfGetMediaApiRequestsPerStream = 'L-885A87A1', + SendSdpOfferMessagePayloadSize = 'L-3E968CB6', + RateOfUpdateMediaStorageConfigurationApiRequestsPerResource = 'L-CBA8C1A0', + RateOfDescribeStreamApiRequestsPerStream = 'L-07A0DA4B', + SendIceCandidateMessagePayloadSize = 'L-F43C3E04', + RateOfConnectAsMasterApiRequestsPerSignalingChannel = 'L-65A25202', + GetMediaBandwidth = 'L-BF0D282F', + NumberOfVideoStreams = 'L-F06528A6', + RateOfUpdateStreamApiRequestsPerStream = 'L-007A0A1E', + RateOfGetDashStreamingSessionUrlapiRequestsPerStream = 'L-2087401F', + RateOfUpdateStreamApiRequests = 'L-AEE268C4', + RateOfUpdateMediaStorageConfigurationApiRequests = 'L-54F8D7FD', + RateOfDescribeMediaStorageConfigurationApiRequests = 'L-FB68989A', + RateOfDescribeStreamApiRequests = 'L-BAA6C939', + RateOfGetIceServerConfigApiRequestsPerSignalingChannel = 'L-6A7E955C', + TurnSessionExpiration = 'L-AD9AD2F3', + RateOfGetTsFragmentApiRequestsPerSession = 'L-08A947EC', + GetMediaForFragmentListConnectionsPerStream = 'L-DE85179A', + RateOfUpdateSignalingChannelApiRequests = 'L-00B1F645', + ConnectAsMasterIdleConnectionTimeout = 'L-CCD54BEE', + RateOfDeleteEdgeConfigurationApiRequestsPerResource = 'L-577474A7', + RateOfTagResourceApiRequestsPerResource = 'L-A34DF4E5', + RateOfPutMediaApiRequestsPerStream = 'L-D87CE70F', + NumberOfSignalingChannels = 'L-B7F419CA', + RateOfSendAlexaOfferToMasterApiRequestsPerSignalingChannel = 'L-782F9031', + RateOfDescribeSignalingChannelApiRequestsPerSignalingChannel = 'L-9A1B0418', + RateOfListTagsForResourceApiRequestsPerResource = 'L-F10078DD', + RateOfListEdgeAgentConfigurationsApiRequests = 'L-12CD9A60', + PutMediaBandwidth = 'L-354AF9F0', + ConnectAsViewerConnectionsPerSignalingChannel = 'L-8F974349', + GetDashManifestPlaylistFragments = 'L-87FBA326', + GetMediaConcurrentConnectionsPerStream = 'L-B71B4FEE', + RateOfDescribeMappedResourceConfigurationApiRequestsPerResource = 'L-EF7DE569', + RateOfSendSdpOfferApiRequestsPerWebsocketConnection = 'L-F6EB90C7', + PutMediaFragmentSize = 'L-6F5F7717', + RateOfGetMp4MediaFragmentApiRequestsPerSession = 'L-7D08463B', + PutMediaConcurrentConnectionsPerStream = 'L-08EC4D9E', + RateOfGetDataEndpointApiRequests = 'L-0AB4413A', + GetMediaForFragmentListBandwidth = 'L-2FC7D6B2', + RateOfListSignalingChannelsApiRequests = 'L-66B2FAAB', + RateOfStartEdgeConfigurationUpdateApiRequestsPerResource = 'L-18022F70', + RateOfTagStreamApiRequestsPerStream = 'L-8F38419A', + RateOfDescribeSignalingChannelApiRequests = 'L-99F327D1', + SendSdpAnswerMessagePayloadSize = 'L-AD15B1B2', + RateOfUpdateDataRetentionApiRequests = 'L-6C5E79A7', + RateOfTagResourceApiRequests = 'L-84C54DF4', + RateOfDeleteEdgeConfigurationApiRequests = 'L-B6B6EF8E', + RateOfGetDataEndpointApiRequestsPerStream = 'L-DCCB6A93', + RateOfTagStreamApiRequests = 'L-CAEB7065', + NumberOfMediaStorageChannels = 'L-B71421B8', + PutMediaTracks = 'L-F42E49F0', + RateOfSendIceCandidateApiRequestsPerWebsocketConnection = 'L-85B46D1C', + ConnectAsViewerGoAwayMessageGracePeriod = 'L-912086DE', + RateOfGetSignalingChannelEndpointApiRequestsPerSignalingChannel = 'L-35D8C370', + RateOfDescribeEdgeConfigurationApiRequests = 'L-9FD64640', + RateOfCreateStreamApiRequests = 'L-08F65F09', + RateOfGetHlsStreamingSessionUrlapiRequestsPerStream = 'L-C2CB1AD1', + RateOfDescribeEdgeConfigurationApiRequestsPerResource = 'L-56782C84', + RateOfGetSignalingChannelEndpointApiRequests = 'L-A0781139', + RateOfDescribeMediaStorageConfigurationApiRequestsPerResource = 'L-0F2DD60B', + RateOfArchivedFragmentMetadataPerStream = 'L-4F4BE4AA', + RateOfArchivedFragmentMediaPerStream = 'L-1A34128A', +} +export enum AwsKeyManagementServiceAwsKmsQuota { + GenerateDataKeyPairEccNistP256RequestRate = 'L-D2EEB5E0', + ScheduleKeyDeletionRequestRate = 'L-88313D4A', + UpdateCustomKeyStoreRequestRate = 'L-275D92F3', + ListGrantsRequestRate = 'L-D39AB822', + DeleteAliasRequestRate = 'L-1F75ADD1', + ConnectCustomKeyStoreRequestRate = 'L-705B9E79', + GrantsPerCmk = 'L-D594A657', + RevokeGrantRequestRate = 'L-F20EBCB7', + GenerateDataKeyPairEccNistP384RequestRate = 'L-16B46EF0', + KeyPolicyDocumentSize = 'L-8D683C05', + CreateGrantRequestRate = 'L-0428A42E', + GetParametersForImportRequestRate = 'L-515A0541', + GenerateDataKeyPairRsa2048RequestRate = 'L-77042783', + GetKeyRotationStatusRequestRate = 'L-D7711EF4', + TagResourceRequestRate = 'L-7D6DE447', + GenerateDataKeyPairRsa4096RequestRate = 'L-FCE4492D', + EnableKeyRotationRequestRate = 'L-BE799B67', + CreateCustomKeyStoreRequestRate = 'L-08932E37', + CancelKeyDeletionRequestRate = 'L-635264CC', + GetPublicKeyRequestRate = 'L-E4FBCA5E', + AliasesPerCmk = 'L-340F62FB', + DeleteImportedKeyMaterialRequestRate = 'L-1233BF9B', + GenerateDataKeyPairRsa3072RequestRate = 'L-AE57B391', + CryptographicOperationsSymmetricRequestRate = 'L-6E3AF000', + UpdateAliasRequestRate = 'L-DB3BF542', + UntagResourceRequestRate = 'L-6375F442', + PutKeyPolicyRequestRate = 'L-9DDDE6CA', + UpdatePrimaryRegionRequestRate = 'L-F83AC7F7', + DescribeKeyRequestRate = 'L-FAE8F084', + CreateKeyRequestRate = 'L-32B67F4A', + DisconnectCustomKeyStoreRequestRate = 'L-9F1FCF6D', + DeleteCustomKeyStoreRequestRate = 'L-E99520CB', + DescribeCustomKeyStoresRequestRate = 'L-E20AA94C', + EnableKeyRequestRate = 'L-BD96F100', + ListKeysRequestRate = 'L-8A08DAEA', + ReplicateKeyRequestRate = 'L-E1C93865', + ListAliasesRequestRate = 'L-BF3F8F1D', + UpdateKeyDescriptionRequestRate = 'L-A3828E1F', + CryptographicOperationsRsaRequestRate = 'L-2AC98190', + ListResourceTagsRequestRate = 'L-FB6513A2', + CustomKeyStores = 'L-F33DCFEB', + GenerateDataKeyPairEccSecgP256K1RequestRate = 'L-3B372FA9', + CreateAliasRequestRate = 'L-F7504F73', + GenerateDataKeyPairEccNistP521RequestRate = 'L-1D966DA0', + ListRetirableGrantsRequestRate = 'L-161E93A6', + ListKeyPoliciesRequestRate = 'L-79E0D0AB', + CryptographicOperationsEccRequestRate = 'L-DC14942D', + DisableKeyRequestRate = 'L-6B8C93BD', + ImportKeyMaterialRequestRate = 'L-99631835', + CustomerMasterKeysCmKs = 'L-C2F1777E', + GetKeyPolicyRequestRate = 'L-A2A30EC6', + RetireGrantRequestRate = 'L-74021A59', + DisableKeyRotationRequestRate = 'L-CE1DB614', +} +export enum AwsLakeFormationQuota { + LengthOfAPathThatCanBeRegistered = 'L-3D55E97C', + NumberOfDataLakeAdministrators = 'L-3E3798DF', + NumberOfLfTagPolicyPerPrincipalPerResourceType = 'L-9F3EFFAB', + NumberOfRegisteredPaths = 'L-B0A837CA', + NumberOfSubfoldersInAnAmazonS3Path = 'L-1343AC0E', + NumberOfTagValuesPerLfTag = 'L-47097528', + NumberOfLfTagPerAccount = 'L-F165AF61', +} +export enum AwsLambdaQuota { + FunctionAndLayerStorage = 'L-2ACBD22F', + ConcurrentExecutions = 'L-B99A9384', + FunctionTimeout = 'L-9FEEFFC0', + SynchronousPayload = 'L-5C4B2C97', + RateOfControlPlaneApiRequestsExcludesInvocationGetFunctionAndGetPolicyRequests = 'L-B2AA0F47', + DeploymentPackageSizeUnzipped = 'L-E49FF7B8', + DeploymentPackageSizeDirectUpload = 'L-75F48B05', + EnvironmentVariableSize = 'L-6581F036', + RateOfGetFunctionApiRequests = 'L-37540937', + TemporaryStorage = 'L-F90FF320', + BurstConcurrency = 'L-548AE339', + ProcessesAndThreads = 'L-77C8EE9D', + ElasticNetworkInterfacesPerVpc = 'L-9FEE3D26', + FileDescriptors = 'L-438DAE3B', + RateOfGetPolicyApiRequests = 'L-4273958C', + FunctionLayers = 'L-01237738', + AsynchronousPayload = 'L-7C0F49F9', + FunctionResourceBasedPolicy = 'L-07A00131', + DeploymentPackageSizeConsoleEditor = 'L-8E39F3F1', + TestEventsConsoleEditor = 'L-AD930C90', +} +export enum AwsLaunchWizardQuota { + ApplicationNameLength = 'L-571DD6CC', + Applications = 'L-A5A6CAB2', + ActiveApplications = 'L-3BF0F558', + ParallelDeployments = 'L-606E646D', +} +export enum AmazonLexQuota { + CharactersPerSampleUtteranceV2 = 'L-4F321B43', + SampleUtterancesPerIntentV2 = 'L-ED50DA7C', + BotChannelAssociationsPerBotAliasV2 = 'L-DA28F59B', + SampleUtterancesPerSlotV2 = 'L-77D6C60C', + ValuesAndSynonymsPerCustomSlotTypeV2 = 'L-52297D95', + CustomSlotTypesPerBotLocaleV2 = 'L-3D56827F', + CharactersPerCustomSlotTypeValueV2 = 'L-9E828085', + CustomSlotTypeValuesAndSynonymsPerBotLocaleV2 = 'L-824BBA1D', + SlotsPerIntentV2 = 'L-311093B9', + SlotsPerBotLocaleV2 = 'L-9030FC28', + VersionsPerBotV2 = 'L-BCD96794', + TotalCharactersInSampleUtterancesPerBotLocaleV2 = 'L-606F3490', + BotsPerAccountV2 = 'L-36FA8BD2', +} +export enum AwsLicenseManagerQuota { + LicenseConfigurations = 'L-CDB75D7A', + LicenseConfigurationAssociationsPerResource = 'L-0B08C8C5', + GetAccessTokensCalls = 'L-94CAAF1E', + NumberOfUpdatesForAReportGeneratorPerDay = 'L-908B54DF', + NumberOfAccountsPerOrganizationForLicenseManager = 'L-FD8F1E79', + NumberOfLicensesYouCanCreate = 'L-C45FDCC5', + NumberOfAccountDiscoveryModeUpdatesPerDay = 'L-2D64C85F', + TotalNumberCountedEntitlementsPerCheckout = 'L-089B8712', + NumberOfReportGenerators = 'L-9FBEFBCB', + NumberOfReceivedLicensesPerProduct = 'L-48BF1E76', + TotalNumberUncountedEntitlementsPerLicense = 'L-CA3CD2C4', + TotalNumberCountedEntitlementsPerLicense = 'L-D92A2CE4', + LicenseConversionTasksPerResourcePerDay = 'L-6FD36464', + NumberOfTokensPerAccountAndLicense = 'L-992B7443', + MaximumNumberOfConcurrentOrganizationGrantActivities = 'L-96B4765E', + ExtendLicenseConsumptionPerConsumptionToken = 'L-404FB90C', + NumberOfGrantsPerLicense = 'L-55F04DE6', +} +export enum AwsLicenseManagerLinuxSubscriptionsQuota { + NumberOfDiscoveredResources = 'L-5373D1AB', +} +export enum AwsLicenseManagerUserSubscriptionsQuota { + UserBasedSubscriptionsForVisualStudioEnterprise = 'L-79A245D6', + InstanceAssociationsPerUser = 'L-8BE7CFDB', + UserBasedSubscriptionsForVisualStudioProfessional = 'L-FA5F53F9', + UserBasedSubscriptionsForOfficeProfessionalPlus = 'L-792C9CCF', +} +export enum AmazonLightsailQuota { + StaticIpAddresses = 'L-BBF0F260', + ContainerServiceCustomDomains = 'L-8C5BE2E1', + ContainerServiceDeploymentVersions = 'L-56E0BA80', + DefaultBehaviorsDefaultCacheBehaviorPerDistribution = 'L-0ABA1512', + ContainerServiceLogsStorageDays = 'L-8E04AC4B', + DnsZonesOrDomains = 'L-DBB7DE7A', + TotalAttachedBlockStorageDiskSpace = 'L-9773709E', + MaximumBlockStorageDiskSpace = 'L-8F295028', + ParallelRdpConnectionsUsingTheBrowserBasedRdpClient = 'L-A6831527', + MaximumBucketsPerAccount = 'L-CF67FCDA', + ContainerServiceStoredContainerImages = 'L-B35F6366', + AllowedQueryStringsPerCacheBehaviorForADistribution = 'L-A85C5367', + MinimumBlockStorageDiskSpace = 'L-64F0454B', + LoadBalancers = 'L-C512E6B9', + Tags = 'L-5BB7D4B4', + DirectoryAndFileOverridesPerDistribution = 'L-9A462869', + BlockStorageDisksPerInstance = 'L-6A41A279', + ResponseTimeoutPerOriginForADistribution = 'L-18D5AED5', + MaximumActiveCertificates = 'L-D3506055', + AllowedCookiesPerCacheBehaviorForADistribution = 'L-C3D6EA9E', + CustomDomainNamesPerDistribution = 'L-C27ADEB6', + ContainerServiceNodes = 'L-C5DF431B', + Distributions = 'L-1DB37119', + DataTransferRatePerDistribution = 'L-65A94DD9', + ParallelSshConnectionsUsingTheBrowserBasedSshClient = 'L-D858D90E', + MaximumCertificates = 'L-D5FCDF87', + OriginsPerDistribution = 'L-C93D8613', + ContainerServiceCertificates = 'L-4179DBC5', + Databases = 'L-3B2B13A1', + MaximumKeysPerBucket = 'L-D919EE0B', + ContainerServiceDeploymentContainers = 'L-FC916C10', + Instances = 'L-4259AF9B', + ContainerServices = 'L-BB561519', + AllowedHeadersPerCacheBehaviorForADistribution = 'L-97957401', +} +export enum AmazonCloudWatchLogsQuota { + DescribeLogStreamsThrottleLimitInTransactionsPerSecond = 'L-3F243AD0', + BatchSize = 'L-29A639F6', + PutRetentionPolicyThrottleLimitInTransactionsPerSecond = 'L-0397E41F', + PutMetricFilterThrottleLimitInTransactionsPerSecond = 'L-E5FB5933', + GetQueryResultsThrottleLimitInTransactionsPerSecond = 'L-FAF0999A', + LogGroups = 'L-C7B9AAAB', + DeleteRetentionPolicyThrottleLimitInTransactionsPerSecond = 'L-66F5762A', + EventSize = 'L-91470774', + ListTagsLogGroupThrottleLimitInTransactionsPerSecond = 'L-3E4C85B1', + PutLogEventsThrottleLimitInTransactionsPerSecond = 'L-7E1FAE88', + ActiveExportTask = 'L-EEC839DF', + DescribeMetricFiltersThrottleLimitInTransactionsPerSecond = 'L-69BF6BAC', + ListTagsForResourceThrottleLimitInTransactionsPerSecond = 'L-E6EF8674', + DescribeLogGroupsThrottleLimitInTransactionsPerSecond = 'L-4284EEDE', + TestMetricFilterThrottleLimitInTransactionsPerSecond = 'L-1CD226BD', + StartLiveTailThrottleLimitInTransactionsPerSecond = 'L-39FFB556', + StartQueryThrottleLimitInTransactionsPerSecond = 'L-4FC2190A', + CancelExportTaskThrottleLimitInTransactionsPerSecond = 'L-97393AE2', + DeleteLogGroupThrottleLimitInTransactionsPerSecond = 'L-07A912D5', + PutSubscriptionFilterThrottleLimitInTransactionsPerSecond = 'L-A5D79081', + GetLogEventsThrottleLimitInTransactionsPerSecond = 'L-4FE15505', + DeleteLogStreamThrottleLimitInTransactionsPerSecond = 'L-C029A21C', + MetricsFiltersPerLogGroup = 'L-3D5753EA', + CreateLogGroupThrottleLimitInTransactionsPerSecond = 'L-D2832119', + DescribeExportTasksThrottleLimitInTransactionsPerSecond = 'L-ACAEE94E', + FilterLogEventsThrottleLimitInTransactionsPerSecond = 'L-55E3CA17', + UntagResourceThrottleLimitInTransactionsPerSecond = 'L-B501C43C', + UntagLogGroupThrottleLimitInTransactionsPerSecond = 'L-EEEC3365', + SubscriptionFiltersPerLogGroup = 'L-87E7D306', + PutDestinationPolicyThrottleLimitInTransactionsPerSecond = 'L-7EB1C513', + DeleteMetricFilterThrottleLimitInTransactionsPerSecond = 'L-363FC8B0', + CreateExportTaskThrottleLimitInTransactionsPerSecond = 'L-BD9DB0EB', + DataArchiving = 'L-A33040DC', + CreateLogStreamThrottleLimitInTransactionsPerSecond = 'L-76507CEF', + PutDestinationThrottleLimitInTransactionsPerSecond = 'L-7A9B3427', + AssociateKmsKeyThrottleLimitInTransactionsPerSecond = 'L-7A4B5D2F', + DeleteSubscriptionFilterThrottleLimitInTransactionsPerSecond = 'L-56B91A0A', + DeleteDestinationThrottleLimitInTransactionsPerSecond = 'L-BE2A59B1', + TagLogGroupThrottleLimitInTransactionsPerSecond = 'L-BBECF742', + TagResourceThrottleLimitInTransactionsPerSecond = 'L-956BB71D', + DescribeDestinationsThrottleLimitInTransactionsPerSecond = 'L-BEB90E24', + DescribeSubscriptionFiltersThrottleLimitInTransactionsPerSecond = 'L-9D43025B', +} +export enum AmazonLookoutForEquipmentQuota { + NumberOfRowsInInferenceInputDataAfterResampling10MinSchedulingFrequency = 'L-B3168D38', + SizeOfRawDataInInferenceInputData10MinSchedulingFrequency = 'L-6BD7153E', + ComponentsPerDataset = 'L-5F5E6B4C', + NumberOfRowsInInferenceInputDataAfterResampling30MinSchedulingFrequency = 'L-A3D16212', + NumberOfColumnsAcrossComponentsInTrainingDataExcludingTimestamp = 'L-9101D33B', + SizeOfRawDataInInferenceInputData30MinSchedulingFrequency = 'L-A11F6F18', + PendingModels = 'L-B52F37B8', + SizePerFile = 'L-D17E90A4', + Datasets = 'L-06FBA868', + NumberOfRowsInInferenceInputDataAfterResampling15MinSchedulingFrequency = 'L-B1943515', + NumberOfImportDatasetJobsInProgress = 'L-810626D7', + LengthOfComponentName = 'L-31F72248', + NumberOfFilesPerComponentPerInferenceExecution = 'L-56977D5E', + Models = 'L-E03BD5FA', + SizePerDataset = 'L-4FBD286E', + NumberOfLabelsPerLabelGroup = 'L-1AF8D174', + SizeOfRawDataInInferenceInputData5MinSchedulingFrequency = 'L-75278E46', + LabelGroups = 'L-1CCF155B', + SizeOfRawDataInInferenceInputData1HourSchedulingFrequency = 'L-788AFAC3', + NumberOfFilesPerComponentPerDataset = 'L-036ABE75', + PendingDataIngestionJobs = 'L-B987A6C9', + NumberOfImportModelJobsInProgress = 'L-2B4BB827', + SizeOfRawDataInInferenceInputData15MinSchedulingFrequency = 'L-C9210A3F', + InferenceSchedulersPerModel = 'L-067E28E3', + NumberOfRowsInInferenceInputDataAfterResampling5MinSchedulingFrequency = 'L-65AE051D', + NumberOfRowsInTrainingDataAfterResampling = 'L-1C9270CA', + NumberOfColumnsAcrossComponentsPerDatasetExcludingTimestamp = 'L-CC8ADD5B', + TimespanOfTrainingData = 'L-C1FC5A38', + NumberOfRowsInInferenceInputDataAfterResampling1HourSchedulingFrequency = 'L-61516DB5', + NumberOfComponentsInTrainingData = 'L-BA2AA0D0', + NumberOfRowsInEvaluationDataAfterResampling = 'L-8A80BBD3', +} +export enum AmazonLookoutForMetricsQuota { + ThrottleRateListMetricSets = 'L-E907B4C2', + TimeSeriesPerInterval5m = 'L-367E0B91', + ThrottleRateGetAnomalyGroup = 'L-D87ABA33', + RecordsPerInterval1h = 'L-535C09C0', + ThrottleRateBackTestAnomalyDetector = 'L-4B1617A5', + TimeSeriesPerInterval10m = 'L-9A2D9472', + MeasuresPerDataset = 'L-E09315CD', + DatasetsPerDetector = 'L-FF74E011', + ThrottleRateListAnomalyGroupTimeSeries = 'L-B10A1291', + ThrottleRateDeleteAnomalyDetector = 'L-8C031EB7', + ThrottleRateUpdateMetricSet = 'L-970F0018', + DimensionsPerDataset = 'L-3F1EEFE9', + ValueLength = 'L-5F537F31', + ThrottleRateCreateMetricSet = 'L-42533647', + FilesPerInterval1d = 'L-46692FC3', + RecordsPerInterval5m = 'L-943788CD', + ThrottleRateCreateAlert = 'L-F84BD970', + ThrottleRateUpdateAnomalyDetector = 'L-29051655', + ThrottleRateDeleteAlert = 'L-AA1B9C20', + ThrottleRateListAnomalyDetectors = 'L-5D0258C0', + TimeSeriesPerInterval1h = 'L-61F79416', + ThrottleRateDescribeAnomalyDetector = 'L-70CC6666', + FilesPerInterval10m = 'L-0BC408F8', + ThrottleRateActivateAnomalyDetector = 'L-7548F78A', + TimeSeriesPerInterval1d = 'L-989594D2', + ThrottleRateGetDataQualityMetrics = 'L-1EFB34E0', + ThrottleRateGetSampleData = 'L-0F70E4A0', + ThrottleRate = 'L-F75BB1C7', + FilesPerInterval1h = 'L-1FDF7B91', + ThrottleRatePutFeedback = 'L-17A5470E', + DatasourcesPerDataset = 'L-8BAF8991', + ThrottleRateListAnomalyGroupRelatedMetrics = 'L-2CD2EB7E', + ThrottleRateDescribeMetricSet = 'L-020F22D6', + ThrottleRateGetFeedback = 'L-2AF7F498', + FilesPerInterval5m = 'L-7C0C1E87', + RecordsPerInterval10m = 'L-B7D162E6', + Alerts = 'L-3AA7C566', + RecordsPerInterval1d = 'L-4CDD974B', + ThrottleRateCreateAnomalyDetector = 'L-56F61C6F', + Detectors = 'L-5EB8352D', + ThrottleRateDescribeAnomalyDetectionExecutions = 'L-A384774A', + ThrottleRateListAlerts = 'L-E7EB46AB', + ThrottleRateDescribeAlert = 'L-F2FA38BF', + ThrottleRateListAnomalyGroupSummaries = 'L-F256354A', + ThrottleRateDetectMetricSetConfig = 'L-3BA5225A', + ValueFiltersPerDimensionFilter = 'L-3FD71F75', + ThrottleRateUntagResource = 'L-C566AD88', + ThrottleRateTagResource = 'L-E91D3491', + ThrottleRateDeactivateAnomalyDetector = 'L-5FD69032', + DataSizeForHistoricalDataContinuousMode = 'L-CB7F0960', + DimensionsFiltersPerDataset = 'L-40C6821F', + DataSizePerInterval1h = 'L-96224E7E', + ThrottleRateListTagsForResource = 'L-297200B6', + IntervalsInHistoricalDataBacktestMode = 'L-B2F2C358', + DataSizePerInterval5m = 'L-BEA3839E', + DataSizePerInterval10m = 'L-4E92D475', + DataSizePerInterval1d = 'L-574A683B', + IntervalsInHistoricalDataContinuousMode = 'L-AA27DE10', + DataSizeForHistoricalDataBacktestMode = 'L-BD328382', + FilesInHistoricalData = 'L-BBA63122', +} +export enum AmazonLookoutForVisionQuota { + MaximumImageFileSizeInMbForATrainingOrTestImage = 'L-EF7B9086', + MaximumNumberOfModelsPerProject = 'L-1B1011CA', + MaximumNumberOfDetectAnomaliesApiRequestsPerSecond = 'L-9A58AC7A', + MaximumNumberOfProjects = 'L-64685F61', + MinimumImageDimensionInPixelsForATrainingOrTestImage = 'L-DAB2DC95', + MaximumNumberOfImagesInATrialDetectionDataset = 'L-C19F11D8', + MaximumNumberOfInferenceUnitsPerStartedModel = 'L-84E8C9F8', + MaximumNumberOfConcurrentTrialDetectionTasks = 'L-5863F741', + MaximumNumberOfRunningModels = 'L-82DA2ABD', + MaximumNumberOfConcurrentTrainingJobs = 'L-2489F742', + MaximumNumberOfImagesInATestDataset = 'L-D146B80F', + MaximumImageDimensionForATrainingOrTestImageInPixels = 'L-65CC6428', + MaximumNumberOfConcurrentModelPackagingJobs = 'L-A2F581AB', + MaximumNumberOfApiRequestsPerSecondExcludingDetectAnomalies = 'L-6C6DBBAE', + MaximumNumberOfImagesInATrainingDataset = 'L-1DCAE97B', +} +export enum AwsMainframeModernizationQuota { + MaxApplicationsPerAwsAccount = 'L-00464274', + MaxEnvironmentsPerAwsAccount = 'L-6851C542', + MaxDataTransferEndpointsPerAwsAccount = 'L-536F13DF', + MaxNumberOfFsxFilesystemsPerEnvironment = 'L-C1C41257', + MaxNumberOfEfsFilesystemsPerEnvironment = 'L-5D943D0B', + MaxInstancesPerHighAvailabilityEnvironment = 'L-24ACBEAE', +} +export enum AmazonMachineLearningQuota { + TotalRateOfAllRealTimePredictionRequests = 'L-A7752C6C', + ClassesForMulticlassMlModels = 'L-281104EC', + VariablesPerDataFile = 'L-B08E80D3', + TrainingDataSize = 'L-C435D6DC', + RecipeComplexity = 'L-54CEDABA', + JobRuntime = 'L-4AF88D6A', + BatchPredictionInputSize = 'L-C02552ED', + MlModelSize = 'L-D0D01CF1', + SimultaneousJobs = 'L-40E5546B', + ObservationSize = 'L-22D3562F', + BatchPredictionInputRecords = 'L-8914BECD', + TotalRamForAllRealTimePredictionEndpoints = 'L-A3DD8EAF', + RateOfRealTimePredictionRequestsPerEndpoint = 'L-F1FD3E15', + TagsPerObject = 'L-F5E51C01', +} +export enum AmazonMacieQuota { + SensitiveDataDiscoveryPerMonthPerAccount = 'L-FEB8D34D', + CustomDataIdentifiersPerSensitiveDataDiscoveryJob = 'L-3572300B', + NonBinaryTextFileSize = 'L-C63BC816', + FindingsRules = 'L-E2FBEE6E', + ApacheParquetParquetFileSize = 'L-BF81CFA3', + GnuZipCompressedArchiveGzOrGzipFileSize = 'L-FE63254C', + FullNamesDetected = 'L-35C3874E', + PortableDocumentFormatPdfFileSize = 'L-6C7B3990', + S3BucketsPerSensitiveDataDiscoveryJob = 'L-14954719', + ApacheAvroContainerAvroFileSize = 'L-1F4A8665', + ZipCompressedArchiveZipFileSize = 'L-5781F6A2', + ExtractedArchiveBytes = 'L-54398E25', + SensitiveDataDiscoveryOccurrences = 'L-D116B4D9', + MemberAccountsByInvitation = 'L-7AF7F5C8', + MailingAddressesDetected = 'L-AFA44EA5', + CustomDataIdentifiersPerAccount = 'L-7D690B48', + ExtractedArchiveFiles = 'L-74471B50', + MemberAccountsThroughAwsOrganizations = 'L-2F634A96', + NestedLevels = 'L-062C8B21', + MicrosoftExcelWorkbookXlsOrXlsxFileSize = 'L-06179120', + NestedLevelsInStructuredData = 'L-BEC9D9CC', + SensitiveDataFindingOccurrences = 'L-A8D2158C', + TarArchiveTarFileSize = 'L-FDB33294', + MicrosoftWordDocumentDocOrDocxFileSize = 'L-CA9A9123', +} +export enum AmazonManagedBlockchainQuota { + NumberOfHyperledgerFabricChannelsPerStandardEditionNetwork = 'L-67914D6A', + NumberOfEthereumNodesAnAwsAccountCanHave = 'L-56698730', + NumberOfStarterEditionNetworksInWhichAnAwsAccountCanHaveAMember = 'L-D3936217', + NumberOfStandardEditionNetworksInWhichAnAwsAccountCanHaveAMember = 'L-C71C12D1', + NumberOfHyperledgerFabricChannelsPerStarterEditionNetwork = 'L-7DCD24B7', +} +export enum AmazonManagedBlockchainQueryQuota { + NumberOfListAssetContractsRequestsPerSecond = 'L-D1DC054C', + NumberOfGetTokenBalanceRequestsPerSecond = 'L-7555598E', + NumberOfListTokenBalancesRequestsPerSecond = 'L-920F1669', + NumberOfListTransactionsRequestsPerSecond = 'L-506D2B91', + NumberOfGetTransactionRequestsPerSecond = 'L-716ED4D5', + NumberOfGetAssetContractRequestsPerSecond = 'L-0084BF26', + NumberOfBatchGetTokenBalanceRequestsPerSecond = 'L-D4959700', + NumberOfListTransactionEventsRequestsPerSecond = 'L-55D6B880', +} +export enum AwsElementalMediaConnectQuota { + Flows = 'L-A99016A8', + Outputs = 'L-CB77E87E', + Entitlements = 'L-F1F62F5D', + Bridges = 'L-075679EF', +} +export enum AwsElementalMediaConvertQuota { + RequestRateForDescribeEndpointsInABurst = 'L-58B630F9', + RequestRateForDescribeEndpoints = 'L-1BE11968', + CustomOutputPresets = 'L-8CFEB230', + CustomJobTemplates = 'L-FFA964F8', + RequestRateForApiCallsInAggregate = 'L-6D7C345F', + QueuesReservedPerRegionPerAccount = 'L-1FF6FD60', + QueuesOnDemandPerRegionPerAccount = 'L-2D376814', + ConcurrentJobsPerOnDemandQueuePeak = 'L-032C4FB4', + RequestRateForApiCallsInAggregateInABurst = 'L-62A25D68', +} +export enum AwsElementalMediaLiveQuota { + InputSecurityGroups = 'L-6A0116BB', + Multiplexes = 'L-8B49C5C1', + VpcInputs = 'L-68E02936', + Reservations = 'L-1F6E2FAF', + HevcChannels = 'L-05A796F2', + MediaLiveDescribeThumbnailsTps = 'L-63879FB4', + PullInputs = 'L-4D7207DE', + DeviceInputs = 'L-BDF24E14', + UhdChannels = 'L-DDE858F0', + Channels = 'L-D1AFAF75', + CdiChannels = 'L-3FDA265B', + PushInputs = 'L-9E233AF7', +} +export enum AwsElementalMediaPackageQuota { + BurstRateOfRestApiRequestsLive = 'L-F0A6E997', + RateOfRestApiRequestsVod = 'L-20E16360', + EndpointsPerChannel = 'L-7F7EDDDF', + RateOfManifestEgressRequestsPerAsset = 'L-1E11547D', + PackagingConfigurationsPerPackagingGroup = 'L-1E1258F1', + RateOfSegmentEgressRequestsPerOriginEndpoint = 'L-BEF6A5C5', + PackagingGroups = 'L-66FFDBE4', + Channels = 'L-352B8598', + RateOfRestApiRequestsLive = 'L-2FF063D2', + BurstRateOfRestApiRequestsVod = 'L-1D216601', + ContentRetention = 'L-3C7827C4', + AssetsPerPackagingGroup = 'L-563EE697', + LiveManifestLength = 'L-F7CB14AC', + RateOfSegmentEgressRequestsPerAsset = 'L-80529300', + IngestStreamsPerAsset = 'L-4D5703CE', + ConcurrentHarvestJobs = 'L-B1B90B42', + TracksPerIngestStreamLive = 'L-258E8DBA', + IngestStreamsPerChannel = 'L-5625C794', + TracksPerIngestStreamVod = 'L-81A8E99B', + RateOfIngestRequestsPerChannel = 'L-F461E421', + RateOfManifestEgressRequestsPerOriginEndpoint = 'L-BC1EEC38', + TimeShiftedManifestLength = 'L-8D3D8B62', +} +export enum AwsElementalMediaPackageV2Quota { + ChannelGroups = 'L-A7040149', + OriginEndpointsPerChannel = 'L-305BEE26', + RateOfIngestRequestsPerChannel = 'L-DC0E43E8', + BurstRateOfRestApiRequests = 'L-DA364562', + ChannelsPerChannelGroup = 'L-55777135', + RateOfRestApiRequests = 'L-E84C56ED', + IngestStreamsPerChannel = 'L-88EC0651', + TimeShiftedManifestLength = 'L-3982B8D7', + TracksPerIngestStream = 'L-BE974EAD', + LiveManifestLength = 'L-B20140A1', + RateOfSegmentEgressRequestsPerOriginEndpoint = 'L-BE196DD4', + ContentRetention = 'L-71A50308', + RateOfManifestEgressRequestsPerOriginEndpoint = 'L-327832D0', +} +export enum AwsElementalMediaStoreQuota { + RateOfDeleteObjectApiRequests = 'L-2FCDD326', + RateOfDescribeObjectApiRequests = 'L-8038710B', + RateOfPutObjectApiRequestsForChunkedTransferEncodingAlsoKnownAsStreamingUploadAvailability = 'L-CAF2EF73', + RateOfGetObjectApiRequestsForStandardUploadAvailability = 'L-DB1D877F', + RateOfListItemsApiRequests = 'L-97AEAA6B', + RateOfGetObjectApiRequestsForStreamingUploadAvailability = 'L-FA6DBE33', + RateOfPutObjectApiRequestsForStandardUploadAvailability = 'L-CA39FABB', + ObjectSize = 'L-F7BC88E9', + Containers = 'L-A05AAEF2', + FolderLevels = 'L-06089B48', +} +export enum AwsElementalMediaTailorQuota { + SourceLocations = 'L-2290981E', + ProgramsPerChannel = 'L-7946CFE6', + ContentOriginServerTimeout = 'L-007E683B', + AdDecisionServerAdsTimeout = 'L-B800E13A', + ChannelManifestRequests = 'L-C13EFDBD', + PackageConfigurations = 'L-0F7265C4', + SessionExpiration = 'L-BE3CDF89', + AdDecisionServerAdsLength = 'L-B7A40915', + ManifestRequests = 'L-B9D43015', + ContentOriginLength = 'L-93B27B6F', + ChannelsPerAccount = 'L-29DF1B92', + AdInsertionRequests = 'L-32FBC51C', + Configurations = 'L-F60EC97B', + ChannelOutputs = 'L-3BCD6A29', + SegmentDeliveryConfigurationsPerSource = 'L-680CE323', + ManifestSize = 'L-16A95E26', + VodSources = 'L-A32E8357', + LiveSources = 'L-7A79D9CE', + AdDecisionServerAdsRedirects = 'L-7202B1BD', +} +export enum AwsHealthImagingQuota { + MaximumNumberOfNestedFoldersInADicomImportJob = 'L-82EB2111', + MaximumConcurrentDeleteImageSetRequestsPerDataStore = 'L-2020885D', + MaximumNumberOfFilesInADicomImportJob = 'L-685AAB3A', + MaximumPayloadSizeLimitInKbAcceptedByUpdateImageSetMetadata = 'L-A880A4C2', + MaximumSizeInGbOfAllFilesInADicomImportJob = 'L-09BF036A', + MaximumNumberOfImageFramesAllowedToBeCopiedPerCopyImageSetRequest = 'L-164416ED', + MaximumSizeLimitInMbOnImageSetMetadataPerImportCopyAndUpdateImageSet = 'L-AD2C6765', + MaximumSizeInGbOfEachDicomP10FileInADicomImportJob = 'L-1D182717', + MaximumConcurrentCopyImageSetRequestsPerDataStore = 'L-0D1B2633', + MaximumDataStores = 'L-8829B870', + MaximumConcurrentImportJobsPerDataStore = 'L-23763099', + MaximumConcurrentUpdateImageSetMetadataRequestsPerDataStore = 'L-8588E9BF', +} +export enum ApplicationMigrationQuota { + MaxActiveApplications = 'L-D5507441', + MaxTotalSourceServersPerAwsAccount = 'L-967C958D', + MaxArchivedWaves = 'L-BB9C7114', + MaxActionsPerSourceServer = 'L-0E532B45', + MaxActionsPerTemplate = 'L-322CA331', + MaxActiveSourceServers = 'L-9A599620', + MaxActiveWaves = 'L-9FD6E875', + MaxSourceServersPerApplication = 'L-90A3F9F5', + MaxApplicationsPerWave = 'L-CBE9E36A', + MaxArchivedApplications = 'L-391504A2', + MaxSourceServersInASingleJob = 'L-F1FD732F', + MaxSourceServersInAllJobs = 'L-4FF77426', + ConcurrentJobsInProgress = 'L-FE2EBE17', + MaxConcurrentJobsPerSourceServer = 'L-615F978B', + MaxNonArchivedSourceServers = 'L-50980698', +} +export enum MigrationHubOrchestratorQuota { + MaximumStepsPerStepGroup = 'L-71F71C2E', + MaximumStepGroupsPerWorkflow = 'L-FD489B05', + MaximumWorkflows = 'L-9E55B371', +} +export enum MigrationHubStrategyRecommendationsQuota { + MaximumServerPerAssessment = 'L-649F667C', + ActiveImportMaximum = 'L-33C4B34A', + ActiveAssessmentMaximum = 'L-A80C6746', + AssessmentMaximum = 'L-7571197D', +} +export enum AmazonCloudWatchQuota { + RateOfDescribeAlarmHistoryRequests = 'L-7193C790', + NumberOfContributorInsightsRules = 'L-DBD11BCC', + RateOfUpdateServiceLevelObjectiveRequests = 'L-223DF753', + RateOfPutMetricDataRequests = 'L-8BC498D4', + RateOfListServiceLevelObjectivesRequests = 'L-33D84392', + RateOfEnableTopologyDiscoveryRequests = 'L-C344EF56', + RateOfGetMetricDataRequests = 'L-5E141212', + RateOfStartMetricStreamsRequests = 'L-787E531D', + RateOfStopMetricStreamsRequests = 'L-A64F5500', + RateOfDisableAlarmActionsRequests = 'L-D750D224', + RateOfDeleteInsightRulesRequests = 'L-22339239', + RateOfGetServiceLevelObjectiveRequests = 'L-2E33235C', + RateOfEnableInsightRulesRequests = 'L-646A917A', + RateOfListTagsForResourceRequests = 'L-B6C4D57E', + NumberOfSlOsPerService = 'L-BD55890A', + RateOfDisableInsightRulesRequests = 'L-C234EDB6', + RateOfTagResourceRequests = 'L-4609795C', + RateOfBatchGetServiceLevelIndicatorReportRequests = 'L-811EA4AA', + RateOfPutMetricStreamRequests = 'L-A6D89949', + RateOfGetMetricStatisticsRequests = 'L-EE839489', + NumberOfSlOsPerRegion = 'L-E1914A5B', + DimensionsPerMetric = 'L-9533564A', + RateOfPutInsightRuleRequests = 'L-9FFA42D2', + RateOfGetTopologyMapRequests = 'L-EE74D0A5', + RateOfBatchGetServiceLevelObjectiveBudgetReportRequests = 'L-09F09515', + DataRetention = 'L-F7C13313', + PayloadSizeForPutMetricDataRequests = 'L-1E484EDC', + RateOfGetMetricWidgetImageRequests = 'L-6FCAAA2E', + RateOfListMetricsRequests = 'L-05D334F0', + CanaryLimit = 'L-C1FE0F5C', + MetricDatumItemsPerPutMetricDataRequest = 'L-119E982F', + RateOfEnableAlarmActionsRequests = 'L-CA907765', + RateOfListMetricStreamsRequests = 'L-A1710150', + RateOfDescribeAlarmsForMetricRequests = 'L-E2310E7A', + RateOfListServicesRequests = 'L-F2BBFC0F', + RateOfDescribeInsightRulesRequests = 'L-86AA5564', + RateOfUntagResourceRequests = 'L-6929DE8C', + RateOfDeleteServiceLevelObjectiveRequests = 'L-BE391708', + RateOfDeleteMetricStreamRequests = 'L-0F4E28CA', + RateOfSetAlarmStateRequests = 'L-68B0DFE2', + RateOfDeleteAlarmsRequests = 'L-25E8DC37', + RateOfGetMetricStreamRequests = 'L-59022E75', + RateOfGetServiceRequests = 'L-C7E3E2C8', + RateOfPutMetricAlarmRequests = 'L-0720E68F', + RateOfDescribeAlarmsRequests = 'L-21CB40A4', + RateOfPutDashboardRequests = 'L-6753900D', + RateOfDeleteDashboardsRequests = 'L-E1508405', + RateOfCreateServiceLevelObjectiveRequests = 'L-06DDA3C7', + RateOfListDashboardsRequests = 'L-69C44FFD', + RateOfGetDashboardRequests = 'L-E82C279D', + RateOfGetMetricDataDatapointsForTheLastThreeHoursOfMetrics = 'L-F5FE387B', + ActionsPerCloudWatchAlarmPerState = 'L-C75B9360', + MetricsPerDashboardWidget = 'L-0A89496C', + NumberOfMetricsInsightsAlarms = 'L-AB1871A7', + RateOfGetInsightRuleReportRequests = 'L-1F0C4E0C', + RateOfGetMetricDataDatapointsForMetricsOlderThanThreeHours = 'L-C1B4557E', + MinimumFrequency = 'L-E0CF66E2', + MetricsPerDashboard = 'L-CA813ABD', + MetricDataQueriesPerGetMetricDataRequest = 'L-64423229', +} +export enum AmazonMonitronQuota { + GatewaysPerSite = 'L-6B3EE8A2', + UsersPerSite = 'L-42582A4B', + ProjectsPerAccount = 'L-2C0BD955', + SitesPerProject = 'L-7FA56BB1', + PositionsPerAsset = 'L-E7428CE9', + AssetsPerSite = 'L-25B02F46', + AssetClassesPerProject = 'L-7771F483', + PositionsPerCustomClass = 'L-D3D5A0EF', +} +export enum AmazonMqQuota { + ApiBurstLimit = 'L-5775772E', + DestinationsMonitoredInCloudWatchRabbitMq = 'L-2945EBE1', + TemporaryStorageCapacityPerSmallerBroker = 'L-DF9D3FFB', + RevisionsPerConfiguration = 'L-5EF2BBC7', + ApiRateLimit = 'L-D9C3728B', + StorageCapacityPerSmallerBroker = 'L-2757006A', + TagsPerBroker = 'L-014B4583', + WireLevelConnectionsPerSmallerBroker = 'L-A5C214C9', + UsersPerBrokerSimpleAuth = 'L-D505D03E', + TemporaryStorageCapacityPerLargerBroker = 'L-9A922C52', + NumberOfBrokersPerRegion = 'L-4D525FD5', + SecurityGroupsPerBroker = 'L-8113B3FA', + DestinationsMonitoredInCloudWatchActiveMq = 'L-BAFD73B7', + WireLevelConnectionsPerLargerBroker = 'L-42B434B7', + JobSchedulerUsageLimitPerBrokerBackedByAmazonEbs = 'L-7AAF71B3', + GroupsPerUserSimpleAuth = 'L-BB510D1B', + StorageCapacityPerLargerBroker = 'L-B0F7ED94', +} +export enum AmazonNeptuneQuota { + DbSubnetGroups = 'L-483F7912', + DbInstances = 'L-368A3E00', + EventSubscriptions = 'L-463F8A01', + ReadReplicasPerCluster = 'L-A6A065D7', + DbInstanceParameterGroups = 'L-584DADE7', + TagsPerResource = 'L-B3AC6773', + ReservedDbInstances = 'L-22818E49', + DbClusterRoles = 'L-9AEE2A70', + DbClusterManualsSnapshots = 'L-D6543DBD', + ClusterEndpointsPerDbCluster = 'L-A425F59F', + CrossRegionSnapshotCopyRequests = 'L-BF10548E', + DbClusterParameterGroups = 'L-5BB9A916', + DbClusters = 'L-6D17A5A2', +} +export enum AmazonNeptuneAnalyticsQuota { + RateOfTagResourceApiRequests = 'L-BAD55E25', + RateOfListGraphSnapshotsApiRequests = 'L-F4990E36', + RateOfCreateGraphSnapshotApiRequests = 'L-ACC6671C', + RateOfDeletePrivateGraphEndpointApiRequests = 'L-145FBBEC', + MaximumProvisionedMemoryForEachGraph = 'L-145975CA', + RateOfCreateGraphApiRequests = 'L-1A4D313F', + RateOfCancelImportTaskApiRequests = 'L-CCA6A9D0', + RateOfUpdateGraphApiRequests = 'L-E50E3387', + RateOfGetGraphSnapshotApiRequests = 'L-A53FC974', + RateOfListTagsForResourceApiRequests = 'L-8DE01AD2', + RateOfDeleteGraphSnapshotApiRequests = 'L-CF286151', + RateOfListPrivateGraphEndpointsApiRequests = 'L-D317DBA8', + RateOfGetPrivateGraphEndpointApiRequests = 'L-BCF9AD64', + RateOfCreatePrivateGraphEndpointApiRequests = 'L-5E4F82AC', + RateOfListGraphsApiRequests = 'L-DCD81945', + RateOfRestoreGraphFromSnapshotApiRequests = 'L-6D065F9A', + MaximumGraphs = 'L-D31591F1', + RateOfGetGraphApiRequests = 'L-2C6692EB', + RateOfUntagResourceApiRequests = 'L-319B0970', + MaximumGraphSnapshots = 'L-6CECD12A', + RateOfListImportTasksApiRequests = 'L-3BE1AAB0', + RateOfResetGraphApiRequests = 'L-4C2E6787', + RateOfDeleteGraphApiRequests = 'L-0E92389A', + RateOfGetImportTaskApiRequests = 'L-43A5F0FD', + RateOfCreateGraphUsingImportTaskApiRequests = 'L-43875DB3', +} +export enum AwsNetworkFirewallQuota { + StatefulRulegroups = 'L-2D7A0EE2', + StatelessRulegroups = 'L-EAE8E19E', + FirewallPolicies = 'L-0814492B', + Firewalls = 'L-DE163D32', + TlsConfigurations = 'L-801F8132', +} +export enum NetworkInsightsQuota { + ReachabilityAnalyzerPaths = 'L-51CB2D5B', + ReachabilityAnalyzerConcurrentAnalyses = 'L-B393345A', + ReachabilityAnalyzerAnalyses = 'L-44B7545B', + NetworkAccessAnalyzerAccessScopeAnalyses = 'L-06B98CB1', + NetworkAccessAnalyzerAccessScopes = 'L-72DF2E0E', + NetworkAccessAnalyzerConcurrentAccessScopeAnalyses = 'L-2AC9F231', +} +export enum AwsCloudWanQuota { + DevicesPerGlobalNetwork = 'L-C3B5632D', + RetentionDurationInSecondsForCoreNetworkPoliciesWithOutOfDateChangeSets = 'L-9C5C59A1', + PeeringsPerCoreNetwork = 'L-C19D8424', + ConnectionsPerGlobalNetwork = 'L-D30F0A50', + CoreNetworkPolicySizeInKb = 'L-A345B6A3', + GlobalNetworksPerAccount = 'L-2418390E', + EdgesPerRegionPerCoreNetwork = 'L-C30C57F9', + CoreNetworksPerGlobalNetwork = 'L-975571E3', + SegmentsPerCoreNetwork = 'L-6A28AE0D', + LinksPerGlobalNetwork = 'L-6BD16053', + AttachmentsPerCoreNetwork = 'L-6028ECFC', + SitesPerGlobalNetwork = 'L-DFE018A3', + ConnectPeersPerConnectAttachment = 'L-90B25F46', + PolicyVersionsPerCoreNetwork = 'L-3DE56F60', + CoreNetworkAttachmentsPerVpc = 'L-2BE19905', +} +export enum AmazonCloudWatchNetworkMonitorQuota { + NumberOfProbesPerSubnetForEachMonitor = 'L-A8FA6DFE', + NumberOfProbesPerMonitor = 'L-DE3355AE', + NumberOfMonitorsPerAccountPerAwsRegion = 'L-A4298AB9', +} +export enum AmazonNimbleStudioQuota { + CustomStreamingImagesPerStudio = 'L-D5A30A08', + StudioComponentsPerStudio = 'L-35089300', + StreamingSessionBackupsPerStudio = 'L-43D04A58', + G5StreamingSessionsPerStudio = 'L-83B00607', + ActiveDirectoryStudioComponentsPerStudio = 'L-D3E713C7', + LaunchProfilesPerStudio = 'L-84ECA733', + StudioCreationPerAccount = 'L-B88BF938', + SharedFileSystemStudioComponentsPerStudio = 'L-1D1DDB85', + StreamingSessionsPerStudio = 'L-0FA462CE', +} +export enum AwsUserNotificationsQuota { + ChannelsForAGivenNotificationConfiguration = 'L-C79B839A', + EmailContacts = 'L-C31379B2', + NotificationHubs = 'L-428D5F1B', + RateOfSourceEventsForAGivenAwsAccount = 'L-7157FAAE', + EventRulesForAGivenNotificationConfiguration = 'L-3235BB26', + NotificationConfigurationsPerServiceAndEventType = 'L-DE655E3E', + NotificationConfigurationsForASingleService = 'L-FF05B457', + NotificationConfigurationsTotalForAnAwsAccount = 'L-D3B60D82', +} +export enum AmazonCloudWatchObservabilityAccessManagerQuota { + RateOfDeleteLinkRequests = 'L-1DA9A53C', + RateOfListSinksRequests = 'L-022081A8', + RateOfDeleteSinkRequests = 'L-143B6A4E', + RateOfGetLinkRequests = 'L-0C9B84F1', + RateOfUntagResourceRequests = 'L-AB9CB007', + RateOfListAttachedLinksRequests = 'L-7EEA7BFD', + RateOfUpdateLinkRequests = 'L-D7E6CF70', + NumberOfLinks = 'L-92C40D6D', + RateOfGetSinkRequests = 'L-17A1180D', + RateOfTagResourceRequests = 'L-F026BF93', + RateOfCreateSinkRequests = 'L-64C711AB', + RateOfGetSinkPolicyRequests = 'L-6F6854CA', + RateOfListLinksRequests = 'L-B753F5F0', + LinksPerSink = 'L-303A1B23', + RateOfListTagsForResourceRequests = 'L-6FE8607E', + NumberOfSinks = 'L-AA726EB1', + RateOfCreateLinkRequests = 'L-73AD4D12', + RateOfPutSinkPolicyRequests = 'L-5CCC34E8', +} +export enum AwsHealthOmicsQuota { + MaximumActiveRuns = 'L-A30FD31B', + MaximumActivationJobs = 'L-911E26A1', + MaximumRuns = 'L-C9679DBC', + MaximumActiveCpUs = 'L-7F5E4C03', + MaximumVariantStores = 'L-899DA104', + MaximumReferenceStores = 'L-9CB08D77', + MaximumAnnotationStores = 'L-01A419C5', + MaximumExportJobs = 'L-473E274D', + MaximumReferences = 'L-F34A3FC2', + MaximumNumberOfSharesPerAnnotationVersion = 'L-F77D4708', + MaximumNumberOfSharesPerVariantStore = 'L-242998FB', + MaximumActiveGpUs = 'L-AFB19B96', + MaximumRunGroups = 'L-176A1BA9', + MaximumVersionsPerAnnotationStore = 'L-186D3DEB', + MaximumFilesPerVariantImportJob = 'L-22E12079', + MaximumSizeInGbOfEachFileInAVariantImportJob = 'L-13B00733', + MaximumNumberOfSharesPerAnnotationStore = 'L-E787EB79', + MaximumFilesPerAnnotationImportJob = 'L-66AC9E9E', + MaximumImportJobs = 'L-F57A8D18', + MaximumDuration = 'L-7B9E5416', + MaximumImportJobReadSets = 'L-89F31D1A', + MaximumWorkflowStorageCapacity = 'L-35CE76C9', + MaximumSequenceStores = 'L-BFFBB2FD', + MaximumRunTasks = 'L-25504C8C', + MaximumReadSets = 'L-BE766427', + MaximumExportJobReadSets = 'L-5BDDEC28', + MaximumWorkflows = 'L-7CAE62CF', + MaximumSizeInGbOfEachFileInAnAnnotationImportJob = 'L-B94B38A2', + MaximumConcurrentImportJobs = 'L-876AD0A2', + MaximumActivationJobReadSets = 'L-18B646D8', +} +export enum AwsOpsWorksStacksQuota { + Stacks = 'L-5DA32F30', + AppsPerStack = 'L-286E46E9', + InstancesPerStack = 'L-1C397901', + LayersPerStack = 'L-450F416F', +} +export enum AwsOpsWorksForChefAutomateAndAwsOpsWorksForPuppetEnterpriseQuota { + ChefAutomateOrPuppetEnterpriseServers = 'L-5F3A6D53', + AutomatedScheduledBackupGenerationsPerServer = 'L-51FB6CC0', + ManualBackupsPerServer = 'L-208BFD67', +} +export enum AwsOrganizationsQuota { + NumberOfAccountsYouCanCloseWithinA30DayPeriodTheActualNumberOfAccountsYouCanCloseIsEither10Or10OfYourTotalMemberAccountsUpTo1000 = 'L-55309E5F', + EnableAllFeaturesRequestExpiration = 'L-AA7C31EA', + ServiceControlPolicyScpDocumentSize = 'L-BB9288C9', + RootsInAnOrganization = 'L-AEF07724', + InvitationAcceptanceExpiration = 'L-6B92D33D', + HandshakeExpiration = 'L-215284CA', + MemberAccountsYouCanConcurrentlyCreate = 'L-032E520C', + NumberOfInvitationAttemptsYouCanPerformInA24HourPeriod = 'L-4671FEEC', + ServiceControlPoliciesPerAccount = 'L-82BC2112', + OuMaximumNestingInARoot = 'L-6F276A18', + MinimumAgeForRemovalOfCreatedAccounts = 'L-0689E0AB', + MemberAccountsYouCanConcurrentlyClose = 'L-6A88197C', + ServiceControlPoliciesPerOu = 'L-761D0BC5', + ServiceControlPoliciesPerRoot = 'L-1BAD7F99', + DefaultMaximumNumberOfAccounts = 'L-29A0C5DF', + OUsInAnOrganization = 'L-43A5FC71', + PoliciesInAnOrganization = 'L-F81B38FC', +} +export enum AwsOutpostsQuota { + OutpostSites = 'L-3D389D34', + OutpostsPerSite = 'L-0B277C74', +} +export enum AwsPanoramaQuota { + NodePackages = 'L-060C17BA', + VersionsPerPackage = 'L-0E299C70', + RateOfDeletePackageApiRequests = 'L-A49093B4', + RateOfCreateJobForDevicesApiRequests = 'L-E2DECF7B', + ApplicationsPerDevice = 'L-90577688', + RateOfDeregisterPackageVersionApiRequests = 'L-1FCF3682', + RateOfCreateApplicationInstanceApiRequests = 'L-C4C3E18C', + RateOfRemoveApplicationInstanceApiRequests = 'L-59074834', + CameraNodesPerApplication = 'L-20DD5D48', + AssetsPerPackage = 'L-2D9523BB', + RateOfTotalApiRequests = 'L-A6DEC7EB', + RateOfCreatePackageImportJobApiRequests = 'L-C0E8D1C2', + RateOfDeployments = 'L-F66DA511', + PackageArtifactSize = 'L-BB504503', + RateOfCreateNodeFromTemplateJobApiRequests = 'L-601BD122', + RateOfDescribePackageApiRequests = 'L-02C701B0', + Devices = 'L-188FB0B7', + RateOfRegisterPackageVersionApiRequests = 'L-27A58606', + RateOfProvisionDeviceApiRequests = 'L-BFD4B771', + RateOfDeleteDeviceApiRequests = 'L-A5D7C2E3', + RateOfCreatePackageApiRequests = 'L-987FBA2E', +} +export enum AwsPaymentCryptographyQuota { + CombinedRateOfDataPlaneRequestsSymmetric = 'L-B90266F0', + Keys = 'L-23280857', + Aliases = 'L-10DEBB19', + CombinedRateOfDataPlaneRequestsAsymmetric = 'L-BBE04029', + CombinedRateOfControlPlaneRequests = 'L-946BFBA8', +} +export enum PrivateCaConnectorForActiveDirectoryQuota { + RateOfListTagsForResourceRequests = 'L-EE597D84', + RateOfUntagResourceRequests = 'L-64E52FB9', + RateOfGetTemplateRequests = 'L-046630BB', + RateOfGetConnectorRequests = 'L-F6A7C5A2', + RateOfDeleteDirectoryRegistrationRequests = 'L-568BB718', + RateOfDeleteConnectorRequests = 'L-01AB3861', + RateOfRequestSecurityTokenRequests = 'L-27D56743', + RateOfCreateConnectorRequests = 'L-7966F778', + RateOfGetPoliciesRequests = 'L-0916B3E3', + RateOfDeleteServicePrincipalNameRequests = 'L-8228CBB5', + RateOfGetTemplateGroupAccessControlEntryRequests = 'L-A40E38B0', + RateOfDeleteTemplateRequests = 'L-1F0B4E70', + NumberOfConnectors = 'L-351D0DCC', + RateOfCreateDirectoryRegistrationRequests = 'L-17569A85', + RateOfCreateTemplateGroupAccessControlEntryRequests = 'L-21A25C3F', + RateOfCreateServicePrincipalNameRequests = 'L-6930FFF8', + NumberOfTemplatesPerConnector = 'L-FB47817C', + RateOfUpdateTemplateGroupAccessControlEntryRequests = 'L-657D5FD0', + RateOfListDirectoryRegistrationsRequests = 'L-71CF09F7', + RateOfUpdateTemplateRequests = 'L-431F19A0', + RateOfGetServicePrincipalNameRequests = 'L-F16E91B4', + RateOfListTemplateGroupAccessControlEntriesRequests = 'L-5512056E', + RateOfCreateTemplateRequests = 'L-70E167AD', + RateOfDeleteTemplateGroupAccessControlEntryRequests = 'L-853BCABE', + RateOfTagResourceRequests = 'L-957664CC', + RateOfGetDirectoryRegistrationRequests = 'L-5CC72EAF', + RateOfListServicePrincipalNamesRequests = 'L-8B0AFBB5', + RateOfListTemplatesRequests = 'L-7362C0AD', + NumberOfGroupAccessControlEntriesPerTemplate = 'L-B2C010E5', + RateOfListConnectorsRequests = 'L-49BEA97B', +} +export enum AmazonPersonalizeQuota { + RateOfDeleteDatasetGroupRequests = 'L-1CAC7664', + RateOfPutEventsRequestsPerDatasetGroup = 'L-8047B3A8', + NumberOfInteractionsForModelTraining = 'L-A6A4AB70', + RateOfGetPersonalizedRankingRequestsPerCampaign = 'L-83D79D48', + RateOfCreateSolutionVersionRequests = 'L-1B982452', + RateOfDescribeDatasetGroupRequests = 'L-9B095670', + RateOfCreateCampaignRequests = 'L-9FDB137B', + RateOfDescribeDatasetImportJobRequests = 'L-6A61577D', + RateOfDeleteDatasetImportJobRequests = 'L-ACBBDC27', + NumberOfActionInteractionsForModelTraining = 'L-E30A1A43', + RateOfListEventTrackersRequests = 'L-896849F5', + RateOfDescribeSolutionRequests = 'L-ECA454DD', + RateOfDeleteEventTrackerRequests = 'L-353C3E7E', + RateOfListDatasetImportJobsRequests = 'L-B9C7903C', + MaximumNumberOfInteractionsPerEventTypePerUserConsideredByAFilter = 'L-A8FE1453', + RateOfDeleteDatasetRequests = 'L-E1ABE5BE', + RateOfPutActionInteractionsRequestsPerDatasetGroup = 'L-F1119DA2', + RateOfDeleteSolutionRequests = 'L-7E76619B', + RateOfGetRecommendationsRequestsPerCampaign = 'L-E5F8E322', + EventSize = 'L-FA8BB2FC', + RateOfListSchemasRequests = 'L-542429F0', + AmountOfDataForPopularityCountRecipe = 'L-A6D35102', + NumberOfSchemas = 'L-037D5A71', + NumberOfItemsUsedInModelTraining = 'L-49CC69B6', + RateOfDescribeEventTrackerRequests = 'L-5E3F1253', + AmountOfUsersAndItemsDataCombinedForHrnnMetadataRecipe = 'L-2EE592C4', + RateOfCreateSolutionRequests = 'L-A527EF3A', + RateOfUpdateDatasetRequests = 'L-76C4D7A9', + RateOfListCampaignsRequests = 'L-AE7FD4E5', + RateOfDeleteCampaignRequests = 'L-BD0DF30D', + RateOfUpdateCampaignRequests = 'L-12101E4A', + RateOfGetActionRecommendationsRequestsPerCampaign = 'L-0314CB5C', + RateOfCreateEventTrackerRequests = 'L-D1699476', + NumberOfActionsUsedInModelTraining = 'L-0DAD8751', + RateOfDescribeRecipeRequests = 'L-3A81D0FF', + ActiveFiltersPerDatasetGroup = 'L-B9CFBC8B', + MinimumDataPointsForModelTraining = 'L-4DFC060E', + RateOfListRecipesRequests = 'L-3A79BA38', + MaximumNumberOfActionInteractionsPerEventTypePerUserConsideredByAFilter = 'L-C71694DA', + AmountOfUsersAndItemsDataCombinedForHrnnColdstartRecipe = 'L-DEDA9DCF', + AmountOfDataForSimsRecipe = 'L-E427562C', + NumberOfActionInteractionEventsInAPutActionInteractionsCall = 'L-90932EE6', + RateOfListSolutionsRequests = 'L-3A329490', + ActiveCampaignsPerDatasetGroup = 'L-052ECD67', + RateOfDescribeDatasetRequests = 'L-DC96DE0A', + ActiveDatasetGroups = 'L-14011066', + RateOfDescribeSchemaRequests = 'L-159027CF', + ActiveSolutionsPerDatasetGroup = 'L-D9DD83B7', + RateOfListDatasetsRequests = 'L-CA34375E', + RateOfTransactionsPerAccount = 'L-5667F87F', + PendingOrInProgressBatchInferenceJobs = 'L-69B72005', + PendingOrInProgressSolutionVersions = 'L-9C16B368', + RateOfDescribeFeatureTransformationRequests = 'L-FAB63F14', + MinimumUniqueUsersForModelTraining = 'L-ADCAE478', + RateOfListDatasetImportJobRunsRequests = 'L-5282CC49', + RateOfCreateDatasetGroupRequests = 'L-141B5F3C', + MaximumNumberOfRecommendersPerDatasetGroup = 'L-4D685096', + AmountOfDataPerIncrementalImport = 'L-C5A4FD57', + AmountOfDataForPersonalizedRankingRecipe = 'L-B33ADDC3', + AmountOfInteractionsDataForHrnnColdstartRecipe = 'L-8CF67C84', + AmountOfInteractionsDataForHrnnMetadataRecipe = 'L-A2675B6E', + RateOfGetSolutionMetricsRequests = 'L-89B2007E', + RateOfCreateDatasetRequests = 'L-5D7942B8', + RateOfCreateDatasetImportJobRequests = 'L-7AA65A3D', + AmountOfDataForHrnnRecipe = 'L-DD6792CA', + RateOfDescribeCampaignRequests = 'L-D98A73E8', + NumberOfEventsInPutEventsCall = 'L-A2738B0F', + RateOfDescribeAlgorithmRequests = 'L-D551DB19', + RateOfListDatasetGroupsRequests = 'L-1513644C', + RateOfListSolutionVersionsRequests = 'L-76D6B0AB', + RateOfCreateSchemaRequests = 'L-C044F2CA', + RateOfDeleteSchemaRequests = 'L-34736E70', + PutActionInteractionsEventSize = 'L-18DCD0DA', +} +export enum AmazonPinpointQuota { + UpdateSmsTemplateOperationRateQuota = 'L-A9CF2F09', + UpdateEndpointOperationRateQuota = 'L-333E663A', + UpdateInAppTemplateOperationBurstQuota = 'L-0428A7CE', + ActiveCampaignsPerAccount = 'L-75AFB9F3', + UpdateEmailTemplateOperationRateQuota = 'L-90D8DA58', + DeleteEndpointOperationRateQuota = 'L-F2841F8A', + UpdateEndpointOperationBurstQuota = 'L-9142FA7C', + PutEventsOperationRateQuota = 'L-1CFEC081', + NumberOfImportFilesPerImportJob = 'L-211AA0F8', + CreateEmailTemplateOperationBurstQuota = 'L-C407DD59', + DeleteEndpointOperationBurstQuota = 'L-740E6D0F', + UpdateVoiceTemplateOperationBurstQuota = 'L-D8EA67D3', + UpdateInAppTemplateOperationRateQuota = 'L-98A9B620', + GetEndpointOperationBurstQuota = 'L-702C5879', + CreateVoiceTemplateOperationBurstQuota = 'L-8FBB07F4', + CreateInAppTemplateOperationBurstQuota = 'L-190CC5A1', + CreateEmailTemplateOperationRateQuota = 'L-8C220D3D', + MaximumNumberOfJourneyActivitiesPerJourney = 'L-08122D1D', + CreatePushTemplateOperationBurstQuota = 'L-F5A3090E', + NumberOfEventBasedCampaigns = 'L-CC53764D', + UpdatePushTemplateOperationBurstQuota = 'L-6733389F', + PutEventsOperationBurstQuota = 'L-F123C43A', + CreateSmsTemplateOperationBurstQuota = 'L-20A1359C', + ActiveInAppCampaignsPerProject = 'L-952D08C7', + UpdateEndpointsBatchOperationBurstQuota = 'L-27084BF9', + MaximumNumberOfActiveEventTriggeredJourneysPerAccount = 'L-692A3DD2', + CreatePushTemplateOperationRateQuota = 'L-B008BB16', + UpdateEndpointsBatchOperationRateQuota = 'L-55406C36', + UpdateSmsTemplateOperationBurstQuota = 'L-C8E63E9B', + UpdatePushTemplateOperationRateQuota = 'L-22143048', + CreateSmsTemplateOperationRateQuota = 'L-7E3252BF', + CreateInAppTemplateOperationRateQuota = 'L-3C767F9E', + UpdateEmailTemplateOperationBurstQuota = 'L-733BED32', + CreateVoiceTemplateOperationRateQuota = 'L-00469515', + GetEndpointOperationRateQuota = 'L-4407470A', + MaximumNumberOfActiveJourneysPerAccount = 'L-D9507B3D', + UpdateVoiceTemplateOperationRateQuota = 'L-C32B9F4C', + MaximumNumberOfEventAttributesPerEndpointInACustomChannelResponse = 'L-283A6638', + NumberOfVoiceMessagesThatCanBeSentToASingleRecipientDuringA24HourPeriod = 'L-FB330AEF', + MaximumNumberOfCustomAttributeValuesPerAttributeKey = 'L-46514212', + MaximumSizeOfARequest = 'L-99319FFB', + NumberOfAttributesAssignedToTheMetricsParameter = 'L-19FAC8C7', + MaximumNumberOfAttemptsToInvokeALambdaFunction = 'L-1A67054A', + MaximumNumberOfDimensionsThatCanBeUsedToCreateASegment = 'L-E72E950C', + MaximumNumberOfCharactersPerAttributeValue = 'L-D7778D32', + MaximumNumberOfModelConfigurationsPerAccount = 'L-D862A171', + MaximumNumberOfCharactersInAdmSpecificTemplatePartsOfAPushNotificationTemplate = 'L-B09B5654', + MaximumNumberOfRecommendedAttributesPerEndpointOrUserAwsLambdaFunction = 'L-B1934D4C', + MaximumLengthOfARecommendedAttributeValueThatSRetrievedFromAmazonPersonalize = 'L-6BA826DB', + VoiceMessageLength = 'L-EB57023C', + MaximumNumberOfCharactersInFcmSpecificTemplatePartsOfAPushNotificationTemplate = 'L-10976A2B', + MaximumSegmentSizePerJourney = 'L-EB037E37', + NumberOfEndpointBatchItemObjectsInAnEndpointBatchRequestPayload = 'L-8F134A4E', + MaximumNumberOfCharactersInApnSpecificTemplatePartsOfAPushNotificationTemplate = 'L-5D4A1FC6', + NumberOfVoiceMessagesThatCanBeSentFromASingleOriginatingPhoneNumberPerSecond = 'L-79EC8125', + SendMessagesOperationBurstQuota = 'L-F1EE9BC5', + NumberOfValuesAssignedToTheUserAttributesParameterAttributesPerAttribute = 'L-F62D0221', + NumberOfSmsMessagesThatCanBeSentToASingleRecipientEachSecond = 'L-011AAE4D', + MaximumNumberOfCharactersPerAttributeKey = 'L-E8BFE267', + NumberOfAmazonPinpointProjects = 'L-9657965F', + MaximumSizePerEndpoint = 'L-A206F458', + NumberOfRecipientsPerMessage = 'L-A742486B', + PhoneNumberValidateOperationBurstQuota = 'L-74FC19BA', + MaximumNumberOfCustomAttributeKeysPerApp = 'L-4FE3F5C9', + NumberOfSmsMessagesThatCanBeSentEachSecondSendingRate = 'L-39643E10', + InvocationPayloadSize = 'L-4CFE22DD', + NumberOfCharactersInAVoiceMessage = 'L-B1044409', + NumberOfEndpointsWithTheSameUserId = 'L-5160B7E0', + AttributeValueLength = 'L-00CA3D60', + MaximumNumberOfRecommendedAttributesPerEndpointOrUser = 'L-580B96A2', + MaximumNumberOfEventsInARequest = 'L-E5E7458F', + NumberOfVoiceMessagesThatCanBeSentPerMinute = 'L-9318E2F4', + MaximumNumberOfCustomEventTypesPerApp = 'L-DEDDBACD', + DeleteSegmentOperationBurstQuota = 'L-E02683D7', + MaximumLengthOfARecommendedAttributeDisplayName = 'L-DD05AA08', + MaximumNumberOfRecommendationsPerEndpointOrUser = 'L-A5332206', + MaximumNumberOfCharactersInAnSmsTemplate = 'L-4A31FA0E', + AttributeNameLength = 'L-E6F8CC8E', + AmazonDeviceMessagingAdmMessagePayloadSizePerMessage = 'L-BBD1EBDF', + DeleteSegmentOperationRateQuota = 'L-8A34A67D', + MaximumLengthOfARecommendedAttributeName = 'L-B6F19F2C', + SendUsersMessagesOperationBurstQuota = 'L-6B6A4B75', + NumberOfVoiceConfigurationSetsPerAwsRegion = 'L-C477DE56', + MaximumAmountOfTimeToWaitForALambdaFunctionToProcessData = 'L-F2C2908E', + NumberOfAttributesAssignedToTheAttributesMetricsAndUserAttributesParametersCollectively = 'L-41F2C85D', + ApplePushNotificationServiceApNsMessagePayloadSizePerMessage = 'L-604A66DF', + UpdateSegmentOperationRateQuota = 'L-768FB8FB', + MaximumSizeOfAnInvocationPayloadRequestAndResponseForALambdaFunction = 'L-44D8849B', + AllOtherOperationsBurstQuota = 'L-72A1F6B5', + BaiduCloudPushMessagePayloadSizePerMessage = 'L-145312C1', + SmsSpendingThreshold = 'L-A7D30E78', + SendUsersMessagesOperationRateQuota = 'L-9CF9DDA0', + CreateSegmentOperationRateQuota = 'L-AC82394D', + DeleteCampaignOperationRateQuota = 'L-4D2BBF82', + MaximumSizeOfAnIndividualEvent = 'L-4D68DFD0', + MaximumMessageSizeIncludingAttachments = 'L-515FC177', + CreateCampaignOperationRateQuota = 'L-A255138B', + NumberOfEmailsThatCanBeSentPer24HourPeriodSendingQuota = 'L-F179D122', + NumberOfValuesAssignedToTheAttributesParameterAttributesPerAttribute = 'L-D5F199FA', + MaximumNumberOfModelConfigurationsPerMessageTemplate = 'L-C4CADB07', + MaximumNumberOfPushNotificationsThatCanBeSentPerSecondInACampaign = 'L-DE86E513', + MaximumNumberOfMessageTemplatesPerAccount = 'L-EF46E894', + DeleteCampaignOperationBurstQuota = 'L-AB04D53C', + UpdateCampaignOperationBurstQuota = 'L-323B59AE', + MaximumNumberOfAttributeKeysAndMetricKeysForEachEventPerRequest = 'L-DC81CDCA', + NumberOfIdentitiesThatYouCanVerify = 'L-F625D3DB', + MaximumNumberOfCharactersInAVoiceTemplate = 'L-34FB2630', + NumberOfVerifiedIdentities = 'L-625F7367', + PhoneNumberValidateOperationRateQuota = 'L-E30F449E', + NumberOfConcurrentImportJobs = 'L-4BC0A2FD', + SendMessagesOperationRateQuota = 'L-5D20177E', + MaximumSegmentSizePerCampaign = 'L-D4695B37', + CreateSegmentOperationBurstQuota = 'L-FC4EDB5E', + MaximumNumberOfCharactersForAnEventAttributeValueInACustomChannelResponse = 'L-1DACDC1C', + MaximumNumberOfVersionsPerTemplate = 'L-2555226F', + NumberOfEmailsThatCanBeSentEachSecondSendingRate = 'L-9AE43654', + FirebaseCloudMessagingFcmMessagePayloadSizePerMessage = 'L-64B71623', + ImportSizePerImportJob = 'L-0A577A5A', + MaximumNumberOfCharactersInAnEmailTemplate = 'L-17A23394', + MaximumNumberOfCharactersInBaiduSpecificTemplatePartsOfAPushNotificationTemplate = 'L-6FAB1B15', + UpdateCampaignOperationRateQuota = 'L-D0CC64F8', + MaximumNumberOfCharactersForAnEventAttributeNameInACustomChannelResponse = 'L-4AC67C61', + MaximumNumberOfCharactersInTheDefaultTemplatePartsOfAPushNotificationTemplate = 'L-5D254524', + UpdateSegmentOperationBurstQuota = 'L-11BF23E4', + ApNsSandboxMessagePayloadSizePerMessage = 'L-10E9041F', + NumberOfAmazonSnsTopicsForTwoWaySmsPerAccount = 'L-6D703411', + NumberOfVoiceMessagesThatCanBeSentDuringA24HourPeriod = 'L-A2957BEB', + MaximumNumberOfCustomMetricKeysPerApp = 'L-10D925B2', + NumberOfAttributesAssignedToTheAttributesParameter = 'L-7AAEDF6B', + NumberOfAttributesAssignedToTheUserAttributesParameter = 'L-BB6E4BFB', + CreateCampaignOperationBurstQuota = 'L-B5E24C24', + AllOtherOperationsRateQuota = 'L-D10E8F93', +} +export enum AmazonPollyQuota { + RateOfLexiconManagementRequests = 'L-D93DD9F2', + SynthesizeSpeechLexiconCount = 'L-261DF501', + RateOfSynthesizeSpeechNeuralRequests = 'L-A65CEC2D', + StartSpeechSynthesisTaskBilledCharactersCount = 'L-79B4630F', + SynthesizeSpeechBilledCharacterCount = 'L-17639580', + LexiconCount = 'L-BC40090A', + LexiconSize = 'L-6144E1AC', + RateOfSynthesizeSpeechLongFormRequests = 'L-C54DC08A', + StartSpeechSynthesisTaskLexiconCount = 'L-00C9620B', + RateOfStartSpeechSynthesisTaskStandardRequests = 'L-18255867', + RateOfGetSpeechSynthesisTaskAndListSpeechSynthesisTasksRequests = 'L-43330D37', + StartSpeechSynthesisTaskTotalCharactersLimit = 'L-77D5DB9E', + RateOfStartSpeechSynthesisTaskNeuralRequests = 'L-B9A743A4', + SynthesizeSpeechTotalCharacterCount = 'L-18474792', + RateOfStartSpeechSynthesisTaskLongFormRequests = 'L-511CA548', + RateOfSynthesizeSpeechStandardRequests = 'L-9FB8AA30', +} +export enum AwsPrivate5GQuota { + ActiveNetworks = 'L-54376413', +} +export enum AmazonConnectCustomerProfilesQuota { + MaximumNumberOfCalculatedAttributesPerDomain = 'L-DB27F954', + MaximumExpirationInDays = 'L-3217D1F1', + MaximumSizeOfAllObjectsForAProfile = 'L-63975AF3', + ObjectsPerProfile = 'L-E17DC7C3', + ObjectAndProfileMaximumSize = 'L-3A29C525', + KeysPerObjectType = 'L-A7ED412C', + ObjectTypesPerDomain = 'L-14092FF4', + MaximumNumberOfIntegrations = 'L-4A5ECB8E', + MaximumNumberOfEventStreamPerDomain = 'L-1DED0840', + AmazonConnectCustomerProfilesDomainCount = 'L-6603B252', +} +export enum AwsProtonQuota { + EnvironmentsPerAccount = 'L-37A692EA', + EnvironmentAccountConnectionsPerEnvironmentAccount = 'L-6CC8209C', + ComponentsPerAccount = 'L-8FBB60E3', + TemplatesPerAccount = 'L-405DC02B', + TemplateVersionsPerTemplate = 'L-A1B6A95A', + ServiceInstancesPerService = 'L-E8182F7E', + ServicesPerAccount = 'L-1C8983C3', +} +export enum AmazonQQuota { + MaximumNumberOfPluginsPerApplication = 'L-DD5A6E5E', + MaximumNumberOfApplicationsPerAccount = 'L-32924358', + MaximumNumberOfDataSourcesPerApplication = 'L-1B99F8DB', +} +export enum AmazonQldbQuota { + QldbExportsPerLedger = 'L-22B6E165', + Ledgers = 'L-CD70CADB', + QldbStreamsPerLedger = 'L-91B08359', +} +export enum AmazonQuickSightQuota { + CustomActionsPerVisual = 'L-E43AEF3C', + ApiCreateIngestionCallsPer24HourPeriodFromStandardEdition = 'L-01C190BD', + EmailAliasesPerGroupForEmailReports = 'L-BF25D425', + CalculatedFieldExpressionLength = 'L-AECE65ED', + ApiCreateIngestionCallsPer24HourPeriodFromEnterpriseEdition = 'L-E3375426', + DataPrepFieldsPerDataset = 'L-C2064901', + DisplayItemsPerSheetControl = 'L-E9E486C4', + CustomActionNameLength = 'L-B8F293B6', + MaximumNumberOfCharactersPerSpecifiedControlValues = 'L-843701D0', + QueryTimeoutForVisuals = 'L-F1EA8033', + TheMaximumAmountOfTimeToWaitForADatasetPreview = 'L-92D2E884', + UrlActionHyperlinkLength = 'L-C1F9B371', +} +export enum AwsResourceAccessManagerQuota { + NumberOfResourceShares = 'L-595828F9', + NumberOfResourceAssociations = 'L-4A6CEE66', + NumberOfCustomPermissionsPerResourceType = 'L-2870BE9D', + NumberOfPendingInvitations = 'L-238C96EE', + NumberOfPrincipalAssociations = 'L-8491BF81', + NumberOfResourceAssociationsPerResourceShare = 'L-1F7F8A25', + NumberOfPrincipalAssociationsPerResourceShare = 'L-275DAC00', + NumberOfCustomPermissions = 'L-9EBA15DD', +} +export enum AmazonRecycleBinQuota { + TagsPerRule = 'L-BCC6359E', + RulesPerRegion = 'L-629917A2', +} +export enum AmazonRelationalDatabaseServiceAmazonRdsQuota { + DataApiMaximumConcurrentRequests = 'L-E79969BF', + DataApiHttpRequestBodySize = 'L-D87A28C7', + TotalStorageForAllDbInstances = 'L-7ADDB58A', + ManualDbClusterSnapshots = 'L-9B510759', + ParameterGroups = 'L-DE55804A', + ManualDbInstanceSnapshots = 'L-272F1212', + DbClusters = 'L-952B80B8', + ReadReplicasPerPrimary = 'L-5BC124EF', + IamRolesPerDbCluster = 'L-E094F43D', + SecurityGroups = 'L-732153D0', + DataApiMaximumConcurrentClusterSecretPairs = 'L-E3721453', + DataApiRequestsPerSecond = 'L-ECDFB241', + Proxies = 'L-D94C7EA3', + DataApiMaximumSizeOfJsonResponseString = 'L-C0506D15', + DataApiMaximumResultSetSize = 'L-BDB2F348', + ReservedDbInstances = 'L-78E853F4', + DbClusterParameterGroups = 'L-E4C808A8', + DbInstances = 'L-7B6409FD', + SubnetsPerDbSubnetGroup = 'L-6F3ACC36', + EventSubscriptions = 'L-A59F4C87', + AuthorizationsPerDbSecurityGroup = 'L-AA8B1026', + OptionGroups = 'L-9FA33840', + DbSubnetGroups = 'L-48C6BF61', + IamRolesPerDbInstance = 'L-DD2301CA', + RulesPerSecurityGroup = 'L-E9D71017', + SecurityGroupsVpc = 'L-36B04611', + CustomEngineVersions = 'L-A399AC0B', + TagsPerResource = 'L-85E66A03', +} +export enum AmazonRedshiftQuota { + NodesInACluster = 'L-BB966966', + PartitionsInAnAccountWhenUsingAmazonAthena = 'L-CAD8DD0E', + ParameterGroups = 'L-A3830BB3', + ColumnLimitForExternalTablesWithPseudocolumnsWhenUsingAmazonAthena = 'L-76971675', + AllowedStringValueSizePerIonOrJsonFileWhenUsingAmazonAthena = 'L-F9EB09F0', + TablesForLargeClusterNodeType = 'L-986F545D', + SecurityGroups = 'L-890444C0', + Ra3NodesInACluster = 'L-93AC8AE6', + AllowedRowObjectSizePerIonOrJsonFileWhenUsingAmazonAthena = 'L-692E5BBE', + SchemasInEachDatabasePerCluster = 'L-4E1FE923', + TablesForXlplusClusterNodeTypeWithASingleNodeCluster = 'L-01DE90DD', + PartitionsInATableWhenUsingAwsGlueDataCatalog = 'L-CDB97050', + EventSubscriptions = 'L-2B30DCFE', + TablesFor8xlargeClusterNodeType = 'L-D8ECCA81', + StoredProceduresInADatabase = 'L-21B48DE6', + ColumnLimitForExternalTablesWhenUsingAmazonAthenaOrAwsGlueDataCatalog = 'L-14ABD327', + TablesFor16xlargeClusterNodeType = 'L-FA4166C9', + SubnetGroups = 'L-BE12F428', + PartitionsInAnAccountWhenUsingAwsGlueDataCatalog = 'L-D4A471DC', + Dc2NodesInACluster = 'L-84537943', + SingleRowSizeWhenLoadingByCopy = 'L-4D30B127', + TablesFor4xlargeClusterNodeType = 'L-99F53FC8', + TablesForXlargeClusterNodeType = 'L-A4D89F59', + TablesInADatabaseWhenUsingAwsGlueDataCatalog = 'L-A85DAB6E', + DatabasesInAnAccountWhenUsingAwsGlueDataCatalog = 'L-8D8FD3F6', + ClusterIamRolesForAmazonRedshiftToAccessOtherAwsServices = 'L-7C6A532D', + Snapshots = 'L-2E428669', + ConcurrencyLevelForAllUserDefinedQueues = 'L-24D7B305', + TablesForXlplusClusterNodeTypeWithAMultipleNodeCluster = 'L-7438E5E3', + Nodes = 'L-F9D462EE', + UserDefinedDatabasesInACluster = 'L-CA4E81F8', + PartitionsInATableWhenUsingAmazonAthena = 'L-8150BB93', + SubnetsInASubnetGroup = 'L-6C6B6042', + ColumnLimitForExternalTablesWithPseudocolumnsWhenUsingAwsGlueDataCatalog = 'L-8AFA7F04', + AwsAccountsYouCanAuthorizeToRestoreASnapshotPerSnapshot = 'L-909949E5', + ConcurrentUserConnectionsToACluster = 'L-7CB1CC00', + Ds2NodesInACluster = 'L-C7372F73', + TablesInADatabaseWhenUsingAmazonAthena = 'L-CD9AE144', + AwsAccountsYouCanAuthorizeToRestoreASnapshotPerAwsKmsKey = 'L-7097B286', + DatabasesInAnAccountWhenUsingAmazonAthena = 'L-FACB0772', + ReservedNodes = 'L-58C8C0E8', + AllowedStringValueSizePerIonOrJsonFileWhenUsingAwsGlueDataCatalog = 'L-D236BDB3', +} +export enum AwsMigrationHubRefactorSpacesQuota { + Applications = 'L-EACEDE8E', + Services = 'L-B19E8A2B', + Environments = 'L-DEF84811', + Routes = 'L-CE52EEA2', +} +export enum AmazonRekognitionQuota { + TransactionsPerSecondPerAccountForTheAmazonRekognitionCustomLabelsOperationUpdateDatasetEntries = 'L-513570CC', + TransactionsPerSecondPerAccountForTheAmazonRekognitionOperationDeleteUser = 'L-E112E6C6', + TransactionsPerSecondPerAccountForTheAmazonRekognitionImageOperationDeleteFaces = 'L-220834FB', + TransactionsPerSecondPerAccountForTheAmazonRekognitionCustomLabelsOperationDeleteProject = 'L-BDE2ACBF', + TransactionsPerSecondPerAccountForTheAmazonRekognitionImageOperationDetectModerationLabels = 'L-7F4D1AC4', + TransactionsPerSecondPerAccountForTheAmazonRekognitionImageOperationDetectText = 'L-87CF5BA6', + TransactionsPerSecondPerAccountForTheAmazonRekognitionOperationListTagsForResource = 'L-711B1E8A', + TransactionsPerSecondPerAccountForTheAmazonRekognitionStreamingVideoEventsOperationListStreamProcessors = 'L-CF317234', + TransactionsPerSecondPerAccountForTheAmazonRekognitionVideoStoredVideoGetOperationGetPersonTracking = 'L-71159A7C', + ConcurrentAmazonRekognitionCustomLabelsTrainingJobsPerAccount = 'L-F1558568', + TransactionsPerSecondPerAccountForTheAmazonRekognitionImageOperationRecognizeCelebrities = 'L-5FF750C4', + MaximumNumberOfProjectPoliciesPerAmazonRekognitionCustomLabelsProject = 'L-0B2CE4DD', + TransactionsPerSecondPerAccountForTheAmazonRekognitionImageOperationListCollections = 'L-0366BB0F', + TransactionsPerSecondPerAccountForTheAmazonRekognitionCustomLabelsOperationListDatasetEntries = 'L-41805FEB', + TransactionsPerSecondPerAccountForTheAmazonRekognitionOperationListMediaAnalysisJobs = 'L-E0C6F70E', + TransactionsPerSecondPerAccountForTheAmazonRekognitionOperationTagResource = 'L-C141F2F9', + TransactionsPerSecondPerAccountForTheAmazonRekognitionCustomLabelsOperationListProjectPolicies = 'L-5AA330BC', + TransactionsPerSecondPerAccountForTheAmazonRekognitionVideoStoredVideoStartOperationStartPersonTracking = 'L-DFE4726A', + TransactionsPerSecondPerAccountForTheAmazonRekognitionVideoStoredVideoStartOperationStartFaceSearch = 'L-8CA99658', + TransactionsPerSecondPerAccountForTheAmazonRekognitionVideoStoredVideoStartOperationStartSegmentDetection = 'L-55A22B20', + TransactionsPerSecondPerAccountForTheAmazonRekognitionImageOperationListFaces = 'L-970B5808', + TransactionsPerSecondPerAccountForTheAmazonRekognitionCustomLabelsOperationDescribeProjectVersions = 'L-12019FB0', + TransactionsPerSecondPerAccountForTheAmazonRekognitionCustomLabelsOperationStartProjectVersion = 'L-C46E6F2E', + TransactionsPerSecondPerAccountForTheAmazonRekognitionFaceLivenessOperationGetFaceLivenessSessionResults = 'L-E574413B', + TransactionsPerSecondPerAccountForTheAmazonRekognitionVideoStoredVideoGetOperationGetFaceDetection = 'L-4E7ADAC1', + AmazonRekognitionStreamingVideoEventsLabelDetectionStreamProcessorsPerAccountThatCanBeProcessedConcurrently = 'L-0A2A7683', + TransactionsPerSecondPerAccountForTheAmazonRekognitionImagePersonalProtectiveEquipmentOperationDetectProtectiveEquipment = 'L-6F294C5B', + ConcurrentlyRunningAmazonRekognitionCustomLabelsModelsPerAccount = 'L-5E225387', + TransactionsPerSecondPerAccountForTheAmazonRekognitionCustomLabelsOperationListDatasetLabels = 'L-108100B3', + AmazonRekognitionStreamingVideoEventsStreamProcessorsPerAccountThatCanSimultaneouslyExist = 'L-01C8D885', + TransactionsPerSecondPerAccountForTheAmazonRekognitionImageOperationSearchFaces = 'L-99829151', + TransactionsPerSecondPerAccountForTheAmazonRekognitionOperationCreateUser = 'L-9A87C986', + TransactionsPerSecondPerAccountForTheAmazonRekognitionOperationSearchUsersByImage = 'L-D319BBAF', + ConcurrentAmazonRekognitionMediaAnalysisJobsPerAccount = 'L-22FA69BA', + TransactionsPerSecondPerAccountForTheAmazonRekognitionVideoStoredVideoGetOperationGetCelebrityRecognition = 'L-A144FAD3', + TransactionsPerSecondPerAccountForTheAmazonRekognitionOperationSearchUsers = 'L-532A3DAC', + TransactionsPerSecondPerAccountForTheAmazonRekognitionVideoStoredVideoStartOperationStartTextDetection = 'L-90C845BC', + TransactionsPerSecondPerAccountForTheAmazonRekognitionOperationDisassociateFaces = 'L-D56ABB32', + TransactionsPerSecondPerAccountForTheAmazonRekognitionStreamingVideoEventsOperationUpdateStreamProcessor = 'L-0FB781AE', + TransactionsPerSecondPerAccountForTheAmazonRekognitionCustomLabelsOperationDescribeDataset = 'L-EF2DFA3A', + TransactionsPerSecondPerAccountForTheAmazonRekognitionVideoStoredVideoGetOperationGetSegmentDetection = 'L-F54C1CEA', + TransactionsPerSecondPerAccountForTheAmazonRekognitionVideoStoredVideoGetOperationGetTextDetection = 'L-5C10FBD9', + TransactionsPerSecondPerAccountForTheAmazonRekognitionOperationUntagResource = 'L-BC04C31B', + TransactionsPerSecondPerAccountForTheAmazonRekognitionVideoStoredVideoStartOperationStartContentModeration = 'L-E082B236', + MaximumNumberOfImagesPerAmazonRekognitionMediaAnalysisJob = 'L-B82310D8', + TransactionsPerSecondPerAccountForTheAmazonRekognitionCustomLabelsOperationCreateDataset = 'L-39854D9A', + TransactionsPerSecondPerAccountForTheAmazonRekognitionStreamingVideoEventsOperationCreateStreamProcessor = 'L-D6034D02', + AmazonRekognitionStreamingVideoEventsFaceSearchStreamProcessorsPerAccountThatCanBeProcessedConcurrently = 'L-8D9029A2', + MaximumNumberOfImagesPerAmazonRekognitionCustomLabelsClassificationTrainingDataset = 'L-96D6749B', + AmazonRekognitionStreamingVideoEventsFaceSearchStreamProcessorsPerAmazonKinesisDataOutputStream = 'L-70336415', + TransactionsPerSecondPerAccountForTheAmazonRekognitionCustomLabelsOperationDeleteProjectPolicy = 'L-AA6AE486', + TransactionsPerSecondPerAccountForTheAmazonRekognitionStreamingVideoEventsOperationDescribeStreamProcessor = 'L-82C6694D', + TransactionsPerSecondPerAccountForIndividualAmazonRekognitionCustomLabelsDataPlaneOperationDetectCustomLabels = 'L-EA71C84A', + TransactionsPerSecondPerAccountForTheAmazonRekognitionImageOperationDetectFaces = 'L-A5121FD7', + TransactionsPerSecondPerAccountForTheAmazonRekognitionVideoStoredVideoStartOperationStartLabelDetection = 'L-FBD555BC', + ConcurrentAmazonRekognitionVideoStoredVideoJobsPerAccount = 'L-A6079699', + TransactionsPerSecondPerAccountForTheAmazonRekognitionOperationAssociateFaces = 'L-DBC0DD5B', + TransactionsPerSecondPerAccountForTheAmazonRekognitionFaceLivenessOperationCreateFaceLivenessSession = 'L-8E3BC2B4', + TransactionsPerSecondPerAccountForTheAmazonRekognitionCustomLabelsOperationDescribeProjects = 'L-06ACBDE8', + TransactionsPerSecondPerAccountForTheAmazonRekognitionCustomLabelsOperationPutProjectPolicy = 'L-A958BCFA', + TransactionsPerSecondPerAccountForTheAmazonRekognitionVideoStoredVideoGetOperationGetContentModeration = 'L-A33540CC', + TransactionsPerSecondPerAccountForTheAmazonRekognitionCustomLabelsOperationCopyProjectVersion = 'L-C8E3347A', + TransactionsPerSecondPerAccountForTheAmazonRekognitionImageOperationDeleteCollection = 'L-5346A13A', + TransactionsPerSecondPerAccountForTheAmazonRekognitionImageOperationDescribeCollection = 'L-6FDFFAF5', + TransactionsPerSecondPerAccountForTheAmazonRekognitionOperationStartMediaAnalysisJob = 'L-832B35BA', + TransactionsPerSecondPerAccountForTheAmazonRekognitionCustomLabelsOperationStopProjectVersion = 'L-9802772B', + TransactionsPerSecondPerAccountForTheAmazonRekognitionVideoStoredVideoStartOperationStartCelebrityRecognition = 'L-08B7635A', + TransactionsPerSecondPerAccountForTheAmazonRekognitionVideoStoredVideoGetOperationGetFaceSearch = 'L-3B051C64', + TransactionsPerSecondPerAccountForTheAmazonRekognitionVideoStoredVideoGetOperationGetLabelDetection = 'L-5EAC8E57', + TransactionsPerSecondPerAccountForTheAmazonRekognitionImageOperationIndexFaces = 'L-7C13EBAD', + TransactionsPerSecondPerAccountForTheAmazonRekognitionOperationListUsers = 'L-BF8F67AA', + TransactionsPerSecondPerAccountForTheAmazonRekognitionImageOperationGetCelebrityInfo = 'L-973FFF99', + MaximumInferenceUnitsPerRunningAmazonRekognitionCustomLabelsModel = 'L-4FA65ECB', + TransactionsPerSecondPerAccountForTheAmazonRekognitionCustomLabelsOperationCreateProject = 'L-AB95BCCD', + AmazonRekognitionStreamingVideoEventsStreamProcessorsPerAmazonKinesisVideoInputStream = 'L-3269D948', + TransactionsPerSecondPerAccountForTheAmazonRekognitionImageOperationCreateCollection = 'L-CE977716', + TransactionsPerSecondPerAccountForTheAmazonRekognitionCustomLabelsOperationDeleteProjectVersion = 'L-D66335E5', + MaximumNumberOfImagesPerAmazonRekognitionCustomLabelsClassificationTestDataset = 'L-CCFEF1AD', + MaximumNumberOfImagesPerAmazonRekognitionCustomLabelsDetectionTestDataset = 'L-7E97BCDC', + TransactionsPerSecondPerAccountForTheAmazonRekognitionOperationGetMediaAnalysisJob = 'L-EEF61D56', + TransactionsPerSecondPerAccountForTheAmazonRekognitionStreamingVideoEventsOperationStopStreamProcessor = 'L-85890340', + TransactionsPerSecondPerAccountForTheAmazonRekognitionCustomLabelsOperationDeleteDataset = 'L-F72BEA0D', + ConcurrentAmazonRekognitionCustomLabelsModelCopyJobsPerAccount = 'L-B3EE7891', + TransactionsPerSecondPerAccountForTheAmazonRekognitionStreamingVideoEventsOperationStartStreamProcessor = 'L-71793F35', + MaximumNumberOfImagesPerAmazonRekognitionCustomLabelsDetectionTrainingDataset = 'L-D8895012', + AmazonRekognitionCustomLabelsProjectsPerAccount = 'L-14D0BC19', + TransactionsPerSecondPerAccountForTheAmazonRekognitionVideoStoredVideoStartOperationStartFaceDetection = 'L-AA48F869', + TransactionsPerSecondPerAccountForTheAmazonRekognitionImageOperationSearchFacesByImage = 'L-43CBEB68', + AmazonRekognitionCustomLabelsModelsPerProject = 'L-9CF05323', + TransactionsPerSecondPerAccountForTheAmazonRekognitionImageOperationCompareFaces = 'L-73A341CE', + TransactionsPerSecondPerAccountForTheAmazonRekognitionCustomLabelsOperationCreateProjectVersion = 'L-03F18989', + TransactionsPerSecondPerAccountForTheAmazonRekognitionCustomLabelsOperationDistributeDatasetEntries = 'L-AD2642BA', + TransactionsPerSecondPerAccountForTheAmazonRekognitionImageOperationDetectLabels = 'L-E29B542B', + TransactionsPerSecondPerAccountForTheAmazonRekognitionStreamingVideoEventsOperationDeleteStreamProcessor = 'L-66AB9558', + ConcurrentAmazonRekognitionFaceLivenessSessionsPerAccount = 'L-26415FBF', + TransactionsPerSecondPerAccountForTheAmazonRekognitionFaceLivenessOperationStartFaceLivenessSession = 'L-2FC24677', +} +export enum AwsResilienceHubQuota { + NumberOfResiliencyPolicies = 'L-F9AC239A', + NumberOfApplications = 'L-CBE304D4', + NumberOfResourcesPerApplication = 'L-5EC6916A', + NumberOfRecommendationTemplatesPerApplicationPerMonth = 'L-37EF5CB4', + NumberOfTerraformStateFilesToImport = 'L-CEF638A1', + TerraformStateFileMaximumSize = 'L-D41E7350', + NumberOfNamespacesToImportForAnEksCluster = 'L-6BE17D5B', + NumberOfApplicationComponentsPerApplication = 'L-0076B5C6', + NumberOfAwsCloudFormationStacksToImport = 'L-3D296B58', + NumberOfAssessmentsPerApplicationPerMonth = 'L-BF1D24DC', + NumberOfEksClustersToImport = 'L-013E1BB6', + NumberOfConcurrentAssessmentsPerApplication = 'L-0AD966B7', + TemplateSizeInBytes = 'L-CB78A3C3', + NumberOfConcurrentRecommendationTemplatesPerAccount = 'L-CB12CFEB', + RetentionPeriodOfPastRecommendationTemplatesInDays = 'L-63BA9671', + RetentionPeriodOfPastAssessmentsRecommendationsInDays = 'L-05336C5D', + NumberOfConcurrentRecommendationTemplatesPerApplication = 'L-64AA3F12', + NumberOfApplicationComponentsPerResource = 'L-3DCDC079', + NumberOfConcurrentAssessmentsPerAccount = 'L-BD955A74', +} +export enum AwsResourceExplorerQuota { + NonAggregatorRegionSearchMonthlyQuota = 'L-C5E31461', + AggregatorRegionSearchMonthlyQuota = 'L-A28429E9', + SearchTpsQuota = 'L-0C73063D', + Views = 'L-AE5C2578', +} +export enum AwsResourceGroupsQuota { + ResourceGroupsPerAccount = 'L-2BAA18A0', +} +export enum AwsRoboMakerQuota { + ConcurrentSimulationJobs = 'L-FE0C173F', + WorldTemplatesPerAccount = 'L-C2C8236B', + Robots = 'L-40FACCBF', + ConcurrentDeploymentJobs = 'L-15E423AD', + SimulationApplications = 'L-D6554FB1', + RobotApplications = 'L-E5D0EA7D', + SimulationJobCreationRatePerMinute = 'L-04ECBB71', + VersionsPerRobotApplication = 'L-AE5043DD', + BatchTimeout = 'L-0DED0FF4', + Fleets = 'L-19B1F5F2', + SimulationJobRequestsPerBatch = 'L-949954FD', + WorldsPerGenerationJob = 'L-335D1CF0', + ConcurrentWorldGenerationJobs = 'L-7651BB34', + MinimumSimulationDuration = 'L-CEB47779', + SourceSize = 'L-3CD5069F', + SimulationDuration = 'L-7E2BA58F', + ConcurrentSimulationJobBatches = 'L-6CFB8C09', + GpuSimulationJobCreationRatePerMinute = 'L-99FBC089', + WorldsPerExportJob = 'L-D5AF2EE5', + VersionsPerSimulationApplication = 'L-4D288B5C', + ConcurrentGpuSimulationJobs = 'L-61591119', + MinimumBatchTimeout = 'L-925F020F', + ConcurrentWorldExportJobs = 'L-B47404F4', + RobotsPerFleet = 'L-275E9052', +} +export enum IamRolesAnywhereQuota { + TrustAnchors = 'L-AB49EEA7', + CombinedRateOfSubjectRequests = 'L-1A26F220', + CombinedRateOfCrlRequests = 'L-0017E049', + CombinedRateOfTaggingRequests = 'L-BCE17F1C', + RateOfCreateSessionRequests = 'L-A9D9612A', + CrLsPerTrustAnchor = 'L-19368711', + CombinedRateOfTrustAnchorRequests = 'L-E7B077D9', + Profiles = 'L-950ED79F', + CertificatesPerTrustAnchor = 'L-471D7A75', + CombinedRateOfProfileRequests = 'L-F8680437', +} +export enum AmazonRoute53Quota { + DomainCountLimit = 'L-F767CB15', + TrafficFlowPolicies = 'L-FC688E7C', + HostedZones = 'L-4EA4796A', + HealthChecks = 'L-ACB674F3', + TrafficFlowPolicyRecords = 'L-628D5A56', + ReusableDelegationSets = 'L-A72C7724', + ChildHealthChecksThatACalculatedHealthCheckCanMonitor = 'L-00F894B8', + RecordsPerHostedZone = 'L-E209CC9F', + CidrBlocksPerCollection = 'L-945D15E5', + CidrCollections = 'L-AD61772F', + HostedZonesThatCanUseTheSameReusableDelegationSet = 'L-FF06D527', + AmazonVpCsThatYouCanAssociateWithAPrivateHostedZone = 'L-84B40094', +} +export enum Route53ResolverQuota { + MaximumNumberOfResolverEndpointsPerAwsRegion = 'L-4A669CC0', + AssociationsBetweenResolverRulesAndVpCsPerAwsRegion = 'L-94E19253', + RulesInADnsFirewallRuleGroup = 'L-F763F4D9', + DomainsPerAccount = 'L-740A4B31', + IpAddressesPerResolverEndpoint = 'L-D2FE9758', + DnsFirewallRulesGroupsPerRegion = 'L-02CC8B74', + TargetIpAddressesPerResolverRule = 'L-D74B6237', + DomainsInAFileImportedFromS3 = 'L-1B2BDF0A', + ResolverRulesPerAwsRegion = 'L-51D8A1FB', + DomainListsPerAccount = 'L-9FA3C0A4', + DnsFirewallRuleGroupAssociationsPerVpc = 'L-15219E1D', +} +export enum AmazonCloudWatchRumQuota { + RumEventsPerSecondPerAwsAccount = 'L-35851224', + RumAppMonitors = 'L-3FB7EA17', +} +export enum AmazonSimpleStorageServiceAmazonS3Quota { + EventNotifications = 'L-3E24E5F9', + S3GlacierRetrievalRequestRatePerSecond = 'L-1923B91D', + ObjectSizeConsoleUpload = 'L-9CD4D118', + Parts = 'L-DEBF781C', + DirectoryBuckets = 'L-775A314D', + S3GlacierNumberOfRandomRestoreRequests = 'L-BB883139', + GeneralPurposeBuckets = 'L-DC2B2D3D', + MultiRegionAccessPointRegions = 'L-2431D3AF', + MinimumPartSize = 'L-CD1053C4', + ReplicationRules = 'L-B461D596', + BucketTags = 'L-55BA2C6C', + MaximumPartSize = 'L-2A85EAC1', + BucketPolicy = 'L-748707F3', + ReplicationDestinations = 'L-1A9B467F', + MultiRegionAccessPoints = 'L-881EA1F4', + S3GlacierProvisionedCapacityUnits = 'L-DEDCCF9D', + ReplicationTransferRate = 'L-349AD9CA', + ObjectTags = 'L-6AF88990', + AccessPoints = 'L-FAABEEBA', + LifecycleRules = 'L-146D5F0C', + ObjectSize = 'L-89BABEE8', +} +export enum AwsS3OutpostsQuota { + Buckets = 'L-CBA62F6C', + AccessPoints = 'L-C39AA790', +} +export enum AmazonSageMakerQuota { + MlC4XlargeForSpotTrainingJobUsage = 'L-9BA5373F', + StudioCodeEditorAppsRunningOnMlR54xlargeInstances = 'L-1EC048AB', + TotalNumberOfTrialsASingleTrialComponentCanBeAssociatedTo = 'L-67A4559B', + MlC7i12xlargeForEndpointUsage = 'L-D98C40FA', + MlP2XlargeForTrainingWarmPoolUsage = 'L-6C5BAAA9', + MlP28xlargeForNotebookInstanceUsage = 'L-AC3A6D59', + StudioKernelGatewayAppsRunningOnMlM5d12xlargeInstance = 'L-BCDEC7B7', + MlC524xlargeForEndpointUsage = 'L-B5714749', + MlC4XlargeForTrainingJobUsage = 'L-85D4BAF3', + MlC48xlargeForNotebookInstanceUsage = 'L-D0B132AA', + MlTrn1n32xlargeForTrainingJobUsage = 'L-BFB9CF17', + MlM5dXlargeForNotebookInstanceUsage = 'L-7AA0FEE8', + MlC48xlargeForTrainingWarmPoolUsage = 'L-8B308035', + MlM52xlargeForSpotTrainingJobUsage = 'L-4A823FAB', + MlC5n9xlargeForEndpointUsage = 'L-124679C5', + MlG54xlargeForSpotTrainingJobUsage = 'L-DB4D51CF', + MlG4dn16xlargeForTrainingJobUsage = 'L-57998C77', + StudioCodeEditorAppsRunningOnMlC5LargeInstances = 'L-C623FF97', + StudioKernelGatewayAppsRunningOnMlC5XlargeInstance = 'L-F2F8BB60', + MlC52xlargeForTrainingJobUsage = 'L-49679826', + MlG4dn2xlargeForTrainingWarmPoolUsage = 'L-C35F807B', + StudioJupyterLabAppsRunningOnMlG516xlargeInstances = 'L-1B49FD35', + MlC6gdLargeForEndpointUsage = 'L-C10DAD58', + MlM5XlargeForTrainingJobUsage = 'L-CCE2AFA6', + MlR5dn24xlargeForEndpointUsage = 'L-FF424265', + RateOfListEndpointsRequests = 'L-35C54F5F', + MlG4dn12xlargeForTransformJobUsage = 'L-BA5C7A54', + StudioCodeEditorAppsRunningOnMlC512xlargeInstances = 'L-0A241A0D', + NumberOfInstancesAcrossAllSpotTrainingJobs = 'L-93958082', + MlC5n9xlargeForSpotTrainingJobUsage = 'L-D144443B', + MlM6g8xlargeForEndpointUsage = 'L-DE9841A6', + StudioJupyterLabAppsRunningOnMlP3dn24xlargeInstances = 'L-CC49F990', + MlG52xlargeForTrainingWarmPoolUsage = 'L-822C5A39', + TotalNumberOfTrialComponentsAllowedFromASageMakerContextExcludingThoseAutomaticallyCreatedBySageMaker = 'L-D62610A9', + MlG516xlargeForSpotTrainingJobUsage = 'L-E3DCB664', + MlC518xlargeForEndpointUsage = 'L-409A03CD', + TotalEbsVolumeSizeInGbAcrossAllStudioSpaces = 'L-A37B67B0', + MlT2XlargeForEndpointUsage = 'L-B82FDF78', + RateOfStopNotebookInstanceRequests = 'L-01341C09', + RSessionGatewayAppsRunningOnMlT3MicroInstance = 'L-E127AD95', + MlM516xlargeForEndpointUsage = 'L-54462FCC', + StudioKernelGatewayAppsRunningOnMlR524xlargeInstance = 'L-7FFAF4CB', + TimeAtWhichPipelineExecutionsTimeOut = 'L-A24D873D', + MlC44xlargeForEndpointUsage = 'L-605A110B', + MlTrn12xlargeForTrainingWarmPoolUsage = 'L-AA6A4B7A', + StudioJupyterLabAppsRunningOnMlG52xlargeInstances = 'L-F73C7DB9', + StudioJupyterLabAppsRunningOnMlG4dn2xlargeInstances = 'L-138F29A9', + MlM44xlargeForNotebookInstanceUsage = 'L-BE78F29C', + StudioCodeEditorAppsRunningOnMlR58xlargeInstances = 'L-58132C71', + StudioKernelGatewayAppsRunningOnMlM5d4xlargeInstance = 'L-9F3B1F91', + MlP28xlargeForEndpointUsage = 'L-BD0BDFDA', + MlC54xlargeForNotebookInstanceUsage = 'L-96B75525', + MlP2XlargeForTrainingJobUsage = 'L-5585E645', + MlC48xlargeForTransformJobUsage = 'L-334DC079', + StudioKernelGatewayAppsRunningOnMlR512xlargeInstance = 'L-EF2BF7DC', + MlG4dnXlargeForTransformJobUsage = 'L-4C5C5CA8', + MlM416xlargeForTrainingWarmPoolUsage = 'L-F4F08D88', + MlC7iLargeForEndpointUsage = 'L-9FCA2A26', + MlC7i2xlargeForEndpointUsage = 'L-41DD34AF', + StudioJupyterLabAppsRunningOnMlM512xlargeInstances = 'L-0E2A8BBF', + StudioKernelGatewayAppsRunningOnMlM54xlargeInstance = 'L-0132CA88', + MlM512xlargeForClusterUsage = 'L-E2A0AC0F', + MlM5dLargeForEndpointUsage = 'L-98F45D48', + StudioCodeEditorAppsRunningOnMlG4dn8xlargeInstances = 'L-FE7F1F85', + MaximumNumberOfDeploymentPlansThatCanBeSimultaneouslyCreated = 'L-A9A47E0F', + MlC7iXlargeForEndpointUsage = 'L-9A5FC4CF', + StudioKernelGatewayAppsRunningOnMlG4dn2xlargeInstance = 'L-E5775070', + MaximumNumberOfA2IHumanTaskUIs = 'L-3036C9CA', + RSessionGatewayAppsRunningOnMlT3XlargeInstance = 'L-D7932DDD', + MlC6gd4xlargeForEndpointUsage = 'L-C4B5BAD2', + MlM6g12xlargeForEndpointUsage = 'L-9D10CA98', + MaximumNumberOfSageMakerModelPackageAllowedPerAccount = 'L-9A82FBCA', + MlC44xlargeForTrainingJobUsage = 'L-505634D0', + MlTrn132xlargeForClusterUsage = 'L-6865522E', + MlTrn1n32xlargeForClusterUsage = 'L-82D4B920', + MaximumNumberOfStepsAllowedPerPipeline = 'L-729F2471', + MlG512xlargeForTrainingJobUsage = 'L-C6383286', + MlM5LargeForSpotTrainingJobUsage = 'L-29688C85', + MlT2LargeForNotebookInstanceUsage = 'L-94C3A7A1', + MlM42xlargeForEndpointUsage = 'L-6198DF25', + StudioCodeEditorAppsRunningOnMlR524xlargeInstances = 'L-90ED9514', + StudioCodeEditorAppsRunningOnMlT32xlargeInstances = 'L-E5FD58AB', + MlP3dn24xlargeForTrainingJobUsage = 'L-8DCA2E97', + MlM5nLargeForEndpointUsage = 'L-AD7FD6A6', + MlM5d24xlargeForNotebookInstanceUsage = 'L-956703D9', + MlM5n8xlargeForEndpointUsage = 'L-1F61C5BC', + MlR6g2xlargeForEndpointUsage = 'L-862299A2', + RateOfDescribeModelRequests = 'L-7FADB696', + MlT3LargeForNotebookInstanceUsage = 'L-8E454C05', + StudioKernelGatewayAppsRunningOnMlG4dn4xlargeInstance = 'L-0E846ECD', + MlC52xlargeForNotebookInstanceUsage = 'L-5F356922', + MlP32xlargeForSpotTrainingJobUsage = 'L-2D4C6493', + MlC6gd2xlargeForEndpointUsage = 'L-FD9E9507', + MlR5n16xlargeForEndpointUsage = 'L-C14C7B0C', + RateOfDeleteNotebookInstanceRequests = 'L-E20CA2A9', + MlM416xlargeForTransformJobUsage = 'L-7FEDBA4C', + RSessionGatewayAppsRunningOnMlM52xlargeInstance = 'L-09249843', + MlC42xlargeForEndpointUsage = 'L-54106F23', + RateOfCreateStudioLifecycleConfigRequests = 'L-06E121F0', + MlP216xlargeForNotebookInstanceUsage = 'L-39F2D553', + StudioJupyterLabAppsRunningOnMlR516xlargeInstances = 'L-15ECE899', + StudioCodeEditorAppsRunningOnMlG4dn12xlargeInstances = 'L-9694914A', + MlG4dn16xlargeForEndpointUsage = 'L-8679F6F3', + StudioJupyterLabAppsRunningOnMlG4dn4xlargeInstances = 'L-0DB30DD8', + StudioJupyterLabAppsRunningOnMlG512xlargeInstances = 'L-8D2ED7BF', + MlP216xlargeForTrainingJobUsage = 'L-7FC32A75', + LongestRunTimeForAProcessingJob = 'L-EA47BDD3', + MlC5nXlargeForTrainingJobUsage = 'L-04CD765C', + MlM5XlargeForEndpointUsage = 'L-2F737F8D', + MlT32xlargeForNotebookInstanceUsage = 'L-FB715320', + StudioJupyterLabAppsRunningOnMlM54xlargeInstances = 'L-2CA31BFA', + MlP548xlargeForSpotTrainingJobUsage = 'L-82733FAD', + StudioJupyterLabAppsRunningOnMlM5dXlargeInstances = 'L-9CE6464D', + MlR5dn4xlargeForEndpointUsage = 'L-DDDCDBAA', + MlM5n2xlargeForEndpointUsage = 'L-F8B07B25', + MlR5d24xlargeForEndpointUsage = 'L-D71E726A', + RStudioServerProAppsRunningOnMlC59xlargeInstances = 'L-D9E59670', + RateOfUpdateMonitoringAlertRequests = 'L-1A647398', + MaximumNumberOfHyperParameterTuningJobsThatCanRunAtOnceInParallel = 'L-9D782CC7', + MlT32xlargeForProcessingJobUsage = 'L-1E2072C0', + MlM7i4xlargeForEndpointUsage = 'L-80F387A8', + MlG58xlargeForSpotTrainingJobUsage = 'L-DD18D5D6', + RateOfCreateModelRequests = 'L-BA5EF415', + RSessionGatewayAppsRunningOnMlC59xlargeInstance = 'L-D205D3F0', + StudioCodeEditorAppsRunningOnMlM52xlargeInstances = 'L-3D2A1F33', + MlM524xlargeForTrainingWarmPoolUsage = 'L-B21D8B36', + RateOfListMonitoringAlertsRequests = 'L-4E8CFCC7', + MlM52xlargeForEndpointUsage = 'L-C88C8F13', + MlP316xlargeForEndpointUsage = 'L-6A85BC13', + RSessionGatewayAppsRunningOnMlC512xlargeInstance = 'L-21962CDA', + MlM524xlargeForTrainingJobUsage = 'L-56C564CA', + MlR7i12xlargeForEndpointUsage = 'L-F43F60C3', + StudioCodeEditorAppsRunningOnMlG548xlargeInstances = 'L-AA7135D4', + StudioCodeEditorAppsRunningOnMlG4dn16xlargeInstances = 'L-0FEC7BB1', + MlG516xlargeForClusterUsage = 'L-86822EDB', + NumberOfWorkteams = 'L-1BAEE5A7', + MlTrn12xlargeForEndpointUsage = 'L-5C911603', + MlG548xlargeForEndpointUsage = 'L-0100B823', + RSessionGatewayAppsRunningOnMlC52xlargeInstance = 'L-8B9D0385', + MlP316xlargeForSpotTrainingJobUsage = 'L-D58A90BB', + MlT3XlargeForNotebookInstanceUsage = 'L-E5884D25', + RSessionGatewayAppsRunningOnMlM5d24xlargeInstance = 'L-00DAC655', + MlC7i8xlargeForEndpointUsage = 'L-DD693DF2', + MlM58xlargeForClusterUsage = 'L-5C47EA70', + MlM7i8xlargeForEndpointUsage = 'L-AE505887', + MlC4XlargeForNotebookInstanceUsage = 'L-786E9B47', + MlM54xlargeForNotebookInstanceUsage = 'L-862C1E14', + StudioKernelGatewayAppsRunningOnMlM5d8xlargeInstance = 'L-019DC79D', + MlR512xlargeForNotebookInstanceUsage = 'L-5869E902', + MaximumNumberOfTrainingJobsThatEachHyperparameterTuningJobWithRandomSearchStrategyCanCreate = 'L-52DB9D33', + MlC6gn2xlargeForEndpointUsage = 'L-5F238DF4', + MlM4XlargeForTransformJobUsage = 'L-DAB6AA41', + RSessionGatewayAppsRunningOnMlP4d24xlargeInstance = 'L-DCCEDB7D', + StudioCodeEditorAppsRunningOnMlM5d8xlargeInstances = 'L-02134873', + MlM516xlargeForClusterUsage = 'L-048C491E', + MlC54xlargeForTrainingWarmPoolUsage = 'L-7BDD9EA3', + MlM5dn8xlargeForEndpointUsage = 'L-178948BA', + MlC5n2xlargeForTrainingJobUsage = 'L-D04B88E2', + MlC42xlargeForTransformJobUsage = 'L-589B0DBC', + MlG524xlargeForTrainingWarmPoolUsage = 'L-6F46EF71', + MlM5dnLargeForEndpointUsage = 'L-7597F90B', + StudioCodeEditorAppsRunningOnMlM512xlargeInstances = 'L-72C89816', + MlC5n18xlargeForEndpointUsage = 'L-14AB3D09', + MaximumNumberOfInstancesPerSpotTrainingJob = 'L-DB62C864', + MlM6gdXlargeForEndpointUsage = 'L-4F185009', + RateOfCreateTransformJobRequests = 'L-9C2FFCB7', + MlEia1MediumForEndpointUsage = 'L-01E4E529', + MlM44xlargeForTrainingWarmPoolUsage = 'L-CF81ED81', + MlC48xlargeForEndpointUsage = 'L-DF052B7B', + StudioKernelGatewayAppsRunningOnMlM516xlargeInstance = 'L-7E95878B', + RSessionGatewayAppsRunningOnMlM512xlargeInstance = 'L-4FC1E99C', + MlR52xlargeForEndpointUsage = 'L-AA5E2462', + MlM54xlargeForTransformJobUsage = 'L-3E1C9273', + StudioCodeEditorAppsRunningOnMlC5XlargeInstances = 'L-20DF4E8E', + RateOfCreateEndpointConfigRequests = 'L-C48C555A', + MlC7i48xlargeForEndpointUsage = 'L-176880B1', + MlP548xlargeForClusterUsage = 'L-8762A75F', + MlC5d18xlargeForNotebookInstanceUsage = 'L-6C73443F', + MlM44xlargeForTrainingJobUsage = 'L-E60A61DF', + MlG4dn12xlargeForEndpointUsage = 'L-07BEB181', + MlC7g8xlargeForEndpointUsage = 'L-52008469', + RSessionGatewayAppsRunningOnMlP32xlargeInstance = 'L-ADBE66E5', + MaximumNumberOfParallelCompilationJobs = 'L-F0067944', + StudioJupyterLabAppsRunningOnMlG4dn8xlargeInstances = 'L-F59A72DA', + StudioKernelGatewayAppsRunningOnMlG4dn16xlargeInstance = 'L-D9B45548', + MlM5LargeForTrainingWarmPoolUsage = 'L-2DD73636', + MlC54xlargeForProcessingJobUsage = 'L-EFB2F063', + MlC48xlargeForSpotTrainingJobUsage = 'L-C5B2C408', + MlT3MediumForNotebookInstanceUsage = 'L-E17566B7', + MlM4XlargeForNotebookInstanceUsage = 'L-E1249695', + StudioCodeEditorAppsRunningOnMlP38xlargeInstances = 'L-C4557679', + MlG4dn12xlargeForClusterUsage = 'L-ED8F1994', + MaximumNumberOfSageMakerImageImagesAllowedPerAccount = 'L-DDDC1D15', + MlP38xlargeForProcessingJobUsage = 'L-23EDF20C', + CanvasAppsRunningOnSystemInstances = 'L-65D1CFE4', + StudioCodeEditorAppsRunningOnMlT3LargeInstances = 'L-656A17FA', + MlM5XlargeForTransformJobUsage = 'L-7939E4EC', + MlP4de24xlargeForEndpointUsage = 'L-456B4C5F', + MlP28xlargeForProcessingJobUsage = 'L-CA14F686', + MlInf16xlargeForNotebookInstanceUsage = 'L-FF2BFCDC', + MlR512xlargeForEndpointUsage = 'L-23FF30BF', + MaximumNumberOfInstancesPerEndpoint = 'L-ED8DEE9B', + MlC59xlargeForSpotTrainingJobUsage = 'L-A2512F8F', + RSessionGatewayAppsRunningOnMlR54xlargeInstance = 'L-005C1A21', + MlP548xlargeForTrainingJobUsage = 'L-82E1C851', + MlM52xlargeForNotebookInstanceUsage = 'L-95E39457', + RSessionGatewayAppsRunningOnMlR524xlargeInstance = 'L-D2CAE1E9', + MlC5XlargeForSpotTrainingJobUsage = 'L-6FA0D387', + MlP28xlargeForSpotTrainingJobUsage = 'L-ACF1D2B2', + MlC6gd16xlargeForEndpointUsage = 'L-018036DB', + MlM4XlargeForSpotTrainingJobUsage = 'L-2ECAA15F', + MaximumNumberOfPipelinesAllowedPerAccount = 'L-E8EADE50', + RSessionGatewayAppsRunningOnMlC5XlargeInstance = 'L-F3F4F82A', + MlT3LargeForClusterUsage = 'L-7B131A59', + RSessionGatewayAppsRunningOnMlR5LargeInstance = 'L-FEEC5811', + MlG512xlargeForNotebookInstanceUsage = 'L-EC374A06', + RSessionGatewayAppsRunningOnMlR516xlargeInstance = 'L-2B2789AA', + MaximumNumberOfGroundTruthStreamingLabelingJobs = 'L-C3E706F6', + StudioJupyterLabAppsRunningOnMlT3XlargeInstances = 'L-61F9C762', + MlG58xlargeForClusterUsage = 'L-1619F5B7', + MlM7i12xlargeForEndpointUsage = 'L-0AFA3D20', + MlC5n9xlargeForTrainingJobUsage = 'L-D0327E29', + MlG4dn4xlargeForTrainingJobUsage = 'L-2908B1E9', + MlG4dn8xlargeForClusterUsage = 'L-96866D65', + MlC6g2xlargeForEndpointUsage = 'L-B87A968D', + StudioKernelGatewayAppsRunningOnMlC54xlargeInstance = 'L-6C5791AF', + MaximumNumberInstancesAllowedPerSageMakerHyperPodCluster = 'L-2CE978FC', + MlG4dnXlargeForSpotTrainingJobUsage = 'L-944F78BB', + MlM6gd16xlargeForEndpointUsage = 'L-B46EE84C', + StudioKernelGatewayAppsRunningOnMlM5d16xlargeInstance = 'L-4F2BEC71', + MlG4dn8xlargeForNotebookInstanceUsage = 'L-C2F8103D', + MlP28xlargeForTrainingJobUsage = 'L-33BA8B57', + MlG4dn8xlargeForProcessingJobUsage = 'L-9C72BEE2', + MlC4LargeForEndpointUsage = 'L-6DF60D19', + MlC52xlargeForClusterUsage = 'L-539D704C', + MlTrn1n32xlargeForEndpointUsage = 'L-E3A0825E', + MlM44xlargeForTransformJobUsage = 'L-5F5255E9', + MlC5nLargeForEndpointUsage = 'L-0F4F99A1', + MlC5n2xlargeForClusterUsage = 'L-7064D1BA', + MlG4dn4xlargeForTransformJobUsage = 'L-EAB0CBAB', + RSessionGatewayAppsRunningOnMlP3dn24xlargeInstance = 'L-94B31A5D', + MlR6gdLargeForEndpointUsage = 'L-7432A529', + MaximumNumberOfSageMakerModelPackageGroupsAllowedPerAccount = 'L-BC8DC54C', + StudioJupyterLabAppsRunningOnMlP38xlargeInstances = 'L-D7D29FB6', + MlR6gd12xlargeForEndpointUsage = 'L-177D4E91', + StudioJupyterLabAppsRunningOnMlM5d8xlargeInstances = 'L-3EF45BE2', + MlG5XlargeForSpotTrainingJobUsage = 'L-DE07CBDF', + MlM54xlargeForSpotTrainingJobUsage = 'L-2A6ACFF7', + RSessionGatewayAppsRunningOnMlP38xlargeInstance = 'L-73887D5F', + MlG512xlargeForSpotTrainingJobUsage = 'L-03E19172', + MlC52xlargeForEndpointUsage = 'L-E091038E', + RateOfDeleteModelRequests = 'L-E2274DDA', + RateOfDescribeTransformJobRequests = 'L-5FDD3816', + StudioCodeEditorAppsRunningOnMlP316xlargeInstances = 'L-09A41608', + MlR6gXlargeForEndpointUsage = 'L-B8A3B4CE', + MlP3dn24xlargeForNotebookInstanceUsage = 'L-2E21A1FA', + MlR52xlargeForNotebookInstanceUsage = 'L-8CB23490', + StudioKernelGatewayAppsRunningOnMlC518xlargeInstance = 'L-A4519BF1', + MlP216xlargeForSpotTrainingJobUsage = 'L-2E99C6D1', + MlM524xlargeForClusterUsage = 'L-B232DF69', + MlG5XlargeForEndpointUsage = 'L-1928E07B', + MaximumNumberOfConcurrentPipelineExecutionsAllowedPerAccount = 'L-F88776CD', + MlR6gLargeForEndpointUsage = 'L-D7FE33BF', + MlC512xlargeForEndpointUsage = 'L-DD50A8E1', + MlG4dn4xlargeForSpotTrainingJobUsage = 'L-246C5638', + MlG4dn12xlargeForNotebookInstanceUsage = 'L-47461EBA', + StudioJupyterLabAppsRunningOnMlT32xlargeInstances = 'L-B039EA8F', + MlG52xlargeForNotebookInstanceUsage = 'L-19973BE2', + MlM5dn4xlargeForEndpointUsage = 'L-EC92C7B3', + MlM5n12xlargeForEndpointUsage = 'L-DEF2CD40', + MlG52xlargeForTrainingJobUsage = 'L-2D6DEB3C', + RateOfStopTransformJobRequests = 'L-9EB87FF0', + MlG4dn2xlargeForProcessingJobUsage = 'L-41C11899', + MlC6gn4xlargeForEndpointUsage = 'L-DA37C575', + MlP2XlargeForTransformJobUsage = 'L-89843D09', + MlR52xlargeForProcessingJobUsage = 'L-F0132B48', + StudioKernelGatewayAppsRunningOnMlG548xlargeInstance = 'L-94E271A3', + MlM512xlargeForTransformJobUsage = 'L-76A7309C', + StudioJupyterLabAppsRunningOnMlR5XlargeInstances = 'L-8A9BC23B', + MlP4d24xlargeForTrainingJobUsage = 'L-09B4A649', + StudioKernelGatewayAppsRunningOnMlP38xlargeInstance = 'L-D12B1AA4', + RSessionGatewayAppsRunningOnMlG4dn2xlargeInstance = 'L-7FD92B01', + MlM5nXlargeForEndpointUsage = 'L-943961F3', + MlC6gXlargeForEndpointUsage = 'L-525AAB0A', + MlM5dLargeForNotebookInstanceUsage = 'L-195A207B', + MlR54xlargeForEndpointUsage = 'L-DD362E80', + MlC42xlargeForTrainingJobUsage = 'L-C5B4EE09', + MlM4XlargeForTrainingJobUsage = 'L-A373146E', + RateOfListTransformJobsRequests = 'L-3AAF267A', + MlR6gd4xlargeForEndpointUsage = 'L-AE2F2D88', + MlInf12xlargeForEndpointUsage = 'L-495AAEE0', + StudioCodeEditorAppsRunningOnMlR512xlargeInstances = 'L-90D2ED40', + MlG548xlargeForSpotTrainingJobUsage = 'L-C87FF004', + MlR5dXlargeForEndpointUsage = 'L-37CA4776', + MlR5dn2xlargeForEndpointUsage = 'L-DDD9E4D2', + MlC6i32xlargeForEndpointUsage = 'L-769D172E', + MlC52xlargeForProcessingJobUsage = 'L-C1EBA9C5', + RateOfUpdateEndpointWeightsAndCapacitiesRequests = 'L-AD9316E0', + MlM54xlargeForClusterUsage = 'L-24520F3F', + MlC54xlargeForClusterUsage = 'L-3A6AD204', + TotalEbsVolumeSizeInGbAcrossAllNotebookInstances = 'L-E4B12EA2', + StudioJupyterLabAppsRunningOnMlP4de24xlargeInstances = 'L-F6003AEB', + StudioJupyterLabAppsRunningOnMlR52xlargeInstances = 'L-EF33F9B9', + MlM6gd4xlargeForEndpointUsage = 'L-CCA2CA42', + StudioKernelGatewayAppsRunningOnMlM5d2xlargeInstance = 'L-4A8D754D', + MlM4XlargeForTrainingWarmPoolUsage = 'L-AFEEB9EB', + StudioJupyterLabAppsRunningOnMlM5LargeInstances = 'L-3BDCD216', + MlC5nXlargeForSpotTrainingJobUsage = 'L-DD508305', + MlC54xlargeForEndpointUsage = 'L-FEF755D6', + MlM6gLargeForEndpointUsage = 'L-C1E62DF0', + MlC5d2xlargeForNotebookInstanceUsage = 'L-FF78806F', + MlC59xlargeForTrainingJobUsage = 'L-2BE095E2', + StudioCodeEditorAppsRunningOnMlG4dn2xlargeInstances = 'L-EE75DBCF', + MlC5XlargeForTransformJobUsage = 'L-09C9B23C', + MlG52xlargeForSpotTrainingJobUsage = 'L-CAEE7DB7', + MaximumNumberOfConcurrentlyRunningModelCardExportJobsAllowedPerAccount = 'L-860ED60D', + MlG4dn8xlargeForSpotTrainingJobUsage = 'L-15F329FB', + MlG4dn8xlargeForTrainingWarmPoolUsage = 'L-769E114F', + MlG4dn12xlargeForProcessingJobUsage = 'L-6C7C4F4E', + MlC6gd8xlargeForEndpointUsage = 'L-4027057F', + MlG4dn4xlargeForEndpointUsage = 'L-31522FA6', + MlC6g4xlargeForEndpointUsage = 'L-4C2FABCC', + StudioCodeEditorAppsRunningOnMlM5d12xlargeInstances = 'L-D1E4F16E', + MlM416xlargeForProcessingJobUsage = 'L-ED93A43F', + MlC5LargeForClusterUsage = 'L-B644CD97', + MlInf248xlargeForEndpointUsage = 'L-286C98BC', + RateOfListNotebookInstancesRequests = 'L-1743E120', + MlC6i16xlargeForEndpointUsage = 'L-FE72E327', + RSessionGatewayAppsRunningOnMlG4dn12xlargeInstance = 'L-5392B59D', + RSessionGatewayAppsRunningOnMlR52xlargeInstance = 'L-751BCA3E', + MlP3dn24xlargeForSpotTrainingJobUsage = 'L-477D3300', + MlP4d24xlargeForClusterUsage = 'L-47E0BC8F', + StudioJupyterLabAppsRunningOnMlM5d24xlargeInstances = 'L-EC686150', + MaximumNumberOfTrainingJobsEachHyperParameterTuningJobCanRunInParallelAtOnce = 'L-11294128', + MlM410xlargeForTrainingWarmPoolUsage = 'L-1BF9151C', + MlM44xlargeForSpotTrainingJobUsage = 'L-D7D166A0', + RSessionGatewayAppsRunningOnMlM5d12xlargeInstance = 'L-7F2FEE7C', + MlC5dLargeForEndpointUsage = 'L-919688C1', + MlG5XlargeForNotebookInstanceUsage = 'L-E8917BB7', + MlR5XlargeForEndpointUsage = 'L-BCA2C892', + MlM44xlargeForEndpointUsage = 'L-3727EAE2', + LongestRunTimeForATrainingJob = 'L-33A961FD', + MlR5d16xlargeForEndpointUsage = 'L-CC329F7E', + MlM42xlargeForNotebookInstanceUsage = 'L-CE6894AA', + StudioKernelGatewayAppsRunningOnMlTrn1n32xlargeInstances = 'L-35BBB2E3', + StudioKernelGatewayAppsRunningOnMlT3XlargeInstance = 'L-3A44AF4B', + MlM5LargeForTransformJobUsage = 'L-236AE59F', + MlM410xlargeForTrainingJobUsage = 'L-D35E48B2', + MlM5d2xlargeForNotebookInstanceUsage = 'L-6829423A', + MlG4dn2xlargeForNotebookInstanceUsage = 'L-1C2E1B03', + MlC5n4xlargeForClusterUsage = 'L-DC93118C', + MlG524xlargeForSpotTrainingJobUsage = 'L-8345B953', + MlG512xlargeForEndpointUsage = 'L-65C4BD00', + MlC518xlargeForTrainingWarmPoolUsage = 'L-C8044861', + MlG512xlargeForClusterUsage = 'L-24E5A1B2', + RSessionGatewayAppsRunningOnMlM5dXlargeInstance = 'L-A3C7A675', + TotalDomains = 'L-B683BCB0', + MlP38xlargeForTrainingJobUsage = 'L-558F1246', + MlC5n18xlargeForClusterUsage = 'L-D8A40472', + MlM5LargeForTrainingJobUsage = 'L-611FA074', + MlG4dnXlargeForTrainingJobUsage = 'L-3F53BF0F', + MlC4XlargeForTransformJobUsage = 'L-E3C0D615', + RSessionGatewayAppsRunningOnMlM524xlargeInstance = 'L-B7EB1FFD', + MlG54xlargeForTrainingWarmPoolUsage = 'L-88E48241', + MlM6gdLargeForEndpointUsage = 'L-1630284B', + MlP2XlargeForEndpointUsage = 'L-FD469689', + StudioKernelGatewayAppsRunningOnMlC59xlargeInstance = 'L-9F2E8F67', + MlM410xlargeForSpotTrainingJobUsage = 'L-C17B05C4', + MlR6g16xlargeForEndpointUsage = 'L-42EAE6FA', + StudioJupyterLabAppsRunningOnMlG4dnXlargeInstances = 'L-39F81BFB', + StudioCodeEditorAppsRunningOnMlC52xlargeInstances = 'L-D8CDAD21', + RateOfUpdateNotebookInstanceLifecycleConfigRequests = 'L-1AF0C909', + MlInf124xlargeForEndpointUsage = 'L-F971E784', + MlC518xlargeForSpotTrainingJobUsage = 'L-239B242B', + StudioKernelGatewayAppsRunningOnMlP316xlargeInstance = 'L-0DADC663', + MlM54xlargeForTrainingWarmPoolUsage = 'L-03767DF9', + MlM416xlargeForSpotTrainingJobUsage = 'L-A50827DD', + MlM52xlargeForTransformJobUsage = 'L-F5689004', + MlC59xlargeForTrainingWarmPoolUsage = 'L-ABFCF5A2', + MlC4XlargeForTrainingWarmPoolUsage = 'L-1DA286AA', + TotalNumberOfInstancesAllowedAcrossSageMakerHyperPodClusters = 'L-3308CCC7', + MlC518xlargeForTrainingJobUsage = 'L-81482A8C', + MlM54xlargeForTrainingJobUsage = 'L-AFB011B4', + MlM5n16xlargeForEndpointUsage = 'L-2B921E27', + StudioJupyterLabAppsRunningOnMlG4dn16xlargeInstances = 'L-5DB40C3B', + MlR5dn16xlargeForEndpointUsage = 'L-1DA91421', + StudioKernelGatewayAppsRunningOnMlTrn132xlargeInstances = 'L-433C561A', + TotalNumberOfExperimentsAllowedExcludingThoseAutomaticallyCreatedBySageMaker = 'L-A0C828DC', + MlM7i48xlargeForEndpointUsage = 'L-452C73A2', + MlC6g16xlargeForEndpointUsage = 'L-60986E7E', + MlG4dn4xlargeForClusterUsage = 'L-762E95F4', + StudioCodeEditorAppsRunningOnMlT3XlargeInstances = 'L-69AC3D57', + StudioKernelGatewayAppsRunningOnMlT3LargeInstance = 'L-8BD17C20', + StudioKernelGatewayAppsRunningOnMlG54xlargeInstance = 'L-DCE2AE7E', + MlG4dn4xlargeForProcessingJobUsage = 'L-B1C4D018', + MlP38xlargeForTransformJobUsage = 'L-F93088C1', + MlC54xlargeForTransformJobUsage = 'L-98742DAD', + MlP216xlargeForTrainingWarmPoolUsage = 'L-2D3D338A', + MlT2MediumForNotebookInstanceUsage = 'L-7B2FD69B', + StudioCodeEditorAppsRunningOnMlG4dnXlargeInstances = 'L-98BFB21C', + MaximumNumberOfDatasetObjectsPerLabelingJob = 'L-EF62EAFA', + RSessionGatewayAppsRunningOnMlC5LargeInstance = 'L-6958265E', + MlR6gd8xlargeForEndpointUsage = 'L-593EF138', + RSessionGatewayAppsRunningOnMlT32xlargeInstance = 'L-4755F613', + MlC5XlargeForNotebookInstanceUsage = 'L-39F5FD98', + StudioCodeEditorAppsRunningOnMlP4de24xlargeInstances = 'L-B9622553', + RSessionGatewayAppsRunningOnMlG4dnXlargeInstance = 'L-050981C0', + StudioKernelGatewayAppsRunningOnMlP4de24xlargeInstances = 'L-9C7D809E', + MlC48xlargeForProcessingJobUsage = 'L-58B96098', + RateOfStartNotebookInstanceRequests = 'L-FCF4DD1A', + StudioKernelGatewayAppsRunningOnMlG58xlargeInstance = 'L-76D497CD', + MlM6gXlargeForEndpointUsage = 'L-2D2AAC6C', + MlP38xlargeForTrainingWarmPoolUsage = 'L-5CA5BEE6', + MlR7i16xlargeForEndpointUsage = 'L-E1AF5362', + MlP316xlargeForTransformJobUsage = 'L-A0B4500D', + MlC44xlargeForNotebookInstanceUsage = 'L-27768634', + MlG4dn16xlargeForNotebookInstanceUsage = 'L-64067773', + MaximumDatasetSizeAutoMlJobCanBeRunOn = 'L-A663541C', + StudioKernelGatewayAppsRunningOnMlP4d24xlargeInstances = 'L-9760E62B', + MlG4dn2xlargeForTransformJobUsage = 'L-180A6F2D', + StudioCodeEditorAppsRunningOnMlT3MediumInstances = 'L-FCEDEAC6', + RSessionGatewayAppsRunningOnMlM58xlargeInstance = 'L-2BEE7665', + MlM5d4xlargeForNotebookInstanceUsage = 'L-EDE09F63', + RSessionGatewayAppsRunningOnMlR58xlargeInstance = 'L-F49350C0', + MlG4dnXlargeForProcessingJobUsage = 'L-2F1EB012', + RateOfInvokeEndpointRequests = 'L-612DD414', + MlC5n18xlargeForTrainingWarmPoolUsage = 'L-566A905C', + StudioCodeEditorAppsRunningOnMlM5dLargeInstances = 'L-BA8ED5F7', + MlTrn1n32xlargeForSpotTrainingJobUsage = 'L-068DB6B3', + StudioCodeEditorAppsRunningOnMlG516xlargeInstances = 'L-E3646D22', + MlC54xlargeForSpotTrainingJobUsage = 'L-36C5FA8E', + StudioJupyterLabAppsRunningOnMlM5dLargeInstances = 'L-588F9D8D', + MlC5d18xlargeForEndpointUsage = 'L-6A6E4B44', + MlP2XlargeForNotebookInstanceUsage = 'L-BBB3C62F', + MaximumNumberOfTrainingJobsThatEachHyperparameterTuningJobCanCreate = 'L-EAC49F53', + MlG516xlargeForEndpointUsage = 'L-962705EA', + StudioJupyterLabAppsRunningOnMlM5XlargeInstances = 'L-77B8159A', + MlG4dn12xlargeForTrainingJobUsage = 'L-7BD2C9FA', + MlM5d24xlargeForEndpointUsage = 'L-24B12C23', + MlR7i48xlargeForEndpointUsage = 'L-BD94420E', + MlTrn132xlargeForEndpointUsage = 'L-EA9871A7', + MlR5dnXlargeForEndpointUsage = 'L-48F0F627', + MlR5XlargeForProcessingJobUsage = 'L-B2D8E643', + MlG548xlargeForTrainingJobUsage = 'L-6BC98A55', + StudioCodeEditorAppsRunningOnMlP4d24xlargeInstances = 'L-2557FB75', + MlC5n9xlargeForClusterUsage = 'L-1B687CD5', + MlC6iLargeForEndpointUsage = 'L-3C2EBC55', + MlP316xlargeForNotebookInstanceUsage = 'L-4689E606', + MlR5n8xlargeForEndpointUsage = 'L-54340DBD', + MlEia2XlargeForEndpointUsage = 'L-448C2416', + MlR5n2xlargeForEndpointUsage = 'L-581DD22D', + MlM54xlargeForProcessingJobUsage = 'L-379E85A3', + StudioKernelGatewayAppsRunningOnMlC5LargeInstance = 'L-1476E09A', + CanvasAppsRunningOnMlM54xlargeInstances = 'L-23A89612', + StudioJupyterLabAppsRunningOnMlC54xlargeInstances = 'L-C0592240', + MaximumNumberOfRunningStudioAppsAllowedPerAccount = 'L-4E39DDC4', + RSessionGatewayAppsRunningOnMlC54xlargeInstance = 'L-8733EEBD', + MlM512xlargeForEndpointUsage = 'L-A9F2A8B3', + MlM5d8xlargeForNotebookInstanceUsage = 'L-AEB45880', + StudioJupyterLabAppsRunningOnMlG4dn12xlargeInstances = 'L-E3DFC4E9', + MlM52xlargeForTrainingJobUsage = 'L-AD0A282D', + MlP2XlargeForSpotTrainingJobUsage = 'L-21545BA5', + NumberOfInstancesAcrossAllTransformJobs = 'L-60D2A6F0', + RSessionGatewayAppsRunningOnMlR5XlargeInstance = 'L-C720D775', + MlC5XlargeForEndpointUsage = 'L-E9EE5599', + MlM416xlargeForEndpointUsage = 'L-BCA7D0DE', + MlC42xlargeForSpotTrainingJobUsage = 'L-978CD7EC', + MlG512xlargeForTrainingWarmPoolUsage = 'L-29508C65', + MlC5n4xlargeForEndpointUsage = 'L-2693C7B9', + RateOfDeleteStudioLifecycleConfigRequests = 'L-3D52557B', + MlG4dn16xlargeForSpotTrainingJobUsage = 'L-AD4C1352', + StudioJupyterLabAppsRunningOnMlR512xlargeInstances = 'L-7ACB52C8', + RSessionGatewayAppsRunningOnMlM5XlargeInstance = 'L-8442D925', + MlM5XlargeForClusterUsage = 'L-E9225B85', + RateOfUpdateTrainingJobRequests = 'L-5C11C23E', + MlT3MediumForProcessingJobUsage = 'L-0CE343FE', + MlM5XlargeForNotebookInstanceUsage = 'L-76AB2C05', + MlM7i2xlargeForEndpointUsage = 'L-6C9165E8', + SizeOfEbsVolumeForATransformJobInstance = 'L-DDA1AAD8', + MlM5LargeForEndpointUsage = 'L-614B09FD', + RSessionGatewayAppsRunningOnMlG4dn8xlargeInstance = 'L-A9165189', + MlM512xlargeForNotebookInstanceUsage = 'L-9AD04286', + StudioKernelGatewayAppsRunningOnMlM58xlargeInstance = 'L-19734703', + MlR5LargeForEndpointUsage = 'L-B156D5EC', + StudioKernelGatewayAppsRunningOnMlG4dn12xlargeInstance = 'L-09D3DD58', + StudioKernelGatewayAppsRunningOnMlC512xlargeInstance = 'L-C47C8B74', + MlC518xlargeForProcessingJobUsage = 'L-2D8CD70A', + MlR7i8xlargeForEndpointUsage = 'L-CC3E5CD9', + SizeOfEbsVolumeForAProcessingJobInstance = 'L-D7BEE2A3', + StudioJupyterLabAppsRunningOnMlM5d12xlargeInstances = 'L-EE718475', + StudioJupyterLabAppsRunningOnMlM5d4xlargeInstances = 'L-30B99A16', + MlC6i12xlargeForEndpointUsage = 'L-2AD0234B', + StudioCodeEditorAppsRunningOnMlM5d2xlargeInstances = 'L-86177F8A', + MlTrn1n32xlargeForTrainingWarmPoolUsage = 'L-9037D736', + MlG524xlargeForTrainingJobUsage = 'L-ED7BD217', + MlC4XlargeForEndpointUsage = 'L-F8C60E1D', + RateOfDescribeEndpointRequests = 'L-A0EB0A2A', + MlG524xlargeForNotebookInstanceUsage = 'L-4ACAC7A4', + MlC44xlargeForProcessingJobUsage = 'L-6F6C723E', + MlT3XlargeForClusterUsage = 'L-E5A7A988', + MlC59xlargeForClusterUsage = 'L-9AD1D725', + MlP32xlargeForTransformJobUsage = 'L-45F58E7E', + MlR5d4xlargeForEndpointUsage = 'L-C4DFBAA1', + MlR5LargeForNotebookInstanceUsage = 'L-8BED04E5', + StudioKernelGatewayAppsRunningOnMlT3MediumInstance = 'L-EAC6F82B', + MlM5d16xlargeForNotebookInstanceUsage = 'L-26EB4EC7', + RSessionGatewayAppsRunningOnMlP316xlargeInstance = 'L-C5A57F3A', + MlG54xlargeForNotebookInstanceUsage = 'L-127D4C65', + MlP4d24xlargeForEndpointUsage = 'L-09F79647', + MlC5d9xlargeForEndpointUsage = 'L-50755EC1', + StudioKernelGatewayAppsRunningOnMlM5d24xlargeInstance = 'L-F43A1825', + MaximumNumberOfConcurrentAutoMlJobs = 'L-CFC2D5B6', + MlG4dn8xlargeForTransformJobUsage = 'L-213CD3BC', + MaximumNumberOfStudioUserProfilesAllowedPerAccount = 'L-AC46C40F', + MlM512xlargeForSpotTrainingJobUsage = 'L-29B03627', + MlC7gLargeForEndpointUsage = 'L-3F48ACC6', + MlP28xlargeForTrainingWarmPoolUsage = 'L-59DEBE1F', + MlM52xlargeForClusterUsage = 'L-60995545', + MlC5n18xlargeForTrainingJobUsage = 'L-A1E21094', + StudioCodeEditorAppsRunningOnMlM5d16xlargeInstances = 'L-87958880', + MlC6i24xlargeForEndpointUsage = 'L-9A32E51C', + MlG5XlargeForClusterUsage = 'L-4645950E', + MlT3XlargeForProcessingJobUsage = 'L-DABA7ED5', + MlC5XlargeForClusterUsage = 'L-AD3B35FF', + MlR7i4xlargeForEndpointUsage = 'L-7EB267B3', + MlR5n24xlargeForEndpointUsage = 'L-944A1241', + MlG52xlargeForEndpointUsage = 'L-9614C779', + MlP316xlargeForProcessingJobUsage = 'L-C5621FC4', + MlT22xlargeForNotebookInstanceUsage = 'L-BE44390B', + MaximumNumberOfGroundTruthLabelingJobs = 'L-150039CA', + MlR6gd16xlargeForEndpointUsage = 'L-6995701D', + MlInf28xlargeForEndpointUsage = 'L-F761337C', + StudioKernelGatewayAppsRunningOnMlR54xlargeInstance = 'L-D5D3B1E5', + MlR5LargeForProcessingJobUsage = 'L-43562353', + StudioJupyterLabAppsRunningOnMlC512xlargeInstances = 'L-BF6C9DF0', + MaximumNumberOfDeviceFleets = 'L-384D4DB3', + MlC7i4xlargeForEndpointUsage = 'L-8C4E467D', + RateOfCreateEndpointRequests = 'L-56A14E33', + MlP316xlargeForTrainingJobUsage = 'L-A99E0304', + MlG58xlargeForNotebookInstanceUsage = 'L-5D8382CB', + TotalNumberOfTrialsAllowedInASingleExperimentExcludingThoseAutomaticallyCreatedBySageMaker = 'L-E1A153C2', + MlR54xlargeForNotebookInstanceUsage = 'L-B74ED3C1', + RateOfListModelsRequests = 'L-254EBA2C', + MlG4dn12xlargeForTrainingWarmPoolUsage = 'L-CB4A3655', + StudioJupyterLabAppsRunningOnMlT3MediumInstances = 'L-71FAF417', + MlC42xlargeForTrainingWarmPoolUsage = 'L-72EF9D60', + MlM416xlargeForNotebookInstanceUsage = 'L-85E60595', + MlM42xlargeForProcessingJobUsage = 'L-0309C694', + MlC54xlargeForTrainingJobUsage = 'L-E7898792', + MlC52xlargeForTransformJobUsage = 'L-9215A13F', + TotalNumberOfTrialComponentsAllowedInASingleTrialExcludingThoseAutomaticallyCreatedBySageMaker = 'L-479D8F33', + MlM5d2xlargeForEndpointUsage = 'L-8F28AFFB', + RateOfDeleteNotebookInstanceLifecycleConfigRequests = 'L-C98EE842', + MlM524xlargeForProcessingJobUsage = 'L-E2E903C6', + MlG4dn16xlargeForTrainingWarmPoolUsage = 'L-C960C80D', + MlC6gn16xlargeForEndpointUsage = 'L-E9BB87E2', + MlC5n2xlargeForTrainingWarmPoolUsage = 'L-2952557B', + MlM7i16xlargeForEndpointUsage = 'L-6F258322', + MlM42xlargeForTrainingWarmPoolUsage = 'L-E312D77E', + MlC44xlargeForSpotTrainingJobUsage = 'L-C087612A', + MaximumNumberOfServerlessEndpoints = 'L-99AD19BF', + StudioKernelGatewayAppsRunningOnMlR516xlargeInstance = 'L-2524EF35', + MlC6gd12xlargeForEndpointUsage = 'L-CCE6D1FE', + MlTrn132xlargeForTrainingJobUsage = 'L-79A1FE57', + StudioKernelGatewayAppsRunningOnMlM512xlargeInstance = 'L-9772863B', + MlR516xlargeForProcessingJobUsage = 'L-06A1E8BB', + StudioKernelGatewayAppsRunningOnMlC524xlargeInstance = 'L-CBCD290E', + MlM5d12xlargeForEndpointUsage = 'L-B7AC53F5', + RSessionGatewayAppsRunningOnMlM5d8xlargeInstance = 'L-2D4C4A2D', + MlG54xlargeForTrainingJobUsage = 'L-FE869B40', + MlC42xlargeForProcessingJobUsage = 'L-50AA109F', + RateOfUpdateNotebookInstanceRequests = 'L-A29549DE', + MlR5dLargeForEndpointUsage = 'L-E0299BF7', + StudioKernelGatewayAppsRunningOnMlG524xlargeInstance = 'L-9D9F9978', + MlC5d4xlargeForEndpointUsage = 'L-A06D6E01', + StudioJupyterLabAppsRunningOnMlM5d16xlargeInstances = 'L-04421A63', + NumberOfInstancesAcrossAllTrainingJobs = 'L-00C91CB5', + MaximumSubsampledDatasetSizeAutoMlJobCanBeRunOn = 'L-4556354E', + TotalNumberOfNotebookInstances = 'L-04CE2E67', + MlT22xlargeForEndpointUsage = 'L-20700136', + StudioJupyterLabAppsRunningOnMlR5LargeInstances = 'L-FC2BE3FC', + TensorBoardAppsRunningOnSystemInstances = 'L-6F947DE5', + MaximumNumberOfInstancesPerProcessingJob = 'L-A5D63399', + MlC7gXlargeForEndpointUsage = 'L-4A5B28AA', + StudioCodeEditorAppsRunningOnMlG58xlargeInstances = 'L-12798BAE', + StudioJupyterLabAppsRunningOnMlT3LargeInstances = 'L-2733D4D5', + MlC6i4xlargeForEndpointUsage = 'L-B5612E02', + MaximumNumberOfParallelEdgeDeployments = 'L-9D69F80D', + MlG4dn2xlargeForClusterUsage = 'L-FDB7A21A', + MlM6g4xlargeForEndpointUsage = 'L-8EE25AE3', + NumberOfInstancesAcrossActiveEndpoints = 'L-7A3DF611', + StudioJupyterLabAppsRunningOnMlC524xlargeInstances = 'L-98B8C60B', + MlR58xlargeForNotebookInstanceUsage = 'L-DAE78A2A', + MlC6gnLargeForEndpointUsage = 'L-941884ED', + MlM5n4xlargeForEndpointUsage = 'L-63D6BD37', + StudioCodeEditorAppsRunningOnMlM516xlargeInstances = 'L-9FB41A1C', + MlR6g12xlargeForEndpointUsage = 'L-DACE30FC', + MlG58xlargeForTrainingWarmPoolUsage = 'L-40E8018C', + MlP38xlargeForNotebookInstanceUsage = 'L-619D6E43', + MlR5d2xlargeForEndpointUsage = 'L-A40ED4BA', + StudioJupyterLabAppsRunningOnMlC59xlargeInstances = 'L-8DE26E59', + StudioKernelGatewayAppsRunningOnMlR5XlargeInstance = 'L-CC73B658', + MlM410xlargeForEndpointUsage = 'L-C4008A6B', + MlG4dnXlargeForClusterUsage = 'L-31C211B7', + MlM410xlargeForNotebookInstanceUsage = 'L-CEEF9A6E', + MlM5dXlargeForEndpointUsage = 'L-3E65B286', + MaximumTotalConcurrencyThatCanBeAllocatedAcrossAllServerlessEndpoints = 'L-96300102', + MlG4dn2xlargeForTrainingJobUsage = 'L-C2495BC4', + MlC7i16xlargeForEndpointUsage = 'L-4B9D3092', + MlC4XlargeForProcessingJobUsage = 'L-2BAB231B', + RSessionGatewayAppsRunningOnMlT3SmallInstance = 'L-E833CC8B', + MlM7i24xlargeForEndpointUsage = 'L-C473817C', + MlP4d24xlargeForSpotTrainingJobUsage = 'L-09D56C4F', + MlR7i2xlargeForEndpointUsage = 'L-FEEF2E8A', + RateOfStopTrainingJobRequests = 'L-B57580F5', + MlG54xlargeForEndpointUsage = 'L-C1B9A48D', + StudioCodeEditorAppsRunningOnMlC54xlargeInstances = 'L-34757F79', + MlC44xlargeForTransformJobUsage = 'L-90765203', + StudioJupyterLabAppsRunningOnMlC52xlargeInstances = 'L-C1AE5754', + MlM6g2xlargeForEndpointUsage = 'L-BCBC84AA', + MlP548xlargeForEndpointUsage = 'L-16AF71F1', + MlC6gLargeForEndpointUsage = 'L-4E81EEAC', + MlR58xlargeForEndpointUsage = 'L-7DD21282', + RateOfDescribeTrainingJobRequests = 'L-96E3A68C', + StudioJupyterLabAppsRunningOnMlR524xlargeInstances = 'L-E157C95B', + RSessionGatewayAppsRunningOnMlG4dn16xlargeInstance = 'L-144A2794', + StudioJupyterLabAppsRunningOnMlG5XlargeInstances = 'L-988CE6C5', + StudioCodeEditorAppsRunningOnMlG512xlargeInstances = 'L-55671A7C', + MlM6gd2xlargeForEndpointUsage = 'L-AB53E0CA', + MlP548xlargeForTrainingWarmPoolUsage = 'L-5D321F81', + RSessionGatewayAppsRunningOnMlM5dLargeInstance = 'L-B6744048', + MlM58xlargeForEndpointUsage = 'L-92566F3C', + StudioJupyterAppsRunningOnSystemInstances = 'L-8276C21E', + SizeOfEbsVolumeForATrainingJobInstance = 'L-C5A266EB', + StudioKernelGatewayAppsRunningOnMlG4dnXlargeInstance = 'L-F3C955A3', + MlP316xlargeForTrainingWarmPoolUsage = 'L-763CF8E3', + NumberOfElasticInferenceAcceleratorsAcrossActiveEndpoints = 'L-07D0651D', + StudioJupyterLabAppsRunningOnMlG548xlargeInstances = 'L-83AB5D73', + MlM54xlargeForEndpointUsage = 'L-E2649D46', + RSessionGatewayAppsRunningOnMlG4dn4xlargeInstance = 'L-A7B1AACC', + MlG4dn4xlargeForTrainingWarmPoolUsage = 'L-3408A20D', + MlC6gn8xlargeForEndpointUsage = 'L-DB5B82A8', + StudioJupyterLabAppsRunningOnMlP32xlargeInstances = 'L-199FCA12', + MlC59xlargeForTransformJobUsage = 'L-2441079A', + MlM524xlargeForNotebookInstanceUsage = 'L-BD97DD7F', + MaximumNumberOfModelCardVersionsAllowedPerAccount = 'L-EF24FBDB', + MlT3MediumForClusterUsage = 'L-FD4AD312', + MaximumNumberOfA2IFlowDefinitions = 'L-73C1B556', + MlG4dn16xlargeForProcessingJobUsage = 'L-47F095C9', + MlG4dnXlargeForEndpointUsage = 'L-B67CFA0C', + MlM42xlargeForTrainingJobUsage = 'L-D589112D', + MlTrn12xlargeForTrainingJobUsage = 'L-74F2FC79', + RSessionGatewayAppsRunningOnMlM5LargeInstance = 'L-BDDC56AF', + MlM512xlargeForTrainingJobUsage = 'L-6F6C8949', + MlM5XlargeForSpotTrainingJobUsage = 'L-4CEE6BA6', + MlM416xlargeForTrainingJobUsage = 'L-D7CE983F', + MaximumNumberOfParametersAllowedPerPipeline = 'L-CED6A634', + MlM4XlargeForProcessingJobUsage = 'L-F97C6864', + MlR5XlargeForNotebookInstanceUsage = 'L-85870296', + MlG5XlargeForTrainingJobUsage = 'L-B6D80D9C', + MlG4dn2xlargeForSpotTrainingJobUsage = 'L-0496610F', + MlG516xlargeForNotebookInstanceUsage = 'L-001EDCEF', + MlM524xlargeForTransformJobUsage = 'L-5F2D4124', + NumberOfInstancesAcrossAllProcessingJobs = 'L-F311B08F', + MlM410xlargeForTransformJobUsage = 'L-63443CBC', + MlM52xlargeForTrainingWarmPoolUsage = 'L-1686EE8B', + MlM5dnXlargeForEndpointUsage = 'L-D16917AC', + MlG4dn4xlargeForNotebookInstanceUsage = 'L-529379E4', + SageMakerProfilerAppsRunningOnSystemInstances = 'L-73BEF3A2', + RateOfDescribeEndpointConfigRequests = 'L-B50E4FC3', + MlC6iXlargeForEndpointUsage = 'L-28FF72CA', + StudioCodeEditorAppsRunningOnMlM524xlargeInstances = 'L-26A7D02E', + MlT32xlargeForClusterUsage = 'L-EC104295', + MlR512xlargeForProcessingJobUsage = 'L-20546400', + TotalMonitoringSchedules = 'L-9966108C', + MlG54xlargeForClusterUsage = 'L-8A6C3F0E', + MlT2XlargeForNotebookInstanceUsage = 'L-9EFE4FAD', + MlM6g16xlargeForEndpointUsage = 'L-AF1BC9E1', + MlM5XlargeForTrainingWarmPoolUsage = 'L-0BEF44E8', + MlP32xlargeForNotebookInstanceUsage = 'L-1F4A5AAB', + StudioKernelGatewayAppsRunningOnMlG52xlargeInstance = 'L-4918D123', + RSessionGatewayAppsRunningOnMlM5d4xlargeInstance = 'L-53138E1F', + StudioCodeEditorAppsRunningOnMlC518xlargeInstances = 'L-52109CA8', + RateOfListStudioLifecycleConfigsRequests = 'L-FF0345A7', + RateOfListMonitoringAlertHistoryRequests = 'L-C899B716', + MlR6gd2xlargeForEndpointUsage = 'L-93490D80', + RStudioServerProAppsRunningOnMlC54xlargeInstances = 'L-FEC35D99', + MlC6i8xlargeForEndpointUsage = 'L-18904FF8', + MlM512xlargeForProcessingJobUsage = 'L-BC1C7D38', + StudioKernelGatewayAppsRunningOnMlG4dn8xlargeInstance = 'L-D267F635', + MlG524xlargeForEndpointUsage = 'L-6821867B', + MlG4dn16xlargeForClusterUsage = 'L-B6A7569B', + MlC518xlargeForTransformJobUsage = 'L-B538D5DB', + MlR5d12xlargeForEndpointUsage = 'L-283CDA96', + StudioCodeEditorAppsRunningOnMlM5d24xlargeInstances = 'L-D7ED8DED', + MlC6gn12xlargeForEndpointUsage = 'L-78B3DA25', + StudioCodeEditorAppsRunningOnMlM5XlargeInstances = 'L-EEA21C8A', + StudioCodeEditorAppsRunningOnMlG52xlargeInstances = 'L-DF589F40', + MlM524xlargeForEndpointUsage = 'L-329751EB', + MlTrn132xlargeForSpotTrainingJobUsage = 'L-F594DE31', + StudioCodeEditorAppsRunningOnMlG5XlargeInstances = 'L-8C616CCB', + StudioJupyterLabAppsRunningOnMlG54xlargeInstances = 'L-81940D85', + StudioCodeEditorAppsRunningOnMlC524xlargeInstances = 'L-04F55E28', + MlC5d2xlargeForEndpointUsage = 'L-529E971B', + MlG4dnXlargeForTrainingWarmPoolUsage = 'L-955074FD', + RateOfCreateTrainingJobRequests = 'L-21A1652A', + MlC5nLargeForClusterUsage = 'L-551F1065', + MlInf124xlargeForNotebookInstanceUsage = 'L-2B2F8466', + StudioKernelGatewayAppsRunningOnMlM524xlargeInstance = 'L-1DA9A185', + RSessionGatewayAppsRunningOnMlR512xlargeInstance = 'L-1C84ABBF', + MlP32xlargeForTrainingWarmPoolUsage = 'L-E3709F6E', + MlM6gd8xlargeForEndpointUsage = 'L-95B12835', + MlM5d8xlargeForEndpointUsage = 'L-A7702AF9', + StudioJupyterLabAppsRunningOnMlM52xlargeInstances = 'L-7C9662F1', + RateOfDescribeStudioLifecycleConfigRequests = 'L-9D3B2C53', + StudioJupyterLabAppsRunningOnMlM58xlargeInstances = 'L-D6EBD1A9', + MlR54xlargeForProcessingJobUsage = 'L-E4F6EF77', + MlC6g8xlargeForEndpointUsage = 'L-6D865216', + MlM524xlargeForSpotTrainingJobUsage = 'L-D0EA3DC8', + MlG4dn12xlargeForSpotTrainingJobUsage = 'L-199558F0', + MlG4dn8xlargeForEndpointUsage = 'L-7D28AD75', + MlG4dn8xlargeForTrainingJobUsage = 'L-3118B7E1', + MlM5n24xlargeForEndpointUsage = 'L-A2C9F8F4', + MlP216xlargeForProcessingJobUsage = 'L-756F8AFB', + MlM5d16xlargeForEndpointUsage = 'L-F6E740CB', + StudioJupyterLabAppsRunningOnMlM516xlargeInstances = 'L-53505EA6', + StudioKernelGatewayAppsRunningOnMlG516xlargeInstance = 'L-E66E2C21', + RSessionGatewayAppsRunningOnMlC518xlargeInstance = 'L-21552510', + MlC5n2xlargeForEndpointUsage = 'L-DDF361A9', + StudioCodeEditorAppsRunningOnMlR5LargeInstances = 'L-E8EAF30E', + MlM5LargeForProcessingJobUsage = 'L-8541302D', + MlR58xlargeForProcessingJobUsage = 'L-154D0022', + StudioCodeEditorAppsRunningOnMlP32xlargeInstances = 'L-1356CD75', + MlR6g4xlargeForEndpointUsage = 'L-713F6743', + MlInf16xlargeForEndpointUsage = 'L-574C8A05', + MlM42xlargeForSpotTrainingJobUsage = 'L-FE159C34', + MlTrn12xlargeForSpotTrainingJobUsage = 'L-AA22B8B9', + MlC7g2xlargeForEndpointUsage = 'L-85DBDADC', + StudioKernelGatewayAppsRunningOnMlM5dLargeInstance = 'L-32F895F6', + StudioKernelGatewayAppsRunningOnMlT32xlargeInstance = 'L-5AF0D27D', + MlG58xlargeForEndpointUsage = 'L-065D610E', + MlP4d24xlargeForTrainingWarmPoolUsage = 'L-A8827666', + MlG52xlargeForClusterUsage = 'L-596C3331', + MlT2MediumForEndpointUsage = 'L-29C181D7', + MlInf2XlargeForEndpointUsage = 'L-C8AB7CDA', + StudioKernelGatewayAppsRunningOnMlM5LargeInstance = 'L-22BC3627', + MlM5dn16xlargeForEndpointUsage = 'L-D075BB65', + StudioCodeEditorAppsRunningOnMlG4dn4xlargeInstances = 'L-A63CA0EB', + MlInf1XlargeForNotebookInstanceUsage = 'L-434233AD', + StudioCodeEditorAppsRunningOnMlC59xlargeInstances = 'L-1B353A48', + StudioCodeEditorAppsRunningOnMlG524xlargeInstances = 'L-DA7C9B9C', + StudioCodeEditorAppsRunningOnMlP3dn24xlargeInstances = 'L-6B83CDAF', + MlP2XlargeForProcessingJobUsage = 'L-61E3D6FC', + MlG4dn16xlargeForTransformJobUsage = 'L-D79647DB', + MlC48xlargeForTrainingJobUsage = 'L-6BE85179', + RateOfCreateNotebookInstanceLifecycleConfigRequests = 'L-B9F1A904', + MlC5d9xlargeForNotebookInstanceUsage = 'L-9944ECC4', + MlP216xlargeForEndpointUsage = 'L-B638D452', + StudioCodeEditorAppsRunningOnMlR516xlargeInstances = 'L-17CC37BB', + MlC5XlargeForTrainingJobUsage = 'L-E2BB44FE', + StudioJupyterLabAppsRunningOnMlC5XlargeInstances = 'L-BD09952F', + MlM410xlargeForProcessingJobUsage = 'L-BB72E7FA', + MlC7i24xlargeForEndpointUsage = 'L-B78A48C6', + MlR6gdXlargeForEndpointUsage = 'L-660E0683', + RateOfListTrainingJobsRequests = 'L-DE587792', + RateOfUpdateEndpointRequests = 'L-E6623D00', + MlT2LargeForEndpointUsage = 'L-1410387A', + MlC7g12xlargeForEndpointUsage = 'L-57850F1B', + MlC512xlargeForClusterUsage = 'L-15BCD638', + MlM7iXlargeForEndpointUsage = 'L-E793924B', + StudioCodeEditorAppsRunningOnMlR52xlargeInstances = 'L-11D02DB4', + MlG516xlargeForTrainingWarmPoolUsage = 'L-F6B8A3A3', + MlP4d24xlargeForNotebookInstanceUsage = 'L-4089485C', + MlM42xlargeForTransformJobUsage = 'L-5B86ED31', + MlM5LargeForClusterUsage = 'L-E64F3C7F', + MlC52xlargeForTrainingWarmPoolUsage = 'L-0D58D77C', + MlC59xlargeForEndpointUsage = 'L-C15ACFF4', + StudioKernelGatewayAppsRunningOnMlG512xlargeInstance = 'L-037F309A', + StudioCodeEditorAppsRunningOnMlG54xlargeInstances = 'L-F8AE8304', + MlTrn132xlargeForTrainingWarmPoolUsage = 'L-36F422F7', + MlM7iLargeForEndpointUsage = 'L-3E715088', + StudioKernelGatewayAppsRunningOnMlR5LargeInstance = 'L-59F3BE31', + StudioCodeEditorAppsRunningOnMlR5XlargeInstances = 'L-33471349', + RateOfListEndpointConfigsRequests = 'L-206CAD5E', + MlP32xlargeForProcessingJobUsage = 'L-0323EDB4', + MlG516xlargeForTrainingJobUsage = 'L-9FAC65F7', + RateOfDescribeNotebookInstanceLifecycleConfigRequests = 'L-B1CE7499', + MlC7g4xlargeForEndpointUsage = 'L-52FB7989', + MlC5nXlargeForTrainingWarmPoolUsage = 'L-8A72B806', + MaximumNumberOfDevices = 'L-987E0769', + MlP28xlargeForTransformJobUsage = 'L-0C630A26', + MlM5d4xlargeForEndpointUsage = 'L-2BF1C629', + MlR524xlargeForProcessingJobUsage = 'L-A28AF48F', + MlM512xlargeForTrainingWarmPoolUsage = 'L-34594662', + StudioKernelGatewayAppsRunningOnMlC52xlargeInstance = 'L-A56EEC3D', + StudioJupyterLabAppsRunningOnMlP4d24xlargeInstances = 'L-AD63F1D2', + StudioJupyterLabAppsRunningOnMlM524xlargeInstances = 'L-823F5794', + MlP38xlargeForEndpointUsage = 'L-CB985DC5', + MlR7iXlargeForEndpointUsage = 'L-B7476528', + MlR5dn12xlargeForEndpointUsage = 'L-599D6573', + RSessionGatewayAppsRunningOnMlM54xlargeInstance = 'L-30ABD943', + MaximumNumberOfParallelEdgePackagingJobs = 'L-4C681076', + StudioKernelGatewayAppsRunningOnMlP3dn24xlargeInstance = 'L-1CF85412', + RStudioServerProAppsRunningOnSystemInstances = 'L-B89C4B79', + MlInf1XlargeForEndpointUsage = 'L-B2B3BA64', + MlM5dn12xlargeForEndpointUsage = 'L-5EF89E74', + MlG5XlargeForTrainingWarmPoolUsage = 'L-8E6F4665', + MlR516xlargeForNotebookInstanceUsage = 'L-924D392D', + RSessionGatewayAppsRunningOnMlC524xlargeInstance = 'L-1271DF32', + MlC518xlargeForNotebookInstanceUsage = 'L-EF662387', + MlR5dnLargeForEndpointUsage = 'L-842D5E10', + MlP32xlargeForEndpointUsage = 'L-1623D0BE', + RSessionGatewayAppsRunningOnMlM516xlargeInstance = 'L-7B7E548F', + StudioJupyterLabAppsRunningOnMlG524xlargeInstances = 'L-F087CCFC', + MlEia1LargeForEndpointUsage = 'L-58672BCE', + MlM5d12xlargeForNotebookInstanceUsage = 'L-1DD0FB59', + StudioJupyterLabAppsRunningOnMlR54xlargeInstances = 'L-391B02C7', + MlC52xlargeForSpotTrainingJobUsage = 'L-4581C083', + MlC5XlargeForProcessingJobUsage = 'L-486519E6', + MlC6gnXlargeForEndpointUsage = 'L-754870FD', + MlR5n12xlargeForEndpointUsage = 'L-9F47FCE3', + MlP3dn24xlargeForTrainingWarmPoolUsage = 'L-D27958C4', + RateOfCreatePresignedNotebookInstanceUrlRequests = 'L-704CC035', + MlR7iLargeForEndpointUsage = 'L-5B7CF402', + MlG58xlargeForTrainingJobUsage = 'L-43F5FC95', + MlC7g16xlargeForEndpointUsage = 'L-A7E8B111', + MaximumNumberOfSageMakerProjectsAllowedPerAccount = 'L-5CED4195', + MlM6gd12xlargeForEndpointUsage = 'L-B25B9B93', + RSessionGatewayAppsRunningOnMlM5d2xlargeInstance = 'L-DCD9DBD1', + MlR516xlargeForEndpointUsage = 'L-DCB12F9E', + MlP4de24xlargeForClusterUsage = 'L-BEF3120E', + StudioCodeEditorAppsRunningOnMlM54xlargeInstances = 'L-FDB47EBF', + MlEia2LargeForEndpointUsage = 'L-9E017069', + StudioKernelGatewayAppsRunningOnMlM5dXlargeInstance = 'L-669A1EF3', + MlP38xlargeForSpotTrainingJobUsage = 'L-0201B959', + MlC5nXlargeForEndpointUsage = 'L-B3A1B2F7', + StudioCodeEditorAppsRunningOnMlM5dXlargeInstances = 'L-A31DE840', + MlC59xlargeForProcessingJobUsage = 'L-945D1F1D', + MlC6g12xlargeForEndpointUsage = 'L-35E5433E', + MlC5dXlargeForNotebookInstanceUsage = 'L-4E9EE949', + RSessionGatewayAppsRunningOnMlM5d16xlargeInstance = 'L-8101A535', + MlP4de24xlargeForNotebookInstanceUsage = 'L-6B0B7E9C', + StudioJupyterLabAppsRunningOnMlC518xlargeInstances = 'L-ABAC207F', + StudioKernelGatewayAppsRunningOnMlP32xlargeInstance = 'L-9D41067A', + MlC5n18xlargeForSpotTrainingJobUsage = 'L-266C4F52', + RSessionGatewayAppsRunningOnMlT3MediumInstance = 'L-7A45086A', + MlM52xlargeForProcessingJobUsage = 'L-1D84B9D2', + LongestRunTimeForAnAutoMlJobFromCreationToTermination = 'L-05D71277', + MlC5XlargeForTrainingWarmPoolUsage = 'L-F978BE20', + MlM4XlargeForEndpointUsage = 'L-97CF11BE', + RateOfDeleteEndpointRequests = 'L-0AFC5B08', + MlEia1XlargeForEndpointUsage = 'L-8D013305', + MlR5nXlargeForEndpointUsage = 'L-4DD84AF9', + StudioKernelGatewayAppsRunningOnMlR58xlargeInstance = 'L-8536F2DB', + MlC5dXlargeForEndpointUsage = 'L-F30D287E', + MlT3LargeForProcessingJobUsage = 'L-C076FA77', + MlP32xlargeForTrainingJobUsage = 'L-D438008E', + MlC5d4xlargeForNotebookInstanceUsage = 'L-484388A9', + StudioCodeEditorAppsRunningOnMlM58xlargeInstances = 'L-18C64902', + MlC5n9xlargeForTrainingWarmPoolUsage = 'L-FDD19E2A', + MlR7i24xlargeForEndpointUsage = 'L-7E4516BC', + MlInf224xlargeForEndpointUsage = 'L-9C39178F', + StudioCodeEditorAppsRunningOnMlM5LargeInstances = 'L-A0B632ED', + MlC5n2xlargeForSpotTrainingJobUsage = 'L-C1E6B202', + MlR5nLargeForEndpointUsage = 'L-FE3BF22B', + StudioJupyterLabAppsRunningOnMlP316xlargeInstances = 'L-D531C9E1', + StudioKernelGatewayAppsRunningOnMlM5XlargeInstance = 'L-CD017EBE', + StudioJupyterLabAppsRunningOnMlM5d2xlargeInstances = 'L-88244E2D', + StudioKernelGatewayAppsRunningOnMlTrn12xlargeInstances = 'L-97623E1D', + MlR524xlargeForEndpointUsage = 'L-B03C553E', + MlC6i2xlargeForEndpointUsage = 'L-4FDB33AC', + MlM44xlargeForProcessingJobUsage = 'L-B3FC00CD', + StudioJupyterLabAppsRunningOnMlR58xlargeInstances = 'L-FF40225D', + MlP216xlargeForTransformJobUsage = 'L-1F6E213E', + MlR5n4xlargeForEndpointUsage = 'L-3070F0B4', + MlG4dn2xlargeForEndpointUsage = 'L-EA346344', + MlC6gdXlargeForEndpointUsage = 'L-EDFF07E7', + MlC59xlargeForNotebookInstanceUsage = 'L-B5F303BE', + MlG524xlargeForClusterUsage = 'L-EED7F51C', + MlC44xlargeForTrainingWarmPoolUsage = 'L-FBB7E9CB', + RateOfDeleteTransformJobRequests = 'L-B51E8A99', + MlR6g8xlargeForEndpointUsage = 'L-BB73F76A', + MlInf12xlargeForNotebookInstanceUsage = 'L-23F5AC7E', + RateOfCreateNotebookInstanceRequests = 'L-C1A208ED', + MlC42xlargeForNotebookInstanceUsage = 'L-A028E7A2', + MlEia2MediumForEndpointUsage = 'L-77C35A0F', + StudioKernelGatewayAppsRunningOnMlM52xlargeInstance = 'L-D4D7435A', + MlR5d8xlargeForEndpointUsage = 'L-17BBB387', + StudioCodeEditorAppsRunningOnMlM5d4xlargeInstances = 'L-A4529C29', + RSessionGatewayAppsRunningOnMlT3LargeInstance = 'L-0FCBFBBD', + MaximumNumberOfInstancesPerTrainingJob = 'L-622CFD70', + MlC5LargeForEndpointUsage = 'L-4D27DFDD', + StudioKernelGatewayAppsRunningOnMlR52xlargeInstance = 'L-1747114E', + MlM5XlargeForProcessingJobUsage = 'L-0307F515', + MlG4dnXlargeForNotebookInstanceUsage = 'L-D8B97089', + StudioKernelGatewayAppsRunningOnMlG5XlargeInstance = 'L-60470224', + MlR524xlargeForNotebookInstanceUsage = 'L-D7FF3362', + MlC5n4xlargeForTrainingJobUsage = 'L-E215EF33', + MlC5n4xlargeForSpotTrainingJobUsage = 'L-37059D02', + MlM5dn24xlargeForEndpointUsage = 'L-62190228', + MaximumNumberOfStudioSpacesAllowedPerAccount = 'L-8E5333B4', + MlG548xlargeForClusterUsage = 'L-D7D95295', + MlG548xlargeForTrainingWarmPoolUsage = 'L-7D217E5D', + StudioJupyterLabAppsRunningOnMlG58xlargeInstances = 'L-19B6BAFC', + RateOfListNotebookInstanceLifecycleConfigsRequests = 'L-A3AA2757', + MlM5dn2xlargeForEndpointUsage = 'L-DCC57354', + MlC524xlargeForClusterUsage = 'L-40F00B06', + MlC5n4xlargeForTrainingWarmPoolUsage = 'L-4A423436', + MlR5dn8xlargeForEndpointUsage = 'L-E8AF0CC9', + MlC518xlargeForClusterUsage = 'L-819B4B27', + StudioJupyterLabAppsRunningOnMlC5LargeInstances = 'L-A6419EF6', + RateOfDeleteEndpointConfigRequests = 'L-C4717561', + MlG548xlargeForNotebookInstanceUsage = 'L-D266139B', +} +export enum AmazonEventBridgeSchedulerQuota { + NumberOfSchedules = 'L-EE5D6FF0', + CreateScheduleRequestRate = 'L-6F4B17DE', + GetScheduleRequestRate = 'L-FB03E819', + ListSchedulesRequestRate = 'L-66629D52', + UpdateScheduleRequestRate = 'L-B7845AAE', + ListTagsForResourceRequestRate = 'L-1DC60392', + DeleteScheduleRequestRate = 'L-53944E21', + InvocationsThrottleLimitInTransactionsPerSecond = 'L-F6D2596E', + NumberOfScheduleGroups = 'L-A632CD40', + ListScheduleGroupsRequestRate = 'L-03C881B9', + GetScheduleGroupRequestRate = 'L-754C8BBA', + CreateScheduleGroupRequestRate = 'L-21ED5C4A', + UntagResourceRequestRate = 'L-44A0C1A0', + TagResourceRequestRate = 'L-E7A3E659', + DeleteScheduleGroupRequestRate = 'L-4F80D7BE', +} +export enum AmazonEventBridgeSchemaRegistryQuota { + SchemaVersions = 'L-3C443A2A', + Registries = 'L-85663EFB', + DiscoveredSchemas = 'L-1738102F', + Schemas = 'L-EE9E5FA9', + Discoverers = 'L-037FC7C4', +} +export enum AwsSupplyChainQuota { + ActiveAndPendingInvitations = 'L-1DE0B7F6', + InsightsWatchlistsPerInstance = 'L-24B8CC9C', + InsightsWatchlistsPerUser = 'L-D7FA6849', + InsightsLineItemsPerWatchlist = 'L-7C5DB5F6', + ActiveAwsSupplyChainConnectionsPerInstance = 'L-5420252D', + ActiveOrInitializingAwsSupplyChainInstancesPerAccount = 'L-4AF12E50', + DataRequests = 'L-D6076B6C', +} +export enum AmazonSimpleDbQuota { + AttributeCountPerDomain = 'L-E1EE132B', + DomainNameLength = 'L-4E1F7154', + MinimumDomainNameLength = 'L-332FFAEF', + AttributeValueSize = 'L-AF2DC962', + ItemNameSize = 'L-C84701BD', + AttributesRequestedPerSelectOperation = 'L-05D88DAF', + AttributesPerPutAttributesOperation = 'L-0AE7E975', + ItemsPerBatchPutAttributesOperation = 'L-11AE8FE2', + ItemsPerSelectResponse = 'L-F117730B', + TotalDomains = 'L-7C4A3D89', + AttributeNameSize = 'L-4DB66646', + AttributeNameValuePairsPerItem = 'L-9828E854', + SelectResponseSize = 'L-3BE242F8', + UniqueAttributesPerSelectExpression = 'L-D7B92346', + ItemsPerBatchDeleteAttributesOperation = 'L-64BEF375', + SizePerDomain = 'L-6CEDEDBA', + QueryExecutionTime = 'L-FBE8DA78', + ComparisonsPerSelectExpression = 'L-42888860', +} +export enum AwsSecretsManagerQuota { + CombinedRateOfPutSecretValueRemoveRegionsFromReplicationReplicateSecretToRegionStopReplicationToReplicaUpdateSecretAndUpdateSecretVersionStageApiRequests = 'L-8D63BBB6', + RateOfBatchGetSecretValueApiRequests = 'L-F452D4B5', + VersionsPerSecret = 'L-7823223D', + CombinedRateOfRestoreSecretApiRequests = 'L-7E29BE3F', + CombinedRateOfRotateSecretAndCancelRotateSecretApiRequests = 'L-8679C9D9', + CombinedRateOfDeleteResourcePolicyGetResourcePolicyPutResourcePolicyAndValidateResourcePolicyApiRequests = 'L-8D82A813', + RateOfGetRandomPasswordApiRequests = 'L-6A9CA93A', + ResourceBasedPolicyLength = 'L-7AA14F8F', + RateOfCreateSecretApiRequests = 'L-CBA4CAC4', + CombinedRateOfDescribeSecretAndGetSecretValueApiRequests = 'L-2D877201', + CombinedRateOfTagResourceAndUntagResourceApiRequests = 'L-BC8DD7C4', + RateOfListSecretsApiRequests = 'L-FC17872E', + SecretValueSize = 'L-2F24C883', + StagingLabelsAttachedAcrossAllVersionsOfASecret = 'L-06876EE2', + RateOfListSecretVersionIdsApiRequests = 'L-7DA53705', + RateOfDeleteSecretApiRequests = 'L-BF57D437', + Secrets = 'L-2F66C23C', +} +export enum AwsSecurityHubQuota { + NumberOfAutomationRules = 'L-D348B3A2', + NumberOfCustomActions = 'L-D639633A', + SecurityHubFindingRetentionTime = 'L-F717136E', + NumberOfSecurityHubMemberAccounts = 'L-6E4302A5', + NumberOfCustomInsights = 'L-1AA69D21', + NumberOfInsightResults = 'L-11E34C3D', + NumberOfSecurityHubOutstandingInvitations = 'L-387C829B', +} +export enum AwsServerlessApplicationRepositoryQuota { + PublicApplications = 'L-38772E7B', + ApplicationPolicyLength = 'L-41ACBE3C', + FreeAmazonS3StorageForCodePackages = 'L-3EEA1272', +} +export enum AwsServiceCatalogQuota { + ProductsPerRegion = 'L-764CF6A1', + ApplicationsPerAttributeGroup = 'L-223F4C54', + ServiceActionAssociationsPerProvisioningArtifact = 'L-58FC5582', + UsersGroupsAndRolesPerPortfolio = 'L-E8959660', + UsersGroupsAndRolesPerProduct = 'L-3BC91705', + ProductVersionsPerProduct = 'L-A5846085', + ResourcesPerApplication = 'L-360CDF2E', + TagsPerProduct = 'L-CC0BF186', + PortfoliosPerRegion = 'L-C6458716', + TagsPerProvisionedProduct = 'L-2B360974', + ServiceActionsPerRegion = 'L-BEE0DD19', + ProductsPerPortfolio = 'L-AB79E48B', + SharedAccountsPerPortfolio = 'L-A2FB1BD2', + ApplicationsPerRegion = 'L-7C3CEC2B', + AttributeGroupsPerRegion = 'L-1639038A', + AttributeGroupsPerApplication = 'L-C533FF9A', + TagsPerPortfolio = 'L-77FEF8C5', + DelegatedAdministratorsPerOrganization = 'L-CA761021', + TagOptionsPerResource = 'L-73A88F28', + ValuesPerTagOption = 'L-79127A24', +} +export enum ServiceQuotasQuota { + ActiveRequestsPerAccountPerRegion = 'L-89094105', + ThrottleRateForGetAwsDefaultServiceQuota = 'L-A53F603E', + ThrottleRateForListServiceQuotas = 'L-65470577', + ThrottleRateForListServiceQuotaIncreaseRequestsInTemplate = 'L-909E6D4A', + ThrottleRateForListAwsDefaultServiceQuotas = 'L-71DCD22A', + ActiveRequestsPerQuota = 'L-36BDD542', + ThrottleRateForGetServiceQuotaIncreaseRequestFromTemplate = 'L-2C1C746A', + ThrottleRateForListTagsForResource = 'L-6120A68B', + MaxRequestsPerTemplate = 'L-C235F4E9', + ThrottleRateForGetAssociationForServiceQuotaTemplate = 'L-1CF4B0F4', + ThrottleRateForTagResource = 'L-86127B31', + ActiveRequestsPerAccount = 'L-0C8306D7', + ThrottleRateForUntagResource = 'L-BF40C7E2', + ThrottleRateForGetServiceQuota = 'L-09C84CC6', + ThrottleRateForListRequestedServiceQuotaChangeHistory = 'L-C7624166', + ThrottleRateForListRequestedServiceQuotaChangeHistoryByQuota = 'L-0E18483E', + ThrottleRateForListServices = 'L-E3924FE5', + ThrottleRateForPutServiceQuotaIncreaseRequestIntoTemplate = 'L-1BAB2CA7', + ThrottleRateForGetRequestedServiceQuotaChange = 'L-027D2B0A', + ThrottleRateForDeleteServiceQuotaIncreaseRequestFromTemplate = 'L-346CB6CB', + ThrottleRateForDisassociateServiceQuotaTemplate = 'L-AA9737D2', + ThrottleRateForAssociateServiceQuotaTemplate = 'L-EE8661AA', + ThrottleRateForRequestServiceQuotaIncrease = 'L-61010047', +} +export enum AmazonSimpleEmailServiceAmazonSesQuota { + SendingQuota = 'L-804C8AE8', + SendingRate = 'L-CDEF9B6B', +} +export enum AwsShieldAdvancedQuota { + AmazonRoute53HostedZoneProtections = 'L-DC974CBB', + AwsGlobalAcceleratorAcceleratorProtections = 'L-E3D64430', + ElasticLoadBalancingLoadBalancerProtections = 'L-BBD47253', + ElasticIpAddressProtections = 'L-0BACF966', + CloudFrontDistributionProtections = 'L-DA881E16', +} +export enum AwsSignerQuota { + RateOfRemoveProfilePermissionRequests = 'L-FEE4A855', + RateOfTagResourceRequests = 'L-7E38DDAF', + RateOfListTagsForResourceRequests = 'L-4F2A443B', + RateOfListSigningProfilesRequests = 'L-A99B6F73', + RateOfListProfilePermissionsRequests = 'L-34D2D11C', + RateOfGetRevocationStatusRequests = 'L-7068EEE0', + RateOfRevokeSigningProfileRequests = 'L-EBC45F16', + RateOfRevokeSignatureRequests = 'L-107F88F0', + RateOfPutSigningProfileRequests = 'L-FE97337F', + RateOfDescribeSigningJobRequests = 'L-F86FBF89', + RateOfGetSigningProfileRequests = 'L-C2AF6AB8', + RateOfAddProfilePermissionRequests = 'L-9A9396FB', + RateOfListSigningJobsRequests = 'L-5DB503D1', + RateOfStartSigningJobRequests = 'L-6291E160', + RateOfUntagResourceRequests = 'L-47E1077B', + RateOfListSigningPlatformsRequests = 'L-E1BE245B', + RateOfSignPayloadRequests = 'L-C934DC82', + RateOfGetSigningPlatformRequests = 'L-E9957E95', + RateOfCancelSigningProfileRequests = 'L-4E20C20E', +} +export enum AwsSimSpaceWeaverQuota { + IndexFieldsForEachEntity = 'L-0D5EA22A', + EntityTransfersOnTheSameWorker = 'L-B5A348F7', + DataFieldsForEachEntity = 'L-1C081C76', + WorkersForASimulation = 'L-A8C6832C', + RemoteSubscriptionsForEachWorker = 'L-5EB93DDB', + MemoryForEachComputeResourceUnit = 'L-196DBE75', + ComputeResourceUnitsForEachApp = 'L-D450D3E6', + EntityDataFieldSize = 'L-28D50DBD', + SimulationCount = 'L-7688C21B', + LargestMaximumDurationInDaysForASimulation = 'L-C1A95297', + EntitiesInAPartition = 'L-F2C1E197', + EntityTransfersBetweenWorkers = 'L-5A09ACA0', + ComputeResourceUnitsForEachWorker = 'L-76C7419E', + VCpUsForEachComputeResourceUnit = 'L-C7078EE6', +} +export enum AwsServerMigrationServiceQuota { + ConcurrentVmMigrations = 'L-AFABDADD', + DurationOfServiceUsagePerVmInDays = 'L-3290AB9E', +} +export enum AwsSnowDeviceManagementQuota { + DescribeDeviceEc2InstancesThrottleLimit = 'L-4B75C131', + ListDeviceResourcesThrottleLimit = 'L-0C95862B', + DescribeTaskThrottleLimit = 'L-209341BC', + DescribeDeviceThrottleLimit = 'L-8BC3C224', + CancelTaskThrottleLimit = 'L-8CEBA534', + ListExecutionsThrottleLimit = 'L-8A2E571D', + ListDevicesThrottleLimit = 'L-CCEAB4FA', + ListTasksThrottleLimit = 'L-396E856A', + SnowDeviceManagementMaximumTasks = 'L-D88A1E78', + SnowDeviceManagementActiveTasks = 'L-FFEB0409', + CreateTaskThrottleLimit = 'L-C90DA346', + DescribeExecutionThrottleLimit = 'L-CA980D98', +} +export enum AwsSnowFamilyQuota { + SnowballEdgeDevices = 'L-B6883B9F', + SnowconeDevices = 'L-9F53AA61', +} +export enum AmazonSimpleNotificationServiceAmazonSnsQuota { + ListSubscriptionsByTopicTransactionsPerSecond = 'L-390AADBE', + ListOriginationNumbersTransactionsPerSecond = 'L-6521CF3A', + AddPermissionTransactionsPerSecond = 'L-A05852B7', + SetEndpointAttributesTransactionsPerSecond = 'L-4EE37BC0', + SetSubscriptionAttributesTransactionsPerSecond = 'L-B6107771', + DeletePlatformApplicationTransactionsPerSecond = 'L-9D5EC8F7', + SetSmsAttributesTransactionsPerSecond = 'L-154ECCA7', + VerifySmsSandboxPhoneNumberTransactionsPerSecond = 'L-B3509C67', + FilterPoliciesPerAccount = 'L-4126E74A', + ListPlatformApplicationsTransactionsPerSecond = 'L-41B81227', + GetSmsSandboxAccountStatusTransactionsPerSecond = 'L-2EE2434F', + DeleteSmsSandboxPhoneNumberTransactionsPerSecond = 'L-F6A3071A', + CreateTopicTransactionsPerSecond = 'L-AB928142', + ListSubscriptionsTransactionsPerSecond = 'L-21C7FFA6', + GetPlatformApplicationAttributesTransactionsPerSecond = 'L-F35E8445', + DeleteTopicTransactionsPerSecond = 'L-B98ECD3E', + ListTagsForResourceTransactionsPerSecond = 'L-93CEC191', + UntagResourceTransactionsPerSecond = 'L-A30AD1BE', + PendingSubscriptionsPerAccount = 'L-1A43D3DB', + SubscriptionsPerTopic = 'L-A4340BCD', + ListSmsSandboxPhoneNumbersTransactionsPerSecond = 'L-C1E19420', + CreateSmsSandboxPhoneNumberTransactionsPerSecond = 'L-7B7E3FB8', + TagResourceTransactionsPerSecond = 'L-BF824DE9', + ListTopicsTransactionsPerSecond = 'L-039289D5', + SubscribeTransactionsPerSecond = 'L-BBD4D2FF', + SetPlatformApplicationAttributesTransactionsPerSecond = 'L-A228E0EB', + SetTopicAttributesTransactionsPerSecond = 'L-F514C636', + CreatePlatformApplicationTransactionsPerSecond = 'L-4738DDCE', + TopicsPerAccount = 'L-61103206', + FilterPoliciesPerTopic = 'L-B96EDA7D', + UnsubscribeTransactionsPerSecond = 'L-93308085', + GetSmsAttributesTransactionsPerSecond = 'L-9A72FF33', + MessagesPublishedPerSecond = 'L-F8E2BA85', + RemovePermissionTransactionsPerSecond = 'L-6A04D1EB', + ListEndpointsByPlatformApplicationTransactionsPerSecond = 'L-4659BFC2', + ListPhoneNumbersOptedOutTransactionsPerSecond = 'L-19F66BE5', + CheckIfPhoneNumberIsOptedOutTransactionsPerSecond = 'L-01EACE54', + CreatePlatformEndpointTransactionsPerSecond = 'L-E1E48E53', + GetTopicAttributesTransactionsPerSecond = 'L-820458B0', + ConfirmSubscriptionTransactionsPerSecond = 'L-FF07E5EA', + GetSubscriptionAttributesTransactionsPerSecond = 'L-876E1222', + OptInPhoneNumberTransactionsPerSecond = 'L-856966E8', + GetEndpointAttributesTransactionsPerSecond = 'L-038DA0E0', + DeleteEndpointTransactionsPerSecond = 'L-2FE42A3E', + SmsMessageSpendingInUsd = 'L-BCD4AAF3', + TransactionalSmsMessageDeliveryRatePerSecond = 'L-CC5551AD', + EmailDeliveryRatePerSecond = 'L-7E62C088', + PromotionalSmsMessageDeliveryRatePerSecond = 'L-6635B4C9', +} +export enum AmazonSimpleQueueServiceAmazonSqsQuota { + AttributesPerMessage = 'L-98134C75', + TagsPerQueue = 'L-4BE1B2BD', + Utf8QueueTagValueLength = 'L-BF2A6161', + ConditionsPerQueuePolicy = 'L-6A03DCE9', + MessagesPerBatch = 'L-F115E65A', + StatementsPerQueuePolicy = 'L-9F628B95', + PrincipalsPerQueuePolicy = 'L-F61F33C3', + QueueNameLength = 'L-E8A9C91E', + Utf8QueueTagKeyLength = 'L-A01B4DF0', + MessageSize = 'L-49DA5CEC', + MessageRetentionTime = 'L-2DA3E3B2', + UnbatchedMessageThroughputForFifoQueues = 'L-CE05C41A', + BatchedMessageThroughputForFifoQueues = 'L-9C1AB20F', + MessageSizeInS3Bucket = 'L-81970B52', + BatchedMessageIdLength = 'L-4FF3DAAF', + MessageInvisibilityPeriod = 'L-B2A3B9D5', + ActionsPerQueuePolicy = 'L-79B6240C', + QueuePolicySize = 'L-BBEFA6CF', + InFlightMessagesPerFifoQueue = 'L-32C9799A', + InFlightMessagesPerStandardQueue = 'L-C491D5A4', + QueueDeliveryDelay = 'L-A7816957', +} +export enum AwsSystemsManagerQuota { + MaintenanceWindows = 'L-7727CE5B', + TargetsPerMaintenanceWindow = 'L-B1A84B8B', + ConcurrentlyRunningAutomationsWithBlockingActions = 'L-9252FCD2', + MaintenanceWindowExecutionHistoryRetention = 'L-00E10A78', + SingleMaintenanceWindowConcurrentExecutions = 'L-22ADA421', + ConcurrentlyExecutingRateControlAutomation = 'L-44746CFE', + NumberOfLevelsOfNestedAutomation = 'L-BDECE436', + TargetGroupsPerMaintenanceWindowTargetOrTask = 'L-038D7E0A', + AdditionalRateControlAutomationExecutionsThatCanBeQueued = 'L-CE4D78FF', + PatchBaselines = 'L-218CDBD4', + TasksPerMaintenanceWindow = 'L-3D9CCA6E', + MaintenanceWindowConcurrentExecutions = 'L-26BF3FE6', + ConcurrentlyExecutingAutomations = 'L-09101E66', + PatchGroupsPerPatchBaseline = 'L-F4012070', + TransactionsPerSecondTpsForTheStartAutomationExecutionApi = 'L-99469188', + InstancesPerTarget = 'L-F03CADDF', + AdditionalAutomationExecutionsThatCanBeQueued = 'L-67DAE0B3', + TotalOpsItems = 'L-2D95D5B2', + InventoryDataRetentionPeriod = 'L-F5EE8B1B', + CustomInventoryTypes = 'L-7FC1ECAB', + InventoryItemDataSizePerDay = 'L-2E373755', + CustomInventoryTypeAttributes = 'L-D0D811A0', + ConcurrentStateManagerAssociationsPerRegion = 'L-01B74EDA', + OpsItemsPerMonth = 'L-66C13439', + RunCommandExecutionHistoryRetentionInSeconds = 'L-34492BAC', + InventoryDataSizePerRequest = 'L-C666B4B8', +} +export enum AwsSystemsManagerIncidentManagerContactsQuota { + DescribePageApiThrottleQuota = 'L-977ABCD7', + StartEngagementApiThrottleQuota = 'L-254D300C', + RotationsPerSchedule = 'L-1B8F788C', + ListPagesByEngagementApiThrottleQuota = 'L-70D46058', + EmailEngagementThrottleQuota = 'L-F3345603', + ListPagesByContactApiThrottleQuota = 'L-05EEDCEB', + SmsEngagementThrottleQuota = 'L-73C3F2C3', + ListEngagementsApiThrottleQuota = 'L-8F6873DD', + DescribeEngagementApiThrottleQuota = 'L-0C2999E2', + ContactChannelsPerStage = 'L-F338226A', + ContactsPerAccount = 'L-7DD2017D', + StagesPerPlan = 'L-5AE11799', + GetContactApiThrottleQuota = 'L-E86843F5', + NonMutatingRotationRelatedApiThrottleQuota = 'L-0ECD1CFA', + AllOtherOperationsApiThrottleQuota = 'L-53EDA07E', + VoiceEngagementThrottleQuota = 'L-28BF1B5E', + ContactsPerRotation = 'L-D438A616', + ListPageReceiptsApiThrottleQuota = 'L-E25E885A', + AcceptPageApiThrottleQuota = 'L-D35B01ED', + StopEngagementApiThrottleQuota = 'L-F890E288', + NonMutatingSsmContactsRelatedApiThrottleQuota = 'L-DBEB7593', + RotationsPerAccount = 'L-4EA3AB3A', +} +export enum AwsSystemsManagerGuiConnectQuota { + ConcurrentRemoteDesktopConnections = 'L-64419857', +} +export enum AwsSystemsManagerIncidentManagerQuota { + AllOtherOperationsRequestsPerSecond = 'L-A175684D', + TimelineEventsPerIncident = 'L-86E2D041', + UpdateDeleteProtectionRequestsPerSecond = 'L-D9F668D1', + UpdateIncidentRecordRequestsPerSecond = 'L-A7E87765', + ListTimelineEventRequestsPerSecond = 'L-51B6B2CA', + DeleteResourcePolicyRequestsPerSecond = 'L-E7843AED', + UpdateRelatedItemsRequestsPerSecond = 'L-02FD30E2', + StartIncidentRequestsPerSecond = 'L-5964C1A6', + PutResourcePolicyRequestsPerSecond = 'L-8BD82D65', + UpdateTimelineEventRequestsPerSecond = 'L-0476E0C6', + UpdateResponsePlanRequestsPerSecond = 'L-A320D7D7', + CreateReplicationSetRequestsPerSecond = 'L-A23D539A', + UntagResourceRequestsPerSecond = 'L-B94A3EEA', + DeleteTimelineEventRequestsPerSecond = 'L-81058D72', + DeleteResponsePlanRequestsPerSecond = 'L-B9CCDEDA', + UpdateReplicationSetRequestsPerSecond = 'L-D6FEF05F', + GetTimelineEventRequestsPerSecond = 'L-CA5201AF', + RelatedItemsPerIncident = 'L-A2627BB9', + ReplicationSetsPerAccount = 'L-39562D83', + IncidentsPerResponsePlanPerMonth = 'L-65614EA3', + CreateTimelineEventRequestsPerSecond = 'L-BD3B3682', + CreateResponsePlanRequestsPerSecond = 'L-8635B488', + DeleteIncidentRecordRequestsPerSecond = 'L-AB732CD0', + TagResourceRequestsPerSecond = 'L-32C59404', + DeleteReplicationSetRequestsPerSecond = 'L-F7EACE1C', + RegionsPerReplicationSet = 'L-EA89B72F', +} +export enum AwsSystemsManagerForSapQuota { + DatabasesPerComponent = 'L-5B34AA09', + SapApplicationsPerRegionInAccount = 'L-C8103580', + ComponentsPerSapApplication = 'L-458E2EE3', +} +export enum AwsIamIdentityCenterSuccessorToAwsSingleSignOnQuota { + FileSizeOfServiceProviderSaml20CertificatesInPemFormat = 'L-C4FCA052', + NumberOfUniqueGroupsThatCanBeUsedToEvaluateThePermissionsForAUser = 'L-6985B686', + NumberOfPermissionSetsAllowedPerAwsAccount = 'L-89954265', + NumberOfUsersSupportedInIamIdentityCenter = 'L-3C8D41A0', + NumberOfPermissionSetsAllowedInIamIdentityCenter = 'L-B44C7A29', + NumberOfGroupsSupportedInIamIdentityCenter = 'L-7E1D4E33', + TotalNumberOfAwsAccountsOrApplicationsThatCanBeConfigured = 'L-0299121C', +} +export enum AwsStepFunctionsQuota { + StateTransitionThrottleTokenRefillRatePerSecond = 'L-AD9B4E93', + UpdateStateMachineThrottleTokenRefillRatePerSecond = 'L-7B25D42D', + SendTaskSuccessThrottleTokenRefillRatePerSecond = 'L-EACE83FA', + ListActivitiesThrottleTokenBucketSize = 'L-0EE9C880', + SynchronousExpressWorkflowsConcurrentExecutions = 'L-6C9C5312', + RequestSize = 'L-DAFB74D5', + SendTaskHeartbeatThrottleTokenRefillRatePerSecond = 'L-2225B7C3', + RegisteredStateMachines = 'L-B66B0F91', + CreateActivityThrottleTokenRefillRatePerSecond = 'L-5D565FF6', + ListTagsForResourceThrottleTokenBucketSize = 'L-6F348EF6', + GetExecutionHistoryThrottleTokenRefillRatePerSecond = 'L-144D81B0', + TagResourceThrottleTokenBucketSize = 'L-F965A8DF', + SendTaskFailureThrottleTokenBucketSize = 'L-CDF2E38B', + StopExecutionThrottleTokenRefillRatePerSecond = 'L-898DDD72', + DeleteStateMachineThrottleTokenBucketSize = 'L-FA23558C', + DeleteActivityThrottleTokenRefillRatePerSecond = 'L-623044A2', + CreateStateMachineThrottleTokenRefillRatePerSecond = 'L-E6D39AA7', + ResourceNameLength = 'L-881C30D9', + UntagResourceThrottleTokenBucketSize = 'L-2C798E2E', + RegisteredActivities = 'L-A9562A73', + OpenMapRuns = 'L-15D902EC', + StartExpressExecutionThrottleTokenBucketSize = 'L-CFF7B006', + ListActivitiesThrottleTokenRefillRatePerSecond = 'L-818B33FC', + StartExecutionThrottleTokenBucketSize = 'L-CE9F8059', + CreateActivityThrottleTokenBucketSize = 'L-D282C59F', + CreateStateMachineThrottleTokenBucketSize = 'L-11731986', + UntagResourceThrottleTokenRefillRatePerSecond = 'L-191B5A6B', + DescribeStateMachineThrottleTokenRefillRatePerSecond = 'L-718BBE49', + DeleteActivityThrottleTokenBucketSize = 'L-809F4173', + GetActivityTaskThrottleTokenBucketSize = 'L-631A2A16', + DescribeActivityThrottleTokenBucketSize = 'L-B581C5F3', + StopExecutionThrottleTokenBucketSize = 'L-31300AD4', + ExecutionHistorySize = 'L-CE44C76B', + StartExecutionThrottleTokenRefillRatePerSecond = 'L-1B55A735', + DeleteStateMachineThrottleTokenRefillRatePerSecond = 'L-0169882E', + DescribeStateMachineThrottleTokenBucketSize = 'L-233C6A78', + TagResourceThrottleTokenRefillRatePerSecond = 'L-C314E25C', + ExecutionHistoryRetentionTime = 'L-5AD63623', + ActivityPollersPerArn = 'L-75EF6064', + GetActivityTaskThrottleTokenRefillRatePerSecond = 'L-7DC9CADD', + ExecutionIdleTime = 'L-824BD7F8', + DescribeExecutionThrottleTokenBucketSize = 'L-A0B4DA4A', + StartExpressExecutionThrottleTokenRefillRatePerSecond = 'L-7B8A8E4B', + DescribeStateMachineForExecutionThrottleTokenRefillRatePerSecond = 'L-0DC55683', + DescribeActivityThrottleTokenRefillRatePerSecond = 'L-20F3BB5B', + InputOrResultDataSizeInTaskStateOrExecution = 'L-8FEC45E4', + SendTaskSuccessThrottleTokenBucketSize = 'L-630CF084', + ListStateMachinesThrottleTokenBucketSize = 'L-29AE5D31', + ListTagsForResourceThrottleTokenRefillRatePerSecond = 'L-81549E4C', + TaskRetentionTimeInQueue = 'L-C841B85F', + DescribeStateMachineForExecutionThrottleTokenBucketSize = 'L-A3847D50', + GetExecutionHistoryThrottleTokenBucketSize = 'L-F9699A68', + StateTransitionThrottleTokenBucketSize = 'L-137B3F65', + OpenExecutions = 'L-B8A5B662', + ListStateMachinesThrottleTokenRefillRatePerSecond = 'L-9E82C0BD', + ListExecutionsThrottleTokenRefillRatePerSecond = 'L-1342F2DA', + TaskExecutionTime = 'L-60E71163', + SendTaskHeartbeatThrottleTokenBucketSize = 'L-2786AC1A', + DescribeExecutionThrottleTokenRefillRatePerSecond = 'L-4A5FADE3', + UpdateStateMachineThrottleTokenBucketSize = 'L-25C72657', + ExecutionTime = 'L-3F41C9CA', + SendTaskFailureThrottleTokenRefillRatePerSecond = 'L-91DFCA1B', + ListExecutionsThrottleTokenBucketSize = 'L-7A4BEE15', +} +export enum AwsStorageGatewayQuota { + CachedVolumeGatewayUploadBufferMaximumInTiB = 'L-FF1BE522', + CachedVolumesPerGateway = 'L-761F1680', + CachedVolumeGatewayCacheMinimumInGiB = 'L-803470D8', + TapeGatewayUploadBufferMinimumInGiB = 'L-87640A7E', + StoredVolumeSizeInTiB = 'L-81A6E497', + FileSize = 'L-98F44425', + TapeGatewayCacheMaximumInTiB = 'L-59D49F15', + FileGatewayCacheMinimumInGiB = 'L-BD85E1A6', + StoredVolumeGatewayUploadBufferMinimumInGiB = 'L-E0AEEBAC', + FileSharesPerGateway = 'L-58DCC961', + StoredVolumesPerGateway = 'L-7B01AFFB', + CachedVolumeGatewayUploadBufferMinimumInGiB = 'L-6D83F84B', + FileSharesPerS3Bucket = 'L-CEFD39A0', + SizeOfAllCachedVolumesPerGatewayInTiB = 'L-6F75AC83', + MinimumSizeOfAVirtualTapeInGiB = 'L-96D17DE9', + SizeOfAllStoredVolumesPerGatewayInTiB = 'L-5308FBCA', + TotalSizeOfTapesInAVirtualTapeLibraryInPiB = 'L-4951D254', + MaxSizeOfAVirtualTapeInTiB = 'L-311F8856', + CachedVolumeSizeInTiB = 'L-2E88EE16', + CachedVolumeGatewayCacheMaximumInTiB = 'L-14F83003', + StoredVolumeGatewayUploadBufferMaximumInTiB = 'L-99E991AF', + MaxVirtualTapesInAVtl = 'L-2232E8E3', + TapeGatewayCacheMinimumInGiB = 'L-F3EDDF8C', + PathLength = 'L-C86341FE', + TapeGatewayUploadBufferMaximumInTiB = 'L-2EC26EAB', + FileGatewayCacheMaximumInTiB = 'L-F5915598', +} +export enum AwsSupportQuota { + AwsSupportApiOperations = 'L-740CFD0C', + AwsTrustedAdvisorApiOperations = 'L-981EE492', + NumberOfAwsSupportCasesThatYouCanCreate = 'L-9943BD41', +} +export enum AwsSupportAppQuota { + AwsAccountsPerSlackChannel = 'L-7CAC8179', + SlackWorkspaceConfigurationsPerAwsAccount = 'L-A90A2173', + SlackChannelConfigurationsPerAwsAccount = 'L-81DBE3AB', +} +export enum AmazonSimpleWorkflowServiceQuota { + SwfTaskRetentionTimeInQueue = 'L-B03232CC', + UntagResourceThrottleBurstLimitInTransactionsPerSecond = 'L-778DA924', + ListTagsForResourceThrottleBurstLimitInTransactionsPerSecond = 'L-541D480C', + RegisteredDomains = 'L-464CCB53', + UndeprecateWorkflowTypeThrottleRefillLimitInTransactionsPerSecond = 'L-23555C14', + GetWorkflowExecutionHistoryThrottleBurstLimitInTransactionsPerSecond = 'L-58183C51', + UndeprecateActivityTypeThrottleBurstLimitInTransactionsPerSecond = 'L-542E1377', + UntagResourceThrottleRefillLimitInTransactionsPerSecond = 'L-C0F4576E', + StartWorkflowExecutionThrottleRefillLimitInTransactionsPerSecond = 'L-C2741471', + SignalWorkflowExecutionThrottleBurstLimitInTransactionsPerSecond = 'L-125E0653', + UndeprecateDomainThrottleBurstLimitInTransactionsPerSecond = 'L-B59DD71F', + ListOpenWorkflowExecutionsThrottleBurstLimitInTransactionsPerSecond = 'L-7B042585', + RespondActivityTaskCompletedThrottleBurstLimitInTransactionsPerSecond = 'L-B1B7886E', + ListDomainsThrottleRefillLimitInTransactionsPerSecond = 'L-6E67C23B', + CountPendingActivityTasksThrottleRefillLimitInTransactionsPerSecond = 'L-B80CE8BF', + RespondActivityTaskFailedThrottleBurstLimitInTransactionsPerSecond = 'L-6ACC4529', + ListTagsForResourceThrottleRefillLimitInTransactionsPerSecond = 'L-664871FC', + PollForActivityTaskThrottleRefillLimitInTransactionsPerSecond = 'L-EABBD6AB', + DescribeDomainThrottleBurstLimitInTransactionsPerSecond = 'L-07B00041', + StartChildWorkflowExecutionThrottleBurstLimitInTransactionsPerSecond = 'L-BEE48758', + DescribeWorkflowExecutionThrottleRefillLimitInTransactionsPerSecond = 'L-1EB8BFAC', + ListWorkflowTypesThrottleBurstLimitInTransactionsPerSecond = 'L-FBF3CE2F', + DeprecateActivityTypeThrottleBurstLimitInTransactionsPerSecond = 'L-E75077A8', + TagResourceThrottleRefillLimitInTransactionsPerSecond = 'L-CEE29E14', + ListClosedWorkflowExecutionsThrottleBurstLimitInTransactionsPerSecond = 'L-82178AAF', + DescribeWorkflowTypeThrottleBurstLimitInTransactionsPerSecond = 'L-67FCAFB0', + UndeprecateDomainThrottleRefillLimitInTransactionsPerSecond = 'L-45E4DED8', + RegisterWorkflowTypeThrottleRefillLimitInTransactionsPerSecond = 'L-E73B63BD', + RegisterDomainThrottleBurstLimitInTransactionsPerSecond = 'L-9F857AB4', + RespondDecisionTaskCompletedThrottleBurstLimitInTransactionsPerSecond = 'L-1188DD51', + ScheduleActivityTaskThrottleBurstLimitInTransactionsPerSecond = 'L-9889E41A', + DeprecateWorkflowTypeThrottleRefillLimitInTransactionsPerSecond = 'L-7CE7ADCD', + WorkflowExecutionIdleTime = 'L-1026A51B', + WorkflowExecutionTime = 'L-A32357D7', + OpenWorkflowExecutionsPerDomain = 'L-6FACB0D5', + ListWorkflowTypesThrottleRefillLimitInTransactionsPerSecond = 'L-C0C38A8F', + StartTimerThrottleBurstLimitInTransactionsPerSecond = 'L-418A961F', + RespondActivityTaskFailedThrottleRefillLimitInTransactionsPerSecond = 'L-9EB7B9D6', + GetWorkflowExecutionHistoryThrottleRefillLimitInTransactionsPerSecond = 'L-B61DF1D5', + CountPendingDecisionTasksThrottleRefillLimitInTransactionsPerSecond = 'L-7379A78A', + PollForActivityTaskThrottleBurstLimitInTransactionsPerSecond = 'L-F5350037', + DescribeActivityTypeThrottleBurstLimitInTransactionsPerSecond = 'L-DE1A2EBB', + StartWorkflowExecutionThrottleBurstLimitInTransactionsPerSecond = 'L-0F51A38F', + RequestCancelExternalWorkflowExecutionThrottleBurstLimitInTransactionsPerSecond = 'L-BC8E42D6', + ScheduleActivityTaskThrottleRefillLimitInTransactionsPerSecond = 'L-90F927AE', + DescribeActivityTypeThrottleRefillLimitInTransactionsPerSecond = 'L-C6E6D788', + RegisterActivityTypeThrottleBurstLimitInTransactionsPerSecond = 'L-85FB1745', + WorkflowAndActivityTypesPerDomain = 'L-52C0BE72', + RequestCancelWorkflowExecutionThrottleRefillLimitInTransactionsPerSecond = 'L-889726A2', + TerminateWorkflowExecutionThrottleRefillLimitInTransactionsPerSecond = 'L-28C5E3D9', + WorkflowRetentionTime = 'L-DC76BFDB', + SignalWorkflowExecutionThrottleRefillLimitInTransactionsPerSecond = 'L-F649FC18', + OpenActivityTasksPerWorkflowExecution = 'L-E6133E10', + DeprecateDomainThrottleRefillLimitInTransactionsPerSecond = 'L-91FA29FA', + DescribeWorkflowExecutionThrottleBurstLimitInTransactionsPerSecond = 'L-B6B07F5F', + CountClosedWorkflowExecutionsThrottleRefillLimitInTransactionsPerSecond = 'L-11BEBC6E', + OpenChildWorkflowExecutions = 'L-B0C289A4', + CountClosedWorkflowExecutionsThrottleBurstLimitInTransactionsPerSecond = 'L-6B93B990', + PollForDecisionTaskThrottleBurstLimitInTransactionsPerSecond = 'L-23ED90FD', + CountOpenWorkflowExecutionsThrottleRefillLimitInTransactionsPerSecond = 'L-613386B0', + RequestCancelWorkflowExecutionThrottleBurstLimitInTransactionsPerSecond = 'L-3E87B554', + RecordActivityTaskHeartbeatThrottleBurstLimitInTransactionsPerSecond = 'L-CBE45CF4', + SignalExternalWorkflowExecutionThrottleRefillLimitInTransactionsPerSecond = 'L-90E73253', + ListOpenWorkflowExecutionsThrottleRefillLimitInTransactionsPerSecond = 'L-54F7FCCE', + ListActivityTypesThrottleBurstLimitInTransactionsPerSecond = 'L-708CA9CD', + PollForDecisionTaskThrottleRefillLimitInTransactionsPerSecond = 'L-DFCD38D8', + InputOrOutputResultDataSize = 'L-585C29D3', + DescribeWorkflowTypeThrottleRefillLimitInTransactionsPerSecond = 'L-D699363F', + RespondDecisionTaskCompletedThrottleRefillLimitInTransactionsPerSecond = 'L-10B07C15', + CountPendingDecisionTasksThrottleBurstLimitInTransactionsPerSecond = 'L-C5FCA8F5', + TagResourceThrottleBurstLimitInTransactionsPerSecond = 'L-740FECBB', + RespondActivityTaskCanceledThrottleRefillLimitInTransactionsPerSecond = 'L-E3E6B073', + RespondActivityTaskCanceledThrottleBurstLimitInTransactionsPerSecond = 'L-158C01C8', + RequestCancelExternalWorkflowExecutionThrottleRefillLimitInTransactionsPerSecond = 'L-967C6C00', + RecordActivityTaskHeartbeatThrottleRefillLimitInTransactionsPerSecond = 'L-D441B742', + StartChildWorkflowExecutionThrottleRefillLimitInTransactionsPerSecond = 'L-BE04F134', + OpenTimersPerWorkflowExecution = 'L-4B5905DC', + RegisterActivityTypeThrottleRefillLimitInTransactionsPerSecond = 'L-C943B086', + UndeprecateActivityTypeThrottleRefillLimitInTransactionsPerSecond = 'L-522BE746', + RequestSize = 'L-9B56EA20', + RegisterWorkflowTypeThrottleBurstLimitInTransactionsPerSecond = 'L-11796F0D', + DeprecateWorkflowTypeThrottleBurstLimitInTransactionsPerSecond = 'L-52452CEB', + StartTimerThrottleRefillLimitInTransactionsPerSecond = 'L-A94186CB', + RegisterDomainThrottleRefillLimitInTransactionsPerSecond = 'L-72A8322C', + TaskExecutionTimeInYear = 'L-B016F208', + DeprecateDomainThrottleBurstLimitInTransactionsPerSecond = 'L-22059A3A', + CountPendingActivityTasksThrottleBurstLimitInTransactionsPerSecond = 'L-78ABDAF0', + ListActivityTypesThrottleRefillLimitInTransactionsPerSecond = 'L-8746B166', + UndeprecateWorkflowTypeThrottleBurstLimitInTransactionsPerSecond = 'L-3E1AC395', + PollersPerTaskList = 'L-E5906E57', + EventsInWorkflowExecutionHistory = 'L-DF1BC840', + ListClosedWorkflowExecutionsThrottleRefillLimitInTransactionsPerSecond = 'L-1B6B2394', + RespondActivityTaskCompletedThrottleRefillLimitInTransactionsPerSecond = 'L-C96251D8', + TerminateWorkflowExecutionThrottleBurstLimitInTransactionsPerSecond = 'L-420027E2', + CountOpenWorkflowExecutionsThrottleBurstLimitInTransactionsPerSecond = 'L-10FD2791', + DescribeDomainThrottleRefillLimitInTransactionsPerSecond = 'L-E2260636', + DeprecateActivityTypeThrottleRefillLimitInTransactionsPerSecond = 'L-D4B08332', + SignalExternalWorkflowExecutionThrottleBurstLimitInTransactionsPerSecond = 'L-E74A6FC5', + ListDomainsThrottleBurstLimitInTransactionsPerSecond = 'L-FFE46A4B', +} +export enum AmazonTextractQuota { + AsyncDocumentTextDetectionThrottleLimitForMaxNumberOfConcurrentJobs = 'L-5B33D1C3', + GetLendingAnalysisThrottleLimitInTransactionsPerSecond = 'L-78993479', + AsyncDocumentAnalysisThrottleLimitForMaxNumberOfConcurrentJobs = 'L-5CF3B0DF', + CreateAdapterVersionThrottleLimitInTransactionsPerSecond = 'L-F94EF855', + StartDocumentAnalysisThrottleLimitInTransactionsPerSecond = 'L-5E3A5D59', + UpdateAdapterThrottleLimitInTransactionsPerSecond = 'L-7FCF1C0F', + CreateAdapterVersionThrottleLimitForMaxNumberOfInProgressAdapterVersionsPerAccount = 'L-E6985921', + GetExpenseAnalysisThrottleLimitInTransactionsPerSecond = 'L-FA2C35B5', + UntagResourceThrottleLimitInTransactionsPerSecond = 'L-C3BB1AF3', + AsyncExpenseAnalysisThrottleLimitForMaxNumberOfConcurrentJobs = 'L-25F2C897', + GetLendingAnalysisSummaryThrottleLimitInTransactionsPerSecond = 'L-4CDADAE4', + GetAdapterVersionThrottleLimitInTransactionsPerSecond = 'L-A35C1798', + AnalyzeIdThrottleLimitInTransactionsPerSecond = 'L-7C2E8C8C', + CreateAdapterThrottleLimitForMaxNumberOfAdaptersPerAccount = 'L-C9EC1D79', + StartExpenseAnalysisThrottleLimitInTransactionsPerSecond = 'L-E31D91C2', + DetectDocumentTextThrottleLimitInTransactionsPerSecond = 'L-75788A8B', + GetAdapterThrottleLimitInTransactionsPerSecond = 'L-3AFF0430', + GetDocumentTextDetectionThrottleLimitInTransactionsPerSecond = 'L-94C8FE3F', + AsyncLendingAnalysisThrottleLimitForMaxNumberOfConcurrentJobs = 'L-CFEC0789', + DeleteAdapterVersionThrottleLimitInTransactionsPerSecond = 'L-F69F2A31', + CreateAdapterThrottleLimitInTransactionsPerSecond = 'L-29FC1640', + ListAdapterVersionsThrottleLimitInTransactionsPerSecond = 'L-25DA5AF6', + AnalyzeDocumentThrottleLimitInTransactionsPerSecond = 'L-B83AD6FF', + AnalyzeExpenseThrottleLimitInTransactionsPerSecond = 'L-80A81B07', + StartLendingAnalysisThrottleLimitInTransactionsPerSecond = 'L-FF9CE2BA', + CreateAdapterVersionThrottleLimitForMaxNumberOfNewSuccessfulAdapterVersionsPerMonth = 'L-90151521', + DeleteAdapterThrottleLimitInTransactionsPerSecond = 'L-1E329480', + ListAdaptersThrottleLimitInTransactionsPerSecond = 'L-8A021B00', + StartDocumentTextDetectionThrottleLimitInTransactionsPerSecond = 'L-AE9E2453', + GetDocumentAnalysisThrottleLimitInTransactionsPerSecond = 'L-9ACAE5E4', + TagResourceThrottleLimitInTransactionsPerSecond = 'L-16E39BCB', + ListTagsForResourceThrottleLimitInTransactionsPerSecond = 'L-3667A958', +} +export enum AmazonTimestreamQuota { + CompositePartitionKeyAttributesPerTable = 'L-0C580409', + DimensionsPerTable = 'L-3F031494', + TablesPerAccount = 'L-1222731D', + MeasuresPerTable = 'L-05CF2F29', + MeasuresPerMultiMeasureRecord = 'L-A27C6B51', + FutureIngestionPeriodInMinutes = 'L-BA3B7FAE', + MaximumRetentionPeriodForMagneticStoreInDays = 'L-088C008A', + DatabaseNameLength = 'L-9D04593E', + MinimumRetentionPeriodForMemoryStoreInHours = 'L-C27A28F1', + MeasureNameLength = 'L-2809109B', + ThrottleRateForCrudApIs = 'L-2154D795', + MinimumRetentionPeriodForMagneticStoreInDays = 'L-26F97A65', + DimensionNameDimensionValuePairSizePerSeries = 'L-1B45307E', + RecordsPerWriteRecordsApiRequest = 'L-0309BA4B', + DataSizeForQueryResult = 'L-654BFA10', + MaximumRetentionPeriodForMemoryStoreInHours = 'L-DCFEF3EC', + MetadataSizeForQueryResult = 'L-BABD5731', + UniqueMeasuresAcrossMultiMeasureRecordsPerTable = 'L-71D80F70', + ExecutionDurationForQueriesInHours = 'L-0D8D0B47', + MaximumCountOfActiveMagneticStorePartitionsPerDatabase = 'L-BFCD0C9E', + ScheduledQueriesPerAccount = 'L-F1AC16A2', + TableNameLength = 'L-548D4FA3', + DimensionNameLength = 'L-0C72E0F2', + QueryStringLengthInKiB = 'L-1280418F', + MeasureValueSizePerMultiMeasureRecord = 'L-BF4B4E97', + DatabasesPerAccount = 'L-FD5A0C1A', +} +export enum AmazonTimestreamForManagedInfluxQuota {} +export enum AwsTelcoNetworkBuilderQuota { + FunctionPackages = 'L-08069DBD', + NetworkServiceInstances = 'L-C92FB107', + ConcurrentOngoingNetworkServiceOperations = 'L-81A3E723', + NetworkPackages = 'L-3328748B', +} +export enum AmazonTranscribeQuota { + MaximumAudioFileSizeForMedicalScribeJobs = 'L-1D3189BA', + MaximumAudioFileLengthForMedicalScribeJobs = 'L-95ECDA9E', + TransactionsPerSecondStartCallAnalyticsStreamTranscriptionWebsocketOperation = 'L-E32052E9', + TransactionsPerSecondStartCallAnalyticsStreamTranscriptionOperation = 'L-033E2344', + TransactionsPerSecondListCallAnalyticsCategoriesOperation = 'L-AED2C08C', + TransactionsPerSecondDeleteVocabularyOperation = 'L-F0847210', + TransactionsPerSecondDeleteMedicalScribeJobOperation = 'L-3C33F5F4', + NumberOfConcurrentCallAnalyticsBatchJobs = 'L-0976024B', + TheNumberOfConcurrentStartCallAnalyticsStreamTranscriptionHttp2StreamingRequests = 'L-72BA37C9', + TransactionsPerSecondGetCallAnalyticsCategoryOperation = 'L-29C417EC', + TransactionsPerSecondGetCallAnalyticsJobOperation = 'L-0E6A6411', + MaximumAudioFileSize = 'L-FE4C37F7', + MaximumAudioFileSizeMedical = 'L-2B8713A4', + JobQueueBandwidthRatio = 'L-949A4206', + TransactionsPerSecondListMedicalVocabulariesOperation = 'L-D2C499F9', + MaximumNumberOfRulesPerCategoryForCallAnalyticsBatchJobs = 'L-C3ED0F9A', + TransactionsPerSecondDeleteMedicalTranscriptionJobOperation = 'L-29A2FDAD', + MaximumLengthOfACustomVocabularyPhrase = 'L-49FE4216', + NumberOfDaysThatJobRecordsAreRetained = 'L-27AD4F82', + TransactionsPerSecondCreateCallAnalyticsCategoryOperation = 'L-B32D80CD', + TransactionsPerSecondStartCallAnalyticsJobOperation = 'L-9D95450F', + NumberOfDaysThatJobRecordsAreRetainedMedical = 'L-34DCCAED', + TransactionsPerSecondListTranscriptionJobsOperation = 'L-612AD79E', + NumberOfConcurrentBatchTranscriptionJobs = 'L-6F7AB1C9', + TransactionsPerSecondGetMedicalVocabularyOperation = 'L-467D3ED0', + MaximumNumberOfVocabularyFilters = 'L-BE7BEF67', + TransactionsPerSecondUpdateMedicalVocabularyOperation = 'L-B69CB5AC', + MinimumAudioFileDurationForCallAnalyticsBatchJobs = 'L-8E9A98C3', + NumberOfChannelsForChannelIdentificationForCallAnalyticsBatchJobs = 'L-7654E331', + MaximumAudioFileLengthMedical = 'L-BD12ECD8', + TotalNumberOfMedicalVocabulariesPerAccount = 'L-8EF21937', + MaximumSizeOfAVocabularyFilter = 'L-30829B86', + MaximumAudioFileSizeForCallAnalyticsBatchJobs = 'L-8043D35A', + TransactionsPerSecondDeleteMedicalVocabularyOperation = 'L-ED89E5C0', + TransactionsPerSecondUpdateCallAnalyticsCategoryOperation = 'L-F4971247', + TransactionsPerSecondStartMedicalTranscriptionJobOperation = 'L-825D9BA6', + TransactionsPerSecondStartStreamTranscriptionOperation = 'L-B8122269', + MaximumNumberOfTargetsAllowedPerCategoryForCallAnalyticsBatchJobs = 'L-3445E3CD', + TransactionsPerSecondListVocabulariesOperation = 'L-B46C0D84', + NumberOfConcurrentlyTrainingCustomLanguageModels = 'L-E0D2ADDE', + NumberOfConcurrentMedicalBatchTranscriptionJobs = 'L-0183037A', + TransactionsPerSecondStartMedicalStreamTranscriptionOperation = 'L-899A1357', + TransactionsPerSecondGetTranscriptionJobOperation = 'L-79130216', + TransactionsPerSecondGetMedicalTranscriptionJobOperation = 'L-54F3FD91', + TransactionsPerSecondGetMedicalScribeJobOperation = 'L-DD4D5E02', + NumberOfDaysThatJobRecordsAreRetainedForCallAnalyticsBatchJobs = 'L-B4B3AAA0', + TransactionsPerSecondListMedicalScribeJobsOperation = 'L-BFDCFAB5', + MaximumNumberOfCategoriesForCallAnalyticsBatchJobs = 'L-E3EBEDF2', + TransactionsPerSecondGetVocabularyOperation = 'L-B8E3E4A0', + NumberOfPendingMedicalVocabularies = 'L-340B75E2', + TransactionsPerSecondDeleteCallAnalyticsJobOperation = 'L-4FA92C98', + TotalNumberOfCustomLanguageModelsPerAccount = 'L-9190489D', + NumberOfStartMedicalStreamTranscriptionWebsocketRequests = 'L-0C60E99C', + TransactionsPerSecondStartMedicalScribeJobOperation = 'L-0806BF9E', + NumberOfChannelsForChannelIdentification = 'L-67DA1F8F', + NumberOfPendingVocabularies = 'L-A51A98B4', + MinimumAudioFileDurationMedical = 'L-28AEFB5D', + TransactionsPerSecondStartTranscriptionJobOperation = 'L-6F37B9E3', + MaximumAudioFileLength = 'L-C12E2B65', + TotalNumberOfVocabulariesPerAccount = 'L-3278D334', + TransactionsPerSecondListMedicalTranscriptionJobsOperation = 'L-3FDF559D', + TransactionsPerSecondListCallAnalyticsJobsOperation = 'L-8DB4434C', + TransactionsPerSecondCreateVocabularyOperation = 'L-23CCF526', + MaximumAudioFileLengthForCallAnalyticsBatchJobs = 'L-4D4F1AC4', + MaximumSizeOfACustomVocabulary = 'L-2C7580BC', + NumberOfChannelsForChannelIdentificationMedical = 'L-D9589E7E', + TransactionsPerSecondUpdateVocabularyOperation = 'L-C20201ED', + NumberOfConcurrentMedicalScribeBatchJobs = 'L-C8D4E7C4', + TransactionsPerSecondDeleteTranscriptionJobOperation = 'L-CECDF303', + TransactionsPerSecondDeleteCallAnalyticsCategoryOperation = 'L-AEECB49A', + NumberOfConcurrentHttp2StreamsForStreamingTranscription = 'L-CDB96031', + NumberOfStartStreamTranscriptionWebsocketRequests = 'L-A9710EC8', + MinimumAudioFileDuration = 'L-D6EC4EAD', +} +export enum AwsTransferFamilyQuota { + NewExecutionsRefillRatePerWorkflowPerSecond = 'L-CD3E054C', + ConcurrentSessionsPerServer = 'L-4BAB8288', + NumberOfAuthenticationRequestsPerUserPerSecond = 'L-3B829EB0', + ProfilesPerAccount = 'L-858EB316', + FileSize = 'L-2259D421', + IdleConnectionTimeout = 'L-B6C4BD5F', + NumberOfFilesPerStartFileTransferRequest = 'L-2B1BC0C3', + AgreementsPerServer = 'L-C08739CA', + NumberOfServiceManagedUsersPerServer = 'L-101C3D29', + RateOfStartFileTransferRequestsPerConnector = 'L-19FB5D1F', + VpcEndpointServersPerAccount = 'L-5BAD02C2', + MaximumOutboundAs2MessageSize = 'L-9A414140', + CertificatesPerAccount = 'L-C0FDC60E', + ConnectorsPerAccount = 'L-A6509B77', + RateOfAs2MessagesPerServer = 'L-4978356A', + ServersPerAccount = 'L-6E386A05', + ConcurrentMultiplexedSftpSessionsPerConnection = 'L-396F6E73', + WorkflowsPerAccount = 'L-8A2575E3', + MaximumInboundAs2MessageSize = 'L-1B36ED13', + SshKeysPerServiceManagedUser = 'L-90797EDA', + MaximumNumberOfAdGroupsForAccess = 'L-843894CE', + CertificatesPerProfile = 'L-B2750988', + MaximumNumberOfNewExecutionsPerWorkflow = 'L-05D4EADD', + ConcurrentAs2MessagesPerConnector = 'L-83F728FB', + ConcurrentAs2MessagesPerServer = 'L-1B7183EB', +} +export enum AmazonTranslateQuota { + ConcurrentBatchTranslationJobs = 'L-10DB0BCF', + ParallelDataResources = 'L-2B2DC880', + CustomTerminologyFiles = 'L-4011ABD8', +} +export enum AwsTrustedAdvisorQuota { + RateOfListOrganizationRecommendationsApiRequests = 'L-49DFB93E', + RateOfListOrganizationRecommendationResourcesApiRequests = 'L-851C195A', + RateOfUpdateOrganizationRecommendationLifecycleApiRequests = 'L-F3925B4D', + RateOfGetRecommendationApiRequests = 'L-355F669C', + RateOfListChecksApiRequests = 'L-EACA07A4', + RateOfListOrganizationRecommendationAccountsApiRequests = 'L-BB6B7E8A', + RateOfListRecommendationResourcesApiRequests = 'L-1F974317', + RateOfGetOrganizationRecommendationApiRequests = 'L-9421C87F', + RateOfListRecommendationsApiRequests = 'L-220FC39B', + RateOfUpdateRecommendationLifecycleApiRequests = 'L-5E4F09B0', +} +export enum AwsMarketplaceVendorInsightsQuota { + SecurityProfilesPerAccount = 'L-5ED1D22F', + DataSourcesPerSecurityProfile = 'L-1922DB2F', + RateOfApiRequests = 'L-BDD30ADD', + DailySnapshotsPerSecurityProfile = 'L-F1F2AAFB', + DataSourcesPerAccount = 'L-A1493543', +} +export enum AmazonVerifiedPermissionsQuota { + GetPolicyStoreRequestsPerSecondPerRegionPerAccount = 'L-E1924570', + BatchIsAuthorizedRequestsPerSecondPerRegionPerAccount = 'L-9DB5CAA4', + CreatePolicyTemplateRequestsPerSecondPerRegionPerAccount = 'L-8D5CB09F', + CreatePolicyStoreRequestsPerSecondPerRegionPerAccount = 'L-3F1C6115', + UpdatePolicyTemplateRequestsPerSecondPerRegionPerAccount = 'L-DC54B663', + IsAuthorizedRequestsPerSecondPerRegionPerAccount = 'L-771544C7', + ListPolicyStoresRequestsPerSecondPerRegionPerAccount = 'L-271BE7E8', + PutSchemaRequestsPerSecondPerRegionPerAccount = 'L-886D79EB', + GetPolicyRequestsPerSecondPerRegionPerAccount = 'L-C9736881', + PolicyTemplatesPerPolicyStore = 'L-97BDA0CF', + UpdatePolicyRequestsPerSecondPerRegionPerAccount = 'L-2AFF096D', + ListPolicyTemplatesRequestsPerSecondPerRegionPerAccount = 'L-70239429', + DeletePolicyRequestsPerSecondPerRegionPerAccount = 'L-F81CF58F', + DeletePolicyTemplateRequestsPerSecondPerRegionPerAccount = 'L-5CA93A13', + ListPoliciesRequestsPerSecondPerRegionPerAccount = 'L-4E0E8AFD', + CreatePolicyRequestsPerSecondPerRegionPerAccount = 'L-9647C866', + GetSchemaRequestsPerSecondPerRegionPerAccount = 'L-B49B9779', + DeletePolicyStoreRequestsPerSecondPerRegionPerAccount = 'L-19773BA0', + PolicyStoresPerRegionPerAccount = 'L-919F2C9C', + IsAuthorizedWithTokenRequestsPerSecondPerRegionPerAccount = 'L-645D3857', + GetPolicyTemplateRequestsPerSecondPerRegionPerAccount = 'L-D82415D2', +} +export enum Ec2VmImportExportQuota { + ConcurrentTaskLimitForImportInstanceImportVolumeAndCreateInstanceExportTask = 'L-0994E50B', + ConcurrentTaskLimitForImportImageImportSnapshotAndExportImage = 'L-66ABAAD5', +} +export enum AmazonConnectVoiceIdQuota { + ActiveSpeakerEnrollmentJobsPerDomain = 'L-55441DAB', + WatchlistsPerDomain = 'L-3790424B', + SpeakersPerDomain = 'L-65FE7850', + ActiveFraudsterRegistrationJobsPerDomain = 'L-38B73369', + FraudsterRegistrationRequestsPerFraudsterRegistrationJob = 'L-429DC46D', + SpeakerEnrollmentRequestsPerSpeakerEnrollmentJob = 'L-9EB99B73', + DomainsPerRegion = 'L-CF9F1A9B', + ActiveStreamingSessionsPerDomain = 'L-F4849009', + FraudstersPerWatchlist = 'L-6DD2993B', +} +export enum AmazonVirtualPrivateCloudAmazonVpcQuota { + ElasticIpAddressQuotaPerNatGateway = 'L-5F53652F', + NatGatewaysPerAvailabilityZone = 'L-FE5A380F', + ActiveVpcPeeringConnectionsPerVpc = 'L-7E9ECCDB', + ParticipantAccountsPerVpc = 'L-2C462E13', + GatewayVpcEndpointsPerRegion = 'L-1B52E74A', + InboundOrOutboundRulesPerSecurityGroup = 'L-0EA8095F', + RoutesPerRouteTable = 'L-93826ACB', + OutstandingVpcPeeringConnectionRequests = 'L-DC9F7029', + RouteTablesPerVpc = 'L-589F43AA', + InternetGatewaysPerRegion = 'L-A4707A72', + RulesPerNetworkAcl = 'L-2AEEBF1A', + PrivateIpAddressQuotaPerNatGateway = 'L-DFA99DE7', + SecurityGroupsPerNetworkInterface = 'L-2AFB9258', + InterfaceVpcEndpointsPerVpc = 'L-29B6F2EB', + IPv4CidrBlocksPerVpc = 'L-83CA0A9D', + VpcSecurityGroupsPerRegion = 'L-E79EC296', + NetworkInterfacesPerRegion = 'L-DF5E4CA3', + SubnetsPerVpc = 'L-407747CB', + VpCsPerRegion = 'L-F678F1CE', + NetworkAcLsPerVpc = 'L-B4A6D682', + VpcPeeringConnectionRequestExpiryHours = 'L-8312C5BB', + EgressOnlyInternetGatewaysPerRegion = 'L-45FE3B85', + SubnetsThatCanBeSharedWithAnAccount = 'L-44499CD2', + NetworkAddressUsage = 'L-BB24F6E5', + IPv6CidrBlocksPerVpc = 'L-085A6257', + PeeredNetworkAddressUsage = 'L-CD17FD4B', + CharactersPerVpcEndpointPolicy = 'L-3248932A', +} +export enum VpcLatticeQuota { + AuthPolicySize = 'L-87FCA9B2', + SecurityGroupsPerAssociation = 'L-CA6A1CC5', + ServiceAssociationsPerServiceNetwork = 'L-75D4A19E', + ServiceNetworksPerRegion = 'L-9CAD07FB', + RulesPerListener = 'L-CF78395E', + ServicesPerRegion = 'L-620C821E', + TargetGroupsPerService = 'L-3DEC3B9F', + ListenersPerService = 'L-D64E952E', + TargetsPerTargetGroup = 'L-D71303F3', + VpcAssociationsPerServiceNetwork = 'L-EF6E2D62', + TargetGroupsPerRegion = 'L-BB11C6B9', +} +export enum AwsWafClassicGlobalQuota { + HttpHeaderNameLength = 'L-E71DA99A', + GeoMatchSets = 'L-86D16861', + RulesPerWebAcl = 'L-90E28090', + Rules = 'L-1A78A466', + WebAcLs = 'L-FECDE520', + PatternSetsPerRegexMatchCondition = 'L-2661FA32', + IpAddressesBlockedPerRateBasedRule = 'L-F7C37158', + RegexPatternLength = 'L-3313C840', + LoggingDestinationConfigurationsPerWebAcl = 'L-F898C443', + FiltersPerSqlInjectionMatchCondition = 'L-EABF2C71', + ConditionsPerRule = 'L-7ED3177E', + RequestsPerSecondPerDistributionByWebAcl = 'L-A696B8FB', + IpAddressRangesPerIpSetMatchCondition = 'L-09165E2F', + RateBasedRules = 'L-002637B8', + FiltersPerSizeConstraintCondition = 'L-A4DCDD3B', + RateBasedRuleRate = 'L-D636720A', + FiltersPerStringMatchCondition = 'L-33088EE6', + FiltersPerCrossSiteScriptingMatchCondition = 'L-A742D1B2', + LocationsPerGeoMatchSet = 'L-CC2A2D6B', + SearchLength = 'L-2D712F2C', + RegexPatternSets = 'L-FC6B416B', + PatternsPerPatternSet = 'L-A772C42A', +} +export enum AwsWafClassicRegionalQuota { + RegexPatternLength = 'L-797E08C8', + SearchLength = 'L-02647DC9', + GeoMatchSets = 'L-ACF59499', + FiltersPerSqlInjectionMatchCondition = 'L-954F3F3A', + RulesPerWebAcl = 'L-9692AA5E', + FiltersPerCrossSiteScriptingMatchCondition = 'L-EFDFFE2D', + FiltersPerSizeConstraintCondition = 'L-5510BCA0', + PatternsPerPatternSet = 'L-D7382DD3', + RateOfRequests = 'L-28FAE46F', + ConditionsPerRule = 'L-9C634948', + Rules = 'L-7BF8015E', + LoggingDestinationConfigurationsPerWebAcl = 'L-0043356F', + RateBasedRuleRate = 'L-7EF6FB27', + RegexPatternSets = 'L-8EEF0989', + FiltersPerStringMatchCondition = 'L-C47A352B', + IpAddressesBlockedPerRateBasedRule = 'L-343F131E', + RateBasedRules = 'L-6DA23DDF', + LocationsPerGeoMatchSet = 'L-FFB853E8', + IpAddressRangesPerIpSetMatchCondition = 'L-AF52C91B', + PatternSetsPerRegexMatchCondition = 'L-DF027FCD', + WebAcLs = 'L-55785BA2', + HttpHeaderNameLength = 'L-AEEA10B9', +} +export enum AwsWafQuota { + MaximumCombinedSizeInKilobytesOfAllResponseBodyContentForASingleRuleGroupOrASingleWebAclForCloudFront = 'L-28ED5935', + MaximumNumberOfWebAclCapacityUnitsInARuleGroupInWafForCloudFront = 'L-03F826DB', + MaximumNumberOfLogDestinationConfigsPerWebAclInWafForCloudfront = 'L-43146A5B', + MaximumRegexPatternSetsPerAccountInWafForCloudFront = 'L-8973BE90', + MaximumSizeInKilobytesOfTheCustomResponseBodyContentForASingleCustomResponseDefinitionForCloudFront = 'L-DE1730D1', + MaximumRuleGroupsPerAccountInWafForRegional = 'L-C5BCD850', + MaximumNumberOfCustomResponseHeadersPerWebAclOrRuleGroupForCloudFront = 'L-C4A384E0', + MaximumNumberOfPatternsInARegexPatternSetPerAccountInWafForCloudfront = 'L-1563BFDE', + MaximumNumberOfWebAclCapacityUnitsInAWebAclInWafForRegional = 'L-D9F31E8A', + MaximumIpSetsPerAccountInWafForCloudFront = 'L-F65D5473', + MaximumNumberOfCustomHeadersForASingleCustomRequestDefinitionForRegional = 'L-CCCD1D7B', + MaximumNumberOfCustomHeadersForASingleCustomResponseDefinitionForCloudFront = 'L-E60C1749', + MaximumCombinedSizeInKilobytesOfAllResponseBodyContentForASingleRuleGroupOrASingleWebAclForRegional = 'L-6F32B880', + MaximumNumberOfPatternsInARegexPatternSetPerAccountInWafForRegional = 'L-291AF103', + NumberOfTokenDomainsPerWebAclForCloudFront = 'L-85B5BC49', + MaximumNumberOfCustomHeadersForASingleCustomRequestDefinitionForCloudFront = 'L-D0A6B6E1', + MaximumNumberOfRateBasedStatementsPerWebAclInWafForCloudfront = 'L-CF6432AE', + MaximumNumberOfLogDestinationConfigsPerWebAclInWafForRegional = 'L-04231B90', + MaximumNumberOfUniqueIpAddressesThatCanBeBlockedPerRateBasedRuleForCloudFront = 'L-D161F704', + MaximumNumberOfIpAddressesInAnIpSetInWafForRegional = 'L-B24834C1', + MaximumNumberOfCustomRequestHeadersPerWebAclOrRuleGroupForCloudFront = 'L-3A878263', + MaximumNumberOfWebAclCapacityUnitsInARuleGroupInWafForRegional = 'L-91DEFBB6', + MaximumNumberOfTextTransformationsPerRuleStatementForRegional = 'L-041DD6D3', + MaximumNumberOfRequestsPerSecondPerWebAclForCloudFront = 'L-FE21FEF6', + MaximumNumberOfCustomResponseBodiesPerWebAclOrRuleGroupForRegional = 'L-71C2E81B', + NumberOfCloudWatchLogsLogStreamsPerWebAclForRegional = 'L-0C8E1D79', + MaximumIpSetsPerAccountInWafForRegional = 'L-D6DA96AE', + MaximumNumberOfBytesInAStringMatchByteMatchStringInWafForCloudFront = 'L-6E2D97A0', + MaximumSizeInKilobytesOfTheCustomResponseBodyContentForASingleCustomResponseDefinitionForRegional = 'L-0A8A309C', + MaximumNumberOfCharactersAllowedInARegexPatternPerAccountInWafForRegional = 'L-0224FEE0', + MaximumNumberOfCustomRequestHeadersPerWebAclOrRuleGroupForRegional = 'L-2D9CB303', + MaximumNumberOfCustomResponseBodiesPerWebAclOrRuleGroupForCloudFront = 'L-F7AF7D03', + MinimumRequestRateThatCanBeDefinedForARateBasedRuleForRegional = 'L-C928281E', + MaximumNumberOfWebAclCapacityUnitsInAWebAclInWafForCloudFront = 'L-658D75D3', + MaximumNumberOfReferencedStatementsPerRuleGroupOrWebAclInWafForRegional = 'L-030B54CC', + MaximumNumberOfRateBasedStatementsPerWebAclInWafForRegional = 'L-B1635397', + MaximumNumberOfRequestsPerSecondPerWebAclForRegional = 'L-A85235F6', + MaximumSizeInKilobytesOfAWebRequestBodyThatCanBeInspectedForCloudFront = 'L-CDDA5257', + NumberOfCloudWatchLogsLogStreamsPerWebAclForCloudFront = 'L-7BED657D', + MaximumRegexPatternSetsPerAccountInWafForRegional = 'L-BF0029B0', + NumberOfTokenDomainsPerWebAclForRegional = 'L-11D00F38', + MaximumSizeInKilobytesOfAWebRequestBodyThatCanBeInspectedForRegional = 'L-E684655E', + MaximumNumberOfBytesInAStringMatchByteMatchStringInWafForRegional = 'L-5E8DF1EF', + MaximumNumberOfCharactersAllowedInARegexPatternPerAccountInWafForCloudfront = 'L-1FD7D16F', + MaximumWebAcLsPerAccountInWafForRegional = 'L-2EC3DE7B', + MaximumNumberOfCustomHeadersForASingleCustomResponseDefinitionForRegional = 'L-45C90A8A', + MaximumNumberOfReferencedStatementsPerRuleGroupOrWebAclInWafForCloudfront = 'L-FB279853', + MaximumNumberOfUniqueIpAddressesThatCanBeBlockedPerRateBasedRuleForRegional = 'L-74EBD1DD', + MinimumRequestRateThatCanBeDefinedForARateBasedRuleForCloudFront = 'L-BCCBD2F6', + MaximumRuleGroupsPerAccountInWafForCloudFront = 'L-9E2A3B2D', + MaximumNumberOfTextTransformationsPerRuleStatementForCloudFront = 'L-D40AA278', + MaximumNumberOfIpAddressesInAnIpSetInWafForCloudFront = 'L-5278124C', + MaximumNumberOfCustomResponseHeadersPerWebAclOrRuleGroupForRegional = 'L-E4E414A8', + MaximumWebAcLsPerAccountInWafForCloudFront = 'L-24189897', +} +export enum AmazonWorkSpacesApplicationManagerQuota { + TotalPackageSizeWithoutStorageFees = 'L-3E892813', + UserWorkSpaceOrGroupAssignmentsPerApplication = 'L-0EFAA13E', + ApplicationSize = 'L-BEBED81F', + ApplicationAssignmentsPerUser = 'L-23A8EFD3', +} +export enum AwsWellArchitectedToolQuota { + SharesPerReviewTemplate = 'L-A5DDC022', + LensesPerReviewTemplate = 'L-B9D3FEAA', + ReviewTemplatesPerAccountPerRegion = 'L-D69BFA30', + ChoicesPerQuestion = 'L-84104561', + LensesPerWorkload = 'L-66BC6D27', + PillarsPerLens = 'L-0AA67FCF', + LensSize = 'L-D5439D2C', + VersionsPerLens = 'L-0979631D', + WorkloadsPerAccountPerRegion = 'L-ACECEBBD', + SharesPerLens = 'L-E62A1DE4', + SharesPerWorkload = 'L-7E98904D', + LensesPerAccountPerRegion = 'L-BAE0003F', + MilestonesPerWorkload = 'L-CA783EAE', + QuestionsPerPillar = 'L-FCB0C16C', +} +export enum AmazonQInConnectQuota { + RateOfApiRequestsForGetContent = 'L-B5D9B610', + RateOfApiRequestsForDeleteAssistantAssociation = 'L-869A5CB8', + RateOfApiRequestsForSearchSessions = 'L-CBEEAAE4', + RateOfApiRequestsForStartImportJob = 'L-64F4F8A4', + RateOfApiRequestsForGetQuickResponse = 'L-C9B885FB', + RateOfApiRequestsForGetAssistantAssociation = 'L-BDA36AE2', + RateOfApiRequestsForUpdateKnowledgeBaseTemplateUri = 'L-16823F6A', + RateOfApiRequestsForRemoveKnowledgeBaseTemplateUri = 'L-E9948A8B', + RateOfApiRequestsForCreateAssistant = 'L-84036F17', + RateOfApiRequestsForDeleteContent = 'L-A67B1533', + RateOfApiRequestsForListAssistantAssociations = 'L-7A8F45D9', + RateOfApiRequestsForListImportJobs = 'L-B2D7D043', + RateOfApiRequestsForGetRecommendations = 'L-CA2E4BF7', + RateOfApiRequestsForGetImportJob = 'L-3BBE199E', + RateOfApiRequestsForCreateAssistantAssociation = 'L-06FFDC6F', + RateOfApiRequestsForDeleteImportJob = 'L-20924856', + RateOfApiRequestsForListQuickResponses = 'L-077B0F42', + RateOfApiRequestsForGetContentSummary = 'L-10CA616F', + RateOfApiRequestsForDeleteAssistant = 'L-A00E39EA', + RateOfApiRequestsForDeleteQuickResponse = 'L-EB422E2D', + RateOfApiRequestsForSearchContent = 'L-9B912B0C', + RateOfApiRequestsForUpdateQuickResponse = 'L-67C0E663', + RateOfApiRequestsForCreateSession = 'L-12665571', + RateOfApiRequestsForSearchQuickResponses = 'L-597AFFD4', + RateOfApiRequestsForListKnowledgeBases = 'L-6EAC2850', + RateOfApiRequestsForTagResource = 'L-A5E16775', + RateOfApiRequestsForUntagResource = 'L-6B774E73', + RateOfApiRequestsForNotifyRecommendationsReceived = 'L-7183A9AA', + RateOfApiRequestsForGetSession = 'L-357A675E', + RateOfApiRequestsForGetKnowledgeBase = 'L-3F7B6949', + RateOfApiRequestsForQueryAssistant = 'L-CA23568A', + RateOfApiRequestsForGetAssistant = 'L-33825569', + RateOfApiRequestsForCreateQuickResponse = 'L-BD020A5F', + RateOfApiRequestsForDeleteKnowledgeBase = 'L-75E8D220', + RateOfApiRequestsForListAssistants = 'L-8B3876B5', + RateOfApiRequestsForStartContentUpload = 'L-FE0F5908', + RateOfApiRequestsForCreateContent = 'L-7E7C477E', + RateOfApiRequestsForUpdateContent = 'L-E85308FD', + RateOfApiRequestsForListTagsForResource = 'L-7AA24867', + RateOfApiRequestsForCreateKnowledgeBase = 'L-7C77FB1A', + AmazonQInConnectAssistantCount = 'L-5558F50C', + ContentPerKnowledgeBase = 'L-80B507B3', + AssistantAssociation = 'L-DA307021', + AmazonQInConnectKnowledgeBaseCount = 'L-B9FB65B0', + ContentSize = 'L-286BB24D', +} +export enum AmazonWorkSpacesQuota { + StandbyWorkSpaces = 'L-9A67B5CB', + GraphicsProWorkSpaces = 'L-254B485B', + ConnectionAliases = 'L-0798A2C9', + RulesPerIpAccessControlGroup = 'L-5782CB4D', + IpAccessControlGroups = 'L-0E312A12', + GraphicsProG4dnWorkSpaces = 'L-BE9A8466', + Bundles = 'L-843E43DA', + WorkSpaces = 'L-34278094', + GraphicsG4dnWorkSpaces = 'L-BCACAEBC', + Directories = 'L-EEB759DE', + Images = 'L-18CE281C', + IpAccessControlGroupsPerDirectory = 'L-F61D0B79', +} +export enum AmazonWorkSpacesWebQuota { + NumberOfBrowserSettings = 'L-36965BD1', + NumberOfNetworkSettings = 'L-787608AB', + NumberOfIpAccessSettings = 'L-78A0B046', + NumberOfUserSettings = 'L-3A62D5A9', + NumberOfWebPortals = 'L-149BA3AD', + NumberOfUserAccessLoggingSettings = 'L-8BD59015', + NumberOfCertificatesPerTrustStore = 'L-B30615E2', + NumberOfIdentityProvidersPerPortal = 'L-DFC864EF', + NumberOfTrustStores = 'L-3A76276F', + RateOfDeleteUserAccessLoggingSettingsRequests = 'L-58202D8F', + RateOfGetPortalRequests = 'L-322B0066', + RateOfUpdateUserAccessLoggingSettingsRequests = 'L-6D75560B', + RateOfUpdateUserSettingsRequests = 'L-133AFA92', + RateOfCreatePortalRequests = 'L-D5EA059F', + RateOfListUserSettingsRequests = 'L-90048709', + RateOfAssociateBrowserSettingsRequests = 'L-A3E92E82', + RateOfAssociateTrustStoreRequests = 'L-0BC76D3C', + RateOfCreateTrustStoreRequests = 'L-F31E6456', + RateOfListNetworkSettingsRequests = 'L-79EC01E1', + RateOfAssociateNetworkSettingsRequests = 'L-43C1B6E6', + RateOfListTrustStoreCertificatesRequests = 'L-AE820403', + RateOfCreateUserSettingsRequests = 'L-079D6D1A', + RateOfListTrustStoresRequests = 'L-75BD2FF5', + RateOfUpdateIpAccessSettingsRequests = 'L-ED73BCDC', + RateOfUntagResourceRequests = 'L-94E642D1', + RateOfGetBrowserSettingsRequests = 'L-00C34477', + RateOfDisassociateUserSettingsRequests = 'L-F64575FC', + RateOfDisassociateIpAccessSettingsRequests = 'L-EC36A4C6', + RateOfGetUserSettingsRequests = 'L-0F222D02', + RateOfGetIpAccessSettingsRequests = 'L-A7E91E5C', + RateOfDeletePortalRequests = 'L-8BF44F8E', + RateOfAssociateUserSettingsRequests = 'L-ED7C8CD0', + RateOfAssociateIpAccessSettingsRequests = 'L-E1E0B653', + RateOfDeleteIpAccessSettingsRequests = 'L-3B5144ED', + RateOfCreateIdentityProviderRequests = 'L-6E3C18D8', + RateOfGetUserAccessLoggingSettingsRequests = 'L-E207534D', + RateOfUpdateTrustStoreRequests = 'L-955BBE3B', + RateOfDisassociateTrustStoreRequests = 'L-49DD0E62', + RateOfDeleteNetworkSettingsRequests = 'L-184EBD82', + RateOfUpdatePortalRequests = 'L-885A84B6', + NumberOfMaximumConcurrentSessionsPerPortal = 'L-4120496C', + RateOfUpdateIdentityProviderRequests = 'L-1E9BCE97', + RateOfUpdateNetworkSettingsRequests = 'L-1F25669B', + RateOfDisassociateUserAccessLoggingSettingsRequests = 'L-8E8025D8', + RateOfCreateUserAccessLoggingSettingsRequests = 'L-57EB3A5C', + RateOfListUserAccessLoggingSettingsRequests = 'L-DCB5C13E', + RateOfDeleteIdentityProviderRequests = 'L-5046A0A4', + RateOfDisassociateBrowserSettingsRequests = 'L-1DB47EFF', + RateOfDeleteBrowserSettingsRequests = 'L-362C3C84', + RateOfListPortalsRequests = 'L-095DE697', + RateOfDeleteTrustStoreRequests = 'L-438EBE87', + RateOfAssociateUserAccessLoggingSettingsRequests = 'L-6F4DA997', + RateOfListIdentityProvidersRequests = 'L-91742F30', + RateOfDisassociateNetworkSettingsRequests = 'L-77E95BD0', + RateOfCreateBrowserSettingsRequests = 'L-C8E73DC8', + RateOfTagResourceRequests = 'L-86380CED', + RateOfGetNetworkSettingsRequests = 'L-E81A7683', + RateOfCreateIpAccessSettingsRequests = 'L-14261565', + RateOfListTagsForResourceRequests = 'L-1A51C3EA', + RateOfCreateNetworkSettingsRequests = 'L-BB21B00F', + RateOfUpdateBrowserSettingsRequests = 'L-48CA0EC9', + RateOfListBrowserSettingsRequests = 'L-02CFB9A1', + RateOfDeleteUserSettingsRequests = 'L-2C7C0AF1', + RateOfListIpAccessSettingsRequests = 'L-E91D6E7E', + RateOfGetIdentityProviderRequests = 'L-D9ADFC33', +} +export enum AwsXRayQuota { + SegmentDocumentSize = 'L-D781C0FD', + TraceDocumentSizeDynamicUpperLimit = 'L-428FB8E0', + TagsPerGroup = 'L-E2DD2778', + TraceAndServiceGraphRetentionInDays = 'L-998BFF16', + TagsPerCustomSamplingRule = 'L-DB51D338', + SegmentsPerSecond = 'L-E75A2BBF', + CustomSamplingRulesPerRegion = 'L-8C0C998A', + TraceDataModificationPeriodInDays = 'L-5DB17969', + GroupsInAnAccount = 'L-7F259013', + IndexedAnnotationsPerTrace = 'L-C6B6F05D', + TraceDocumentSizeLowerLimit = 'L-3B8EFF88', +} +export enum AWSService { + AwsCloudMap = 'AWSCloudMap', + AccessAnalyzer = 'access-analyzer', + AwsAccountManagement = 'account', + AwsCertificateManagerAcm = 'acm', + AwsPrivateCertificateAuthority = 'acm-pca', + AmazonManagedWorkflowsForApacheAirflow = 'airflow', + AwsAmplify = 'amplify', + AmplifyUiBuilder = 'amplifyuibuilder', + AmazonOpenSearchServerless = 'aoss', + AmazonApiGateway = 'apigateway', + AmazonConnectApplicationIntegrations = 'app-integrations', + AwsAppConfig = 'appconfig', + AwsAppFabric = 'appfabric', + AmazonAppFlow = 'appflow', + ApplicationAutoScaling = 'application-autoscaling', + AwsApplicationCostProfiler = 'application-cost-profiler', + AwsAppMesh = 'appmesh', + AwsAppRunner = 'apprunner', + AmazonAppStream20 = 'appstream2', + AwsAppSync = 'appsync', + AmazonManagedPrometheus = 'aps', + AmazonAthena = 'athena', + AwsAuditManager = 'auditmanager', + AmazonEc2AutoScaling = 'autoscaling', + AwsAutoScalingPlans = 'autoscaling-plans', + AwsMarketplaceDeploymentService = 'aws-marketplace', + B2BDataInterchange = 'b2bi', + AwsBackup = 'backup', + AwsBatch = 'batch', + AwsBillingAndCostManagementDataExports = 'bcm-data-exports', + AmazonBedrock = 'bedrock', + AmazonBedrockAgent = 'bedrock-agent', + AwsBillingConductor = 'billingconductor', + AmazonBraket = 'braket', + AwsBugbust = 'bugbust', + AmazonConnectCases = 'cases', + AmazonKeyspacesForApacheCassandra = 'cassandra', + AwsCostExplorer = 'ce', + AwsChatbot = 'chatbot', + AmazonChime = 'chime', + AwsCleanRooms = 'cleanrooms', + AwsCloud9 = 'cloud9', + AwsCloudFormation = 'cloudformation', + AmazonCloudFront = 'cloudfront', + AwsCloudHsm = 'cloudhsm', + AwsCloudShell = 'cloudshell', + AwsCloudTrail = 'cloudtrail', + AwsCodeArtifact = 'codeartifact', + AwsCodeBuild = 'codebuild', + AwsCodeCommit = 'codecommit', + AwsCodeDeploy = 'codedeploy', + AmazonCodeGuruProfiler = 'codeguru-profiler', + AmazonCodeGuruReviewer = 'codeguru-reviewer', + AwsCodePipeline = 'codepipeline', + AmazonCognitoFederatedIdentities = 'cognito-identity', + AmazonCognitoUserPools = 'cognito-idp', + AmazonCognitoSync = 'cognito-sync', + AmazonComprehend = 'comprehend', + AmazonComprehendMedical = 'comprehendmedical', + AwsComputeOptimizer = 'compute-optimizer', + AwsConfig = 'config', + AmazonConnect = 'connect', + AmazonConnectOutboundCampaigns = 'connect-campaigns', + MechanicalTurk = 'crowdscale-usagelimitservice', + AwsGlueDataBrew = 'databrew', + AwsDataExchange = 'dataexchange', + AwsDataPipeline = 'datapipeline', + AwsDataSync = 'datasync', + AmazonDataZone = 'datazone', + AmazonDynamoDbAcceleratorDax = 'dax', + AwsDeepLens = 'deeplens', + AwsDeepRacer = 'deepracer', + AwsDirectConnect = 'directconnect', + AwsApplicationDiscoveryService = 'discovery', + AmazonDataLifecycleManager = 'dlm', + AwsDatabaseMigrationServiceAwsDms = 'dms', + AmazonDocumentDbWithMongoDbCompatibility = 'docdb', + AmazonDocumentDbElasticClusters = 'docdb-elastic', + ElasticDisasterRecovery = 'drs', + AwsDirectoryService = 'ds', + AmazonDynamoDb = 'dynamodb', + AmazonElasticBlockStoreAmazonEbs = 'ebs', + AmazonElasticComputeCloudAmazonEc2 = 'ec2', + Ipam = 'ec2-ipam', + Ec2FastLaunch = 'ec2fastlaunch', + AmazonElasticContainerRegistryAmazonEcr = 'ecr', + AmazonElasticContainerRegistryPublicAmazonEcrPublic = 'ecr-public', + AmazonElasticContainerServiceAmazonEcs = 'ecs', + AmazonElasticKubernetesServiceAmazonEks = 'eks', + AmazonElasticInference = 'elastic-inference', + AmazonElastiCache = 'elasticache', + AwsElasticBeanstalk = 'elasticbeanstalk', + AmazonElasticFileSystemEfs = 'elasticfilesystem', + ElasticLoadBalancingElb = 'elasticloadbalancing', + AmazonEmr = 'elasticmapreduce', + AmazonElasticTranscoder = 'elastictranscoder', + AmazonEmrServerless = 'emr-serverless', + AwsEntityResolution = 'entityresolution', + AmazonOpenSearchService = 'es', + AmazonEventBridgeCloudWatchEvents = 'events', + AmazonCloudWatchEvidently = 'evidently', + AwsFargate = 'fargate', + AmazonFinSpace = 'finspace', + AmazonKinesisDataFirehose = 'firehose', + AwsFaultInjectionServiceFis = 'fis', + AwsFirewallManager = 'fms', + AmazonForecast = 'forecast', + AmazonFraudDetector = 'frauddetector', + AmazonFSx = 'fsx', + AmazonGameLift = 'gamelift', + AmazonLocationServiceAmazonLocation = 'geo', + AmazonGlacier = 'glacier', + AwsGlobalAccelerator = 'globalaccelerator', + AwsGlue = 'glue', + AmazonManagedGrafana = 'grafana', + AwsIoTGreengrass = 'greengrass', + AwsGroundStation = 'groundstation', + AmazonGuardDuty = 'guardduty', + AwsHealthLake = 'healthlake', + AwsIdentityAndAccessManagementIam = 'iam', + Ec2ImageBuilder = 'imagebuilder', + AmazonInspectorClassic = 'inspector', + AmazonInspector = 'inspector2', + CloudWatchInternetMonitor = 'internetmonitor', + AwsIoT = 'iot', + AwsIoT1Click = 'iot1click', + AwsIoTAnalytics = 'iotanalytics', + AwsIoTCore = 'iotcore', + AwsIoTCoreDeviceAdvisor = 'iotdeviceadvisor', + AwsIoTEvents = 'iotevents', + AwsIoTFleetHub = 'iotfleethub', + AwsIoTFleetWise = 'iotfleetwise', + AwsIoTRoboRunner = 'iotroborunner', + AwsIoTSiteWise = 'iotsitewise', + AwsIoTThingsGraph = 'iotthingsgraph', + AwsIoTTwinMaker = 'iottwinmaker', + AwsIoTWireless = 'iotwireless', + AmazonInteractiveVideoService = 'ivs', + AmazonInteractiveVideoServiceChat = 'ivschat', + AmazonManagedStreamingForKafkaMsk = 'kafka', + ManagedStreamingForKafkaConnect = 'kafkaconnect', + AmazonKendra = 'kendra', + AmazonKendraIntelligentRanking = 'kendra-ranking', + AmazonKinesisDataStreams = 'kinesis', + AmazonManagedServiceForApacheFlink = 'kinesisanalytics', + AmazonKinesisVideoStreams = 'kinesisvideo', + AwsKeyManagementServiceAwsKms = 'kms', + AwsLakeFormation = 'lakeformation', + AwsLambda = 'lambda', + AwsLaunchWizard = 'launchwizard', + AmazonLex = 'lex', + AwsLicenseManager = 'license-manager', + AwsLicenseManagerLinuxSubscriptions = 'license-manager-linux-subscriptions', + AwsLicenseManagerUserSubscriptions = 'license-manager-user-subscriptions', + AmazonLightsail = 'lightsail', + AmazonCloudWatchLogs = 'logs', + AmazonLookoutForEquipment = 'lookoutequipment', + AmazonLookoutForMetrics = 'lookoutmetrics', + AmazonLookoutForVision = 'lookoutvision', + AwsMainframeModernization = 'm2', + AmazonMachineLearning = 'machinelearning', + AmazonMacie = 'macie2', + AmazonManagedBlockchain = 'managedblockchain', + AmazonManagedBlockchainQuery = 'managedblockchain-query', + AwsElementalMediaConnect = 'mediaconnect', + AwsElementalMediaConvert = 'mediaconvert', + AwsElementalMediaLive = 'medialive', + AwsElementalMediaPackage = 'mediapackage', + AwsElementalMediaPackageV2 = 'mediapackagev2', + AwsElementalMediaStore = 'mediastore', + AwsElementalMediaTailor = 'mediatailor', + AwsHealthImaging = 'medical-imaging', + ApplicationMigration = 'mgn', + MigrationHubOrchestrator = 'migrationhuborchestrator', + MigrationHubStrategyRecommendations = 'migrationhubstrategy', + AmazonCloudWatch = 'monitoring', + AmazonMonitron = 'monitron', + AmazonMq = 'mq', + AmazonNeptune = 'neptune', + AmazonNeptuneAnalytics = 'neptune-graph', + AwsNetworkFirewall = 'network-firewall', + NetworkInsights = 'networkinsights', + AwsCloudWan = 'networkmanager', + AmazonCloudWatchNetworkMonitor = 'networkmonitor', + AmazonNimbleStudio = 'nimble', + AwsUserNotifications = 'notifications', + AmazonCloudWatchObservabilityAccessManager = 'oam', + AwsHealthOmics = 'omics', + AwsOpsWorksStacks = 'opsworks', + AwsOpsWorksForChefAutomateAndAwsOpsWorksForPuppetEnterprise = 'opsworks-cm', + AwsOrganizations = 'organizations', + AwsOutposts = 'outposts', + AwsPanorama = 'panorama', + AwsPaymentCryptography = 'payment-cryptography', + PrivateCaConnectorForActiveDirectory = 'pca-connector-ad', + AmazonPersonalize = 'personalize', + AmazonPinpoint = 'pinpoint', + AmazonPolly = 'polly', + AwsPrivate5G = 'private-networks', + AmazonConnectCustomerProfiles = 'profile', + AwsProton = 'proton', + AmazonQ = 'qbusiness', + AmazonQldb = 'qldb', + AmazonQuickSight = 'quicksight', + AwsResourceAccessManager = 'ram', + AmazonRecycleBin = 'rbin', + AmazonRelationalDatabaseServiceAmazonRds = 'rds', + AmazonRedshift = 'redshift', + AwsMigrationHubRefactorSpaces = 'refactor-spaces', + AmazonRekognition = 'rekognition', + AwsResilienceHub = 'resiliencehub', + AwsResourceExplorer = 'resource-explorer-2', + AwsResourceGroups = 'resource-groups', + AwsRoboMaker = 'robomaker', + IamRolesAnywhere = 'rolesanywhere', + AmazonRoute53 = 'route53', + Route53Resolver = 'route53resolver', + AmazonCloudWatchRum = 'rum', + AmazonSimpleStorageServiceAmazonS3 = 's3', + AwsS3Outposts = 's3-outposts', + AmazonSageMaker = 'sagemaker', + AmazonEventBridgeScheduler = 'scheduler', + AmazonEventBridgeSchemaRegistry = 'schemas', + AwsSupplyChain = 'scn', + AmazonSimpleDb = 'sdb', + AwsSecretsManager = 'secretsmanager', + AwsSecurityHub = 'securityhub', + AwsServerlessApplicationRepository = 'serverlessrepo', + AwsServiceCatalog = 'servicecatalog', + ServiceQuotas = 'servicequotas', + AmazonSimpleEmailServiceAmazonSes = 'ses', + AwsShieldAdvanced = 'shield', + AwsSigner = 'signer', + AwsSimSpaceWeaver = 'simspaceweaver', + AwsServerMigrationService = 'sms', + AwsSnowDeviceManagement = 'snow-device-management', + AwsSnowFamily = 'snowball', + AmazonSimpleNotificationServiceAmazonSns = 'sns', + AmazonSimpleQueueServiceAmazonSqs = 'sqs', + AwsSystemsManager = 'ssm', + AwsSystemsManagerIncidentManagerContacts = 'ssm-contacts', + AwsSystemsManagerGuiConnect = 'ssm-guiconnect', + AwsSystemsManagerIncidentManager = 'ssm-incidents', + AwsSystemsManagerForSap = 'ssm-sap', + AwsIamIdentityCenterSuccessorToAwsSingleSignOn = 'sso', + AwsStepFunctions = 'states', + AwsStorageGateway = 'storagegateway', + AwsSupport = 'support', + AwsSupportApp = 'supportapp', + AmazonSimpleWorkflowService = 'swf', + AmazonTextract = 'textract', + AmazonTimestream = 'timestream', + AmazonTimestreamForManagedInflux = 'timestream-influxdb', + AwsTelcoNetworkBuilder = 'tnb', + AmazonTranscribe = 'transcribe', + AwsTransferFamily = 'transfer', + AmazonTranslate = 'translate', + AwsTrustedAdvisor = 'trustedadvisor', + AwsMarketplaceVendorInsights = 'vendor-insights', + AmazonVerifiedPermissions = 'verifiedpermissions', + Ec2VmImportExport = 'vmimportexport', + AmazonConnectVoiceId = 'voiceid', + AmazonVirtualPrivateCloudAmazonVpc = 'vpc', + VpcLattice = 'vpc-lattice', + AwsWafClassicGlobal = 'waf', + AwsWafClassicRegional = 'waf-regional', + AwsWaf = 'wafv2', + AmazonWorkSpacesApplicationManager = 'wam', + AwsWellArchitectedTool = 'wellarchitected', + AmazonQInConnect = 'wisdom', + AmazonWorkSpaces = 'workspaces', + AmazonWorkSpacesWeb = 'workspaces-web', + AwsXRay = 'xray', +} +export type ServiceQuotaMap = { + AWSCloudMap: AwsCloudMapQuota + 'access-analyzer': AccessAnalyzerQuota + account: AwsAccountManagementQuota + acm: AwsCertificateManagerAcmQuota + 'acm-pca': AwsPrivateCertificateAuthorityQuota + airflow: AmazonManagedWorkflowsForApacheAirflowQuota + amplify: AwsAmplifyQuota + amplifyuibuilder: AmplifyUiBuilderQuota + aoss: AmazonOpenSearchServerlessQuota + apigateway: AmazonApiGatewayQuota + 'app-integrations': AmazonConnectApplicationIntegrationsQuota + appconfig: AwsAppConfigQuota + appfabric: AwsAppFabricQuota + appflow: AmazonAppFlowQuota + 'application-autoscaling': ApplicationAutoScalingQuota + 'application-cost-profiler': AwsApplicationCostProfilerQuota + appmesh: AwsAppMeshQuota + apprunner: AwsAppRunnerQuota + appstream2: AmazonAppStream20Quota + appsync: AwsAppSyncQuota + aps: AmazonManagedPrometheusQuota + athena: AmazonAthenaQuota + auditmanager: AwsAuditManagerQuota + autoscaling: AmazonEc2AutoScalingQuota + 'autoscaling-plans': AwsAutoScalingPlansQuota + 'aws-marketplace': AwsMarketplaceDeploymentServiceQuota + b2bi: B2BDataInterchangeQuota + backup: AwsBackupQuota + batch: AwsBatchQuota + 'bcm-data-exports': AwsBillingAndCostManagementDataExportsQuota + bedrock: AmazonBedrockQuota + 'bedrock-agent': AmazonBedrockAgentQuota + billingconductor: AwsBillingConductorQuota + braket: AmazonBraketQuota + bugbust: AwsBugbustQuota + cases: AmazonConnectCasesQuota + cassandra: AmazonKeyspacesForApacheCassandraQuota + ce: AwsCostExplorerQuota + chatbot: AwsChatbotQuota + chime: AmazonChimeQuota + cleanrooms: AwsCleanRoomsQuota + cloud9: AwsCloud9Quota + cloudformation: AwsCloudFormationQuota + cloudfront: AmazonCloudFrontQuota + cloudhsm: AwsCloudHsmQuota + cloudshell: AwsCloudShellQuota + cloudtrail: AwsCloudTrailQuota + codeartifact: AwsCodeArtifactQuota + codebuild: AwsCodeBuildQuota + codecommit: AwsCodeCommitQuota + codedeploy: AwsCodeDeployQuota + 'codeguru-profiler': AmazonCodeGuruProfilerQuota + 'codeguru-reviewer': AmazonCodeGuruReviewerQuota + codepipeline: AwsCodePipelineQuota + 'cognito-identity': AmazonCognitoFederatedIdentitiesQuota + 'cognito-idp': AmazonCognitoUserPoolsQuota + 'cognito-sync': AmazonCognitoSyncQuota + comprehend: AmazonComprehendQuota + comprehendmedical: AmazonComprehendMedicalQuota + 'compute-optimizer': AwsComputeOptimizerQuota + config: AwsConfigQuota + connect: AmazonConnectQuota + 'connect-campaigns': AmazonConnectOutboundCampaignsQuota + 'crowdscale-usagelimitservice': MechanicalTurkQuota + databrew: AwsGlueDataBrewQuota + dataexchange: AwsDataExchangeQuota + datapipeline: AwsDataPipelineQuota + datasync: AwsDataSyncQuota + datazone: AmazonDataZoneQuota + dax: AmazonDynamoDbAcceleratorDaxQuota + deeplens: AwsDeepLensQuota + deepracer: AwsDeepRacerQuota + directconnect: AwsDirectConnectQuota + discovery: AwsApplicationDiscoveryServiceQuota + dlm: AmazonDataLifecycleManagerQuota + dms: AwsDatabaseMigrationServiceAwsDmsQuota + docdb: AmazonDocumentDbWithMongoDbCompatibilityQuota + 'docdb-elastic': AmazonDocumentDbElasticClustersQuota + drs: ElasticDisasterRecoveryQuota + ds: AwsDirectoryServiceQuota + dynamodb: AmazonDynamoDbQuota + ebs: AmazonElasticBlockStoreAmazonEbsQuota + ec2: AmazonElasticComputeCloudAmazonEc2Quota + 'ec2-ipam': IpamQuota + ec2fastlaunch: Ec2FastLaunchQuota + ecr: AmazonElasticContainerRegistryAmazonEcrQuota + 'ecr-public': AmazonElasticContainerRegistryPublicAmazonEcrPublicQuota + ecs: AmazonElasticContainerServiceAmazonEcsQuota + eks: AmazonElasticKubernetesServiceAmazonEksQuota + 'elastic-inference': AmazonElasticInferenceQuota + elasticache: AmazonElastiCacheQuota + elasticbeanstalk: AwsElasticBeanstalkQuota + elasticfilesystem: AmazonElasticFileSystemEfsQuota + elasticloadbalancing: ElasticLoadBalancingElbQuota + elasticmapreduce: AmazonEmrQuota + elastictranscoder: AmazonElasticTranscoderQuota + 'emr-serverless': AmazonEmrServerlessQuota + entityresolution: AwsEntityResolutionQuota + es: AmazonOpenSearchServiceQuota + events: AmazonEventBridgeCloudWatchEventsQuota + evidently: AmazonCloudWatchEvidentlyQuota + fargate: AwsFargateQuota + finspace: AmazonFinSpaceQuota + firehose: AmazonKinesisDataFirehoseQuota + fis: AwsFaultInjectionServiceFisQuota + fms: AwsFirewallManagerQuota + forecast: AmazonForecastQuota + frauddetector: AmazonFraudDetectorQuota + fsx: AmazonFSxQuota + gamelift: AmazonGameLiftQuota + geo: AmazonLocationServiceAmazonLocationQuota + glacier: AmazonGlacierQuota + globalaccelerator: AwsGlobalAcceleratorQuota + glue: AwsGlueQuota + grafana: AmazonManagedGrafanaQuota + greengrass: AwsIoTGreengrassQuota + groundstation: AwsGroundStationQuota + guardduty: AmazonGuardDutyQuota + healthlake: AwsHealthLakeQuota + iam: AwsIdentityAndAccessManagementIamQuota + imagebuilder: Ec2ImageBuilderQuota + inspector: AmazonInspectorClassicQuota + inspector2: AmazonInspectorQuota + internetmonitor: CloudWatchInternetMonitorQuota + iot: AwsIoTQuota + iot1click: AwsIoT1ClickQuota + iotanalytics: AwsIoTAnalyticsQuota + iotcore: AwsIoTCoreQuota + iotdeviceadvisor: AwsIoTCoreDeviceAdvisorQuota + iotevents: AwsIoTEventsQuota + iotfleethub: AwsIoTFleetHubQuota + iotfleetwise: AwsIoTFleetWiseQuota + iotroborunner: AwsIoTRoboRunnerQuota + iotsitewise: AwsIoTSiteWiseQuota + iotthingsgraph: AwsIoTThingsGraphQuota + iottwinmaker: AwsIoTTwinMakerQuota + iotwireless: AwsIoTWirelessQuota + ivs: AmazonInteractiveVideoServiceQuota + ivschat: AmazonInteractiveVideoServiceChatQuota + kafka: AmazonManagedStreamingForKafkaMskQuota + kafkaconnect: ManagedStreamingForKafkaConnectQuota + kendra: AmazonKendraQuota + 'kendra-ranking': AmazonKendraIntelligentRankingQuota + kinesis: AmazonKinesisDataStreamsQuota + kinesisanalytics: AmazonManagedServiceForApacheFlinkQuota + kinesisvideo: AmazonKinesisVideoStreamsQuota + kms: AwsKeyManagementServiceAwsKmsQuota + lakeformation: AwsLakeFormationQuota + lambda: AwsLambdaQuota + launchwizard: AwsLaunchWizardQuota + lex: AmazonLexQuota + 'license-manager': AwsLicenseManagerQuota + 'license-manager-linux-subscriptions': AwsLicenseManagerLinuxSubscriptionsQuota + 'license-manager-user-subscriptions': AwsLicenseManagerUserSubscriptionsQuota + lightsail: AmazonLightsailQuota + logs: AmazonCloudWatchLogsQuota + lookoutequipment: AmazonLookoutForEquipmentQuota + lookoutmetrics: AmazonLookoutForMetricsQuota + lookoutvision: AmazonLookoutForVisionQuota + m2: AwsMainframeModernizationQuota + machinelearning: AmazonMachineLearningQuota + macie2: AmazonMacieQuota + managedblockchain: AmazonManagedBlockchainQuota + 'managedblockchain-query': AmazonManagedBlockchainQueryQuota + mediaconnect: AwsElementalMediaConnectQuota + mediaconvert: AwsElementalMediaConvertQuota + medialive: AwsElementalMediaLiveQuota + mediapackage: AwsElementalMediaPackageQuota + mediapackagev2: AwsElementalMediaPackageV2Quota + mediastore: AwsElementalMediaStoreQuota + mediatailor: AwsElementalMediaTailorQuota + 'medical-imaging': AwsHealthImagingQuota + mgn: ApplicationMigrationQuota + migrationhuborchestrator: MigrationHubOrchestratorQuota + migrationhubstrategy: MigrationHubStrategyRecommendationsQuota + monitoring: AmazonCloudWatchQuota + monitron: AmazonMonitronQuota + mq: AmazonMqQuota + neptune: AmazonNeptuneQuota + 'neptune-graph': AmazonNeptuneAnalyticsQuota + 'network-firewall': AwsNetworkFirewallQuota + networkinsights: NetworkInsightsQuota + networkmanager: AwsCloudWanQuota + networkmonitor: AmazonCloudWatchNetworkMonitorQuota + nimble: AmazonNimbleStudioQuota + notifications: AwsUserNotificationsQuota + oam: AmazonCloudWatchObservabilityAccessManagerQuota + omics: AwsHealthOmicsQuota + opsworks: AwsOpsWorksStacksQuota + 'opsworks-cm': AwsOpsWorksForChefAutomateAndAwsOpsWorksForPuppetEnterpriseQuota + organizations: AwsOrganizationsQuota + outposts: AwsOutpostsQuota + panorama: AwsPanoramaQuota + 'payment-cryptography': AwsPaymentCryptographyQuota + 'pca-connector-ad': PrivateCaConnectorForActiveDirectoryQuota + personalize: AmazonPersonalizeQuota + pinpoint: AmazonPinpointQuota + polly: AmazonPollyQuota + 'private-networks': AwsPrivate5GQuota + profile: AmazonConnectCustomerProfilesQuota + proton: AwsProtonQuota + qbusiness: AmazonQQuota + qldb: AmazonQldbQuota + quicksight: AmazonQuickSightQuota + ram: AwsResourceAccessManagerQuota + rbin: AmazonRecycleBinQuota + rds: AmazonRelationalDatabaseServiceAmazonRdsQuota + redshift: AmazonRedshiftQuota + 'refactor-spaces': AwsMigrationHubRefactorSpacesQuota + rekognition: AmazonRekognitionQuota + resiliencehub: AwsResilienceHubQuota + 'resource-explorer-2': AwsResourceExplorerQuota + 'resource-groups': AwsResourceGroupsQuota + robomaker: AwsRoboMakerQuota + rolesanywhere: IamRolesAnywhereQuota + route53: AmazonRoute53Quota + route53resolver: Route53ResolverQuota + rum: AmazonCloudWatchRumQuota + s3: AmazonSimpleStorageServiceAmazonS3Quota + 's3-outposts': AwsS3OutpostsQuota + sagemaker: AmazonSageMakerQuota + scheduler: AmazonEventBridgeSchedulerQuota + schemas: AmazonEventBridgeSchemaRegistryQuota + scn: AwsSupplyChainQuota + sdb: AmazonSimpleDbQuota + secretsmanager: AwsSecretsManagerQuota + securityhub: AwsSecurityHubQuota + serverlessrepo: AwsServerlessApplicationRepositoryQuota + servicecatalog: AwsServiceCatalogQuota + servicequotas: ServiceQuotasQuota + ses: AmazonSimpleEmailServiceAmazonSesQuota + shield: AwsShieldAdvancedQuota + signer: AwsSignerQuota + simspaceweaver: AwsSimSpaceWeaverQuota + sms: AwsServerMigrationServiceQuota + 'snow-device-management': AwsSnowDeviceManagementQuota + snowball: AwsSnowFamilyQuota + sns: AmazonSimpleNotificationServiceAmazonSnsQuota + sqs: AmazonSimpleQueueServiceAmazonSqsQuota + ssm: AwsSystemsManagerQuota + 'ssm-contacts': AwsSystemsManagerIncidentManagerContactsQuota + 'ssm-guiconnect': AwsSystemsManagerGuiConnectQuota + 'ssm-incidents': AwsSystemsManagerIncidentManagerQuota + 'ssm-sap': AwsSystemsManagerForSapQuota + sso: AwsIamIdentityCenterSuccessorToAwsSingleSignOnQuota + states: AwsStepFunctionsQuota + storagegateway: AwsStorageGatewayQuota + support: AwsSupportQuota + supportapp: AwsSupportAppQuota + swf: AmazonSimpleWorkflowServiceQuota + textract: AmazonTextractQuota + timestream: AmazonTimestreamQuota + 'timestream-influxdb': AmazonTimestreamForManagedInfluxQuota + tnb: AwsTelcoNetworkBuilderQuota + transcribe: AmazonTranscribeQuota + transfer: AwsTransferFamilyQuota + translate: AmazonTranslateQuota + trustedadvisor: AwsTrustedAdvisorQuota + 'vendor-insights': AwsMarketplaceVendorInsightsQuota + verifiedpermissions: AmazonVerifiedPermissionsQuota + vmimportexport: Ec2VmImportExportQuota + voiceid: AmazonConnectVoiceIdQuota + vpc: AmazonVirtualPrivateCloudAmazonVpcQuota + 'vpc-lattice': VpcLatticeQuota + waf: AwsWafClassicGlobalQuota + 'waf-regional': AwsWafClassicRegionalQuota + wafv2: AwsWafQuota + wam: AmazonWorkSpacesApplicationManagerQuota + wellarchitected: AwsWellArchitectedToolQuota + wisdom: AmazonQInConnectQuota + workspaces: AmazonWorkSpacesQuota + 'workspaces-web': AmazonWorkSpacesWebQuota + xray: AwsXRayQuota +} diff --git a/packages/constructs/service-quotas/src/types.ts b/packages/constructs/service-quotas/src/types.ts new file mode 100644 index 0000000..5b0d640 --- /dev/null +++ b/packages/constructs/service-quotas/src/types.ts @@ -0,0 +1,11 @@ +export type Quota = { + region: string + service: string + quota: string + desiredValue: number +} + +export type Config = { + rerequestWhenDenied: boolean + failIfNotGranted: boolean +} diff --git a/packages/constructs/service-quotas/tsconfig.json b/packages/constructs/service-quotas/tsconfig.json new file mode 100644 index 0000000..5adfce4 --- /dev/null +++ b/packages/constructs/service-quotas/tsconfig.json @@ -0,0 +1,3 @@ +{ + "extends": "@reapit-cdk/tsconfig/base.json", +} \ No newline at end of file diff --git a/packages/constructs/service-quotas/usage.ts b/packages/constructs/service-quotas/usage.ts new file mode 100644 index 0000000..5292671 --- /dev/null +++ b/packages/constructs/service-quotas/usage.ts @@ -0,0 +1,22 @@ +import { Stack, App } from 'aws-cdk-lib' +import { AWSService, AmazonCloudFrontQuota, ServiceQuotas } from '@reapit-cdk/service-quotas' + +const app = new App() +const stack = new Stack(app, 'stack-name') +const quotas = new ServiceQuotas(stack, 'service-quotas', { + // Fail the stack if your requests aren't granted yet + failIfNotGranted: true, + // Make another request if an existing one is denied + rerequestWhenDenied: true, +}) + +quotas.requestQuota( + // region + 'us-east-1', + // service (use the AWSService.${Service} helper or specify the e.g. 'cloudfront' string as any) + AWSService.AmazonCloudFront, + // quota (use the ${Service}Quota e.g. AmazonCloudFrontQuota helper or specify the 'LL-' string as any) + AmazonCloudFrontQuota.CacheBehaviorsPerDistribution, + // desired value + 100, +) diff --git a/packages/constructs/wildcard-certificate/tests/integ.stack.ts.snapshot/.cache/f6a104f46b7b566cc64118cb9b2f7d470d5e5422c6a982355956e3f5396eafb1.zip b/packages/constructs/wildcard-certificate/tests/integ.stack.ts.snapshot/.cache/f6a104f46b7b566cc64118cb9b2f7d470d5e5422c6a982355956e3f5396eafb1.zip new file mode 100644 index 0000000..0f77211 Binary files /dev/null and b/packages/constructs/wildcard-certificate/tests/integ.stack.ts.snapshot/.cache/f6a104f46b7b566cc64118cb9b2f7d470d5e5422c6a982355956e3f5396eafb1.zip differ diff --git a/packages/constructs/wildcard-certificate/tests/integ.stack.ts.snapshot/asset.b2250e994c12e54c55a0b1559e20bc93be1d248226bea980cdbb921e4b86a94e/lambda.js b/packages/constructs/wildcard-certificate/tests/integ.stack.ts.snapshot/asset.f6a104f46b7b566cc64118cb9b2f7d470d5e5422c6a982355956e3f5396eafb1/lambda.js similarity index 98% rename from packages/constructs/wildcard-certificate/tests/integ.stack.ts.snapshot/asset.b2250e994c12e54c55a0b1559e20bc93be1d248226bea980cdbb921e4b86a94e/lambda.js rename to packages/constructs/wildcard-certificate/tests/integ.stack.ts.snapshot/asset.f6a104f46b7b566cc64118cb9b2f7d470d5e5422c6a982355956e3f5396eafb1/lambda.js index 3648f96..db08d76 100644 --- a/packages/constructs/wildcard-certificate/tests/integ.stack.ts.snapshot/asset.b2250e994c12e54c55a0b1559e20bc93be1d248226bea980cdbb921e4b86a94e/lambda.js +++ b/packages/constructs/wildcard-certificate/tests/integ.stack.ts.snapshot/asset.f6a104f46b7b566cc64118cb9b2f7d470d5e5422c6a982355956e3f5396eafb1/lambda.js @@ -114,7 +114,7 @@ var ensureDnsRecords = async (hostedZones, records) => { } console.log("requested, waiting for propagation"); await (0, import_client_route_53.waitUntilResourceRecordSetsChanged)( - { maxWaitTime: 60, client: client2 }, + { maxWaitTime: 180, client: client2 }, { Id: changeBatch.ChangeInfo?.Id } @@ -203,7 +203,9 @@ var getDomainValidationRecords = async (arn, attempt = 0) => { return getDomainValidationRecords(arn, attempt + 1); }; var ensureWildcardCertificate = async (requestId, domainMappings) => { - const wildcardDomainNames = domainMappings.map(({ parentDomainName }) => `*.${parentDomainName}`); + const wildcardDomainNames = domainMappings.map(({ parentDomainName, includeParent }) => { + return includeParent ? [parentDomainName, `*.${parentDomainName}`] : [`*.${parentDomainName}`]; + }).flat(); console.log("ensureWildcardCert", wildcardDomainNames); const existing = await findCertificates(wildcardDomainNames); console.log("got existing", JSON.stringify(existing)); diff --git a/packages/constructs/wildcard-certificate/tests/integ.stack.ts.snapshot/certificate-test-stack.assets.json b/packages/constructs/wildcard-certificate/tests/integ.stack.ts.snapshot/certificate-test-stack.assets.json index 1fc1123..93b82dd 100644 --- a/packages/constructs/wildcard-certificate/tests/integ.stack.ts.snapshot/certificate-test-stack.assets.json +++ b/packages/constructs/wildcard-certificate/tests/integ.stack.ts.snapshot/certificate-test-stack.assets.json @@ -1,15 +1,15 @@ { "version": "34.0.0", "files": { - "b2250e994c12e54c55a0b1559e20bc93be1d248226bea980cdbb921e4b86a94e": { + "f6a104f46b7b566cc64118cb9b2f7d470d5e5422c6a982355956e3f5396eafb1": { "source": { - "path": "asset.b2250e994c12e54c55a0b1559e20bc93be1d248226bea980cdbb921e4b86a94e", + "path": "asset.f6a104f46b7b566cc64118cb9b2f7d470d5e5422c6a982355956e3f5396eafb1", "packaging": "zip" }, "destinations": { "028446965111-eu-central-1": { "bucketName": "cdk-hnb659fds-assets-028446965111-eu-central-1", - "objectKey": "b2250e994c12e54c55a0b1559e20bc93be1d248226bea980cdbb921e4b86a94e.zip", + "objectKey": "f6a104f46b7b566cc64118cb9b2f7d470d5e5422c6a982355956e3f5396eafb1.zip", "region": "eu-central-1", "assumeRoleArn": "arn:${AWS::Partition}:iam::028446965111:role/cdk-hnb659fds-file-publishing-role-028446965111-eu-central-1" } @@ -29,7 +29,7 @@ } } }, - "9e0df9823e96cac93f177dba68b95192f1fc37f175cdd5a4571eb3d6af220b8a": { + "1af4123fb68d810dbccd522c03f568d0917b3af525ff663823e9628e5822489c": { "source": { "path": "certificate-test-stack.template.json", "packaging": "file" @@ -37,7 +37,7 @@ "destinations": { "028446965111-eu-central-1": { "bucketName": "cdk-hnb659fds-assets-028446965111-eu-central-1", - "objectKey": "9e0df9823e96cac93f177dba68b95192f1fc37f175cdd5a4571eb3d6af220b8a.json", + "objectKey": "1af4123fb68d810dbccd522c03f568d0917b3af525ff663823e9628e5822489c.json", "region": "eu-central-1", "assumeRoleArn": "arn:${AWS::Partition}:iam::028446965111:role/cdk-hnb659fds-file-publishing-role-028446965111-eu-central-1" } diff --git a/packages/constructs/wildcard-certificate/tests/integ.stack.ts.snapshot/certificate-test-stack.template.json b/packages/constructs/wildcard-certificate/tests/integ.stack.ts.snapshot/certificate-test-stack.template.json index 73743e7..4a0eada 100644 --- a/packages/constructs/wildcard-certificate/tests/integ.stack.ts.snapshot/certificate-test-stack.template.json +++ b/packages/constructs/wildcard-certificate/tests/integ.stack.ts.snapshot/certificate-test-stack.template.json @@ -72,7 +72,7 @@ "Properties": { "Code": { "S3Bucket": "cdk-hnb659fds-assets-028446965111-eu-central-1", - "S3Key": "b2250e994c12e54c55a0b1559e20bc93be1d248226bea980cdbb921e4b86a94e.zip" + "S3Key": "f6a104f46b7b566cc64118cb9b2f7d470d5e5422c6a982355956e3f5396eafb1.zip" }, "Handler": "lambda.onEvent", "Role": { @@ -82,7 +82,7 @@ ] }, "Runtime": "nodejs18.x", - "Timeout": 420 + "Timeout": 540 }, "DependsOn": [ "certificatelambdaServiceRoleDefaultPolicy2F432B03", @@ -90,7 +90,7 @@ ], "Metadata": { "aws:cdk:path": "certificate-test-stack/certificate/lambda/Resource", - "aws:asset:path": "asset.b2250e994c12e54c55a0b1559e20bc93be1d248226bea980cdbb921e4b86a94e", + "aws:asset:path": "asset.f6a104f46b7b566cc64118cb9b2f7d470d5e5422c6a982355956e3f5396eafb1", "aws:asset:is-bundled": false, "aws:asset:property": "Code" } @@ -238,7 +238,7 @@ "CDKMetadata": { "Type": "AWS::CDK::Metadata", "Properties": { - "Analytics": "v2:deflate64:H4sIAAAAAAAA/02NyQrCQBBEv8V7p90u5qiCV0P8gDCZtKGzzMj0TERC/t0sKkJDvaqiqR3GMW5X6imRLuqo4Rz7m1e6hjHK+ka1eaGwvwSjPVsD57v58gCsWuxT29AUz5rYhvVrsgsNIPtMiZAXPE4yejwFXZM/KaEBUhIbnCaY23G5ZFOCDuJtm7lPKZg423FBDs5z8/uadv/4Gvwj+AGMLQgrWXfbA463WVXCHLlgPLeE6aJvEoqmS/sAAAA=" + "Analytics": "v2:deflate64:H4sIAAAAAAAA/02NwY6CQAxAv8V7qYte5Lia7FWDH0Dq0DUVmDHTDsQQ/t2AutnTe+1L0w0WBeYrGjRzdZO1csHxbOQaoEGrsaXuUhOOP8k7k+Dh8Os/PoFQh2MZWp7XC0+hFfeYx5dNoNuKVNkUv2eAbnGfXMO2J+UJStaQomNY6tnoKv4KLqmFrorvqHiKoZeaIxyW8nc1//3nx2T3ZBP4UDPedN3nO8wL/FrdVCSLyZt0jOWLTzXvg8r7AAAA" }, "Metadata": { "aws:cdk:path": "certificate-test-stack/CDKMetadata/Default" diff --git a/packages/constructs/wildcard-certificate/tests/integ.stack.ts.snapshot/manifest.json b/packages/constructs/wildcard-certificate/tests/integ.stack.ts.snapshot/manifest.json index e9f5a34..f1e132c 100644 --- a/packages/constructs/wildcard-certificate/tests/integ.stack.ts.snapshot/manifest.json +++ b/packages/constructs/wildcard-certificate/tests/integ.stack.ts.snapshot/manifest.json @@ -18,7 +18,7 @@ "validateOnSynth": false, "assumeRoleArn": "arn:${AWS::Partition}:iam::028446965111:role/cdk-hnb659fds-deploy-role-028446965111-eu-central-1", "cloudFormationExecutionRoleArn": "arn:${AWS::Partition}:iam::028446965111:role/cdk-hnb659fds-cfn-exec-role-028446965111-eu-central-1", - "stackTemplateAssetObjectUrl": "s3://cdk-hnb659fds-assets-028446965111-eu-central-1/9e0df9823e96cac93f177dba68b95192f1fc37f175cdd5a4571eb3d6af220b8a.json", + "stackTemplateAssetObjectUrl": "s3://cdk-hnb659fds-assets-028446965111-eu-central-1/1af4123fb68d810dbccd522c03f568d0917b3af525ff663823e9628e5822489c.json", "requiresBootstrapStackVersion": 6, "bootstrapStackVersionSsmParameter": "/cdk-bootstrap/hnb659fds/version", "additionalDependencies": [ diff --git a/packages/constructs/wildcard-certificate/tests/integ.stack.ts.snapshot/tree.json b/packages/constructs/wildcard-certificate/tests/integ.stack.ts.snapshot/tree.json index 019216a..5d5dd0e 100644 --- a/packages/constructs/wildcard-certificate/tests/integ.stack.ts.snapshot/tree.json +++ b/packages/constructs/wildcard-certificate/tests/integ.stack.ts.snapshot/tree.json @@ -155,7 +155,7 @@ "aws:cdk:cloudformation:props": { "code": { "s3Bucket": "cdk-hnb659fds-assets-028446965111-eu-central-1", - "s3Key": "b2250e994c12e54c55a0b1559e20bc93be1d248226bea980cdbb921e4b86a94e.zip" + "s3Key": "f6a104f46b7b566cc64118cb9b2f7d470d5e5422c6a982355956e3f5396eafb1.zip" }, "handler": "lambda.onEvent", "role": { @@ -165,7 +165,7 @@ ] }, "runtime": "nodejs18.x", - "timeout": 420 + "timeout": 540 } }, "constructInfo": { diff --git a/packages/modules/edge-api-sdk/readme.md b/packages/modules/edge-api-sdk/readme.md index 9570aa7..e23f1e4 100644 --- a/packages/modules/edge-api-sdk/readme.md +++ b/packages/modules/edge-api-sdk/readme.md @@ -3,7 +3,7 @@ ![npm version](https://img.shields.io/npm/v/@reapit-cdk/edge-api-sdk) ![npm downloads](https://img.shields.io/npm/dm/@reapit-cdk/edge-api-sdk) -![coverage: 95.74%25](https://img.shields.io/badge/coverage-95.74%25-green) +![coverage: 95.8%25](https://img.shields.io/badge/coverage-95.8%25-green) Provides convenience wrappers for accepting and responding to [@reapit-cdk/edge-api]('../../constructs/edge-api/readme.md') lambda requests. diff --git a/readme.md b/readme.md index e69b284..597dd7b 100644 --- a/readme.md +++ b/readme.md @@ -1,5 +1,5 @@ # @reapit-cdk/ts-constructs -![coverage: 92.94%25](https://img.shields.io/badge/coverage-92.94%25-green) +![coverage: 92.65%25](https://img.shields.io/badge/coverage-92.65%25-green) CDK Constructs Monorepo ## Constructs @@ -27,7 +27,7 @@ CloudFront invalidations are [very error prone](https://github.com/aws/aws-cdk/i ![npm version](https://img.shields.io/npm/v/@reapit-cdk/cross-region-stack-export) ![npm downloads](https://img.shields.io/npm/dm/@reapit-cdk/cross-region-stack-export) -![coverage: 74.02%25](https://img.shields.io/badge/coverage-74.02%25-orange) +![coverage: 71.85%25](https://img.shields.io/badge/coverage-71.85%25-orange) ![Integ Tests: X](https://img.shields.io/badge/Integ%20Tests-X-red) Allows you to share values between stack across regions and accounts. @@ -87,6 +87,14 @@ Creates a KMS key and replicates it to the desired regions. Useful when replicat ![Integ Tests: ✔](https://img.shields.io/badge/Integ%20Tests-%E2%9C%94-green) Creates a Secret and replicates it across the given regions. Requires a [ReplicatedKey](../replicated-key/readme.md) be passed in. +

@reapit-cdk/service-quotas

+ +![npm version](https://img.shields.io/npm/v/@reapit-cdk/service-quotas) +![npm downloads](https://img.shields.io/npm/dm/@reapit-cdk/service-quotas) +![coverage: 0%25](https://img.shields.io/badge/coverage-0%25-red) +![Integ Tests: X](https://img.shields.io/badge/Integ%20Tests-X-red) + +This construct allows you to IaC your service quotas

@reapit-cdk/userpool-domain

![npm version](https://img.shields.io/npm/v/@reapit-cdk/userpool-domain) @@ -124,7 +132,7 @@ This module helps write custom resource handlers. It's designed to work with the ![npm version](https://img.shields.io/npm/v/@reapit-cdk/edge-api-sdk) ![npm downloads](https://img.shields.io/npm/dm/@reapit-cdk/edge-api-sdk) -![coverage: 95.74%25](https://img.shields.io/badge/coverage-95.74%25-green) +![coverage: 95.8%25](https://img.shields.io/badge/coverage-95.8%25-green) Provides convenience wrappers for accepting and responding to [@reapit-cdk/edge-api]('../../constructs/edge-api/readme.md') lambda requests.

@reapit-cdk/email-receiver-client

diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..5adfce4 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,3 @@ +{ + "extends": "@reapit-cdk/tsconfig/base.json", +} \ No newline at end of file diff --git a/yarn.lock b/yarn.lock index 3205776..ef867e4 100644 --- a/yarn.lock +++ b/yarn.lock @@ -707,6 +707,51 @@ __metadata: languageName: node linkType: hard +"@aws-sdk/client-service-quotas@npm:3.414.0": + version: 3.414.0 + resolution: "@aws-sdk/client-service-quotas@npm:3.414.0" + dependencies: + "@aws-crypto/sha256-browser": "npm:3.0.0" + "@aws-crypto/sha256-js": "npm:3.0.0" + "@aws-sdk/client-sts": "npm:3.414.0" + "@aws-sdk/credential-provider-node": "npm:3.414.0" + "@aws-sdk/middleware-host-header": "npm:3.413.0" + "@aws-sdk/middleware-logger": "npm:3.413.0" + "@aws-sdk/middleware-recursion-detection": "npm:3.413.0" + "@aws-sdk/middleware-signing": "npm:3.413.0" + "@aws-sdk/middleware-user-agent": "npm:3.413.0" + "@aws-sdk/region-config-resolver": "npm:3.413.0" + "@aws-sdk/types": "npm:3.413.0" + "@aws-sdk/util-endpoints": "npm:3.413.0" + "@aws-sdk/util-user-agent-browser": "npm:3.413.0" + "@aws-sdk/util-user-agent-node": "npm:3.413.0" + "@smithy/config-resolver": "npm:^2.0.8" + "@smithy/fetch-http-handler": "npm:^2.1.3" + "@smithy/hash-node": "npm:^2.0.7" + "@smithy/invalid-dependency": "npm:^2.0.7" + "@smithy/middleware-content-length": "npm:^2.0.9" + "@smithy/middleware-endpoint": "npm:^2.0.7" + "@smithy/middleware-retry": "npm:^2.0.10" + "@smithy/middleware-serde": "npm:^2.0.7" + "@smithy/middleware-stack": "npm:^2.0.0" + "@smithy/node-config-provider": "npm:^2.0.10" + "@smithy/node-http-handler": "npm:^2.1.3" + "@smithy/protocol-http": "npm:^3.0.3" + "@smithy/smithy-client": "npm:^2.1.4" + "@smithy/types": "npm:^2.3.1" + "@smithy/url-parser": "npm:^2.0.7" + "@smithy/util-base64": "npm:^2.0.0" + "@smithy/util-body-length-browser": "npm:^2.0.0" + "@smithy/util-body-length-node": "npm:^2.1.0" + "@smithy/util-defaults-mode-browser": "npm:^2.0.8" + "@smithy/util-defaults-mode-node": "npm:^2.0.10" + "@smithy/util-retry": "npm:^2.0.0" + "@smithy/util-utf8": "npm:^2.0.0" + tslib: "npm:^2.5.0" + checksum: 5feea5842860634c517b0739d2e0904f3671adfa384eb3f1c821da22a4f1f5f0f6e149f574a0f45e587b26e2d860d4d6187b331ee615013692538484d6caf48e + languageName: node + linkType: hard + "@aws-sdk/client-ses@npm:3.414.0": version: 3.414.0 resolution: "@aws-sdk/client-ses@npm:3.414.0" @@ -3683,6 +3728,28 @@ __metadata: languageName: unknown linkType: soft +"@reapit-cdk/service-quotas@workspace:packages/constructs/service-quotas": + version: 0.0.0-use.local + resolution: "@reapit-cdk/service-quotas@workspace:packages/constructs/service-quotas" + dependencies: + "@aws-sdk/client-service-quotas": "npm:3.414.0" + "@reapit-cdk/custom-resource-wrapper": "workspace:^" + "@reapit-cdk/eslint-config": "workspace:^" + "@reapit-cdk/integration-tests": "workspace:^" + "@reapit-cdk/jsii": "workspace:^" + "@reapit-cdk/tsup": "workspace:^" + aws-cdk-lib: "npm:^2.96.2" + aws-lambda: "npm:^1.0.7" + aws-sdk-client-mock: "npm:^3.0.0" + constructs: "npm:^10.2.70" + ts-node: "npm:^10.9.2" + varname: "npm:^6.0.0" + peerDependencies: + aws-cdk-lib: ^2.96.2 + constructs: ^10.2.70 + languageName: unknown + linkType: soft + "@reapit-cdk/ts-constructs@workspace:.": version: 0.0.0-use.local resolution: "@reapit-cdk/ts-constructs@workspace:." @@ -10625,6 +10692,44 @@ __metadata: languageName: node linkType: hard +"ts-node@npm:^10.9.2": + version: 10.9.2 + resolution: "ts-node@npm:10.9.2" + dependencies: + "@cspotcode/source-map-support": "npm:^0.8.0" + "@tsconfig/node10": "npm:^1.0.7" + "@tsconfig/node12": "npm:^1.0.7" + "@tsconfig/node14": "npm:^1.0.0" + "@tsconfig/node16": "npm:^1.0.2" + acorn: "npm:^8.4.1" + acorn-walk: "npm:^8.1.1" + arg: "npm:^4.1.0" + create-require: "npm:^1.1.0" + diff: "npm:^4.0.1" + make-error: "npm:^1.1.1" + v8-compile-cache-lib: "npm:^3.0.1" + yn: "npm:3.1.1" + peerDependencies: + "@swc/core": ">=1.2.50" + "@swc/wasm": ">=1.2.50" + "@types/node": "*" + typescript: ">=2.7" + peerDependenciesMeta: + "@swc/core": + optional: true + "@swc/wasm": + optional: true + bin: + ts-node: dist/bin.js + ts-node-cwd: dist/bin-cwd.js + ts-node-esm: dist/bin-esm.js + ts-node-script: dist/bin-script.js + ts-node-transpile-only: dist/bin-transpile.js + ts-script: dist/bin-script-deprecated.js + checksum: a91a15b3c9f76ac462f006fa88b6bfa528130dcfb849dd7ef7f9d640832ab681e235b8a2bc58ecde42f72851cc1d5d4e22c901b0c11aa51001ea1d395074b794 + languageName: node + linkType: hard + "tslib@npm:^1.11.1": version: 1.14.1 resolution: "tslib@npm:1.14.1" @@ -10900,6 +11005,13 @@ __metadata: languageName: node linkType: hard +"varname@npm:^6.0.0": + version: 6.0.0 + resolution: "varname@npm:6.0.0" + checksum: cbd756fa747dc2741572f6b41e2075d68448dfb47222d0caf7edb6beec77f9497ce24a57e24ab9fa2d91eb05787a4c3db66aa6f1e1f4971ad24fbcdf88ce554f + languageName: node + linkType: hard + "walker@npm:^1.0.8": version: 1.0.8 resolution: "walker@npm:1.0.8"