types-boto3-autoscaling 1.35.71__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,636 @@
1
+ """
2
+ Type annotations for autoscaling service literal definitions.
3
+
4
+ [Open 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 2024 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
+ "batch",
217
+ "bcm-data-exports",
218
+ "bcm-pricing-calculator",
219
+ "bedrock",
220
+ "bedrock-agent",
221
+ "bedrock-agent-runtime",
222
+ "bedrock-runtime",
223
+ "billing",
224
+ "billingconductor",
225
+ "braket",
226
+ "budgets",
227
+ "ce",
228
+ "chatbot",
229
+ "chime",
230
+ "chime-sdk-identity",
231
+ "chime-sdk-media-pipelines",
232
+ "chime-sdk-meetings",
233
+ "chime-sdk-messaging",
234
+ "chime-sdk-voice",
235
+ "cleanrooms",
236
+ "cleanroomsml",
237
+ "cloud9",
238
+ "cloudcontrol",
239
+ "clouddirectory",
240
+ "cloudformation",
241
+ "cloudfront",
242
+ "cloudfront-keyvaluestore",
243
+ "cloudhsm",
244
+ "cloudhsmv2",
245
+ "cloudsearch",
246
+ "cloudsearchdomain",
247
+ "cloudtrail",
248
+ "cloudtrail-data",
249
+ "cloudwatch",
250
+ "codeartifact",
251
+ "codebuild",
252
+ "codecatalyst",
253
+ "codecommit",
254
+ "codeconnections",
255
+ "codedeploy",
256
+ "codeguru-reviewer",
257
+ "codeguru-security",
258
+ "codeguruprofiler",
259
+ "codepipeline",
260
+ "codestar-connections",
261
+ "codestar-notifications",
262
+ "cognito-identity",
263
+ "cognito-idp",
264
+ "cognito-sync",
265
+ "comprehend",
266
+ "comprehendmedical",
267
+ "compute-optimizer",
268
+ "config",
269
+ "connect",
270
+ "connect-contact-lens",
271
+ "connectcampaigns",
272
+ "connectcampaignsv2",
273
+ "connectcases",
274
+ "connectparticipant",
275
+ "controlcatalog",
276
+ "controltower",
277
+ "cost-optimization-hub",
278
+ "cur",
279
+ "customer-profiles",
280
+ "databrew",
281
+ "dataexchange",
282
+ "datapipeline",
283
+ "datasync",
284
+ "datazone",
285
+ "dax",
286
+ "deadline",
287
+ "detective",
288
+ "devicefarm",
289
+ "devops-guru",
290
+ "directconnect",
291
+ "discovery",
292
+ "dlm",
293
+ "dms",
294
+ "docdb",
295
+ "docdb-elastic",
296
+ "drs",
297
+ "ds",
298
+ "ds-data",
299
+ "dynamodb",
300
+ "dynamodbstreams",
301
+ "ebs",
302
+ "ec2",
303
+ "ec2-instance-connect",
304
+ "ecr",
305
+ "ecr-public",
306
+ "ecs",
307
+ "efs",
308
+ "eks",
309
+ "eks-auth",
310
+ "elastic-inference",
311
+ "elasticache",
312
+ "elasticbeanstalk",
313
+ "elastictranscoder",
314
+ "elb",
315
+ "elbv2",
316
+ "emr",
317
+ "emr-containers",
318
+ "emr-serverless",
319
+ "entityresolution",
320
+ "es",
321
+ "events",
322
+ "evidently",
323
+ "finspace",
324
+ "finspace-data",
325
+ "firehose",
326
+ "fis",
327
+ "fms",
328
+ "forecast",
329
+ "forecastquery",
330
+ "frauddetector",
331
+ "freetier",
332
+ "fsx",
333
+ "gamelift",
334
+ "geo-maps",
335
+ "geo-places",
336
+ "geo-routes",
337
+ "glacier",
338
+ "globalaccelerator",
339
+ "glue",
340
+ "grafana",
341
+ "greengrass",
342
+ "greengrassv2",
343
+ "groundstation",
344
+ "guardduty",
345
+ "health",
346
+ "healthlake",
347
+ "iam",
348
+ "identitystore",
349
+ "imagebuilder",
350
+ "importexport",
351
+ "inspector",
352
+ "inspector-scan",
353
+ "inspector2",
354
+ "internetmonitor",
355
+ "iot",
356
+ "iot-data",
357
+ "iot-jobs-data",
358
+ "iot1click-devices",
359
+ "iot1click-projects",
360
+ "iotanalytics",
361
+ "iotdeviceadvisor",
362
+ "iotevents",
363
+ "iotevents-data",
364
+ "iotfleethub",
365
+ "iotfleetwise",
366
+ "iotsecuretunneling",
367
+ "iotsitewise",
368
+ "iotthingsgraph",
369
+ "iottwinmaker",
370
+ "iotwireless",
371
+ "ivs",
372
+ "ivs-realtime",
373
+ "ivschat",
374
+ "kafka",
375
+ "kafkaconnect",
376
+ "kendra",
377
+ "kendra-ranking",
378
+ "keyspaces",
379
+ "kinesis",
380
+ "kinesis-video-archived-media",
381
+ "kinesis-video-media",
382
+ "kinesis-video-signaling",
383
+ "kinesis-video-webrtc-storage",
384
+ "kinesisanalytics",
385
+ "kinesisanalyticsv2",
386
+ "kinesisvideo",
387
+ "kms",
388
+ "lakeformation",
389
+ "lambda",
390
+ "launch-wizard",
391
+ "lex-models",
392
+ "lex-runtime",
393
+ "lexv2-models",
394
+ "lexv2-runtime",
395
+ "license-manager",
396
+ "license-manager-linux-subscriptions",
397
+ "license-manager-user-subscriptions",
398
+ "lightsail",
399
+ "location",
400
+ "logs",
401
+ "lookoutequipment",
402
+ "lookoutmetrics",
403
+ "lookoutvision",
404
+ "m2",
405
+ "machinelearning",
406
+ "macie2",
407
+ "mailmanager",
408
+ "managedblockchain",
409
+ "managedblockchain-query",
410
+ "marketplace-agreement",
411
+ "marketplace-catalog",
412
+ "marketplace-deployment",
413
+ "marketplace-entitlement",
414
+ "marketplace-reporting",
415
+ "marketplacecommerceanalytics",
416
+ "mediaconnect",
417
+ "mediaconvert",
418
+ "medialive",
419
+ "mediapackage",
420
+ "mediapackage-vod",
421
+ "mediapackagev2",
422
+ "mediastore",
423
+ "mediastore-data",
424
+ "mediatailor",
425
+ "medical-imaging",
426
+ "memorydb",
427
+ "meteringmarketplace",
428
+ "mgh",
429
+ "mgn",
430
+ "migration-hub-refactor-spaces",
431
+ "migrationhub-config",
432
+ "migrationhuborchestrator",
433
+ "migrationhubstrategy",
434
+ "mq",
435
+ "mturk",
436
+ "mwaa",
437
+ "neptune",
438
+ "neptune-graph",
439
+ "neptunedata",
440
+ "network-firewall",
441
+ "networkmanager",
442
+ "networkmonitor",
443
+ "notifications",
444
+ "notificationscontacts",
445
+ "oam",
446
+ "observabilityadmin",
447
+ "omics",
448
+ "opensearch",
449
+ "opensearchserverless",
450
+ "opsworks",
451
+ "opsworkscm",
452
+ "organizations",
453
+ "osis",
454
+ "outposts",
455
+ "panorama",
456
+ "partnercentral-selling",
457
+ "payment-cryptography",
458
+ "payment-cryptography-data",
459
+ "pca-connector-ad",
460
+ "pca-connector-scep",
461
+ "pcs",
462
+ "personalize",
463
+ "personalize-events",
464
+ "personalize-runtime",
465
+ "pi",
466
+ "pinpoint",
467
+ "pinpoint-email",
468
+ "pinpoint-sms-voice",
469
+ "pinpoint-sms-voice-v2",
470
+ "pipes",
471
+ "polly",
472
+ "pricing",
473
+ "privatenetworks",
474
+ "proton",
475
+ "qapps",
476
+ "qbusiness",
477
+ "qconnect",
478
+ "qldb",
479
+ "qldb-session",
480
+ "quicksight",
481
+ "ram",
482
+ "rbin",
483
+ "rds",
484
+ "rds-data",
485
+ "redshift",
486
+ "redshift-data",
487
+ "redshift-serverless",
488
+ "rekognition",
489
+ "repostspace",
490
+ "resiliencehub",
491
+ "resource-explorer-2",
492
+ "resource-groups",
493
+ "resourcegroupstaggingapi",
494
+ "robomaker",
495
+ "rolesanywhere",
496
+ "route53",
497
+ "route53-recovery-cluster",
498
+ "route53-recovery-control-config",
499
+ "route53-recovery-readiness",
500
+ "route53domains",
501
+ "route53profiles",
502
+ "route53resolver",
503
+ "rum",
504
+ "s3",
505
+ "s3control",
506
+ "s3outposts",
507
+ "sagemaker",
508
+ "sagemaker-a2i-runtime",
509
+ "sagemaker-edge",
510
+ "sagemaker-featurestore-runtime",
511
+ "sagemaker-geospatial",
512
+ "sagemaker-metrics",
513
+ "sagemaker-runtime",
514
+ "savingsplans",
515
+ "scheduler",
516
+ "schemas",
517
+ "sdb",
518
+ "secretsmanager",
519
+ "securityhub",
520
+ "securitylake",
521
+ "serverlessrepo",
522
+ "service-quotas",
523
+ "servicecatalog",
524
+ "servicecatalog-appregistry",
525
+ "servicediscovery",
526
+ "ses",
527
+ "sesv2",
528
+ "shield",
529
+ "signer",
530
+ "simspaceweaver",
531
+ "sms",
532
+ "sms-voice",
533
+ "snow-device-management",
534
+ "snowball",
535
+ "sns",
536
+ "socialmessaging",
537
+ "sqs",
538
+ "ssm",
539
+ "ssm-contacts",
540
+ "ssm-incidents",
541
+ "ssm-quicksetup",
542
+ "ssm-sap",
543
+ "sso",
544
+ "sso-admin",
545
+ "sso-oidc",
546
+ "stepfunctions",
547
+ "storagegateway",
548
+ "sts",
549
+ "supplychain",
550
+ "support",
551
+ "support-app",
552
+ "swf",
553
+ "synthetics",
554
+ "taxsettings",
555
+ "textract",
556
+ "timestream-influxdb",
557
+ "timestream-query",
558
+ "timestream-write",
559
+ "tnb",
560
+ "transcribe",
561
+ "transfer",
562
+ "translate",
563
+ "trustedadvisor",
564
+ "verifiedpermissions",
565
+ "voice-id",
566
+ "vpc-lattice",
567
+ "waf",
568
+ "waf-regional",
569
+ "wafv2",
570
+ "wellarchitected",
571
+ "wisdom",
572
+ "workdocs",
573
+ "workmail",
574
+ "workmailmessageflow",
575
+ "workspaces",
576
+ "workspaces-thin-client",
577
+ "workspaces-web",
578
+ "xray",
579
+ ]
580
+ ResourceServiceName = Literal[
581
+ "cloudformation",
582
+ "cloudwatch",
583
+ "dynamodb",
584
+ "ec2",
585
+ "glacier",
586
+ "iam",
587
+ "opsworks",
588
+ "s3",
589
+ "sns",
590
+ "sqs",
591
+ ]
592
+ PaginatorName = Literal[
593
+ "describe_auto_scaling_groups",
594
+ "describe_auto_scaling_instances",
595
+ "describe_launch_configurations",
596
+ "describe_load_balancer_target_groups",
597
+ "describe_load_balancers",
598
+ "describe_notification_configurations",
599
+ "describe_policies",
600
+ "describe_scaling_activities",
601
+ "describe_scheduled_actions",
602
+ "describe_tags",
603
+ "describe_warm_pool",
604
+ ]
605
+ RegionName = Literal[
606
+ "af-south-1",
607
+ "ap-east-1",
608
+ "ap-northeast-1",
609
+ "ap-northeast-2",
610
+ "ap-northeast-3",
611
+ "ap-south-1",
612
+ "ap-south-2",
613
+ "ap-southeast-1",
614
+ "ap-southeast-2",
615
+ "ap-southeast-3",
616
+ "ap-southeast-4",
617
+ "ap-southeast-5",
618
+ "ca-central-1",
619
+ "ca-west-1",
620
+ "eu-central-1",
621
+ "eu-central-2",
622
+ "eu-north-1",
623
+ "eu-south-1",
624
+ "eu-south-2",
625
+ "eu-west-1",
626
+ "eu-west-2",
627
+ "eu-west-3",
628
+ "il-central-1",
629
+ "me-central-1",
630
+ "me-south-1",
631
+ "sa-east-1",
632
+ "us-east-1",
633
+ "us-east-2",
634
+ "us-west-1",
635
+ "us-west-2",
636
+ ]