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