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.
- types_boto3_autoscaling/__init__.py +77 -0
- types_boto3_autoscaling/__init__.pyi +76 -0
- types_boto3_autoscaling/__main__.py +43 -0
- types_boto3_autoscaling/client.py +981 -0
- types_boto3_autoscaling/client.pyi +978 -0
- types_boto3_autoscaling/literals.py +652 -0
- types_boto3_autoscaling/literals.pyi +650 -0
- types_boto3_autoscaling/paginator.py +330 -0
- types_boto3_autoscaling/paginator.pyi +296 -0
- types_boto3_autoscaling/py.typed +0 -0
- types_boto3_autoscaling/type_defs.py +1877 -0
- types_boto3_autoscaling/type_defs.pyi +1653 -0
- types_boto3_autoscaling/version.py +7 -0
- types_boto3_autoscaling-1.41.1.dist-info/METADATA +509 -0
- types_boto3_autoscaling-1.41.1.dist-info/RECORD +18 -0
- types_boto3_autoscaling-1.41.1.dist-info/WHEEL +5 -0
- types_boto3_autoscaling-1.41.1.dist-info/licenses/LICENSE +21 -0
- types_boto3_autoscaling-1.41.1.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,1653 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Type annotations for autoscaling service type definitions.
|
|
3
|
+
|
|
4
|
+
[Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_autoscaling/type_defs/)
|
|
5
|
+
|
|
6
|
+
Copyright 2025 Vlad Emelianov
|
|
7
|
+
|
|
8
|
+
Usage::
|
|
9
|
+
|
|
10
|
+
```python
|
|
11
|
+
from types_boto3_autoscaling.type_defs import AcceleratorCountRequestTypeDef
|
|
12
|
+
|
|
13
|
+
data: AcceleratorCountRequestTypeDef = ...
|
|
14
|
+
```
|
|
15
|
+
"""
|
|
16
|
+
|
|
17
|
+
from __future__ import annotations
|
|
18
|
+
|
|
19
|
+
import sys
|
|
20
|
+
from collections.abc import Sequence
|
|
21
|
+
from datetime import datetime
|
|
22
|
+
from typing import Union
|
|
23
|
+
|
|
24
|
+
from .literals import (
|
|
25
|
+
AcceleratorManufacturerType,
|
|
26
|
+
AcceleratorNameType,
|
|
27
|
+
AcceleratorTypeType,
|
|
28
|
+
BareMetalType,
|
|
29
|
+
BurstablePerformanceType,
|
|
30
|
+
CapacityDistributionStrategyType,
|
|
31
|
+
CapacityReservationPreferenceType,
|
|
32
|
+
CpuManufacturerType,
|
|
33
|
+
ImpairedZoneHealthCheckBehaviorType,
|
|
34
|
+
InstanceGenerationType,
|
|
35
|
+
InstanceMetadataEndpointStateType,
|
|
36
|
+
InstanceMetadataHttpTokensStateType,
|
|
37
|
+
InstanceRefreshStatusType,
|
|
38
|
+
LifecycleStateType,
|
|
39
|
+
LocalStorageType,
|
|
40
|
+
LocalStorageTypeType,
|
|
41
|
+
MetricStatisticType,
|
|
42
|
+
MetricTypeType,
|
|
43
|
+
PredefinedLoadMetricTypeType,
|
|
44
|
+
PredefinedMetricPairTypeType,
|
|
45
|
+
PredefinedScalingMetricTypeType,
|
|
46
|
+
PredictiveScalingMaxCapacityBreachBehaviorType,
|
|
47
|
+
PredictiveScalingModeType,
|
|
48
|
+
RefreshStrategyType,
|
|
49
|
+
RetentionActionType,
|
|
50
|
+
RetryStrategyType,
|
|
51
|
+
ScaleInProtectedInstancesType,
|
|
52
|
+
ScalingActivityStatusCodeType,
|
|
53
|
+
StandbyInstancesType,
|
|
54
|
+
WarmPoolStateType,
|
|
55
|
+
)
|
|
56
|
+
|
|
57
|
+
if sys.version_info >= (3, 12):
|
|
58
|
+
from typing import Literal, NotRequired, TypedDict
|
|
59
|
+
else:
|
|
60
|
+
from typing_extensions import Literal, NotRequired, TypedDict
|
|
61
|
+
|
|
62
|
+
__all__ = (
|
|
63
|
+
"AcceleratorCountRequestTypeDef",
|
|
64
|
+
"AcceleratorTotalMemoryMiBRequestTypeDef",
|
|
65
|
+
"ActivitiesTypeTypeDef",
|
|
66
|
+
"ActivityTypeDef",
|
|
67
|
+
"ActivityTypeTypeDef",
|
|
68
|
+
"AdjustmentTypeTypeDef",
|
|
69
|
+
"AlarmSpecificationOutputTypeDef",
|
|
70
|
+
"AlarmSpecificationTypeDef",
|
|
71
|
+
"AlarmTypeDef",
|
|
72
|
+
"AttachInstancesQueryTypeDef",
|
|
73
|
+
"AttachLoadBalancerTargetGroupsTypeTypeDef",
|
|
74
|
+
"AttachLoadBalancersTypeTypeDef",
|
|
75
|
+
"AttachTrafficSourcesTypeTypeDef",
|
|
76
|
+
"AutoScalingGroupNamesTypePaginateTypeDef",
|
|
77
|
+
"AutoScalingGroupNamesTypeTypeDef",
|
|
78
|
+
"AutoScalingGroupTypeDef",
|
|
79
|
+
"AutoScalingGroupsTypeTypeDef",
|
|
80
|
+
"AutoScalingInstanceDetailsTypeDef",
|
|
81
|
+
"AutoScalingInstancesTypeTypeDef",
|
|
82
|
+
"AvailabilityZoneDistributionTypeDef",
|
|
83
|
+
"AvailabilityZoneImpairmentPolicyTypeDef",
|
|
84
|
+
"BaselineEbsBandwidthMbpsRequestTypeDef",
|
|
85
|
+
"BaselinePerformanceFactorsRequestOutputTypeDef",
|
|
86
|
+
"BaselinePerformanceFactorsRequestTypeDef",
|
|
87
|
+
"BatchDeleteScheduledActionAnswerTypeDef",
|
|
88
|
+
"BatchDeleteScheduledActionTypeTypeDef",
|
|
89
|
+
"BatchPutScheduledUpdateGroupActionAnswerTypeDef",
|
|
90
|
+
"BatchPutScheduledUpdateGroupActionTypeTypeDef",
|
|
91
|
+
"BlockDeviceMappingTypeDef",
|
|
92
|
+
"CancelInstanceRefreshAnswerTypeDef",
|
|
93
|
+
"CancelInstanceRefreshTypeTypeDef",
|
|
94
|
+
"CapacityForecastTypeDef",
|
|
95
|
+
"CapacityReservationSpecificationOutputTypeDef",
|
|
96
|
+
"CapacityReservationSpecificationTypeDef",
|
|
97
|
+
"CapacityReservationSpecificationUnionTypeDef",
|
|
98
|
+
"CapacityReservationTargetOutputTypeDef",
|
|
99
|
+
"CapacityReservationTargetTypeDef",
|
|
100
|
+
"CompleteLifecycleActionTypeTypeDef",
|
|
101
|
+
"CpuPerformanceFactorRequestOutputTypeDef",
|
|
102
|
+
"CpuPerformanceFactorRequestTypeDef",
|
|
103
|
+
"CreateAutoScalingGroupTypeTypeDef",
|
|
104
|
+
"CreateLaunchConfigurationTypeTypeDef",
|
|
105
|
+
"CreateOrUpdateTagsTypeTypeDef",
|
|
106
|
+
"CustomizedMetricSpecificationOutputTypeDef",
|
|
107
|
+
"CustomizedMetricSpecificationTypeDef",
|
|
108
|
+
"DeleteAutoScalingGroupTypeTypeDef",
|
|
109
|
+
"DeleteLifecycleHookTypeTypeDef",
|
|
110
|
+
"DeleteNotificationConfigurationTypeTypeDef",
|
|
111
|
+
"DeletePolicyTypeTypeDef",
|
|
112
|
+
"DeleteScheduledActionTypeTypeDef",
|
|
113
|
+
"DeleteTagsTypeTypeDef",
|
|
114
|
+
"DeleteWarmPoolTypeTypeDef",
|
|
115
|
+
"DescribeAccountLimitsAnswerTypeDef",
|
|
116
|
+
"DescribeAdjustmentTypesAnswerTypeDef",
|
|
117
|
+
"DescribeAutoScalingInstancesTypePaginateTypeDef",
|
|
118
|
+
"DescribeAutoScalingInstancesTypeTypeDef",
|
|
119
|
+
"DescribeAutoScalingNotificationTypesAnswerTypeDef",
|
|
120
|
+
"DescribeInstanceRefreshesAnswerTypeDef",
|
|
121
|
+
"DescribeInstanceRefreshesTypeTypeDef",
|
|
122
|
+
"DescribeLifecycleHookTypesAnswerTypeDef",
|
|
123
|
+
"DescribeLifecycleHooksAnswerTypeDef",
|
|
124
|
+
"DescribeLifecycleHooksTypeTypeDef",
|
|
125
|
+
"DescribeLoadBalancerTargetGroupsRequestPaginateTypeDef",
|
|
126
|
+
"DescribeLoadBalancerTargetGroupsRequestTypeDef",
|
|
127
|
+
"DescribeLoadBalancerTargetGroupsResponseTypeDef",
|
|
128
|
+
"DescribeLoadBalancersRequestPaginateTypeDef",
|
|
129
|
+
"DescribeLoadBalancersRequestTypeDef",
|
|
130
|
+
"DescribeLoadBalancersResponseTypeDef",
|
|
131
|
+
"DescribeMetricCollectionTypesAnswerTypeDef",
|
|
132
|
+
"DescribeNotificationConfigurationsAnswerTypeDef",
|
|
133
|
+
"DescribeNotificationConfigurationsTypePaginateTypeDef",
|
|
134
|
+
"DescribeNotificationConfigurationsTypeTypeDef",
|
|
135
|
+
"DescribePoliciesTypePaginateTypeDef",
|
|
136
|
+
"DescribePoliciesTypeTypeDef",
|
|
137
|
+
"DescribeScalingActivitiesTypePaginateTypeDef",
|
|
138
|
+
"DescribeScalingActivitiesTypeTypeDef",
|
|
139
|
+
"DescribeScheduledActionsTypePaginateTypeDef",
|
|
140
|
+
"DescribeScheduledActionsTypeTypeDef",
|
|
141
|
+
"DescribeTagsTypePaginateTypeDef",
|
|
142
|
+
"DescribeTagsTypeTypeDef",
|
|
143
|
+
"DescribeTerminationPolicyTypesAnswerTypeDef",
|
|
144
|
+
"DescribeTrafficSourcesRequestTypeDef",
|
|
145
|
+
"DescribeTrafficSourcesResponseTypeDef",
|
|
146
|
+
"DescribeWarmPoolAnswerTypeDef",
|
|
147
|
+
"DescribeWarmPoolTypePaginateTypeDef",
|
|
148
|
+
"DescribeWarmPoolTypeTypeDef",
|
|
149
|
+
"DesiredConfigurationOutputTypeDef",
|
|
150
|
+
"DesiredConfigurationTypeDef",
|
|
151
|
+
"DesiredConfigurationUnionTypeDef",
|
|
152
|
+
"DetachInstancesAnswerTypeDef",
|
|
153
|
+
"DetachInstancesQueryTypeDef",
|
|
154
|
+
"DetachLoadBalancerTargetGroupsTypeTypeDef",
|
|
155
|
+
"DetachLoadBalancersTypeTypeDef",
|
|
156
|
+
"DetachTrafficSourcesTypeTypeDef",
|
|
157
|
+
"DisableMetricsCollectionQueryTypeDef",
|
|
158
|
+
"EbsTypeDef",
|
|
159
|
+
"EmptyResponseMetadataTypeDef",
|
|
160
|
+
"EnableMetricsCollectionQueryTypeDef",
|
|
161
|
+
"EnabledMetricTypeDef",
|
|
162
|
+
"EnterStandbyAnswerTypeDef",
|
|
163
|
+
"EnterStandbyQueryTypeDef",
|
|
164
|
+
"ExecutePolicyTypeTypeDef",
|
|
165
|
+
"ExitStandbyAnswerTypeDef",
|
|
166
|
+
"ExitStandbyQueryTypeDef",
|
|
167
|
+
"FailedScheduledUpdateGroupActionRequestTypeDef",
|
|
168
|
+
"FilterTypeDef",
|
|
169
|
+
"GetPredictiveScalingForecastAnswerTypeDef",
|
|
170
|
+
"GetPredictiveScalingForecastTypeTypeDef",
|
|
171
|
+
"InstanceCollectionTypeDef",
|
|
172
|
+
"InstanceLifecyclePolicyTypeDef",
|
|
173
|
+
"InstanceMaintenancePolicyTypeDef",
|
|
174
|
+
"InstanceMetadataOptionsTypeDef",
|
|
175
|
+
"InstanceMonitoringTypeDef",
|
|
176
|
+
"InstanceRefreshLivePoolProgressTypeDef",
|
|
177
|
+
"InstanceRefreshProgressDetailsTypeDef",
|
|
178
|
+
"InstanceRefreshTypeDef",
|
|
179
|
+
"InstanceRefreshWarmPoolProgressTypeDef",
|
|
180
|
+
"InstanceRequirementsOutputTypeDef",
|
|
181
|
+
"InstanceRequirementsTypeDef",
|
|
182
|
+
"InstanceReusePolicyTypeDef",
|
|
183
|
+
"InstanceTypeDef",
|
|
184
|
+
"InstancesDistributionTypeDef",
|
|
185
|
+
"LaunchConfigurationNameTypeTypeDef",
|
|
186
|
+
"LaunchConfigurationNamesTypePaginateTypeDef",
|
|
187
|
+
"LaunchConfigurationNamesTypeTypeDef",
|
|
188
|
+
"LaunchConfigurationTypeDef",
|
|
189
|
+
"LaunchConfigurationsTypeTypeDef",
|
|
190
|
+
"LaunchInstancesErrorTypeDef",
|
|
191
|
+
"LaunchInstancesRequestTypeDef",
|
|
192
|
+
"LaunchInstancesResultTypeDef",
|
|
193
|
+
"LaunchTemplateOutputTypeDef",
|
|
194
|
+
"LaunchTemplateOverridesOutputTypeDef",
|
|
195
|
+
"LaunchTemplateOverridesTypeDef",
|
|
196
|
+
"LaunchTemplateSpecificationTypeDef",
|
|
197
|
+
"LaunchTemplateTypeDef",
|
|
198
|
+
"LifecycleHookSpecificationTypeDef",
|
|
199
|
+
"LifecycleHookTypeDef",
|
|
200
|
+
"LoadBalancerStateTypeDef",
|
|
201
|
+
"LoadBalancerTargetGroupStateTypeDef",
|
|
202
|
+
"LoadForecastTypeDef",
|
|
203
|
+
"MemoryGiBPerVCpuRequestTypeDef",
|
|
204
|
+
"MemoryMiBRequestTypeDef",
|
|
205
|
+
"MetricCollectionTypeTypeDef",
|
|
206
|
+
"MetricDataQueryOutputTypeDef",
|
|
207
|
+
"MetricDataQueryTypeDef",
|
|
208
|
+
"MetricDimensionTypeDef",
|
|
209
|
+
"MetricGranularityTypeTypeDef",
|
|
210
|
+
"MetricOutputTypeDef",
|
|
211
|
+
"MetricStatOutputTypeDef",
|
|
212
|
+
"MetricStatTypeDef",
|
|
213
|
+
"MetricTypeDef",
|
|
214
|
+
"MixedInstancesPolicyOutputTypeDef",
|
|
215
|
+
"MixedInstancesPolicyTypeDef",
|
|
216
|
+
"MixedInstancesPolicyUnionTypeDef",
|
|
217
|
+
"NetworkBandwidthGbpsRequestTypeDef",
|
|
218
|
+
"NetworkInterfaceCountRequestTypeDef",
|
|
219
|
+
"NotificationConfigurationTypeDef",
|
|
220
|
+
"PaginatorConfigTypeDef",
|
|
221
|
+
"PerformanceFactorReferenceRequestTypeDef",
|
|
222
|
+
"PoliciesTypeTypeDef",
|
|
223
|
+
"PolicyARNTypeTypeDef",
|
|
224
|
+
"PredefinedMetricSpecificationTypeDef",
|
|
225
|
+
"PredictiveScalingConfigurationOutputTypeDef",
|
|
226
|
+
"PredictiveScalingConfigurationTypeDef",
|
|
227
|
+
"PredictiveScalingConfigurationUnionTypeDef",
|
|
228
|
+
"PredictiveScalingCustomizedCapacityMetricOutputTypeDef",
|
|
229
|
+
"PredictiveScalingCustomizedCapacityMetricTypeDef",
|
|
230
|
+
"PredictiveScalingCustomizedLoadMetricOutputTypeDef",
|
|
231
|
+
"PredictiveScalingCustomizedLoadMetricTypeDef",
|
|
232
|
+
"PredictiveScalingCustomizedScalingMetricOutputTypeDef",
|
|
233
|
+
"PredictiveScalingCustomizedScalingMetricTypeDef",
|
|
234
|
+
"PredictiveScalingMetricSpecificationOutputTypeDef",
|
|
235
|
+
"PredictiveScalingMetricSpecificationTypeDef",
|
|
236
|
+
"PredictiveScalingPredefinedLoadMetricTypeDef",
|
|
237
|
+
"PredictiveScalingPredefinedMetricPairTypeDef",
|
|
238
|
+
"PredictiveScalingPredefinedScalingMetricTypeDef",
|
|
239
|
+
"ProcessTypeTypeDef",
|
|
240
|
+
"ProcessesTypeTypeDef",
|
|
241
|
+
"PutLifecycleHookTypeTypeDef",
|
|
242
|
+
"PutNotificationConfigurationTypeTypeDef",
|
|
243
|
+
"PutScalingPolicyTypeTypeDef",
|
|
244
|
+
"PutScheduledUpdateGroupActionTypeTypeDef",
|
|
245
|
+
"PutWarmPoolTypeTypeDef",
|
|
246
|
+
"RecordLifecycleActionHeartbeatTypeTypeDef",
|
|
247
|
+
"RefreshPreferencesOutputTypeDef",
|
|
248
|
+
"RefreshPreferencesTypeDef",
|
|
249
|
+
"RefreshPreferencesUnionTypeDef",
|
|
250
|
+
"ResponseMetadataTypeDef",
|
|
251
|
+
"RetentionTriggersTypeDef",
|
|
252
|
+
"RollbackDetailsTypeDef",
|
|
253
|
+
"RollbackInstanceRefreshAnswerTypeDef",
|
|
254
|
+
"RollbackInstanceRefreshTypeTypeDef",
|
|
255
|
+
"ScalingPolicyTypeDef",
|
|
256
|
+
"ScalingProcessQueryRequestTypeDef",
|
|
257
|
+
"ScalingProcessQueryTypeDef",
|
|
258
|
+
"ScheduledActionsTypeTypeDef",
|
|
259
|
+
"ScheduledUpdateGroupActionRequestTypeDef",
|
|
260
|
+
"ScheduledUpdateGroupActionTypeDef",
|
|
261
|
+
"SetDesiredCapacityTypeTypeDef",
|
|
262
|
+
"SetInstanceHealthQueryTypeDef",
|
|
263
|
+
"SetInstanceProtectionQueryTypeDef",
|
|
264
|
+
"StartInstanceRefreshAnswerTypeDef",
|
|
265
|
+
"StartInstanceRefreshTypeTypeDef",
|
|
266
|
+
"StepAdjustmentTypeDef",
|
|
267
|
+
"SuspendedProcessTypeDef",
|
|
268
|
+
"TagDescriptionTypeDef",
|
|
269
|
+
"TagTypeDef",
|
|
270
|
+
"TagsTypeTypeDef",
|
|
271
|
+
"TargetTrackingConfigurationOutputTypeDef",
|
|
272
|
+
"TargetTrackingConfigurationTypeDef",
|
|
273
|
+
"TargetTrackingConfigurationUnionTypeDef",
|
|
274
|
+
"TargetTrackingMetricDataQueryOutputTypeDef",
|
|
275
|
+
"TargetTrackingMetricDataQueryTypeDef",
|
|
276
|
+
"TargetTrackingMetricStatOutputTypeDef",
|
|
277
|
+
"TargetTrackingMetricStatTypeDef",
|
|
278
|
+
"TerminateInstanceInAutoScalingGroupTypeTypeDef",
|
|
279
|
+
"TimestampTypeDef",
|
|
280
|
+
"TotalLocalStorageGBRequestTypeDef",
|
|
281
|
+
"TrafficSourceIdentifierTypeDef",
|
|
282
|
+
"TrafficSourceStateTypeDef",
|
|
283
|
+
"UpdateAutoScalingGroupTypeTypeDef",
|
|
284
|
+
"VCpuCountRequestTypeDef",
|
|
285
|
+
"WarmPoolConfigurationTypeDef",
|
|
286
|
+
)
|
|
287
|
+
|
|
288
|
+
class AcceleratorCountRequestTypeDef(TypedDict):
|
|
289
|
+
Min: NotRequired[int]
|
|
290
|
+
Max: NotRequired[int]
|
|
291
|
+
|
|
292
|
+
class AcceleratorTotalMemoryMiBRequestTypeDef(TypedDict):
|
|
293
|
+
Min: NotRequired[int]
|
|
294
|
+
Max: NotRequired[int]
|
|
295
|
+
|
|
296
|
+
class ActivityTypeDef(TypedDict):
|
|
297
|
+
ActivityId: str
|
|
298
|
+
AutoScalingGroupName: str
|
|
299
|
+
Cause: str
|
|
300
|
+
StartTime: datetime
|
|
301
|
+
StatusCode: ScalingActivityStatusCodeType
|
|
302
|
+
Description: NotRequired[str]
|
|
303
|
+
EndTime: NotRequired[datetime]
|
|
304
|
+
StatusMessage: NotRequired[str]
|
|
305
|
+
Progress: NotRequired[int]
|
|
306
|
+
Details: NotRequired[str]
|
|
307
|
+
AutoScalingGroupState: NotRequired[str]
|
|
308
|
+
AutoScalingGroupARN: NotRequired[str]
|
|
309
|
+
|
|
310
|
+
class ResponseMetadataTypeDef(TypedDict):
|
|
311
|
+
RequestId: str
|
|
312
|
+
HTTPStatusCode: int
|
|
313
|
+
HTTPHeaders: dict[str, str]
|
|
314
|
+
RetryAttempts: int
|
|
315
|
+
HostId: NotRequired[str]
|
|
316
|
+
|
|
317
|
+
class AdjustmentTypeTypeDef(TypedDict):
|
|
318
|
+
AdjustmentType: NotRequired[str]
|
|
319
|
+
|
|
320
|
+
class AlarmSpecificationOutputTypeDef(TypedDict):
|
|
321
|
+
Alarms: NotRequired[list[str]]
|
|
322
|
+
|
|
323
|
+
class AlarmSpecificationTypeDef(TypedDict):
|
|
324
|
+
Alarms: NotRequired[Sequence[str]]
|
|
325
|
+
|
|
326
|
+
class AlarmTypeDef(TypedDict):
|
|
327
|
+
AlarmName: NotRequired[str]
|
|
328
|
+
AlarmARN: NotRequired[str]
|
|
329
|
+
|
|
330
|
+
class AttachInstancesQueryTypeDef(TypedDict):
|
|
331
|
+
AutoScalingGroupName: str
|
|
332
|
+
InstanceIds: NotRequired[Sequence[str]]
|
|
333
|
+
|
|
334
|
+
class AttachLoadBalancerTargetGroupsTypeTypeDef(TypedDict):
|
|
335
|
+
AutoScalingGroupName: str
|
|
336
|
+
TargetGroupARNs: Sequence[str]
|
|
337
|
+
|
|
338
|
+
class AttachLoadBalancersTypeTypeDef(TypedDict):
|
|
339
|
+
AutoScalingGroupName: str
|
|
340
|
+
LoadBalancerNames: Sequence[str]
|
|
341
|
+
|
|
342
|
+
TrafficSourceIdentifierTypeDef = TypedDict(
|
|
343
|
+
"TrafficSourceIdentifierTypeDef",
|
|
344
|
+
{
|
|
345
|
+
"Identifier": str,
|
|
346
|
+
"Type": NotRequired[str],
|
|
347
|
+
},
|
|
348
|
+
)
|
|
349
|
+
|
|
350
|
+
class FilterTypeDef(TypedDict):
|
|
351
|
+
Name: NotRequired[str]
|
|
352
|
+
Values: NotRequired[Sequence[str]]
|
|
353
|
+
|
|
354
|
+
class PaginatorConfigTypeDef(TypedDict):
|
|
355
|
+
MaxItems: NotRequired[int]
|
|
356
|
+
PageSize: NotRequired[int]
|
|
357
|
+
StartingToken: NotRequired[str]
|
|
358
|
+
|
|
359
|
+
class AvailabilityZoneDistributionTypeDef(TypedDict):
|
|
360
|
+
CapacityDistributionStrategy: NotRequired[CapacityDistributionStrategyType]
|
|
361
|
+
|
|
362
|
+
class AvailabilityZoneImpairmentPolicyTypeDef(TypedDict):
|
|
363
|
+
ZonalShiftEnabled: NotRequired[bool]
|
|
364
|
+
ImpairedZoneHealthCheckBehavior: NotRequired[ImpairedZoneHealthCheckBehaviorType]
|
|
365
|
+
|
|
366
|
+
class EnabledMetricTypeDef(TypedDict):
|
|
367
|
+
Metric: NotRequired[str]
|
|
368
|
+
Granularity: NotRequired[str]
|
|
369
|
+
|
|
370
|
+
class InstanceMaintenancePolicyTypeDef(TypedDict):
|
|
371
|
+
MinHealthyPercentage: NotRequired[int]
|
|
372
|
+
MaxHealthyPercentage: NotRequired[int]
|
|
373
|
+
|
|
374
|
+
class LaunchTemplateSpecificationTypeDef(TypedDict):
|
|
375
|
+
LaunchTemplateId: NotRequired[str]
|
|
376
|
+
LaunchTemplateName: NotRequired[str]
|
|
377
|
+
Version: NotRequired[str]
|
|
378
|
+
|
|
379
|
+
class SuspendedProcessTypeDef(TypedDict):
|
|
380
|
+
ProcessName: NotRequired[str]
|
|
381
|
+
SuspensionReason: NotRequired[str]
|
|
382
|
+
|
|
383
|
+
class TagDescriptionTypeDef(TypedDict):
|
|
384
|
+
ResourceId: NotRequired[str]
|
|
385
|
+
ResourceType: NotRequired[str]
|
|
386
|
+
Key: NotRequired[str]
|
|
387
|
+
Value: NotRequired[str]
|
|
388
|
+
PropagateAtLaunch: NotRequired[bool]
|
|
389
|
+
|
|
390
|
+
class BaselineEbsBandwidthMbpsRequestTypeDef(TypedDict):
|
|
391
|
+
Min: NotRequired[int]
|
|
392
|
+
Max: NotRequired[int]
|
|
393
|
+
|
|
394
|
+
class FailedScheduledUpdateGroupActionRequestTypeDef(TypedDict):
|
|
395
|
+
ScheduledActionName: str
|
|
396
|
+
ErrorCode: NotRequired[str]
|
|
397
|
+
ErrorMessage: NotRequired[str]
|
|
398
|
+
|
|
399
|
+
class BatchDeleteScheduledActionTypeTypeDef(TypedDict):
|
|
400
|
+
AutoScalingGroupName: str
|
|
401
|
+
ScheduledActionNames: Sequence[str]
|
|
402
|
+
|
|
403
|
+
class EbsTypeDef(TypedDict):
|
|
404
|
+
SnapshotId: NotRequired[str]
|
|
405
|
+
VolumeSize: NotRequired[int]
|
|
406
|
+
VolumeType: NotRequired[str]
|
|
407
|
+
DeleteOnTermination: NotRequired[bool]
|
|
408
|
+
Iops: NotRequired[int]
|
|
409
|
+
Encrypted: NotRequired[bool]
|
|
410
|
+
Throughput: NotRequired[int]
|
|
411
|
+
|
|
412
|
+
class CancelInstanceRefreshTypeTypeDef(TypedDict):
|
|
413
|
+
AutoScalingGroupName: str
|
|
414
|
+
WaitForTransitioningInstances: NotRequired[bool]
|
|
415
|
+
|
|
416
|
+
class CapacityForecastTypeDef(TypedDict):
|
|
417
|
+
Timestamps: list[datetime]
|
|
418
|
+
Values: list[float]
|
|
419
|
+
|
|
420
|
+
class CapacityReservationTargetOutputTypeDef(TypedDict):
|
|
421
|
+
CapacityReservationIds: NotRequired[list[str]]
|
|
422
|
+
CapacityReservationResourceGroupArns: NotRequired[list[str]]
|
|
423
|
+
|
|
424
|
+
class CapacityReservationTargetTypeDef(TypedDict):
|
|
425
|
+
CapacityReservationIds: NotRequired[Sequence[str]]
|
|
426
|
+
CapacityReservationResourceGroupArns: NotRequired[Sequence[str]]
|
|
427
|
+
|
|
428
|
+
class CompleteLifecycleActionTypeTypeDef(TypedDict):
|
|
429
|
+
LifecycleHookName: str
|
|
430
|
+
AutoScalingGroupName: str
|
|
431
|
+
LifecycleActionResult: str
|
|
432
|
+
LifecycleActionToken: NotRequired[str]
|
|
433
|
+
InstanceId: NotRequired[str]
|
|
434
|
+
|
|
435
|
+
class PerformanceFactorReferenceRequestTypeDef(TypedDict):
|
|
436
|
+
InstanceFamily: NotRequired[str]
|
|
437
|
+
|
|
438
|
+
class LifecycleHookSpecificationTypeDef(TypedDict):
|
|
439
|
+
LifecycleHookName: str
|
|
440
|
+
LifecycleTransition: str
|
|
441
|
+
NotificationMetadata: NotRequired[str]
|
|
442
|
+
HeartbeatTimeout: NotRequired[int]
|
|
443
|
+
DefaultResult: NotRequired[str]
|
|
444
|
+
NotificationTargetARN: NotRequired[str]
|
|
445
|
+
RoleARN: NotRequired[str]
|
|
446
|
+
|
|
447
|
+
class TagTypeDef(TypedDict):
|
|
448
|
+
Key: str
|
|
449
|
+
ResourceId: NotRequired[str]
|
|
450
|
+
ResourceType: NotRequired[str]
|
|
451
|
+
Value: NotRequired[str]
|
|
452
|
+
PropagateAtLaunch: NotRequired[bool]
|
|
453
|
+
|
|
454
|
+
class InstanceMetadataOptionsTypeDef(TypedDict):
|
|
455
|
+
HttpTokens: NotRequired[InstanceMetadataHttpTokensStateType]
|
|
456
|
+
HttpPutResponseHopLimit: NotRequired[int]
|
|
457
|
+
HttpEndpoint: NotRequired[InstanceMetadataEndpointStateType]
|
|
458
|
+
|
|
459
|
+
class InstanceMonitoringTypeDef(TypedDict):
|
|
460
|
+
Enabled: NotRequired[bool]
|
|
461
|
+
|
|
462
|
+
class MetricDimensionTypeDef(TypedDict):
|
|
463
|
+
Name: str
|
|
464
|
+
Value: str
|
|
465
|
+
|
|
466
|
+
class DeleteAutoScalingGroupTypeTypeDef(TypedDict):
|
|
467
|
+
AutoScalingGroupName: str
|
|
468
|
+
ForceDelete: NotRequired[bool]
|
|
469
|
+
|
|
470
|
+
class DeleteLifecycleHookTypeTypeDef(TypedDict):
|
|
471
|
+
LifecycleHookName: str
|
|
472
|
+
AutoScalingGroupName: str
|
|
473
|
+
|
|
474
|
+
class DeleteNotificationConfigurationTypeTypeDef(TypedDict):
|
|
475
|
+
AutoScalingGroupName: str
|
|
476
|
+
TopicARN: str
|
|
477
|
+
|
|
478
|
+
class DeletePolicyTypeTypeDef(TypedDict):
|
|
479
|
+
PolicyName: str
|
|
480
|
+
AutoScalingGroupName: NotRequired[str]
|
|
481
|
+
|
|
482
|
+
class DeleteScheduledActionTypeTypeDef(TypedDict):
|
|
483
|
+
AutoScalingGroupName: str
|
|
484
|
+
ScheduledActionName: str
|
|
485
|
+
|
|
486
|
+
class DeleteWarmPoolTypeTypeDef(TypedDict):
|
|
487
|
+
AutoScalingGroupName: str
|
|
488
|
+
ForceDelete: NotRequired[bool]
|
|
489
|
+
|
|
490
|
+
class DescribeAutoScalingInstancesTypeTypeDef(TypedDict):
|
|
491
|
+
InstanceIds: NotRequired[Sequence[str]]
|
|
492
|
+
MaxRecords: NotRequired[int]
|
|
493
|
+
NextToken: NotRequired[str]
|
|
494
|
+
|
|
495
|
+
class DescribeInstanceRefreshesTypeTypeDef(TypedDict):
|
|
496
|
+
AutoScalingGroupName: str
|
|
497
|
+
InstanceRefreshIds: NotRequired[Sequence[str]]
|
|
498
|
+
NextToken: NotRequired[str]
|
|
499
|
+
MaxRecords: NotRequired[int]
|
|
500
|
+
|
|
501
|
+
class LifecycleHookTypeDef(TypedDict):
|
|
502
|
+
LifecycleHookName: NotRequired[str]
|
|
503
|
+
AutoScalingGroupName: NotRequired[str]
|
|
504
|
+
LifecycleTransition: NotRequired[str]
|
|
505
|
+
NotificationTargetARN: NotRequired[str]
|
|
506
|
+
RoleARN: NotRequired[str]
|
|
507
|
+
NotificationMetadata: NotRequired[str]
|
|
508
|
+
HeartbeatTimeout: NotRequired[int]
|
|
509
|
+
GlobalTimeout: NotRequired[int]
|
|
510
|
+
DefaultResult: NotRequired[str]
|
|
511
|
+
|
|
512
|
+
class DescribeLifecycleHooksTypeTypeDef(TypedDict):
|
|
513
|
+
AutoScalingGroupName: str
|
|
514
|
+
LifecycleHookNames: NotRequired[Sequence[str]]
|
|
515
|
+
|
|
516
|
+
class DescribeLoadBalancerTargetGroupsRequestTypeDef(TypedDict):
|
|
517
|
+
AutoScalingGroupName: str
|
|
518
|
+
NextToken: NotRequired[str]
|
|
519
|
+
MaxRecords: NotRequired[int]
|
|
520
|
+
|
|
521
|
+
class LoadBalancerTargetGroupStateTypeDef(TypedDict):
|
|
522
|
+
LoadBalancerTargetGroupARN: NotRequired[str]
|
|
523
|
+
State: NotRequired[str]
|
|
524
|
+
|
|
525
|
+
class DescribeLoadBalancersRequestTypeDef(TypedDict):
|
|
526
|
+
AutoScalingGroupName: str
|
|
527
|
+
NextToken: NotRequired[str]
|
|
528
|
+
MaxRecords: NotRequired[int]
|
|
529
|
+
|
|
530
|
+
class LoadBalancerStateTypeDef(TypedDict):
|
|
531
|
+
LoadBalancerName: NotRequired[str]
|
|
532
|
+
State: NotRequired[str]
|
|
533
|
+
|
|
534
|
+
class MetricCollectionTypeTypeDef(TypedDict):
|
|
535
|
+
Metric: NotRequired[str]
|
|
536
|
+
|
|
537
|
+
class MetricGranularityTypeTypeDef(TypedDict):
|
|
538
|
+
Granularity: NotRequired[str]
|
|
539
|
+
|
|
540
|
+
class NotificationConfigurationTypeDef(TypedDict):
|
|
541
|
+
AutoScalingGroupName: NotRequired[str]
|
|
542
|
+
TopicARN: NotRequired[str]
|
|
543
|
+
NotificationType: NotRequired[str]
|
|
544
|
+
|
|
545
|
+
class DescribeNotificationConfigurationsTypeTypeDef(TypedDict):
|
|
546
|
+
AutoScalingGroupNames: NotRequired[Sequence[str]]
|
|
547
|
+
NextToken: NotRequired[str]
|
|
548
|
+
MaxRecords: NotRequired[int]
|
|
549
|
+
|
|
550
|
+
class DescribePoliciesTypeTypeDef(TypedDict):
|
|
551
|
+
AutoScalingGroupName: NotRequired[str]
|
|
552
|
+
PolicyNames: NotRequired[Sequence[str]]
|
|
553
|
+
PolicyTypes: NotRequired[Sequence[str]]
|
|
554
|
+
NextToken: NotRequired[str]
|
|
555
|
+
MaxRecords: NotRequired[int]
|
|
556
|
+
|
|
557
|
+
class DescribeScalingActivitiesTypeTypeDef(TypedDict):
|
|
558
|
+
ActivityIds: NotRequired[Sequence[str]]
|
|
559
|
+
AutoScalingGroupName: NotRequired[str]
|
|
560
|
+
IncludeDeletedGroups: NotRequired[bool]
|
|
561
|
+
MaxRecords: NotRequired[int]
|
|
562
|
+
NextToken: NotRequired[str]
|
|
563
|
+
|
|
564
|
+
TimestampTypeDef = Union[datetime, str]
|
|
565
|
+
|
|
566
|
+
class DescribeTrafficSourcesRequestTypeDef(TypedDict):
|
|
567
|
+
AutoScalingGroupName: str
|
|
568
|
+
TrafficSourceType: NotRequired[str]
|
|
569
|
+
NextToken: NotRequired[str]
|
|
570
|
+
MaxRecords: NotRequired[int]
|
|
571
|
+
|
|
572
|
+
TrafficSourceStateTypeDef = TypedDict(
|
|
573
|
+
"TrafficSourceStateTypeDef",
|
|
574
|
+
{
|
|
575
|
+
"TrafficSource": NotRequired[str],
|
|
576
|
+
"State": NotRequired[str],
|
|
577
|
+
"Identifier": NotRequired[str],
|
|
578
|
+
"Type": NotRequired[str],
|
|
579
|
+
},
|
|
580
|
+
)
|
|
581
|
+
|
|
582
|
+
class DescribeWarmPoolTypeTypeDef(TypedDict):
|
|
583
|
+
AutoScalingGroupName: str
|
|
584
|
+
MaxRecords: NotRequired[int]
|
|
585
|
+
NextToken: NotRequired[str]
|
|
586
|
+
|
|
587
|
+
class DetachInstancesQueryTypeDef(TypedDict):
|
|
588
|
+
AutoScalingGroupName: str
|
|
589
|
+
ShouldDecrementDesiredCapacity: bool
|
|
590
|
+
InstanceIds: NotRequired[Sequence[str]]
|
|
591
|
+
|
|
592
|
+
class DetachLoadBalancerTargetGroupsTypeTypeDef(TypedDict):
|
|
593
|
+
AutoScalingGroupName: str
|
|
594
|
+
TargetGroupARNs: Sequence[str]
|
|
595
|
+
|
|
596
|
+
class DetachLoadBalancersTypeTypeDef(TypedDict):
|
|
597
|
+
AutoScalingGroupName: str
|
|
598
|
+
LoadBalancerNames: Sequence[str]
|
|
599
|
+
|
|
600
|
+
class DisableMetricsCollectionQueryTypeDef(TypedDict):
|
|
601
|
+
AutoScalingGroupName: str
|
|
602
|
+
Metrics: NotRequired[Sequence[str]]
|
|
603
|
+
|
|
604
|
+
class EnableMetricsCollectionQueryTypeDef(TypedDict):
|
|
605
|
+
AutoScalingGroupName: str
|
|
606
|
+
Granularity: str
|
|
607
|
+
Metrics: NotRequired[Sequence[str]]
|
|
608
|
+
|
|
609
|
+
class EnterStandbyQueryTypeDef(TypedDict):
|
|
610
|
+
AutoScalingGroupName: str
|
|
611
|
+
ShouldDecrementDesiredCapacity: bool
|
|
612
|
+
InstanceIds: NotRequired[Sequence[str]]
|
|
613
|
+
|
|
614
|
+
class ExecutePolicyTypeTypeDef(TypedDict):
|
|
615
|
+
PolicyName: str
|
|
616
|
+
AutoScalingGroupName: NotRequired[str]
|
|
617
|
+
HonorCooldown: NotRequired[bool]
|
|
618
|
+
MetricValue: NotRequired[float]
|
|
619
|
+
BreachThreshold: NotRequired[float]
|
|
620
|
+
|
|
621
|
+
class ExitStandbyQueryTypeDef(TypedDict):
|
|
622
|
+
AutoScalingGroupName: str
|
|
623
|
+
InstanceIds: NotRequired[Sequence[str]]
|
|
624
|
+
|
|
625
|
+
class InstanceCollectionTypeDef(TypedDict):
|
|
626
|
+
InstanceType: NotRequired[str]
|
|
627
|
+
MarketType: NotRequired[str]
|
|
628
|
+
SubnetId: NotRequired[str]
|
|
629
|
+
AvailabilityZone: NotRequired[str]
|
|
630
|
+
AvailabilityZoneId: NotRequired[str]
|
|
631
|
+
InstanceIds: NotRequired[list[str]]
|
|
632
|
+
|
|
633
|
+
class RetentionTriggersTypeDef(TypedDict):
|
|
634
|
+
TerminateHookAbandon: NotRequired[RetentionActionType]
|
|
635
|
+
|
|
636
|
+
class InstanceRefreshLivePoolProgressTypeDef(TypedDict):
|
|
637
|
+
PercentageComplete: NotRequired[int]
|
|
638
|
+
InstancesToUpdate: NotRequired[int]
|
|
639
|
+
|
|
640
|
+
class InstanceRefreshWarmPoolProgressTypeDef(TypedDict):
|
|
641
|
+
PercentageComplete: NotRequired[int]
|
|
642
|
+
InstancesToUpdate: NotRequired[int]
|
|
643
|
+
|
|
644
|
+
class MemoryGiBPerVCpuRequestTypeDef(TypedDict):
|
|
645
|
+
Min: NotRequired[float]
|
|
646
|
+
Max: NotRequired[float]
|
|
647
|
+
|
|
648
|
+
class MemoryMiBRequestTypeDef(TypedDict):
|
|
649
|
+
Min: int
|
|
650
|
+
Max: NotRequired[int]
|
|
651
|
+
|
|
652
|
+
class NetworkBandwidthGbpsRequestTypeDef(TypedDict):
|
|
653
|
+
Min: NotRequired[float]
|
|
654
|
+
Max: NotRequired[float]
|
|
655
|
+
|
|
656
|
+
class NetworkInterfaceCountRequestTypeDef(TypedDict):
|
|
657
|
+
Min: NotRequired[int]
|
|
658
|
+
Max: NotRequired[int]
|
|
659
|
+
|
|
660
|
+
class TotalLocalStorageGBRequestTypeDef(TypedDict):
|
|
661
|
+
Min: NotRequired[float]
|
|
662
|
+
Max: NotRequired[float]
|
|
663
|
+
|
|
664
|
+
class VCpuCountRequestTypeDef(TypedDict):
|
|
665
|
+
Min: int
|
|
666
|
+
Max: NotRequired[int]
|
|
667
|
+
|
|
668
|
+
class InstanceReusePolicyTypeDef(TypedDict):
|
|
669
|
+
ReuseOnScaleIn: NotRequired[bool]
|
|
670
|
+
|
|
671
|
+
class InstancesDistributionTypeDef(TypedDict):
|
|
672
|
+
OnDemandAllocationStrategy: NotRequired[str]
|
|
673
|
+
OnDemandBaseCapacity: NotRequired[int]
|
|
674
|
+
OnDemandPercentageAboveBaseCapacity: NotRequired[int]
|
|
675
|
+
SpotAllocationStrategy: NotRequired[str]
|
|
676
|
+
SpotInstancePools: NotRequired[int]
|
|
677
|
+
SpotMaxPrice: NotRequired[str]
|
|
678
|
+
|
|
679
|
+
class LaunchConfigurationNameTypeTypeDef(TypedDict):
|
|
680
|
+
LaunchConfigurationName: str
|
|
681
|
+
|
|
682
|
+
class LaunchConfigurationNamesTypeTypeDef(TypedDict):
|
|
683
|
+
LaunchConfigurationNames: NotRequired[Sequence[str]]
|
|
684
|
+
NextToken: NotRequired[str]
|
|
685
|
+
MaxRecords: NotRequired[int]
|
|
686
|
+
|
|
687
|
+
class LaunchInstancesErrorTypeDef(TypedDict):
|
|
688
|
+
InstanceType: NotRequired[str]
|
|
689
|
+
MarketType: NotRequired[str]
|
|
690
|
+
SubnetId: NotRequired[str]
|
|
691
|
+
AvailabilityZone: NotRequired[str]
|
|
692
|
+
AvailabilityZoneId: NotRequired[str]
|
|
693
|
+
ErrorCode: NotRequired[str]
|
|
694
|
+
ErrorMessage: NotRequired[str]
|
|
695
|
+
|
|
696
|
+
class LaunchInstancesRequestTypeDef(TypedDict):
|
|
697
|
+
AutoScalingGroupName: str
|
|
698
|
+
RequestedCapacity: int
|
|
699
|
+
ClientToken: str
|
|
700
|
+
AvailabilityZones: NotRequired[Sequence[str]]
|
|
701
|
+
AvailabilityZoneIds: NotRequired[Sequence[str]]
|
|
702
|
+
SubnetIds: NotRequired[Sequence[str]]
|
|
703
|
+
RetryStrategy: NotRequired[RetryStrategyType]
|
|
704
|
+
|
|
705
|
+
class PredefinedMetricSpecificationTypeDef(TypedDict):
|
|
706
|
+
PredefinedMetricType: MetricTypeType
|
|
707
|
+
ResourceLabel: NotRequired[str]
|
|
708
|
+
|
|
709
|
+
class PredictiveScalingPredefinedLoadMetricTypeDef(TypedDict):
|
|
710
|
+
PredefinedMetricType: PredefinedLoadMetricTypeType
|
|
711
|
+
ResourceLabel: NotRequired[str]
|
|
712
|
+
|
|
713
|
+
class PredictiveScalingPredefinedMetricPairTypeDef(TypedDict):
|
|
714
|
+
PredefinedMetricType: PredefinedMetricPairTypeType
|
|
715
|
+
ResourceLabel: NotRequired[str]
|
|
716
|
+
|
|
717
|
+
class PredictiveScalingPredefinedScalingMetricTypeDef(TypedDict):
|
|
718
|
+
PredefinedMetricType: PredefinedScalingMetricTypeType
|
|
719
|
+
ResourceLabel: NotRequired[str]
|
|
720
|
+
|
|
721
|
+
class ProcessTypeTypeDef(TypedDict):
|
|
722
|
+
ProcessName: str
|
|
723
|
+
|
|
724
|
+
class PutLifecycleHookTypeTypeDef(TypedDict):
|
|
725
|
+
LifecycleHookName: str
|
|
726
|
+
AutoScalingGroupName: str
|
|
727
|
+
LifecycleTransition: NotRequired[str]
|
|
728
|
+
RoleARN: NotRequired[str]
|
|
729
|
+
NotificationTargetARN: NotRequired[str]
|
|
730
|
+
NotificationMetadata: NotRequired[str]
|
|
731
|
+
HeartbeatTimeout: NotRequired[int]
|
|
732
|
+
DefaultResult: NotRequired[str]
|
|
733
|
+
|
|
734
|
+
class PutNotificationConfigurationTypeTypeDef(TypedDict):
|
|
735
|
+
AutoScalingGroupName: str
|
|
736
|
+
TopicARN: str
|
|
737
|
+
NotificationTypes: Sequence[str]
|
|
738
|
+
|
|
739
|
+
class StepAdjustmentTypeDef(TypedDict):
|
|
740
|
+
ScalingAdjustment: int
|
|
741
|
+
MetricIntervalLowerBound: NotRequired[float]
|
|
742
|
+
MetricIntervalUpperBound: NotRequired[float]
|
|
743
|
+
|
|
744
|
+
class RecordLifecycleActionHeartbeatTypeTypeDef(TypedDict):
|
|
745
|
+
LifecycleHookName: str
|
|
746
|
+
AutoScalingGroupName: str
|
|
747
|
+
LifecycleActionToken: NotRequired[str]
|
|
748
|
+
InstanceId: NotRequired[str]
|
|
749
|
+
|
|
750
|
+
class RollbackInstanceRefreshTypeTypeDef(TypedDict):
|
|
751
|
+
AutoScalingGroupName: str
|
|
752
|
+
|
|
753
|
+
class ScalingProcessQueryRequestTypeDef(TypedDict):
|
|
754
|
+
AutoScalingGroupName: str
|
|
755
|
+
ScalingProcesses: NotRequired[Sequence[str]]
|
|
756
|
+
|
|
757
|
+
class ScalingProcessQueryTypeDef(TypedDict):
|
|
758
|
+
AutoScalingGroupName: str
|
|
759
|
+
ScalingProcesses: NotRequired[Sequence[str]]
|
|
760
|
+
|
|
761
|
+
class ScheduledUpdateGroupActionTypeDef(TypedDict):
|
|
762
|
+
AutoScalingGroupName: NotRequired[str]
|
|
763
|
+
ScheduledActionName: NotRequired[str]
|
|
764
|
+
ScheduledActionARN: NotRequired[str]
|
|
765
|
+
Time: NotRequired[datetime]
|
|
766
|
+
StartTime: NotRequired[datetime]
|
|
767
|
+
EndTime: NotRequired[datetime]
|
|
768
|
+
Recurrence: NotRequired[str]
|
|
769
|
+
MinSize: NotRequired[int]
|
|
770
|
+
MaxSize: NotRequired[int]
|
|
771
|
+
DesiredCapacity: NotRequired[int]
|
|
772
|
+
TimeZone: NotRequired[str]
|
|
773
|
+
|
|
774
|
+
class SetDesiredCapacityTypeTypeDef(TypedDict):
|
|
775
|
+
AutoScalingGroupName: str
|
|
776
|
+
DesiredCapacity: int
|
|
777
|
+
HonorCooldown: NotRequired[bool]
|
|
778
|
+
|
|
779
|
+
class SetInstanceHealthQueryTypeDef(TypedDict):
|
|
780
|
+
InstanceId: str
|
|
781
|
+
HealthStatus: str
|
|
782
|
+
ShouldRespectGracePeriod: NotRequired[bool]
|
|
783
|
+
|
|
784
|
+
class SetInstanceProtectionQueryTypeDef(TypedDict):
|
|
785
|
+
InstanceIds: Sequence[str]
|
|
786
|
+
AutoScalingGroupName: str
|
|
787
|
+
ProtectedFromScaleIn: bool
|
|
788
|
+
|
|
789
|
+
class TerminateInstanceInAutoScalingGroupTypeTypeDef(TypedDict):
|
|
790
|
+
InstanceId: str
|
|
791
|
+
ShouldDecrementDesiredCapacity: bool
|
|
792
|
+
|
|
793
|
+
class ActivitiesTypeTypeDef(TypedDict):
|
|
794
|
+
Activities: list[ActivityTypeDef]
|
|
795
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
796
|
+
NextToken: NotRequired[str]
|
|
797
|
+
|
|
798
|
+
class ActivityTypeTypeDef(TypedDict):
|
|
799
|
+
Activity: ActivityTypeDef
|
|
800
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
801
|
+
|
|
802
|
+
class CancelInstanceRefreshAnswerTypeDef(TypedDict):
|
|
803
|
+
InstanceRefreshId: str
|
|
804
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
805
|
+
|
|
806
|
+
class DescribeAccountLimitsAnswerTypeDef(TypedDict):
|
|
807
|
+
MaxNumberOfAutoScalingGroups: int
|
|
808
|
+
MaxNumberOfLaunchConfigurations: int
|
|
809
|
+
NumberOfAutoScalingGroups: int
|
|
810
|
+
NumberOfLaunchConfigurations: int
|
|
811
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
812
|
+
|
|
813
|
+
class DescribeAutoScalingNotificationTypesAnswerTypeDef(TypedDict):
|
|
814
|
+
AutoScalingNotificationTypes: list[str]
|
|
815
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
816
|
+
|
|
817
|
+
class DescribeLifecycleHookTypesAnswerTypeDef(TypedDict):
|
|
818
|
+
LifecycleHookTypes: list[str]
|
|
819
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
820
|
+
|
|
821
|
+
class DescribeTerminationPolicyTypesAnswerTypeDef(TypedDict):
|
|
822
|
+
TerminationPolicyTypes: list[str]
|
|
823
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
824
|
+
|
|
825
|
+
class DetachInstancesAnswerTypeDef(TypedDict):
|
|
826
|
+
Activities: list[ActivityTypeDef]
|
|
827
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
828
|
+
|
|
829
|
+
class EmptyResponseMetadataTypeDef(TypedDict):
|
|
830
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
831
|
+
|
|
832
|
+
class EnterStandbyAnswerTypeDef(TypedDict):
|
|
833
|
+
Activities: list[ActivityTypeDef]
|
|
834
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
835
|
+
|
|
836
|
+
class ExitStandbyAnswerTypeDef(TypedDict):
|
|
837
|
+
Activities: list[ActivityTypeDef]
|
|
838
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
839
|
+
|
|
840
|
+
class RollbackInstanceRefreshAnswerTypeDef(TypedDict):
|
|
841
|
+
InstanceRefreshId: str
|
|
842
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
843
|
+
|
|
844
|
+
class StartInstanceRefreshAnswerTypeDef(TypedDict):
|
|
845
|
+
InstanceRefreshId: str
|
|
846
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
847
|
+
|
|
848
|
+
class DescribeAdjustmentTypesAnswerTypeDef(TypedDict):
|
|
849
|
+
AdjustmentTypes: list[AdjustmentTypeTypeDef]
|
|
850
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
851
|
+
|
|
852
|
+
class RefreshPreferencesOutputTypeDef(TypedDict):
|
|
853
|
+
MinHealthyPercentage: NotRequired[int]
|
|
854
|
+
InstanceWarmup: NotRequired[int]
|
|
855
|
+
CheckpointPercentages: NotRequired[list[int]]
|
|
856
|
+
CheckpointDelay: NotRequired[int]
|
|
857
|
+
SkipMatching: NotRequired[bool]
|
|
858
|
+
AutoRollback: NotRequired[bool]
|
|
859
|
+
ScaleInProtectedInstances: NotRequired[ScaleInProtectedInstancesType]
|
|
860
|
+
StandbyInstances: NotRequired[StandbyInstancesType]
|
|
861
|
+
AlarmSpecification: NotRequired[AlarmSpecificationOutputTypeDef]
|
|
862
|
+
MaxHealthyPercentage: NotRequired[int]
|
|
863
|
+
BakeTime: NotRequired[int]
|
|
864
|
+
|
|
865
|
+
class RefreshPreferencesTypeDef(TypedDict):
|
|
866
|
+
MinHealthyPercentage: NotRequired[int]
|
|
867
|
+
InstanceWarmup: NotRequired[int]
|
|
868
|
+
CheckpointPercentages: NotRequired[Sequence[int]]
|
|
869
|
+
CheckpointDelay: NotRequired[int]
|
|
870
|
+
SkipMatching: NotRequired[bool]
|
|
871
|
+
AutoRollback: NotRequired[bool]
|
|
872
|
+
ScaleInProtectedInstances: NotRequired[ScaleInProtectedInstancesType]
|
|
873
|
+
StandbyInstances: NotRequired[StandbyInstancesType]
|
|
874
|
+
AlarmSpecification: NotRequired[AlarmSpecificationTypeDef]
|
|
875
|
+
MaxHealthyPercentage: NotRequired[int]
|
|
876
|
+
BakeTime: NotRequired[int]
|
|
877
|
+
|
|
878
|
+
class PolicyARNTypeTypeDef(TypedDict):
|
|
879
|
+
PolicyARN: str
|
|
880
|
+
Alarms: list[AlarmTypeDef]
|
|
881
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
882
|
+
|
|
883
|
+
class AttachTrafficSourcesTypeTypeDef(TypedDict):
|
|
884
|
+
AutoScalingGroupName: str
|
|
885
|
+
TrafficSources: Sequence[TrafficSourceIdentifierTypeDef]
|
|
886
|
+
SkipZonalShiftValidation: NotRequired[bool]
|
|
887
|
+
|
|
888
|
+
class DetachTrafficSourcesTypeTypeDef(TypedDict):
|
|
889
|
+
AutoScalingGroupName: str
|
|
890
|
+
TrafficSources: Sequence[TrafficSourceIdentifierTypeDef]
|
|
891
|
+
|
|
892
|
+
class AutoScalingGroupNamesTypeTypeDef(TypedDict):
|
|
893
|
+
AutoScalingGroupNames: NotRequired[Sequence[str]]
|
|
894
|
+
IncludeInstances: NotRequired[bool]
|
|
895
|
+
NextToken: NotRequired[str]
|
|
896
|
+
MaxRecords: NotRequired[int]
|
|
897
|
+
Filters: NotRequired[Sequence[FilterTypeDef]]
|
|
898
|
+
|
|
899
|
+
class DescribeTagsTypeTypeDef(TypedDict):
|
|
900
|
+
Filters: NotRequired[Sequence[FilterTypeDef]]
|
|
901
|
+
NextToken: NotRequired[str]
|
|
902
|
+
MaxRecords: NotRequired[int]
|
|
903
|
+
|
|
904
|
+
class AutoScalingGroupNamesTypePaginateTypeDef(TypedDict):
|
|
905
|
+
AutoScalingGroupNames: NotRequired[Sequence[str]]
|
|
906
|
+
IncludeInstances: NotRequired[bool]
|
|
907
|
+
Filters: NotRequired[Sequence[FilterTypeDef]]
|
|
908
|
+
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
909
|
+
|
|
910
|
+
class DescribeAutoScalingInstancesTypePaginateTypeDef(TypedDict):
|
|
911
|
+
InstanceIds: NotRequired[Sequence[str]]
|
|
912
|
+
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
913
|
+
|
|
914
|
+
class DescribeLoadBalancerTargetGroupsRequestPaginateTypeDef(TypedDict):
|
|
915
|
+
AutoScalingGroupName: str
|
|
916
|
+
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
917
|
+
|
|
918
|
+
class DescribeLoadBalancersRequestPaginateTypeDef(TypedDict):
|
|
919
|
+
AutoScalingGroupName: str
|
|
920
|
+
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
921
|
+
|
|
922
|
+
class DescribeNotificationConfigurationsTypePaginateTypeDef(TypedDict):
|
|
923
|
+
AutoScalingGroupNames: NotRequired[Sequence[str]]
|
|
924
|
+
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
925
|
+
|
|
926
|
+
class DescribePoliciesTypePaginateTypeDef(TypedDict):
|
|
927
|
+
AutoScalingGroupName: NotRequired[str]
|
|
928
|
+
PolicyNames: NotRequired[Sequence[str]]
|
|
929
|
+
PolicyTypes: NotRequired[Sequence[str]]
|
|
930
|
+
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
931
|
+
|
|
932
|
+
class DescribeScalingActivitiesTypePaginateTypeDef(TypedDict):
|
|
933
|
+
ActivityIds: NotRequired[Sequence[str]]
|
|
934
|
+
AutoScalingGroupName: NotRequired[str]
|
|
935
|
+
IncludeDeletedGroups: NotRequired[bool]
|
|
936
|
+
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
937
|
+
|
|
938
|
+
class DescribeTagsTypePaginateTypeDef(TypedDict):
|
|
939
|
+
Filters: NotRequired[Sequence[FilterTypeDef]]
|
|
940
|
+
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
941
|
+
|
|
942
|
+
class DescribeWarmPoolTypePaginateTypeDef(TypedDict):
|
|
943
|
+
AutoScalingGroupName: str
|
|
944
|
+
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
945
|
+
|
|
946
|
+
class LaunchConfigurationNamesTypePaginateTypeDef(TypedDict):
|
|
947
|
+
LaunchConfigurationNames: NotRequired[Sequence[str]]
|
|
948
|
+
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
949
|
+
|
|
950
|
+
class AutoScalingInstanceDetailsTypeDef(TypedDict):
|
|
951
|
+
InstanceId: str
|
|
952
|
+
AutoScalingGroupName: str
|
|
953
|
+
AvailabilityZone: str
|
|
954
|
+
LifecycleState: str
|
|
955
|
+
HealthStatus: str
|
|
956
|
+
ProtectedFromScaleIn: bool
|
|
957
|
+
InstanceType: NotRequired[str]
|
|
958
|
+
LaunchConfigurationName: NotRequired[str]
|
|
959
|
+
LaunchTemplate: NotRequired[LaunchTemplateSpecificationTypeDef]
|
|
960
|
+
ImageId: NotRequired[str]
|
|
961
|
+
WeightedCapacity: NotRequired[str]
|
|
962
|
+
|
|
963
|
+
class InstanceTypeDef(TypedDict):
|
|
964
|
+
InstanceId: str
|
|
965
|
+
AvailabilityZone: str
|
|
966
|
+
LifecycleState: LifecycleStateType
|
|
967
|
+
HealthStatus: str
|
|
968
|
+
ProtectedFromScaleIn: bool
|
|
969
|
+
InstanceType: NotRequired[str]
|
|
970
|
+
LaunchConfigurationName: NotRequired[str]
|
|
971
|
+
LaunchTemplate: NotRequired[LaunchTemplateSpecificationTypeDef]
|
|
972
|
+
ImageId: NotRequired[str]
|
|
973
|
+
WeightedCapacity: NotRequired[str]
|
|
974
|
+
|
|
975
|
+
class TagsTypeTypeDef(TypedDict):
|
|
976
|
+
Tags: list[TagDescriptionTypeDef]
|
|
977
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
978
|
+
NextToken: NotRequired[str]
|
|
979
|
+
|
|
980
|
+
class BatchDeleteScheduledActionAnswerTypeDef(TypedDict):
|
|
981
|
+
FailedScheduledActions: list[FailedScheduledUpdateGroupActionRequestTypeDef]
|
|
982
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
983
|
+
|
|
984
|
+
class BatchPutScheduledUpdateGroupActionAnswerTypeDef(TypedDict):
|
|
985
|
+
FailedScheduledUpdateGroupActions: list[FailedScheduledUpdateGroupActionRequestTypeDef]
|
|
986
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
987
|
+
|
|
988
|
+
class BlockDeviceMappingTypeDef(TypedDict):
|
|
989
|
+
DeviceName: str
|
|
990
|
+
VirtualName: NotRequired[str]
|
|
991
|
+
Ebs: NotRequired[EbsTypeDef]
|
|
992
|
+
NoDevice: NotRequired[bool]
|
|
993
|
+
|
|
994
|
+
class CapacityReservationSpecificationOutputTypeDef(TypedDict):
|
|
995
|
+
CapacityReservationPreference: NotRequired[CapacityReservationPreferenceType]
|
|
996
|
+
CapacityReservationTarget: NotRequired[CapacityReservationTargetOutputTypeDef]
|
|
997
|
+
|
|
998
|
+
class CapacityReservationSpecificationTypeDef(TypedDict):
|
|
999
|
+
CapacityReservationPreference: NotRequired[CapacityReservationPreferenceType]
|
|
1000
|
+
CapacityReservationTarget: NotRequired[CapacityReservationTargetTypeDef]
|
|
1001
|
+
|
|
1002
|
+
class CpuPerformanceFactorRequestOutputTypeDef(TypedDict):
|
|
1003
|
+
References: NotRequired[list[PerformanceFactorReferenceRequestTypeDef]]
|
|
1004
|
+
|
|
1005
|
+
class CpuPerformanceFactorRequestTypeDef(TypedDict):
|
|
1006
|
+
References: NotRequired[Sequence[PerformanceFactorReferenceRequestTypeDef]]
|
|
1007
|
+
|
|
1008
|
+
class CreateOrUpdateTagsTypeTypeDef(TypedDict):
|
|
1009
|
+
Tags: Sequence[TagTypeDef]
|
|
1010
|
+
|
|
1011
|
+
class DeleteTagsTypeTypeDef(TypedDict):
|
|
1012
|
+
Tags: Sequence[TagTypeDef]
|
|
1013
|
+
|
|
1014
|
+
class MetricOutputTypeDef(TypedDict):
|
|
1015
|
+
Namespace: str
|
|
1016
|
+
MetricName: str
|
|
1017
|
+
Dimensions: NotRequired[list[MetricDimensionTypeDef]]
|
|
1018
|
+
|
|
1019
|
+
class MetricTypeDef(TypedDict):
|
|
1020
|
+
Namespace: str
|
|
1021
|
+
MetricName: str
|
|
1022
|
+
Dimensions: NotRequired[Sequence[MetricDimensionTypeDef]]
|
|
1023
|
+
|
|
1024
|
+
class DescribeLifecycleHooksAnswerTypeDef(TypedDict):
|
|
1025
|
+
LifecycleHooks: list[LifecycleHookTypeDef]
|
|
1026
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1027
|
+
|
|
1028
|
+
class DescribeLoadBalancerTargetGroupsResponseTypeDef(TypedDict):
|
|
1029
|
+
LoadBalancerTargetGroups: list[LoadBalancerTargetGroupStateTypeDef]
|
|
1030
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1031
|
+
NextToken: NotRequired[str]
|
|
1032
|
+
|
|
1033
|
+
class DescribeLoadBalancersResponseTypeDef(TypedDict):
|
|
1034
|
+
LoadBalancers: list[LoadBalancerStateTypeDef]
|
|
1035
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1036
|
+
NextToken: NotRequired[str]
|
|
1037
|
+
|
|
1038
|
+
class DescribeMetricCollectionTypesAnswerTypeDef(TypedDict):
|
|
1039
|
+
Metrics: list[MetricCollectionTypeTypeDef]
|
|
1040
|
+
Granularities: list[MetricGranularityTypeTypeDef]
|
|
1041
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1042
|
+
|
|
1043
|
+
class DescribeNotificationConfigurationsAnswerTypeDef(TypedDict):
|
|
1044
|
+
NotificationConfigurations: list[NotificationConfigurationTypeDef]
|
|
1045
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1046
|
+
NextToken: NotRequired[str]
|
|
1047
|
+
|
|
1048
|
+
class DescribeScheduledActionsTypePaginateTypeDef(TypedDict):
|
|
1049
|
+
AutoScalingGroupName: NotRequired[str]
|
|
1050
|
+
ScheduledActionNames: NotRequired[Sequence[str]]
|
|
1051
|
+
StartTime: NotRequired[TimestampTypeDef]
|
|
1052
|
+
EndTime: NotRequired[TimestampTypeDef]
|
|
1053
|
+
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
1054
|
+
|
|
1055
|
+
class DescribeScheduledActionsTypeTypeDef(TypedDict):
|
|
1056
|
+
AutoScalingGroupName: NotRequired[str]
|
|
1057
|
+
ScheduledActionNames: NotRequired[Sequence[str]]
|
|
1058
|
+
StartTime: NotRequired[TimestampTypeDef]
|
|
1059
|
+
EndTime: NotRequired[TimestampTypeDef]
|
|
1060
|
+
NextToken: NotRequired[str]
|
|
1061
|
+
MaxRecords: NotRequired[int]
|
|
1062
|
+
|
|
1063
|
+
class GetPredictiveScalingForecastTypeTypeDef(TypedDict):
|
|
1064
|
+
AutoScalingGroupName: str
|
|
1065
|
+
PolicyName: str
|
|
1066
|
+
StartTime: TimestampTypeDef
|
|
1067
|
+
EndTime: TimestampTypeDef
|
|
1068
|
+
|
|
1069
|
+
class PutScheduledUpdateGroupActionTypeTypeDef(TypedDict):
|
|
1070
|
+
AutoScalingGroupName: str
|
|
1071
|
+
ScheduledActionName: str
|
|
1072
|
+
Time: NotRequired[TimestampTypeDef]
|
|
1073
|
+
StartTime: NotRequired[TimestampTypeDef]
|
|
1074
|
+
EndTime: NotRequired[TimestampTypeDef]
|
|
1075
|
+
Recurrence: NotRequired[str]
|
|
1076
|
+
MinSize: NotRequired[int]
|
|
1077
|
+
MaxSize: NotRequired[int]
|
|
1078
|
+
DesiredCapacity: NotRequired[int]
|
|
1079
|
+
TimeZone: NotRequired[str]
|
|
1080
|
+
|
|
1081
|
+
class ScheduledUpdateGroupActionRequestTypeDef(TypedDict):
|
|
1082
|
+
ScheduledActionName: str
|
|
1083
|
+
StartTime: NotRequired[TimestampTypeDef]
|
|
1084
|
+
EndTime: NotRequired[TimestampTypeDef]
|
|
1085
|
+
Recurrence: NotRequired[str]
|
|
1086
|
+
MinSize: NotRequired[int]
|
|
1087
|
+
MaxSize: NotRequired[int]
|
|
1088
|
+
DesiredCapacity: NotRequired[int]
|
|
1089
|
+
TimeZone: NotRequired[str]
|
|
1090
|
+
|
|
1091
|
+
class DescribeTrafficSourcesResponseTypeDef(TypedDict):
|
|
1092
|
+
TrafficSources: list[TrafficSourceStateTypeDef]
|
|
1093
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1094
|
+
NextToken: NotRequired[str]
|
|
1095
|
+
|
|
1096
|
+
class InstanceLifecyclePolicyTypeDef(TypedDict):
|
|
1097
|
+
RetentionTriggers: NotRequired[RetentionTriggersTypeDef]
|
|
1098
|
+
|
|
1099
|
+
class InstanceRefreshProgressDetailsTypeDef(TypedDict):
|
|
1100
|
+
LivePoolProgress: NotRequired[InstanceRefreshLivePoolProgressTypeDef]
|
|
1101
|
+
WarmPoolProgress: NotRequired[InstanceRefreshWarmPoolProgressTypeDef]
|
|
1102
|
+
|
|
1103
|
+
class PutWarmPoolTypeTypeDef(TypedDict):
|
|
1104
|
+
AutoScalingGroupName: str
|
|
1105
|
+
MaxGroupPreparedCapacity: NotRequired[int]
|
|
1106
|
+
MinSize: NotRequired[int]
|
|
1107
|
+
PoolState: NotRequired[WarmPoolStateType]
|
|
1108
|
+
InstanceReusePolicy: NotRequired[InstanceReusePolicyTypeDef]
|
|
1109
|
+
|
|
1110
|
+
class WarmPoolConfigurationTypeDef(TypedDict):
|
|
1111
|
+
MaxGroupPreparedCapacity: NotRequired[int]
|
|
1112
|
+
MinSize: NotRequired[int]
|
|
1113
|
+
PoolState: NotRequired[WarmPoolStateType]
|
|
1114
|
+
Status: NotRequired[Literal["PendingDelete"]]
|
|
1115
|
+
InstanceReusePolicy: NotRequired[InstanceReusePolicyTypeDef]
|
|
1116
|
+
|
|
1117
|
+
class LaunchInstancesResultTypeDef(TypedDict):
|
|
1118
|
+
AutoScalingGroupName: str
|
|
1119
|
+
ClientToken: str
|
|
1120
|
+
Instances: list[InstanceCollectionTypeDef]
|
|
1121
|
+
Errors: list[LaunchInstancesErrorTypeDef]
|
|
1122
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1123
|
+
|
|
1124
|
+
class ProcessesTypeTypeDef(TypedDict):
|
|
1125
|
+
Processes: list[ProcessTypeTypeDef]
|
|
1126
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1127
|
+
|
|
1128
|
+
class ScheduledActionsTypeTypeDef(TypedDict):
|
|
1129
|
+
ScheduledUpdateGroupActions: list[ScheduledUpdateGroupActionTypeDef]
|
|
1130
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1131
|
+
NextToken: NotRequired[str]
|
|
1132
|
+
|
|
1133
|
+
RefreshPreferencesUnionTypeDef = Union[RefreshPreferencesTypeDef, RefreshPreferencesOutputTypeDef]
|
|
1134
|
+
|
|
1135
|
+
class AutoScalingInstancesTypeTypeDef(TypedDict):
|
|
1136
|
+
AutoScalingInstances: list[AutoScalingInstanceDetailsTypeDef]
|
|
1137
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1138
|
+
NextToken: NotRequired[str]
|
|
1139
|
+
|
|
1140
|
+
class CreateLaunchConfigurationTypeTypeDef(TypedDict):
|
|
1141
|
+
LaunchConfigurationName: str
|
|
1142
|
+
ImageId: NotRequired[str]
|
|
1143
|
+
KeyName: NotRequired[str]
|
|
1144
|
+
SecurityGroups: NotRequired[Sequence[str]]
|
|
1145
|
+
ClassicLinkVPCId: NotRequired[str]
|
|
1146
|
+
ClassicLinkVPCSecurityGroups: NotRequired[Sequence[str]]
|
|
1147
|
+
UserData: NotRequired[str]
|
|
1148
|
+
InstanceId: NotRequired[str]
|
|
1149
|
+
InstanceType: NotRequired[str]
|
|
1150
|
+
KernelId: NotRequired[str]
|
|
1151
|
+
RamdiskId: NotRequired[str]
|
|
1152
|
+
BlockDeviceMappings: NotRequired[Sequence[BlockDeviceMappingTypeDef]]
|
|
1153
|
+
InstanceMonitoring: NotRequired[InstanceMonitoringTypeDef]
|
|
1154
|
+
SpotPrice: NotRequired[str]
|
|
1155
|
+
IamInstanceProfile: NotRequired[str]
|
|
1156
|
+
EbsOptimized: NotRequired[bool]
|
|
1157
|
+
AssociatePublicIpAddress: NotRequired[bool]
|
|
1158
|
+
PlacementTenancy: NotRequired[str]
|
|
1159
|
+
MetadataOptions: NotRequired[InstanceMetadataOptionsTypeDef]
|
|
1160
|
+
|
|
1161
|
+
class LaunchConfigurationTypeDef(TypedDict):
|
|
1162
|
+
LaunchConfigurationName: str
|
|
1163
|
+
ImageId: str
|
|
1164
|
+
InstanceType: str
|
|
1165
|
+
CreatedTime: datetime
|
|
1166
|
+
LaunchConfigurationARN: NotRequired[str]
|
|
1167
|
+
KeyName: NotRequired[str]
|
|
1168
|
+
SecurityGroups: NotRequired[list[str]]
|
|
1169
|
+
ClassicLinkVPCId: NotRequired[str]
|
|
1170
|
+
ClassicLinkVPCSecurityGroups: NotRequired[list[str]]
|
|
1171
|
+
UserData: NotRequired[str]
|
|
1172
|
+
KernelId: NotRequired[str]
|
|
1173
|
+
RamdiskId: NotRequired[str]
|
|
1174
|
+
BlockDeviceMappings: NotRequired[list[BlockDeviceMappingTypeDef]]
|
|
1175
|
+
InstanceMonitoring: NotRequired[InstanceMonitoringTypeDef]
|
|
1176
|
+
SpotPrice: NotRequired[str]
|
|
1177
|
+
IamInstanceProfile: NotRequired[str]
|
|
1178
|
+
EbsOptimized: NotRequired[bool]
|
|
1179
|
+
AssociatePublicIpAddress: NotRequired[bool]
|
|
1180
|
+
PlacementTenancy: NotRequired[str]
|
|
1181
|
+
MetadataOptions: NotRequired[InstanceMetadataOptionsTypeDef]
|
|
1182
|
+
|
|
1183
|
+
CapacityReservationSpecificationUnionTypeDef = Union[
|
|
1184
|
+
CapacityReservationSpecificationTypeDef, CapacityReservationSpecificationOutputTypeDef
|
|
1185
|
+
]
|
|
1186
|
+
|
|
1187
|
+
class BaselinePerformanceFactorsRequestOutputTypeDef(TypedDict):
|
|
1188
|
+
Cpu: NotRequired[CpuPerformanceFactorRequestOutputTypeDef]
|
|
1189
|
+
|
|
1190
|
+
class BaselinePerformanceFactorsRequestTypeDef(TypedDict):
|
|
1191
|
+
Cpu: NotRequired[CpuPerformanceFactorRequestTypeDef]
|
|
1192
|
+
|
|
1193
|
+
class MetricStatOutputTypeDef(TypedDict):
|
|
1194
|
+
Metric: MetricOutputTypeDef
|
|
1195
|
+
Stat: str
|
|
1196
|
+
Unit: NotRequired[str]
|
|
1197
|
+
|
|
1198
|
+
class TargetTrackingMetricStatOutputTypeDef(TypedDict):
|
|
1199
|
+
Metric: MetricOutputTypeDef
|
|
1200
|
+
Stat: str
|
|
1201
|
+
Unit: NotRequired[str]
|
|
1202
|
+
Period: NotRequired[int]
|
|
1203
|
+
|
|
1204
|
+
class MetricStatTypeDef(TypedDict):
|
|
1205
|
+
Metric: MetricTypeDef
|
|
1206
|
+
Stat: str
|
|
1207
|
+
Unit: NotRequired[str]
|
|
1208
|
+
|
|
1209
|
+
class TargetTrackingMetricStatTypeDef(TypedDict):
|
|
1210
|
+
Metric: MetricTypeDef
|
|
1211
|
+
Stat: str
|
|
1212
|
+
Unit: NotRequired[str]
|
|
1213
|
+
Period: NotRequired[int]
|
|
1214
|
+
|
|
1215
|
+
class BatchPutScheduledUpdateGroupActionTypeTypeDef(TypedDict):
|
|
1216
|
+
AutoScalingGroupName: str
|
|
1217
|
+
ScheduledUpdateGroupActions: Sequence[ScheduledUpdateGroupActionRequestTypeDef]
|
|
1218
|
+
|
|
1219
|
+
class RollbackDetailsTypeDef(TypedDict):
|
|
1220
|
+
RollbackReason: NotRequired[str]
|
|
1221
|
+
RollbackStartTime: NotRequired[datetime]
|
|
1222
|
+
PercentageCompleteOnRollback: NotRequired[int]
|
|
1223
|
+
InstancesToUpdateOnRollback: NotRequired[int]
|
|
1224
|
+
ProgressDetailsOnRollback: NotRequired[InstanceRefreshProgressDetailsTypeDef]
|
|
1225
|
+
|
|
1226
|
+
class DescribeWarmPoolAnswerTypeDef(TypedDict):
|
|
1227
|
+
WarmPoolConfiguration: WarmPoolConfigurationTypeDef
|
|
1228
|
+
Instances: list[InstanceTypeDef]
|
|
1229
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1230
|
+
NextToken: NotRequired[str]
|
|
1231
|
+
|
|
1232
|
+
class LaunchConfigurationsTypeTypeDef(TypedDict):
|
|
1233
|
+
LaunchConfigurations: list[LaunchConfigurationTypeDef]
|
|
1234
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1235
|
+
NextToken: NotRequired[str]
|
|
1236
|
+
|
|
1237
|
+
class InstanceRequirementsOutputTypeDef(TypedDict):
|
|
1238
|
+
VCpuCount: VCpuCountRequestTypeDef
|
|
1239
|
+
MemoryMiB: MemoryMiBRequestTypeDef
|
|
1240
|
+
CpuManufacturers: NotRequired[list[CpuManufacturerType]]
|
|
1241
|
+
MemoryGiBPerVCpu: NotRequired[MemoryGiBPerVCpuRequestTypeDef]
|
|
1242
|
+
ExcludedInstanceTypes: NotRequired[list[str]]
|
|
1243
|
+
InstanceGenerations: NotRequired[list[InstanceGenerationType]]
|
|
1244
|
+
SpotMaxPricePercentageOverLowestPrice: NotRequired[int]
|
|
1245
|
+
MaxSpotPriceAsPercentageOfOptimalOnDemandPrice: NotRequired[int]
|
|
1246
|
+
OnDemandMaxPricePercentageOverLowestPrice: NotRequired[int]
|
|
1247
|
+
BareMetal: NotRequired[BareMetalType]
|
|
1248
|
+
BurstablePerformance: NotRequired[BurstablePerformanceType]
|
|
1249
|
+
RequireHibernateSupport: NotRequired[bool]
|
|
1250
|
+
NetworkInterfaceCount: NotRequired[NetworkInterfaceCountRequestTypeDef]
|
|
1251
|
+
LocalStorage: NotRequired[LocalStorageType]
|
|
1252
|
+
LocalStorageTypes: NotRequired[list[LocalStorageTypeType]]
|
|
1253
|
+
TotalLocalStorageGB: NotRequired[TotalLocalStorageGBRequestTypeDef]
|
|
1254
|
+
BaselineEbsBandwidthMbps: NotRequired[BaselineEbsBandwidthMbpsRequestTypeDef]
|
|
1255
|
+
AcceleratorTypes: NotRequired[list[AcceleratorTypeType]]
|
|
1256
|
+
AcceleratorCount: NotRequired[AcceleratorCountRequestTypeDef]
|
|
1257
|
+
AcceleratorManufacturers: NotRequired[list[AcceleratorManufacturerType]]
|
|
1258
|
+
AcceleratorNames: NotRequired[list[AcceleratorNameType]]
|
|
1259
|
+
AcceleratorTotalMemoryMiB: NotRequired[AcceleratorTotalMemoryMiBRequestTypeDef]
|
|
1260
|
+
NetworkBandwidthGbps: NotRequired[NetworkBandwidthGbpsRequestTypeDef]
|
|
1261
|
+
AllowedInstanceTypes: NotRequired[list[str]]
|
|
1262
|
+
BaselinePerformanceFactors: NotRequired[BaselinePerformanceFactorsRequestOutputTypeDef]
|
|
1263
|
+
|
|
1264
|
+
class InstanceRequirementsTypeDef(TypedDict):
|
|
1265
|
+
VCpuCount: VCpuCountRequestTypeDef
|
|
1266
|
+
MemoryMiB: MemoryMiBRequestTypeDef
|
|
1267
|
+
CpuManufacturers: NotRequired[Sequence[CpuManufacturerType]]
|
|
1268
|
+
MemoryGiBPerVCpu: NotRequired[MemoryGiBPerVCpuRequestTypeDef]
|
|
1269
|
+
ExcludedInstanceTypes: NotRequired[Sequence[str]]
|
|
1270
|
+
InstanceGenerations: NotRequired[Sequence[InstanceGenerationType]]
|
|
1271
|
+
SpotMaxPricePercentageOverLowestPrice: NotRequired[int]
|
|
1272
|
+
MaxSpotPriceAsPercentageOfOptimalOnDemandPrice: NotRequired[int]
|
|
1273
|
+
OnDemandMaxPricePercentageOverLowestPrice: NotRequired[int]
|
|
1274
|
+
BareMetal: NotRequired[BareMetalType]
|
|
1275
|
+
BurstablePerformance: NotRequired[BurstablePerformanceType]
|
|
1276
|
+
RequireHibernateSupport: NotRequired[bool]
|
|
1277
|
+
NetworkInterfaceCount: NotRequired[NetworkInterfaceCountRequestTypeDef]
|
|
1278
|
+
LocalStorage: NotRequired[LocalStorageType]
|
|
1279
|
+
LocalStorageTypes: NotRequired[Sequence[LocalStorageTypeType]]
|
|
1280
|
+
TotalLocalStorageGB: NotRequired[TotalLocalStorageGBRequestTypeDef]
|
|
1281
|
+
BaselineEbsBandwidthMbps: NotRequired[BaselineEbsBandwidthMbpsRequestTypeDef]
|
|
1282
|
+
AcceleratorTypes: NotRequired[Sequence[AcceleratorTypeType]]
|
|
1283
|
+
AcceleratorCount: NotRequired[AcceleratorCountRequestTypeDef]
|
|
1284
|
+
AcceleratorManufacturers: NotRequired[Sequence[AcceleratorManufacturerType]]
|
|
1285
|
+
AcceleratorNames: NotRequired[Sequence[AcceleratorNameType]]
|
|
1286
|
+
AcceleratorTotalMemoryMiB: NotRequired[AcceleratorTotalMemoryMiBRequestTypeDef]
|
|
1287
|
+
NetworkBandwidthGbps: NotRequired[NetworkBandwidthGbpsRequestTypeDef]
|
|
1288
|
+
AllowedInstanceTypes: NotRequired[Sequence[str]]
|
|
1289
|
+
BaselinePerformanceFactors: NotRequired[BaselinePerformanceFactorsRequestTypeDef]
|
|
1290
|
+
|
|
1291
|
+
class MetricDataQueryOutputTypeDef(TypedDict):
|
|
1292
|
+
Id: str
|
|
1293
|
+
Expression: NotRequired[str]
|
|
1294
|
+
MetricStat: NotRequired[MetricStatOutputTypeDef]
|
|
1295
|
+
Label: NotRequired[str]
|
|
1296
|
+
ReturnData: NotRequired[bool]
|
|
1297
|
+
|
|
1298
|
+
class TargetTrackingMetricDataQueryOutputTypeDef(TypedDict):
|
|
1299
|
+
Id: str
|
|
1300
|
+
Expression: NotRequired[str]
|
|
1301
|
+
MetricStat: NotRequired[TargetTrackingMetricStatOutputTypeDef]
|
|
1302
|
+
Label: NotRequired[str]
|
|
1303
|
+
Period: NotRequired[int]
|
|
1304
|
+
ReturnData: NotRequired[bool]
|
|
1305
|
+
|
|
1306
|
+
class MetricDataQueryTypeDef(TypedDict):
|
|
1307
|
+
Id: str
|
|
1308
|
+
Expression: NotRequired[str]
|
|
1309
|
+
MetricStat: NotRequired[MetricStatTypeDef]
|
|
1310
|
+
Label: NotRequired[str]
|
|
1311
|
+
ReturnData: NotRequired[bool]
|
|
1312
|
+
|
|
1313
|
+
class TargetTrackingMetricDataQueryTypeDef(TypedDict):
|
|
1314
|
+
Id: str
|
|
1315
|
+
Expression: NotRequired[str]
|
|
1316
|
+
MetricStat: NotRequired[TargetTrackingMetricStatTypeDef]
|
|
1317
|
+
Label: NotRequired[str]
|
|
1318
|
+
Period: NotRequired[int]
|
|
1319
|
+
ReturnData: NotRequired[bool]
|
|
1320
|
+
|
|
1321
|
+
class LaunchTemplateOverridesOutputTypeDef(TypedDict):
|
|
1322
|
+
InstanceType: NotRequired[str]
|
|
1323
|
+
WeightedCapacity: NotRequired[str]
|
|
1324
|
+
LaunchTemplateSpecification: NotRequired[LaunchTemplateSpecificationTypeDef]
|
|
1325
|
+
InstanceRequirements: NotRequired[InstanceRequirementsOutputTypeDef]
|
|
1326
|
+
ImageId: NotRequired[str]
|
|
1327
|
+
|
|
1328
|
+
class LaunchTemplateOverridesTypeDef(TypedDict):
|
|
1329
|
+
InstanceType: NotRequired[str]
|
|
1330
|
+
WeightedCapacity: NotRequired[str]
|
|
1331
|
+
LaunchTemplateSpecification: NotRequired[LaunchTemplateSpecificationTypeDef]
|
|
1332
|
+
InstanceRequirements: NotRequired[InstanceRequirementsTypeDef]
|
|
1333
|
+
ImageId: NotRequired[str]
|
|
1334
|
+
|
|
1335
|
+
class PredictiveScalingCustomizedCapacityMetricOutputTypeDef(TypedDict):
|
|
1336
|
+
MetricDataQueries: list[MetricDataQueryOutputTypeDef]
|
|
1337
|
+
|
|
1338
|
+
class PredictiveScalingCustomizedLoadMetricOutputTypeDef(TypedDict):
|
|
1339
|
+
MetricDataQueries: list[MetricDataQueryOutputTypeDef]
|
|
1340
|
+
|
|
1341
|
+
class PredictiveScalingCustomizedScalingMetricOutputTypeDef(TypedDict):
|
|
1342
|
+
MetricDataQueries: list[MetricDataQueryOutputTypeDef]
|
|
1343
|
+
|
|
1344
|
+
class CustomizedMetricSpecificationOutputTypeDef(TypedDict):
|
|
1345
|
+
MetricName: NotRequired[str]
|
|
1346
|
+
Namespace: NotRequired[str]
|
|
1347
|
+
Dimensions: NotRequired[list[MetricDimensionTypeDef]]
|
|
1348
|
+
Statistic: NotRequired[MetricStatisticType]
|
|
1349
|
+
Unit: NotRequired[str]
|
|
1350
|
+
Period: NotRequired[int]
|
|
1351
|
+
Metrics: NotRequired[list[TargetTrackingMetricDataQueryOutputTypeDef]]
|
|
1352
|
+
|
|
1353
|
+
class PredictiveScalingCustomizedCapacityMetricTypeDef(TypedDict):
|
|
1354
|
+
MetricDataQueries: Sequence[MetricDataQueryTypeDef]
|
|
1355
|
+
|
|
1356
|
+
class PredictiveScalingCustomizedLoadMetricTypeDef(TypedDict):
|
|
1357
|
+
MetricDataQueries: Sequence[MetricDataQueryTypeDef]
|
|
1358
|
+
|
|
1359
|
+
class PredictiveScalingCustomizedScalingMetricTypeDef(TypedDict):
|
|
1360
|
+
MetricDataQueries: Sequence[MetricDataQueryTypeDef]
|
|
1361
|
+
|
|
1362
|
+
class CustomizedMetricSpecificationTypeDef(TypedDict):
|
|
1363
|
+
MetricName: NotRequired[str]
|
|
1364
|
+
Namespace: NotRequired[str]
|
|
1365
|
+
Dimensions: NotRequired[Sequence[MetricDimensionTypeDef]]
|
|
1366
|
+
Statistic: NotRequired[MetricStatisticType]
|
|
1367
|
+
Unit: NotRequired[str]
|
|
1368
|
+
Period: NotRequired[int]
|
|
1369
|
+
Metrics: NotRequired[Sequence[TargetTrackingMetricDataQueryTypeDef]]
|
|
1370
|
+
|
|
1371
|
+
class LaunchTemplateOutputTypeDef(TypedDict):
|
|
1372
|
+
LaunchTemplateSpecification: NotRequired[LaunchTemplateSpecificationTypeDef]
|
|
1373
|
+
Overrides: NotRequired[list[LaunchTemplateOverridesOutputTypeDef]]
|
|
1374
|
+
|
|
1375
|
+
class LaunchTemplateTypeDef(TypedDict):
|
|
1376
|
+
LaunchTemplateSpecification: NotRequired[LaunchTemplateSpecificationTypeDef]
|
|
1377
|
+
Overrides: NotRequired[Sequence[LaunchTemplateOverridesTypeDef]]
|
|
1378
|
+
|
|
1379
|
+
class PredictiveScalingMetricSpecificationOutputTypeDef(TypedDict):
|
|
1380
|
+
TargetValue: float
|
|
1381
|
+
PredefinedMetricPairSpecification: NotRequired[PredictiveScalingPredefinedMetricPairTypeDef]
|
|
1382
|
+
PredefinedScalingMetricSpecification: NotRequired[
|
|
1383
|
+
PredictiveScalingPredefinedScalingMetricTypeDef
|
|
1384
|
+
]
|
|
1385
|
+
PredefinedLoadMetricSpecification: NotRequired[PredictiveScalingPredefinedLoadMetricTypeDef]
|
|
1386
|
+
CustomizedScalingMetricSpecification: NotRequired[
|
|
1387
|
+
PredictiveScalingCustomizedScalingMetricOutputTypeDef
|
|
1388
|
+
]
|
|
1389
|
+
CustomizedLoadMetricSpecification: NotRequired[
|
|
1390
|
+
PredictiveScalingCustomizedLoadMetricOutputTypeDef
|
|
1391
|
+
]
|
|
1392
|
+
CustomizedCapacityMetricSpecification: NotRequired[
|
|
1393
|
+
PredictiveScalingCustomizedCapacityMetricOutputTypeDef
|
|
1394
|
+
]
|
|
1395
|
+
|
|
1396
|
+
class TargetTrackingConfigurationOutputTypeDef(TypedDict):
|
|
1397
|
+
TargetValue: float
|
|
1398
|
+
PredefinedMetricSpecification: NotRequired[PredefinedMetricSpecificationTypeDef]
|
|
1399
|
+
CustomizedMetricSpecification: NotRequired[CustomizedMetricSpecificationOutputTypeDef]
|
|
1400
|
+
DisableScaleIn: NotRequired[bool]
|
|
1401
|
+
|
|
1402
|
+
class PredictiveScalingMetricSpecificationTypeDef(TypedDict):
|
|
1403
|
+
TargetValue: float
|
|
1404
|
+
PredefinedMetricPairSpecification: NotRequired[PredictiveScalingPredefinedMetricPairTypeDef]
|
|
1405
|
+
PredefinedScalingMetricSpecification: NotRequired[
|
|
1406
|
+
PredictiveScalingPredefinedScalingMetricTypeDef
|
|
1407
|
+
]
|
|
1408
|
+
PredefinedLoadMetricSpecification: NotRequired[PredictiveScalingPredefinedLoadMetricTypeDef]
|
|
1409
|
+
CustomizedScalingMetricSpecification: NotRequired[
|
|
1410
|
+
PredictiveScalingCustomizedScalingMetricTypeDef
|
|
1411
|
+
]
|
|
1412
|
+
CustomizedLoadMetricSpecification: NotRequired[PredictiveScalingCustomizedLoadMetricTypeDef]
|
|
1413
|
+
CustomizedCapacityMetricSpecification: NotRequired[
|
|
1414
|
+
PredictiveScalingCustomizedCapacityMetricTypeDef
|
|
1415
|
+
]
|
|
1416
|
+
|
|
1417
|
+
class TargetTrackingConfigurationTypeDef(TypedDict):
|
|
1418
|
+
TargetValue: float
|
|
1419
|
+
PredefinedMetricSpecification: NotRequired[PredefinedMetricSpecificationTypeDef]
|
|
1420
|
+
CustomizedMetricSpecification: NotRequired[CustomizedMetricSpecificationTypeDef]
|
|
1421
|
+
DisableScaleIn: NotRequired[bool]
|
|
1422
|
+
|
|
1423
|
+
class MixedInstancesPolicyOutputTypeDef(TypedDict):
|
|
1424
|
+
LaunchTemplate: NotRequired[LaunchTemplateOutputTypeDef]
|
|
1425
|
+
InstancesDistribution: NotRequired[InstancesDistributionTypeDef]
|
|
1426
|
+
|
|
1427
|
+
class MixedInstancesPolicyTypeDef(TypedDict):
|
|
1428
|
+
LaunchTemplate: NotRequired[LaunchTemplateTypeDef]
|
|
1429
|
+
InstancesDistribution: NotRequired[InstancesDistributionTypeDef]
|
|
1430
|
+
|
|
1431
|
+
class LoadForecastTypeDef(TypedDict):
|
|
1432
|
+
Timestamps: list[datetime]
|
|
1433
|
+
Values: list[float]
|
|
1434
|
+
MetricSpecification: PredictiveScalingMetricSpecificationOutputTypeDef
|
|
1435
|
+
|
|
1436
|
+
class PredictiveScalingConfigurationOutputTypeDef(TypedDict):
|
|
1437
|
+
MetricSpecifications: list[PredictiveScalingMetricSpecificationOutputTypeDef]
|
|
1438
|
+
Mode: NotRequired[PredictiveScalingModeType]
|
|
1439
|
+
SchedulingBufferTime: NotRequired[int]
|
|
1440
|
+
MaxCapacityBreachBehavior: NotRequired[PredictiveScalingMaxCapacityBreachBehaviorType]
|
|
1441
|
+
MaxCapacityBuffer: NotRequired[int]
|
|
1442
|
+
|
|
1443
|
+
class PredictiveScalingConfigurationTypeDef(TypedDict):
|
|
1444
|
+
MetricSpecifications: Sequence[PredictiveScalingMetricSpecificationTypeDef]
|
|
1445
|
+
Mode: NotRequired[PredictiveScalingModeType]
|
|
1446
|
+
SchedulingBufferTime: NotRequired[int]
|
|
1447
|
+
MaxCapacityBreachBehavior: NotRequired[PredictiveScalingMaxCapacityBreachBehaviorType]
|
|
1448
|
+
MaxCapacityBuffer: NotRequired[int]
|
|
1449
|
+
|
|
1450
|
+
TargetTrackingConfigurationUnionTypeDef = Union[
|
|
1451
|
+
TargetTrackingConfigurationTypeDef, TargetTrackingConfigurationOutputTypeDef
|
|
1452
|
+
]
|
|
1453
|
+
|
|
1454
|
+
class AutoScalingGroupTypeDef(TypedDict):
|
|
1455
|
+
AutoScalingGroupName: str
|
|
1456
|
+
MinSize: int
|
|
1457
|
+
MaxSize: int
|
|
1458
|
+
DesiredCapacity: int
|
|
1459
|
+
DefaultCooldown: int
|
|
1460
|
+
AvailabilityZones: list[str]
|
|
1461
|
+
HealthCheckType: str
|
|
1462
|
+
CreatedTime: datetime
|
|
1463
|
+
AutoScalingGroupARN: NotRequired[str]
|
|
1464
|
+
LaunchConfigurationName: NotRequired[str]
|
|
1465
|
+
LaunchTemplate: NotRequired[LaunchTemplateSpecificationTypeDef]
|
|
1466
|
+
MixedInstancesPolicy: NotRequired[MixedInstancesPolicyOutputTypeDef]
|
|
1467
|
+
PredictedCapacity: NotRequired[int]
|
|
1468
|
+
LoadBalancerNames: NotRequired[list[str]]
|
|
1469
|
+
TargetGroupARNs: NotRequired[list[str]]
|
|
1470
|
+
HealthCheckGracePeriod: NotRequired[int]
|
|
1471
|
+
Instances: NotRequired[list[InstanceTypeDef]]
|
|
1472
|
+
SuspendedProcesses: NotRequired[list[SuspendedProcessTypeDef]]
|
|
1473
|
+
PlacementGroup: NotRequired[str]
|
|
1474
|
+
VPCZoneIdentifier: NotRequired[str]
|
|
1475
|
+
EnabledMetrics: NotRequired[list[EnabledMetricTypeDef]]
|
|
1476
|
+
Status: NotRequired[str]
|
|
1477
|
+
Tags: NotRequired[list[TagDescriptionTypeDef]]
|
|
1478
|
+
TerminationPolicies: NotRequired[list[str]]
|
|
1479
|
+
NewInstancesProtectedFromScaleIn: NotRequired[bool]
|
|
1480
|
+
ServiceLinkedRoleARN: NotRequired[str]
|
|
1481
|
+
MaxInstanceLifetime: NotRequired[int]
|
|
1482
|
+
CapacityRebalance: NotRequired[bool]
|
|
1483
|
+
WarmPoolConfiguration: NotRequired[WarmPoolConfigurationTypeDef]
|
|
1484
|
+
WarmPoolSize: NotRequired[int]
|
|
1485
|
+
Context: NotRequired[str]
|
|
1486
|
+
DesiredCapacityType: NotRequired[str]
|
|
1487
|
+
DefaultInstanceWarmup: NotRequired[int]
|
|
1488
|
+
TrafficSources: NotRequired[list[TrafficSourceIdentifierTypeDef]]
|
|
1489
|
+
InstanceMaintenancePolicy: NotRequired[InstanceMaintenancePolicyTypeDef]
|
|
1490
|
+
AvailabilityZoneDistribution: NotRequired[AvailabilityZoneDistributionTypeDef]
|
|
1491
|
+
AvailabilityZoneImpairmentPolicy: NotRequired[AvailabilityZoneImpairmentPolicyTypeDef]
|
|
1492
|
+
CapacityReservationSpecification: NotRequired[CapacityReservationSpecificationOutputTypeDef]
|
|
1493
|
+
InstanceLifecyclePolicy: NotRequired[InstanceLifecyclePolicyTypeDef]
|
|
1494
|
+
|
|
1495
|
+
class DesiredConfigurationOutputTypeDef(TypedDict):
|
|
1496
|
+
LaunchTemplate: NotRequired[LaunchTemplateSpecificationTypeDef]
|
|
1497
|
+
MixedInstancesPolicy: NotRequired[MixedInstancesPolicyOutputTypeDef]
|
|
1498
|
+
|
|
1499
|
+
class DesiredConfigurationTypeDef(TypedDict):
|
|
1500
|
+
LaunchTemplate: NotRequired[LaunchTemplateSpecificationTypeDef]
|
|
1501
|
+
MixedInstancesPolicy: NotRequired[MixedInstancesPolicyTypeDef]
|
|
1502
|
+
|
|
1503
|
+
MixedInstancesPolicyUnionTypeDef = Union[
|
|
1504
|
+
MixedInstancesPolicyTypeDef, MixedInstancesPolicyOutputTypeDef
|
|
1505
|
+
]
|
|
1506
|
+
|
|
1507
|
+
class GetPredictiveScalingForecastAnswerTypeDef(TypedDict):
|
|
1508
|
+
LoadForecast: list[LoadForecastTypeDef]
|
|
1509
|
+
CapacityForecast: CapacityForecastTypeDef
|
|
1510
|
+
UpdateTime: datetime
|
|
1511
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1512
|
+
|
|
1513
|
+
class ScalingPolicyTypeDef(TypedDict):
|
|
1514
|
+
AutoScalingGroupName: NotRequired[str]
|
|
1515
|
+
PolicyName: NotRequired[str]
|
|
1516
|
+
PolicyARN: NotRequired[str]
|
|
1517
|
+
PolicyType: NotRequired[str]
|
|
1518
|
+
AdjustmentType: NotRequired[str]
|
|
1519
|
+
MinAdjustmentStep: NotRequired[int]
|
|
1520
|
+
MinAdjustmentMagnitude: NotRequired[int]
|
|
1521
|
+
ScalingAdjustment: NotRequired[int]
|
|
1522
|
+
Cooldown: NotRequired[int]
|
|
1523
|
+
StepAdjustments: NotRequired[list[StepAdjustmentTypeDef]]
|
|
1524
|
+
MetricAggregationType: NotRequired[str]
|
|
1525
|
+
EstimatedInstanceWarmup: NotRequired[int]
|
|
1526
|
+
Alarms: NotRequired[list[AlarmTypeDef]]
|
|
1527
|
+
TargetTrackingConfiguration: NotRequired[TargetTrackingConfigurationOutputTypeDef]
|
|
1528
|
+
Enabled: NotRequired[bool]
|
|
1529
|
+
PredictiveScalingConfiguration: NotRequired[PredictiveScalingConfigurationOutputTypeDef]
|
|
1530
|
+
|
|
1531
|
+
PredictiveScalingConfigurationUnionTypeDef = Union[
|
|
1532
|
+
PredictiveScalingConfigurationTypeDef, PredictiveScalingConfigurationOutputTypeDef
|
|
1533
|
+
]
|
|
1534
|
+
|
|
1535
|
+
class AutoScalingGroupsTypeTypeDef(TypedDict):
|
|
1536
|
+
AutoScalingGroups: list[AutoScalingGroupTypeDef]
|
|
1537
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1538
|
+
NextToken: NotRequired[str]
|
|
1539
|
+
|
|
1540
|
+
class InstanceRefreshTypeDef(TypedDict):
|
|
1541
|
+
InstanceRefreshId: NotRequired[str]
|
|
1542
|
+
AutoScalingGroupName: NotRequired[str]
|
|
1543
|
+
Status: NotRequired[InstanceRefreshStatusType]
|
|
1544
|
+
StatusReason: NotRequired[str]
|
|
1545
|
+
StartTime: NotRequired[datetime]
|
|
1546
|
+
EndTime: NotRequired[datetime]
|
|
1547
|
+
PercentageComplete: NotRequired[int]
|
|
1548
|
+
InstancesToUpdate: NotRequired[int]
|
|
1549
|
+
ProgressDetails: NotRequired[InstanceRefreshProgressDetailsTypeDef]
|
|
1550
|
+
Preferences: NotRequired[RefreshPreferencesOutputTypeDef]
|
|
1551
|
+
DesiredConfiguration: NotRequired[DesiredConfigurationOutputTypeDef]
|
|
1552
|
+
RollbackDetails: NotRequired[RollbackDetailsTypeDef]
|
|
1553
|
+
Strategy: NotRequired[RefreshStrategyType]
|
|
1554
|
+
|
|
1555
|
+
DesiredConfigurationUnionTypeDef = Union[
|
|
1556
|
+
DesiredConfigurationTypeDef, DesiredConfigurationOutputTypeDef
|
|
1557
|
+
]
|
|
1558
|
+
|
|
1559
|
+
class CreateAutoScalingGroupTypeTypeDef(TypedDict):
|
|
1560
|
+
AutoScalingGroupName: str
|
|
1561
|
+
MinSize: int
|
|
1562
|
+
MaxSize: int
|
|
1563
|
+
LaunchConfigurationName: NotRequired[str]
|
|
1564
|
+
LaunchTemplate: NotRequired[LaunchTemplateSpecificationTypeDef]
|
|
1565
|
+
MixedInstancesPolicy: NotRequired[MixedInstancesPolicyUnionTypeDef]
|
|
1566
|
+
InstanceId: NotRequired[str]
|
|
1567
|
+
DesiredCapacity: NotRequired[int]
|
|
1568
|
+
DefaultCooldown: NotRequired[int]
|
|
1569
|
+
AvailabilityZones: NotRequired[Sequence[str]]
|
|
1570
|
+
LoadBalancerNames: NotRequired[Sequence[str]]
|
|
1571
|
+
TargetGroupARNs: NotRequired[Sequence[str]]
|
|
1572
|
+
HealthCheckType: NotRequired[str]
|
|
1573
|
+
HealthCheckGracePeriod: NotRequired[int]
|
|
1574
|
+
PlacementGroup: NotRequired[str]
|
|
1575
|
+
VPCZoneIdentifier: NotRequired[str]
|
|
1576
|
+
TerminationPolicies: NotRequired[Sequence[str]]
|
|
1577
|
+
NewInstancesProtectedFromScaleIn: NotRequired[bool]
|
|
1578
|
+
CapacityRebalance: NotRequired[bool]
|
|
1579
|
+
LifecycleHookSpecificationList: NotRequired[Sequence[LifecycleHookSpecificationTypeDef]]
|
|
1580
|
+
Tags: NotRequired[Sequence[TagTypeDef]]
|
|
1581
|
+
ServiceLinkedRoleARN: NotRequired[str]
|
|
1582
|
+
MaxInstanceLifetime: NotRequired[int]
|
|
1583
|
+
Context: NotRequired[str]
|
|
1584
|
+
DesiredCapacityType: NotRequired[str]
|
|
1585
|
+
DefaultInstanceWarmup: NotRequired[int]
|
|
1586
|
+
TrafficSources: NotRequired[Sequence[TrafficSourceIdentifierTypeDef]]
|
|
1587
|
+
InstanceMaintenancePolicy: NotRequired[InstanceMaintenancePolicyTypeDef]
|
|
1588
|
+
AvailabilityZoneDistribution: NotRequired[AvailabilityZoneDistributionTypeDef]
|
|
1589
|
+
AvailabilityZoneImpairmentPolicy: NotRequired[AvailabilityZoneImpairmentPolicyTypeDef]
|
|
1590
|
+
SkipZonalShiftValidation: NotRequired[bool]
|
|
1591
|
+
CapacityReservationSpecification: NotRequired[CapacityReservationSpecificationUnionTypeDef]
|
|
1592
|
+
InstanceLifecyclePolicy: NotRequired[InstanceLifecyclePolicyTypeDef]
|
|
1593
|
+
|
|
1594
|
+
class UpdateAutoScalingGroupTypeTypeDef(TypedDict):
|
|
1595
|
+
AutoScalingGroupName: str
|
|
1596
|
+
LaunchConfigurationName: NotRequired[str]
|
|
1597
|
+
LaunchTemplate: NotRequired[LaunchTemplateSpecificationTypeDef]
|
|
1598
|
+
MixedInstancesPolicy: NotRequired[MixedInstancesPolicyUnionTypeDef]
|
|
1599
|
+
MinSize: NotRequired[int]
|
|
1600
|
+
MaxSize: NotRequired[int]
|
|
1601
|
+
DesiredCapacity: NotRequired[int]
|
|
1602
|
+
DefaultCooldown: NotRequired[int]
|
|
1603
|
+
AvailabilityZones: NotRequired[Sequence[str]]
|
|
1604
|
+
HealthCheckType: NotRequired[str]
|
|
1605
|
+
HealthCheckGracePeriod: NotRequired[int]
|
|
1606
|
+
PlacementGroup: NotRequired[str]
|
|
1607
|
+
VPCZoneIdentifier: NotRequired[str]
|
|
1608
|
+
TerminationPolicies: NotRequired[Sequence[str]]
|
|
1609
|
+
NewInstancesProtectedFromScaleIn: NotRequired[bool]
|
|
1610
|
+
ServiceLinkedRoleARN: NotRequired[str]
|
|
1611
|
+
MaxInstanceLifetime: NotRequired[int]
|
|
1612
|
+
CapacityRebalance: NotRequired[bool]
|
|
1613
|
+
Context: NotRequired[str]
|
|
1614
|
+
DesiredCapacityType: NotRequired[str]
|
|
1615
|
+
DefaultInstanceWarmup: NotRequired[int]
|
|
1616
|
+
InstanceMaintenancePolicy: NotRequired[InstanceMaintenancePolicyTypeDef]
|
|
1617
|
+
AvailabilityZoneDistribution: NotRequired[AvailabilityZoneDistributionTypeDef]
|
|
1618
|
+
AvailabilityZoneImpairmentPolicy: NotRequired[AvailabilityZoneImpairmentPolicyTypeDef]
|
|
1619
|
+
SkipZonalShiftValidation: NotRequired[bool]
|
|
1620
|
+
CapacityReservationSpecification: NotRequired[CapacityReservationSpecificationUnionTypeDef]
|
|
1621
|
+
InstanceLifecyclePolicy: NotRequired[InstanceLifecyclePolicyTypeDef]
|
|
1622
|
+
|
|
1623
|
+
class PoliciesTypeTypeDef(TypedDict):
|
|
1624
|
+
ScalingPolicies: list[ScalingPolicyTypeDef]
|
|
1625
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1626
|
+
NextToken: NotRequired[str]
|
|
1627
|
+
|
|
1628
|
+
class PutScalingPolicyTypeTypeDef(TypedDict):
|
|
1629
|
+
AutoScalingGroupName: str
|
|
1630
|
+
PolicyName: str
|
|
1631
|
+
PolicyType: NotRequired[str]
|
|
1632
|
+
AdjustmentType: NotRequired[str]
|
|
1633
|
+
MinAdjustmentStep: NotRequired[int]
|
|
1634
|
+
MinAdjustmentMagnitude: NotRequired[int]
|
|
1635
|
+
ScalingAdjustment: NotRequired[int]
|
|
1636
|
+
Cooldown: NotRequired[int]
|
|
1637
|
+
MetricAggregationType: NotRequired[str]
|
|
1638
|
+
StepAdjustments: NotRequired[Sequence[StepAdjustmentTypeDef]]
|
|
1639
|
+
EstimatedInstanceWarmup: NotRequired[int]
|
|
1640
|
+
TargetTrackingConfiguration: NotRequired[TargetTrackingConfigurationUnionTypeDef]
|
|
1641
|
+
Enabled: NotRequired[bool]
|
|
1642
|
+
PredictiveScalingConfiguration: NotRequired[PredictiveScalingConfigurationUnionTypeDef]
|
|
1643
|
+
|
|
1644
|
+
class DescribeInstanceRefreshesAnswerTypeDef(TypedDict):
|
|
1645
|
+
InstanceRefreshes: list[InstanceRefreshTypeDef]
|
|
1646
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1647
|
+
NextToken: NotRequired[str]
|
|
1648
|
+
|
|
1649
|
+
class StartInstanceRefreshTypeTypeDef(TypedDict):
|
|
1650
|
+
AutoScalingGroupName: str
|
|
1651
|
+
Strategy: NotRequired[RefreshStrategyType]
|
|
1652
|
+
DesiredConfiguration: NotRequired[DesiredConfigurationUnionTypeDef]
|
|
1653
|
+
Preferences: NotRequired[RefreshPreferencesUnionTypeDef]
|