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