types-boto3-autoscaling 1.36.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of types-boto3-autoscaling might be problematic. Click here for more details.

@@ -0,0 +1,644 @@
1
+ """
2
+ Type annotations for autoscaling service literal definitions.
3
+
4
+ [Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_autoscaling/literals/)
5
+
6
+ Usage::
7
+
8
+ ```python
9
+ from types_boto3_autoscaling.literals import AcceleratorManufacturerType
10
+
11
+ data: AcceleratorManufacturerType = "amazon-web-services"
12
+ ```
13
+
14
+ Copyright 2025 Vlad Emelianov
15
+ """
16
+
17
+ import sys
18
+
19
+ if sys.version_info >= (3, 12):
20
+ from typing import Literal
21
+ else:
22
+ from typing_extensions import Literal
23
+
24
+ __all__ = (
25
+ "AcceleratorManufacturerType",
26
+ "AcceleratorNameType",
27
+ "AcceleratorTypeType",
28
+ "AutoScalingServiceName",
29
+ "BareMetalType",
30
+ "BurstablePerformanceType",
31
+ "CapacityDistributionStrategyType",
32
+ "CapacityReservationPreferenceType",
33
+ "CpuManufacturerType",
34
+ "DescribeAutoScalingGroupsPaginatorName",
35
+ "DescribeAutoScalingInstancesPaginatorName",
36
+ "DescribeLaunchConfigurationsPaginatorName",
37
+ "DescribeLoadBalancerTargetGroupsPaginatorName",
38
+ "DescribeLoadBalancersPaginatorName",
39
+ "DescribeNotificationConfigurationsPaginatorName",
40
+ "DescribePoliciesPaginatorName",
41
+ "DescribeScalingActivitiesPaginatorName",
42
+ "DescribeScheduledActionsPaginatorName",
43
+ "DescribeTagsPaginatorName",
44
+ "DescribeWarmPoolPaginatorName",
45
+ "ImpairedZoneHealthCheckBehaviorType",
46
+ "InstanceGenerationType",
47
+ "InstanceMetadataEndpointStateType",
48
+ "InstanceMetadataHttpTokensStateType",
49
+ "InstanceRefreshStatusType",
50
+ "LifecycleStateType",
51
+ "LocalStorageType",
52
+ "LocalStorageTypeType",
53
+ "MetricStatisticType",
54
+ "MetricTypeType",
55
+ "PaginatorName",
56
+ "PredefinedLoadMetricTypeType",
57
+ "PredefinedMetricPairTypeType",
58
+ "PredefinedScalingMetricTypeType",
59
+ "PredictiveScalingMaxCapacityBreachBehaviorType",
60
+ "PredictiveScalingModeType",
61
+ "RefreshStrategyType",
62
+ "RegionName",
63
+ "ResourceServiceName",
64
+ "ScaleInProtectedInstancesType",
65
+ "ScalingActivityStatusCodeType",
66
+ "ServiceName",
67
+ "StandbyInstancesType",
68
+ "WarmPoolStateType",
69
+ "WarmPoolStatusType",
70
+ )
71
+
72
+ AcceleratorManufacturerType = Literal["amazon-web-services", "amd", "nvidia", "xilinx"]
73
+ AcceleratorNameType = Literal["a100", "k80", "m60", "radeon-pro-v520", "t4", "v100", "vu9p"]
74
+ AcceleratorTypeType = Literal["fpga", "gpu", "inference"]
75
+ BareMetalType = Literal["excluded", "included", "required"]
76
+ BurstablePerformanceType = Literal["excluded", "included", "required"]
77
+ CapacityDistributionStrategyType = Literal["balanced-best-effort", "balanced-only"]
78
+ CapacityReservationPreferenceType = Literal[
79
+ "capacity-reservations-first", "capacity-reservations-only", "default", "none"
80
+ ]
81
+ CpuManufacturerType = Literal["amazon-web-services", "amd", "intel"]
82
+ DescribeAutoScalingGroupsPaginatorName = Literal["describe_auto_scaling_groups"]
83
+ DescribeAutoScalingInstancesPaginatorName = Literal["describe_auto_scaling_instances"]
84
+ DescribeLaunchConfigurationsPaginatorName = Literal["describe_launch_configurations"]
85
+ DescribeLoadBalancerTargetGroupsPaginatorName = Literal["describe_load_balancer_target_groups"]
86
+ DescribeLoadBalancersPaginatorName = Literal["describe_load_balancers"]
87
+ DescribeNotificationConfigurationsPaginatorName = Literal["describe_notification_configurations"]
88
+ DescribePoliciesPaginatorName = Literal["describe_policies"]
89
+ DescribeScalingActivitiesPaginatorName = Literal["describe_scaling_activities"]
90
+ DescribeScheduledActionsPaginatorName = Literal["describe_scheduled_actions"]
91
+ DescribeTagsPaginatorName = Literal["describe_tags"]
92
+ DescribeWarmPoolPaginatorName = Literal["describe_warm_pool"]
93
+ ImpairedZoneHealthCheckBehaviorType = Literal["IgnoreUnhealthy", "ReplaceUnhealthy"]
94
+ InstanceGenerationType = Literal["current", "previous"]
95
+ InstanceMetadataEndpointStateType = Literal["disabled", "enabled"]
96
+ InstanceMetadataHttpTokensStateType = Literal["optional", "required"]
97
+ InstanceRefreshStatusType = Literal[
98
+ "Baking",
99
+ "Cancelled",
100
+ "Cancelling",
101
+ "Failed",
102
+ "InProgress",
103
+ "Pending",
104
+ "RollbackFailed",
105
+ "RollbackInProgress",
106
+ "RollbackSuccessful",
107
+ "Successful",
108
+ ]
109
+ LifecycleStateType = Literal[
110
+ "Detached",
111
+ "Detaching",
112
+ "EnteringStandby",
113
+ "InService",
114
+ "Pending",
115
+ "Pending:Proceed",
116
+ "Pending:Wait",
117
+ "Quarantined",
118
+ "Standby",
119
+ "Terminated",
120
+ "Terminating",
121
+ "Terminating:Proceed",
122
+ "Terminating:Wait",
123
+ "Warmed:Hibernated",
124
+ "Warmed:Pending",
125
+ "Warmed:Pending:Proceed",
126
+ "Warmed:Pending:Wait",
127
+ "Warmed:Running",
128
+ "Warmed:Stopped",
129
+ "Warmed:Terminated",
130
+ "Warmed:Terminating",
131
+ "Warmed:Terminating:Proceed",
132
+ "Warmed:Terminating:Wait",
133
+ ]
134
+ LocalStorageType = Literal["excluded", "included", "required"]
135
+ LocalStorageTypeType = Literal["hdd", "ssd"]
136
+ MetricStatisticType = Literal["Average", "Maximum", "Minimum", "SampleCount", "Sum"]
137
+ MetricTypeType = Literal[
138
+ "ALBRequestCountPerTarget",
139
+ "ASGAverageCPUUtilization",
140
+ "ASGAverageNetworkIn",
141
+ "ASGAverageNetworkOut",
142
+ ]
143
+ PredefinedLoadMetricTypeType = Literal[
144
+ "ALBTargetGroupRequestCount",
145
+ "ASGTotalCPUUtilization",
146
+ "ASGTotalNetworkIn",
147
+ "ASGTotalNetworkOut",
148
+ ]
149
+ PredefinedMetricPairTypeType = Literal[
150
+ "ALBRequestCount", "ASGCPUUtilization", "ASGNetworkIn", "ASGNetworkOut"
151
+ ]
152
+ PredefinedScalingMetricTypeType = Literal[
153
+ "ALBRequestCountPerTarget",
154
+ "ASGAverageCPUUtilization",
155
+ "ASGAverageNetworkIn",
156
+ "ASGAverageNetworkOut",
157
+ ]
158
+ PredictiveScalingMaxCapacityBreachBehaviorType = Literal["HonorMaxCapacity", "IncreaseMaxCapacity"]
159
+ PredictiveScalingModeType = Literal["ForecastAndScale", "ForecastOnly"]
160
+ RefreshStrategyType = Literal["Rolling"]
161
+ ScaleInProtectedInstancesType = Literal["Ignore", "Refresh", "Wait"]
162
+ ScalingActivityStatusCodeType = Literal[
163
+ "Cancelled",
164
+ "Failed",
165
+ "InProgress",
166
+ "MidLifecycleAction",
167
+ "PendingSpotBidPlacement",
168
+ "PreInService",
169
+ "Successful",
170
+ "WaitingForConnectionDraining",
171
+ "WaitingForELBConnectionDraining",
172
+ "WaitingForInstanceId",
173
+ "WaitingForInstanceWarmup",
174
+ "WaitingForSpotInstanceId",
175
+ "WaitingForSpotInstanceRequestId",
176
+ ]
177
+ StandbyInstancesType = Literal["Ignore", "Terminate", "Wait"]
178
+ WarmPoolStateType = Literal["Hibernated", "Running", "Stopped"]
179
+ WarmPoolStatusType = Literal["PendingDelete"]
180
+ AutoScalingServiceName = Literal["autoscaling"]
181
+ ServiceName = Literal[
182
+ "accessanalyzer",
183
+ "account",
184
+ "acm",
185
+ "acm-pca",
186
+ "amp",
187
+ "amplify",
188
+ "amplifybackend",
189
+ "amplifyuibuilder",
190
+ "apigateway",
191
+ "apigatewaymanagementapi",
192
+ "apigatewayv2",
193
+ "appconfig",
194
+ "appconfigdata",
195
+ "appfabric",
196
+ "appflow",
197
+ "appintegrations",
198
+ "application-autoscaling",
199
+ "application-insights",
200
+ "application-signals",
201
+ "applicationcostprofiler",
202
+ "appmesh",
203
+ "apprunner",
204
+ "appstream",
205
+ "appsync",
206
+ "apptest",
207
+ "arc-zonal-shift",
208
+ "artifact",
209
+ "athena",
210
+ "auditmanager",
211
+ "autoscaling",
212
+ "autoscaling-plans",
213
+ "b2bi",
214
+ "backup",
215
+ "backup-gateway",
216
+ "backupsearch",
217
+ "batch",
218
+ "bcm-data-exports",
219
+ "bcm-pricing-calculator",
220
+ "bedrock",
221
+ "bedrock-agent",
222
+ "bedrock-agent-runtime",
223
+ "bedrock-data-automation",
224
+ "bedrock-data-automation-runtime",
225
+ "bedrock-runtime",
226
+ "billing",
227
+ "billingconductor",
228
+ "braket",
229
+ "budgets",
230
+ "ce",
231
+ "chatbot",
232
+ "chime",
233
+ "chime-sdk-identity",
234
+ "chime-sdk-media-pipelines",
235
+ "chime-sdk-meetings",
236
+ "chime-sdk-messaging",
237
+ "chime-sdk-voice",
238
+ "cleanrooms",
239
+ "cleanroomsml",
240
+ "cloud9",
241
+ "cloudcontrol",
242
+ "clouddirectory",
243
+ "cloudformation",
244
+ "cloudfront",
245
+ "cloudfront-keyvaluestore",
246
+ "cloudhsm",
247
+ "cloudhsmv2",
248
+ "cloudsearch",
249
+ "cloudsearchdomain",
250
+ "cloudtrail",
251
+ "cloudtrail-data",
252
+ "cloudwatch",
253
+ "codeartifact",
254
+ "codebuild",
255
+ "codecatalyst",
256
+ "codecommit",
257
+ "codeconnections",
258
+ "codedeploy",
259
+ "codeguru-reviewer",
260
+ "codeguru-security",
261
+ "codeguruprofiler",
262
+ "codepipeline",
263
+ "codestar-connections",
264
+ "codestar-notifications",
265
+ "cognito-identity",
266
+ "cognito-idp",
267
+ "cognito-sync",
268
+ "comprehend",
269
+ "comprehendmedical",
270
+ "compute-optimizer",
271
+ "config",
272
+ "connect",
273
+ "connect-contact-lens",
274
+ "connectcampaigns",
275
+ "connectcampaignsv2",
276
+ "connectcases",
277
+ "connectparticipant",
278
+ "controlcatalog",
279
+ "controltower",
280
+ "cost-optimization-hub",
281
+ "cur",
282
+ "customer-profiles",
283
+ "databrew",
284
+ "dataexchange",
285
+ "datapipeline",
286
+ "datasync",
287
+ "datazone",
288
+ "dax",
289
+ "deadline",
290
+ "detective",
291
+ "devicefarm",
292
+ "devops-guru",
293
+ "directconnect",
294
+ "discovery",
295
+ "dlm",
296
+ "dms",
297
+ "docdb",
298
+ "docdb-elastic",
299
+ "drs",
300
+ "ds",
301
+ "ds-data",
302
+ "dsql",
303
+ "dynamodb",
304
+ "dynamodbstreams",
305
+ "ebs",
306
+ "ec2",
307
+ "ec2-instance-connect",
308
+ "ecr",
309
+ "ecr-public",
310
+ "ecs",
311
+ "efs",
312
+ "eks",
313
+ "eks-auth",
314
+ "elastic-inference",
315
+ "elasticache",
316
+ "elasticbeanstalk",
317
+ "elastictranscoder",
318
+ "elb",
319
+ "elbv2",
320
+ "emr",
321
+ "emr-containers",
322
+ "emr-serverless",
323
+ "entityresolution",
324
+ "es",
325
+ "events",
326
+ "evidently",
327
+ "finspace",
328
+ "finspace-data",
329
+ "firehose",
330
+ "fis",
331
+ "fms",
332
+ "forecast",
333
+ "forecastquery",
334
+ "frauddetector",
335
+ "freetier",
336
+ "fsx",
337
+ "gamelift",
338
+ "geo-maps",
339
+ "geo-places",
340
+ "geo-routes",
341
+ "glacier",
342
+ "globalaccelerator",
343
+ "glue",
344
+ "grafana",
345
+ "greengrass",
346
+ "greengrassv2",
347
+ "groundstation",
348
+ "guardduty",
349
+ "health",
350
+ "healthlake",
351
+ "iam",
352
+ "identitystore",
353
+ "imagebuilder",
354
+ "importexport",
355
+ "inspector",
356
+ "inspector-scan",
357
+ "inspector2",
358
+ "internetmonitor",
359
+ "invoicing",
360
+ "iot",
361
+ "iot-data",
362
+ "iot-jobs-data",
363
+ "iotanalytics",
364
+ "iotdeviceadvisor",
365
+ "iotevents",
366
+ "iotevents-data",
367
+ "iotfleethub",
368
+ "iotfleetwise",
369
+ "iotsecuretunneling",
370
+ "iotsitewise",
371
+ "iotthingsgraph",
372
+ "iottwinmaker",
373
+ "iotwireless",
374
+ "ivs",
375
+ "ivs-realtime",
376
+ "ivschat",
377
+ "kafka",
378
+ "kafkaconnect",
379
+ "kendra",
380
+ "kendra-ranking",
381
+ "keyspaces",
382
+ "kinesis",
383
+ "kinesis-video-archived-media",
384
+ "kinesis-video-media",
385
+ "kinesis-video-signaling",
386
+ "kinesis-video-webrtc-storage",
387
+ "kinesisanalytics",
388
+ "kinesisanalyticsv2",
389
+ "kinesisvideo",
390
+ "kms",
391
+ "lakeformation",
392
+ "lambda",
393
+ "launch-wizard",
394
+ "lex-models",
395
+ "lex-runtime",
396
+ "lexv2-models",
397
+ "lexv2-runtime",
398
+ "license-manager",
399
+ "license-manager-linux-subscriptions",
400
+ "license-manager-user-subscriptions",
401
+ "lightsail",
402
+ "location",
403
+ "logs",
404
+ "lookoutequipment",
405
+ "lookoutmetrics",
406
+ "lookoutvision",
407
+ "m2",
408
+ "machinelearning",
409
+ "macie2",
410
+ "mailmanager",
411
+ "managedblockchain",
412
+ "managedblockchain-query",
413
+ "marketplace-agreement",
414
+ "marketplace-catalog",
415
+ "marketplace-deployment",
416
+ "marketplace-entitlement",
417
+ "marketplace-reporting",
418
+ "marketplacecommerceanalytics",
419
+ "mediaconnect",
420
+ "mediaconvert",
421
+ "medialive",
422
+ "mediapackage",
423
+ "mediapackage-vod",
424
+ "mediapackagev2",
425
+ "mediastore",
426
+ "mediastore-data",
427
+ "mediatailor",
428
+ "medical-imaging",
429
+ "memorydb",
430
+ "meteringmarketplace",
431
+ "mgh",
432
+ "mgn",
433
+ "migration-hub-refactor-spaces",
434
+ "migrationhub-config",
435
+ "migrationhuborchestrator",
436
+ "migrationhubstrategy",
437
+ "mq",
438
+ "mturk",
439
+ "mwaa",
440
+ "neptune",
441
+ "neptune-graph",
442
+ "neptunedata",
443
+ "network-firewall",
444
+ "networkflowmonitor",
445
+ "networkmanager",
446
+ "networkmonitor",
447
+ "notifications",
448
+ "notificationscontacts",
449
+ "oam",
450
+ "observabilityadmin",
451
+ "omics",
452
+ "opensearch",
453
+ "opensearchserverless",
454
+ "opsworks",
455
+ "opsworkscm",
456
+ "organizations",
457
+ "osis",
458
+ "outposts",
459
+ "panorama",
460
+ "partnercentral-selling",
461
+ "payment-cryptography",
462
+ "payment-cryptography-data",
463
+ "pca-connector-ad",
464
+ "pca-connector-scep",
465
+ "pcs",
466
+ "personalize",
467
+ "personalize-events",
468
+ "personalize-runtime",
469
+ "pi",
470
+ "pinpoint",
471
+ "pinpoint-email",
472
+ "pinpoint-sms-voice",
473
+ "pinpoint-sms-voice-v2",
474
+ "pipes",
475
+ "polly",
476
+ "pricing",
477
+ "privatenetworks",
478
+ "proton",
479
+ "qapps",
480
+ "qbusiness",
481
+ "qconnect",
482
+ "qldb",
483
+ "qldb-session",
484
+ "quicksight",
485
+ "ram",
486
+ "rbin",
487
+ "rds",
488
+ "rds-data",
489
+ "redshift",
490
+ "redshift-data",
491
+ "redshift-serverless",
492
+ "rekognition",
493
+ "repostspace",
494
+ "resiliencehub",
495
+ "resource-explorer-2",
496
+ "resource-groups",
497
+ "resourcegroupstaggingapi",
498
+ "robomaker",
499
+ "rolesanywhere",
500
+ "route53",
501
+ "route53-recovery-cluster",
502
+ "route53-recovery-control-config",
503
+ "route53-recovery-readiness",
504
+ "route53domains",
505
+ "route53profiles",
506
+ "route53resolver",
507
+ "rum",
508
+ "s3",
509
+ "s3control",
510
+ "s3outposts",
511
+ "s3tables",
512
+ "sagemaker",
513
+ "sagemaker-a2i-runtime",
514
+ "sagemaker-edge",
515
+ "sagemaker-featurestore-runtime",
516
+ "sagemaker-geospatial",
517
+ "sagemaker-metrics",
518
+ "sagemaker-runtime",
519
+ "savingsplans",
520
+ "scheduler",
521
+ "schemas",
522
+ "sdb",
523
+ "secretsmanager",
524
+ "security-ir",
525
+ "securityhub",
526
+ "securitylake",
527
+ "serverlessrepo",
528
+ "service-quotas",
529
+ "servicecatalog",
530
+ "servicecatalog-appregistry",
531
+ "servicediscovery",
532
+ "ses",
533
+ "sesv2",
534
+ "shield",
535
+ "signer",
536
+ "simspaceweaver",
537
+ "sms",
538
+ "sms-voice",
539
+ "snow-device-management",
540
+ "snowball",
541
+ "sns",
542
+ "socialmessaging",
543
+ "sqs",
544
+ "ssm",
545
+ "ssm-contacts",
546
+ "ssm-incidents",
547
+ "ssm-quicksetup",
548
+ "ssm-sap",
549
+ "sso",
550
+ "sso-admin",
551
+ "sso-oidc",
552
+ "stepfunctions",
553
+ "storagegateway",
554
+ "sts",
555
+ "supplychain",
556
+ "support",
557
+ "support-app",
558
+ "swf",
559
+ "synthetics",
560
+ "taxsettings",
561
+ "textract",
562
+ "timestream-influxdb",
563
+ "timestream-query",
564
+ "timestream-write",
565
+ "tnb",
566
+ "transcribe",
567
+ "transfer",
568
+ "translate",
569
+ "trustedadvisor",
570
+ "verifiedpermissions",
571
+ "voice-id",
572
+ "vpc-lattice",
573
+ "waf",
574
+ "waf-regional",
575
+ "wafv2",
576
+ "wellarchitected",
577
+ "wisdom",
578
+ "workdocs",
579
+ "workmail",
580
+ "workmailmessageflow",
581
+ "workspaces",
582
+ "workspaces-thin-client",
583
+ "workspaces-web",
584
+ "xray",
585
+ ]
586
+ ResourceServiceName = Literal[
587
+ "cloudformation",
588
+ "cloudwatch",
589
+ "dynamodb",
590
+ "ec2",
591
+ "glacier",
592
+ "iam",
593
+ "opsworks",
594
+ "s3",
595
+ "sns",
596
+ "sqs",
597
+ ]
598
+ PaginatorName = Literal[
599
+ "describe_auto_scaling_groups",
600
+ "describe_auto_scaling_instances",
601
+ "describe_launch_configurations",
602
+ "describe_load_balancer_target_groups",
603
+ "describe_load_balancers",
604
+ "describe_notification_configurations",
605
+ "describe_policies",
606
+ "describe_scaling_activities",
607
+ "describe_scheduled_actions",
608
+ "describe_tags",
609
+ "describe_warm_pool",
610
+ ]
611
+ RegionName = Literal[
612
+ "af-south-1",
613
+ "ap-east-1",
614
+ "ap-northeast-1",
615
+ "ap-northeast-2",
616
+ "ap-northeast-3",
617
+ "ap-south-1",
618
+ "ap-south-2",
619
+ "ap-southeast-1",
620
+ "ap-southeast-2",
621
+ "ap-southeast-3",
622
+ "ap-southeast-4",
623
+ "ap-southeast-5",
624
+ "ap-southeast-7",
625
+ "ca-central-1",
626
+ "ca-west-1",
627
+ "eu-central-1",
628
+ "eu-central-2",
629
+ "eu-north-1",
630
+ "eu-south-1",
631
+ "eu-south-2",
632
+ "eu-west-1",
633
+ "eu-west-2",
634
+ "eu-west-3",
635
+ "il-central-1",
636
+ "me-central-1",
637
+ "me-south-1",
638
+ "mx-central-1",
639
+ "sa-east-1",
640
+ "us-east-1",
641
+ "us-east-2",
642
+ "us-west-1",
643
+ "us-west-2",
644
+ ]