@aws-sdk/client-auto-scaling 3.687.0 → 3.691.0
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.
- package/dist-types/models/models_0.d.ts +502 -502
- package/dist-types/ts3.4/models/models_0.d.ts +520 -502
- package/package.json +7 -7
|
@@ -10,12 +10,12 @@ export interface AcceleratorCountRequest {
|
|
|
10
10
|
* <p>The minimum value.</p>
|
|
11
11
|
* @public
|
|
12
12
|
*/
|
|
13
|
-
Min?: number;
|
|
13
|
+
Min?: number | undefined;
|
|
14
14
|
/**
|
|
15
15
|
* <p>The maximum value.</p>
|
|
16
16
|
* @public
|
|
17
17
|
*/
|
|
18
|
-
Max?: number;
|
|
18
|
+
Max?: number | undefined;
|
|
19
19
|
}
|
|
20
20
|
/**
|
|
21
21
|
* @public
|
|
@@ -58,12 +58,12 @@ export interface AcceleratorTotalMemoryMiBRequest {
|
|
|
58
58
|
* <p>The memory minimum in MiB.</p>
|
|
59
59
|
* @public
|
|
60
60
|
*/
|
|
61
|
-
Min?: number;
|
|
61
|
+
Min?: number | undefined;
|
|
62
62
|
/**
|
|
63
63
|
* <p>The memory maximum in MiB.</p>
|
|
64
64
|
* @public
|
|
65
65
|
*/
|
|
66
|
-
Max?: number;
|
|
66
|
+
Max?: number | undefined;
|
|
67
67
|
}
|
|
68
68
|
/**
|
|
69
69
|
* @public
|
|
@@ -134,7 +134,7 @@ export interface Activity {
|
|
|
134
134
|
* <p>A friendly, more verbose description of the activity.</p>
|
|
135
135
|
* @public
|
|
136
136
|
*/
|
|
137
|
-
Description?: string;
|
|
137
|
+
Description?: string | undefined;
|
|
138
138
|
/**
|
|
139
139
|
* <p>The reason the activity began.</p>
|
|
140
140
|
* @public
|
|
@@ -149,7 +149,7 @@ export interface Activity {
|
|
|
149
149
|
* <p>The end time of the activity.</p>
|
|
150
150
|
* @public
|
|
151
151
|
*/
|
|
152
|
-
EndTime?: Date;
|
|
152
|
+
EndTime?: Date | undefined;
|
|
153
153
|
/**
|
|
154
154
|
* <p>The current status of the activity.</p>
|
|
155
155
|
* @public
|
|
@@ -159,28 +159,28 @@ export interface Activity {
|
|
|
159
159
|
* <p>A friendly, more verbose description of the activity status.</p>
|
|
160
160
|
* @public
|
|
161
161
|
*/
|
|
162
|
-
StatusMessage?: string;
|
|
162
|
+
StatusMessage?: string | undefined;
|
|
163
163
|
/**
|
|
164
164
|
* <p>A value between 0 and 100 that indicates the progress of the activity.</p>
|
|
165
165
|
* @public
|
|
166
166
|
*/
|
|
167
|
-
Progress?: number;
|
|
167
|
+
Progress?: number | undefined;
|
|
168
168
|
/**
|
|
169
169
|
* <p>The details about the activity.</p>
|
|
170
170
|
* @public
|
|
171
171
|
*/
|
|
172
|
-
Details?: string;
|
|
172
|
+
Details?: string | undefined;
|
|
173
173
|
/**
|
|
174
174
|
* <p>The state of the Auto Scaling group, which is either <code>InService</code> or
|
|
175
175
|
* <code>Deleted</code>.</p>
|
|
176
176
|
* @public
|
|
177
177
|
*/
|
|
178
|
-
AutoScalingGroupState?: string;
|
|
178
|
+
AutoScalingGroupState?: string | undefined;
|
|
179
179
|
/**
|
|
180
180
|
* <p>The Amazon Resource Name (ARN) of the Auto Scaling group.</p>
|
|
181
181
|
* @public
|
|
182
182
|
*/
|
|
183
|
-
AutoScalingGroupARN?: string;
|
|
183
|
+
AutoScalingGroupARN?: string | undefined;
|
|
184
184
|
}
|
|
185
185
|
/**
|
|
186
186
|
* @public
|
|
@@ -199,7 +199,7 @@ export interface ActivitiesType {
|
|
|
199
199
|
* null when there are no more items to return.</p>
|
|
200
200
|
* @public
|
|
201
201
|
*/
|
|
202
|
-
NextToken?: string;
|
|
202
|
+
NextToken?: string | undefined;
|
|
203
203
|
}
|
|
204
204
|
/**
|
|
205
205
|
* @public
|
|
@@ -209,7 +209,7 @@ export interface ActivityType {
|
|
|
209
209
|
* <p>A scaling activity.</p>
|
|
210
210
|
* @public
|
|
211
211
|
*/
|
|
212
|
-
Activity?: Activity;
|
|
212
|
+
Activity?: Activity | undefined;
|
|
213
213
|
}
|
|
214
214
|
/**
|
|
215
215
|
* <p>Describes a policy adjustment type.</p>
|
|
@@ -221,7 +221,7 @@ export interface AdjustmentType {
|
|
|
221
221
|
* <code>ExactCapacity</code>, and <code>PercentChangeInCapacity</code>.</p>
|
|
222
222
|
* @public
|
|
223
223
|
*/
|
|
224
|
-
AdjustmentType?: string;
|
|
224
|
+
AdjustmentType?: string | undefined;
|
|
225
225
|
}
|
|
226
226
|
/**
|
|
227
227
|
* <p>Describes an alarm.</p>
|
|
@@ -232,12 +232,12 @@ export interface Alarm {
|
|
|
232
232
|
* <p>The name of the alarm.</p>
|
|
233
233
|
* @public
|
|
234
234
|
*/
|
|
235
|
-
AlarmName?: string;
|
|
235
|
+
AlarmName?: string | undefined;
|
|
236
236
|
/**
|
|
237
237
|
* <p>The Amazon Resource Name (ARN) of the alarm.</p>
|
|
238
238
|
* @public
|
|
239
239
|
*/
|
|
240
|
-
AlarmARN?: string;
|
|
240
|
+
AlarmARN?: string | undefined;
|
|
241
241
|
}
|
|
242
242
|
/**
|
|
243
243
|
* <p>Specifies the CloudWatch alarm specification to use in an instance refresh.</p>
|
|
@@ -249,7 +249,7 @@ export interface AlarmSpecification {
|
|
|
249
249
|
* specify up to 10 alarms.</p>
|
|
250
250
|
* @public
|
|
251
251
|
*/
|
|
252
|
-
Alarms?: string[];
|
|
252
|
+
Alarms?: string[] | undefined;
|
|
253
253
|
}
|
|
254
254
|
/**
|
|
255
255
|
* <p>You already have an Auto Scaling group or launch configuration with this name.</p>
|
|
@@ -271,7 +271,7 @@ export interface AttachInstancesQuery {
|
|
|
271
271
|
* <p>The IDs of the instances. You can specify up to 20 instances.</p>
|
|
272
272
|
* @public
|
|
273
273
|
*/
|
|
274
|
-
InstanceIds?: string[];
|
|
274
|
+
InstanceIds?: string[] | undefined;
|
|
275
275
|
/**
|
|
276
276
|
* <p>The name of the Auto Scaling group.</p>
|
|
277
277
|
* @public
|
|
@@ -404,7 +404,7 @@ export interface TrafficSourceIdentifier {
|
|
|
404
404
|
* <p>Required if the identifier is the name of a Classic Load Balancer.</p>
|
|
405
405
|
* @public
|
|
406
406
|
*/
|
|
407
|
-
Type?: string;
|
|
407
|
+
Type?: string | undefined;
|
|
408
408
|
}
|
|
409
409
|
/**
|
|
410
410
|
* @public
|
|
@@ -436,12 +436,12 @@ export interface FailedScheduledUpdateGroupActionRequest {
|
|
|
436
436
|
* <p>The error code.</p>
|
|
437
437
|
* @public
|
|
438
438
|
*/
|
|
439
|
-
ErrorCode?: string;
|
|
439
|
+
ErrorCode?: string | undefined;
|
|
440
440
|
/**
|
|
441
441
|
* <p>The error message accompanying the error code.</p>
|
|
442
442
|
* @public
|
|
443
443
|
*/
|
|
444
|
-
ErrorMessage?: string;
|
|
444
|
+
ErrorMessage?: string | undefined;
|
|
445
445
|
}
|
|
446
446
|
/**
|
|
447
447
|
* @public
|
|
@@ -452,7 +452,7 @@ export interface BatchDeleteScheduledActionAnswer {
|
|
|
452
452
|
* message.</p>
|
|
453
453
|
* @public
|
|
454
454
|
*/
|
|
455
|
-
FailedScheduledActions?: FailedScheduledUpdateGroupActionRequest[];
|
|
455
|
+
FailedScheduledActions?: FailedScheduledUpdateGroupActionRequest[] | undefined;
|
|
456
456
|
}
|
|
457
457
|
/**
|
|
458
458
|
* @public
|
|
@@ -479,7 +479,7 @@ export interface BatchPutScheduledUpdateGroupActionAnswer {
|
|
|
479
479
|
* error message.</p>
|
|
480
480
|
* @public
|
|
481
481
|
*/
|
|
482
|
-
FailedScheduledUpdateGroupActions?: FailedScheduledUpdateGroupActionRequest[];
|
|
482
|
+
FailedScheduledUpdateGroupActions?: FailedScheduledUpdateGroupActionRequest[] | undefined;
|
|
483
483
|
}
|
|
484
484
|
/**
|
|
485
485
|
* <p>Describes information used for one or more scheduled scaling action updates in a
|
|
@@ -503,12 +503,12 @@ export interface ScheduledUpdateGroupActionRequest {
|
|
|
503
503
|
* message.</p>
|
|
504
504
|
* @public
|
|
505
505
|
*/
|
|
506
|
-
StartTime?: Date;
|
|
506
|
+
StartTime?: Date | undefined;
|
|
507
507
|
/**
|
|
508
508
|
* <p>The date and time for the recurring schedule to end, in UTC.</p>
|
|
509
509
|
* @public
|
|
510
510
|
*/
|
|
511
|
-
EndTime?: Date;
|
|
511
|
+
EndTime?: Date | undefined;
|
|
512
512
|
/**
|
|
513
513
|
* <p>The recurring schedule for the action, in Unix cron syntax format. This format
|
|
514
514
|
* consists of five fields separated by white spaces: [Minute] [Hour] [Day_of_Month]
|
|
@@ -520,23 +520,23 @@ export interface ScheduledUpdateGroupActionRequest {
|
|
|
520
520
|
* <p>Cron expressions use Universal Coordinated Time (UTC) by default.</p>
|
|
521
521
|
* @public
|
|
522
522
|
*/
|
|
523
|
-
Recurrence?: string;
|
|
523
|
+
Recurrence?: string | undefined;
|
|
524
524
|
/**
|
|
525
525
|
* <p>The minimum size of the Auto Scaling group.</p>
|
|
526
526
|
* @public
|
|
527
527
|
*/
|
|
528
|
-
MinSize?: number;
|
|
528
|
+
MinSize?: number | undefined;
|
|
529
529
|
/**
|
|
530
530
|
* <p>The maximum size of the Auto Scaling group.</p>
|
|
531
531
|
* @public
|
|
532
532
|
*/
|
|
533
|
-
MaxSize?: number;
|
|
533
|
+
MaxSize?: number | undefined;
|
|
534
534
|
/**
|
|
535
535
|
* <p>The desired capacity is the initial capacity of the Auto Scaling group after the scheduled
|
|
536
536
|
* action runs and the capacity it attempts to maintain.</p>
|
|
537
537
|
* @public
|
|
538
538
|
*/
|
|
539
|
-
DesiredCapacity?: number;
|
|
539
|
+
DesiredCapacity?: number | undefined;
|
|
540
540
|
/**
|
|
541
541
|
* <p>Specifies the time zone for a cron expression. If a time zone is not provided, UTC is
|
|
542
542
|
* used by default. </p>
|
|
@@ -545,7 +545,7 @@ export interface ScheduledUpdateGroupActionRequest {
|
|
|
545
545
|
* more information, see <a href="https://en.wikipedia.org/wiki/List_of_tz_database_time_zones">https://en.wikipedia.org/wiki/List_of_tz_database_time_zones</a>.</p>
|
|
546
546
|
* @public
|
|
547
547
|
*/
|
|
548
|
-
TimeZone?: string;
|
|
548
|
+
TimeZone?: string | undefined;
|
|
549
549
|
}
|
|
550
550
|
/**
|
|
551
551
|
* @public
|
|
@@ -586,7 +586,7 @@ export interface CancelInstanceRefreshAnswer {
|
|
|
586
586
|
* the instance refresh when it was started.</p>
|
|
587
587
|
* @public
|
|
588
588
|
*/
|
|
589
|
-
InstanceRefreshId?: string;
|
|
589
|
+
InstanceRefreshId?: string | undefined;
|
|
590
590
|
}
|
|
591
591
|
/**
|
|
592
592
|
* @public
|
|
@@ -623,7 +623,7 @@ export interface CompleteLifecycleActionType {
|
|
|
623
623
|
* specified when you created the lifecycle hook.</p>
|
|
624
624
|
* @public
|
|
625
625
|
*/
|
|
626
|
-
LifecycleActionToken?: string;
|
|
626
|
+
LifecycleActionToken?: string | undefined;
|
|
627
627
|
/**
|
|
628
628
|
* <p>The action for the group to take. You can specify either <code>CONTINUE</code> or
|
|
629
629
|
* <code>ABANDON</code>.</p>
|
|
@@ -634,7 +634,7 @@ export interface CompleteLifecycleActionType {
|
|
|
634
634
|
* <p>The ID of the instance.</p>
|
|
635
635
|
* @public
|
|
636
636
|
*/
|
|
637
|
-
InstanceId?: string;
|
|
637
|
+
InstanceId?: string | undefined;
|
|
638
638
|
}
|
|
639
639
|
/**
|
|
640
640
|
* @public
|
|
@@ -670,7 +670,7 @@ export interface AvailabilityZoneDistribution {
|
|
|
670
670
|
* </ul>
|
|
671
671
|
* @public
|
|
672
672
|
*/
|
|
673
|
-
CapacityDistributionStrategy?: CapacityDistributionStrategy;
|
|
673
|
+
CapacityDistributionStrategy?: CapacityDistributionStrategy | undefined;
|
|
674
674
|
}
|
|
675
675
|
/**
|
|
676
676
|
* <p>Describes an instance maintenance policy.</p>
|
|
@@ -686,7 +686,7 @@ export interface InstanceMaintenancePolicy {
|
|
|
686
686
|
* 100. To clear a previously set value, specify a value of <code>-1</code>.</p>
|
|
687
687
|
* @public
|
|
688
688
|
*/
|
|
689
|
-
MinHealthyPercentage?: number;
|
|
689
|
+
MinHealthyPercentage?: number | undefined;
|
|
690
690
|
/**
|
|
691
691
|
* <p>Specifies the upper threshold as a percentage of the desired capacity of the Auto Scaling
|
|
692
692
|
* group. It represents the maximum percentage of the group that can be in service and
|
|
@@ -697,7 +697,7 @@ export interface InstanceMaintenancePolicy {
|
|
|
697
697
|
* increases the number of instances that can be replaced at the same time.</p>
|
|
698
698
|
* @public
|
|
699
699
|
*/
|
|
700
|
-
MaxHealthyPercentage?: number;
|
|
700
|
+
MaxHealthyPercentage?: number | undefined;
|
|
701
701
|
}
|
|
702
702
|
/**
|
|
703
703
|
* <p>Describes the launch template and the version of the launch template that Amazon EC2 Auto Scaling
|
|
@@ -713,7 +713,7 @@ export interface LaunchTemplateSpecification {
|
|
|
713
713
|
* <code>LaunchTemplateName</code>.</p>
|
|
714
714
|
* @public
|
|
715
715
|
*/
|
|
716
|
-
LaunchTemplateId?: string;
|
|
716
|
+
LaunchTemplateId?: string | undefined;
|
|
717
717
|
/**
|
|
718
718
|
* <p>The name of the launch template. To get the template name, use the Amazon EC2 <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_DescribeLaunchTemplates.html">DescribeLaunchTemplates</a> API operation. New launch templates can be created
|
|
719
719
|
* using the Amazon EC2 <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CreateLaunchTemplate.html">CreateLaunchTemplate</a> API. </p>
|
|
@@ -721,7 +721,7 @@ export interface LaunchTemplateSpecification {
|
|
|
721
721
|
* <code>LaunchTemplateName</code>.</p>
|
|
722
722
|
* @public
|
|
723
723
|
*/
|
|
724
|
-
LaunchTemplateName?: string;
|
|
724
|
+
LaunchTemplateName?: string | undefined;
|
|
725
725
|
/**
|
|
726
726
|
* <p>The version number, <code>$Latest</code>, or <code>$Default</code>. To get the version
|
|
727
727
|
* number, use the Amazon EC2 <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_DescribeLaunchTemplateVersions.html">DescribeLaunchTemplateVersions</a> API operation. New launch template versions
|
|
@@ -731,7 +731,7 @@ export interface LaunchTemplateSpecification {
|
|
|
731
731
|
* template when launching instances. The default value is <code>$Default</code>.</p>
|
|
732
732
|
* @public
|
|
733
733
|
*/
|
|
734
|
-
Version?: string;
|
|
734
|
+
Version?: string | undefined;
|
|
735
735
|
}
|
|
736
736
|
/**
|
|
737
737
|
* <p>Describes information used to specify a lifecycle hook for an Auto Scaling
|
|
@@ -767,14 +767,14 @@ export interface LifecycleHookSpecification {
|
|
|
767
767
|
* the notification target.</p>
|
|
768
768
|
* @public
|
|
769
769
|
*/
|
|
770
|
-
NotificationMetadata?: string;
|
|
770
|
+
NotificationMetadata?: string | undefined;
|
|
771
771
|
/**
|
|
772
772
|
* <p>The maximum time, in seconds, that can elapse before the lifecycle hook times out. The
|
|
773
773
|
* range is from <code>30</code> to <code>7200</code> seconds. The default value is
|
|
774
774
|
* <code>3600</code> seconds (1 hour).</p>
|
|
775
775
|
* @public
|
|
776
776
|
*/
|
|
777
|
-
HeartbeatTimeout?: number;
|
|
777
|
+
HeartbeatTimeout?: number | undefined;
|
|
778
778
|
/**
|
|
779
779
|
* <p>The action the Auto Scaling group takes when the lifecycle hook timeout elapses or if an
|
|
780
780
|
* unexpected failure occurs. The default value is <code>ABANDON</code>.</p>
|
|
@@ -782,14 +782,14 @@ export interface LifecycleHookSpecification {
|
|
|
782
782
|
* </p>
|
|
783
783
|
* @public
|
|
784
784
|
*/
|
|
785
|
-
DefaultResult?: string;
|
|
785
|
+
DefaultResult?: string | undefined;
|
|
786
786
|
/**
|
|
787
787
|
* <p>The Amazon Resource Name (ARN) of the notification target that Amazon EC2 Auto Scaling sends
|
|
788
788
|
* notifications to when an instance is in a wait state for the lifecycle hook. You can
|
|
789
789
|
* specify an Amazon SNS topic or an Amazon SQS queue.</p>
|
|
790
790
|
* @public
|
|
791
791
|
*/
|
|
792
|
-
NotificationTargetARN?: string;
|
|
792
|
+
NotificationTargetARN?: string | undefined;
|
|
793
793
|
/**
|
|
794
794
|
* <p>The ARN of the IAM role that allows the Auto Scaling group to publish to the specified
|
|
795
795
|
* notification target. For information about creating this role, see <a href="https://docs.aws.amazon.com/autoscaling/ec2/userguide/prepare-for-lifecycle-notifications.html">Prepare to
|
|
@@ -798,7 +798,7 @@ export interface LifecycleHookSpecification {
|
|
|
798
798
|
* <p>Valid only if the notification target is an Amazon SNS topic or an Amazon SQS queue.</p>
|
|
799
799
|
* @public
|
|
800
800
|
*/
|
|
801
|
-
RoleARN?: string;
|
|
801
|
+
RoleARN?: string | undefined;
|
|
802
802
|
}
|
|
803
803
|
/**
|
|
804
804
|
* <p>Use this structure to specify the distribution of On-Demand Instances and Spot
|
|
@@ -834,7 +834,7 @@ export interface InstancesDistribution {
|
|
|
834
834
|
* </dl>
|
|
835
835
|
* @public
|
|
836
836
|
*/
|
|
837
|
-
OnDemandAllocationStrategy?: string;
|
|
837
|
+
OnDemandAllocationStrategy?: string | undefined;
|
|
838
838
|
/**
|
|
839
839
|
* <p>The minimum amount of the Auto Scaling group's capacity that must be fulfilled by On-Demand
|
|
840
840
|
* Instances. This base portion is launched first as your group scales.</p>
|
|
@@ -846,7 +846,7 @@ export interface InstancesDistribution {
|
|
|
846
846
|
* <p>Default: 0</p>
|
|
847
847
|
* @public
|
|
848
848
|
*/
|
|
849
|
-
OnDemandBaseCapacity?: number;
|
|
849
|
+
OnDemandBaseCapacity?: number | undefined;
|
|
850
850
|
/**
|
|
851
851
|
* <p>Controls the percentages of On-Demand Instances and Spot Instances for your additional
|
|
852
852
|
* capacity beyond <code>OnDemandBaseCapacity</code>. Expressed as a number (for example,
|
|
@@ -855,7 +855,7 @@ export interface InstancesDistribution {
|
|
|
855
855
|
* <p>Default: 100</p>
|
|
856
856
|
* @public
|
|
857
857
|
*/
|
|
858
|
-
OnDemandPercentageAboveBaseCapacity?: number;
|
|
858
|
+
OnDemandPercentageAboveBaseCapacity?: number | undefined;
|
|
859
859
|
/**
|
|
860
860
|
* <p>The allocation strategy to apply to your Spot Instances when they are launched.
|
|
861
861
|
* Possible instance types are determined by the launch template overrides that you
|
|
@@ -898,7 +898,7 @@ export interface InstancesDistribution {
|
|
|
898
898
|
* </dl>
|
|
899
899
|
* @public
|
|
900
900
|
*/
|
|
901
|
-
SpotAllocationStrategy?: string;
|
|
901
|
+
SpotAllocationStrategy?: string | undefined;
|
|
902
902
|
/**
|
|
903
903
|
* <p>The number of Spot Instance pools across which to allocate your Spot Instances. The
|
|
904
904
|
* Spot pools are determined from the different instance types in the overrides. Valid only
|
|
@@ -907,7 +907,7 @@ export interface InstancesDistribution {
|
|
|
907
907
|
* <p>Default: 2</p>
|
|
908
908
|
* @public
|
|
909
909
|
*/
|
|
910
|
-
SpotInstancePools?: number;
|
|
910
|
+
SpotInstancePools?: number | undefined;
|
|
911
911
|
/**
|
|
912
912
|
* <p>The maximum price per unit hour that you are willing to pay for a Spot Instance. If
|
|
913
913
|
* your maximum price is lower than the Spot price for the instance types that you
|
|
@@ -922,7 +922,7 @@ export interface InstancesDistribution {
|
|
|
922
922
|
* <p>Valid Range: Minimum value of 0.001</p>
|
|
923
923
|
* @public
|
|
924
924
|
*/
|
|
925
|
-
SpotMaxPrice?: string;
|
|
925
|
+
SpotMaxPrice?: string | undefined;
|
|
926
926
|
}
|
|
927
927
|
/**
|
|
928
928
|
* @public
|
|
@@ -947,12 +947,12 @@ export interface BaselineEbsBandwidthMbpsRequest {
|
|
|
947
947
|
* <p>The minimum value in Mbps.</p>
|
|
948
948
|
* @public
|
|
949
949
|
*/
|
|
950
|
-
Min?: number;
|
|
950
|
+
Min?: number | undefined;
|
|
951
951
|
/**
|
|
952
952
|
* <p>The maximum value in Mbps.</p>
|
|
953
953
|
* @public
|
|
954
954
|
*/
|
|
955
|
-
Max?: number;
|
|
955
|
+
Max?: number | undefined;
|
|
956
956
|
}
|
|
957
957
|
/**
|
|
958
958
|
* @public
|
|
@@ -1027,12 +1027,12 @@ export interface MemoryGiBPerVCpuRequest {
|
|
|
1027
1027
|
* <p>The memory minimum in GiB.</p>
|
|
1028
1028
|
* @public
|
|
1029
1029
|
*/
|
|
1030
|
-
Min?: number;
|
|
1030
|
+
Min?: number | undefined;
|
|
1031
1031
|
/**
|
|
1032
1032
|
* <p>The memory maximum in GiB.</p>
|
|
1033
1033
|
* @public
|
|
1034
1034
|
*/
|
|
1035
|
-
Max?: number;
|
|
1035
|
+
Max?: number | undefined;
|
|
1036
1036
|
}
|
|
1037
1037
|
/**
|
|
1038
1038
|
* <p>Specifies the minimum and maximum for the <code>MemoryMiB</code> object when you
|
|
@@ -1049,7 +1049,7 @@ export interface MemoryMiBRequest {
|
|
|
1049
1049
|
* <p>The memory maximum in MiB.</p>
|
|
1050
1050
|
* @public
|
|
1051
1051
|
*/
|
|
1052
|
-
Max?: number;
|
|
1052
|
+
Max?: number | undefined;
|
|
1053
1053
|
}
|
|
1054
1054
|
/**
|
|
1055
1055
|
* <p>Specifies the minimum and maximum for the <code>NetworkBandwidthGbps</code> object
|
|
@@ -1068,12 +1068,12 @@ export interface NetworkBandwidthGbpsRequest {
|
|
|
1068
1068
|
* <p>The minimum amount of network bandwidth, in gigabits per second (Gbps).</p>
|
|
1069
1069
|
* @public
|
|
1070
1070
|
*/
|
|
1071
|
-
Min?: number;
|
|
1071
|
+
Min?: number | undefined;
|
|
1072
1072
|
/**
|
|
1073
1073
|
* <p>The maximum amount of network bandwidth, in gigabits per second (Gbps).</p>
|
|
1074
1074
|
* @public
|
|
1075
1075
|
*/
|
|
1076
|
-
Max?: number;
|
|
1076
|
+
Max?: number | undefined;
|
|
1077
1077
|
}
|
|
1078
1078
|
/**
|
|
1079
1079
|
* <p>Specifies the minimum and maximum for the <code>NetworkInterfaceCount</code> object
|
|
@@ -1085,12 +1085,12 @@ export interface NetworkInterfaceCountRequest {
|
|
|
1085
1085
|
* <p>The minimum number of network interfaces.</p>
|
|
1086
1086
|
* @public
|
|
1087
1087
|
*/
|
|
1088
|
-
Min?: number;
|
|
1088
|
+
Min?: number | undefined;
|
|
1089
1089
|
/**
|
|
1090
1090
|
* <p>The maximum number of network interfaces.</p>
|
|
1091
1091
|
* @public
|
|
1092
1092
|
*/
|
|
1093
|
-
Max?: number;
|
|
1093
|
+
Max?: number | undefined;
|
|
1094
1094
|
}
|
|
1095
1095
|
/**
|
|
1096
1096
|
* <p>Specifies the minimum and maximum for the <code>TotalLocalStorageGB</code> object when
|
|
@@ -1102,12 +1102,12 @@ export interface TotalLocalStorageGBRequest {
|
|
|
1102
1102
|
* <p>The storage minimum in GB.</p>
|
|
1103
1103
|
* @public
|
|
1104
1104
|
*/
|
|
1105
|
-
Min?: number;
|
|
1105
|
+
Min?: number | undefined;
|
|
1106
1106
|
/**
|
|
1107
1107
|
* <p>The storage maximum in GB.</p>
|
|
1108
1108
|
* @public
|
|
1109
1109
|
*/
|
|
1110
|
-
Max?: number;
|
|
1110
|
+
Max?: number | undefined;
|
|
1111
1111
|
}
|
|
1112
1112
|
/**
|
|
1113
1113
|
* <p>Specifies the minimum and maximum for the <code>VCpuCount</code> object when you
|
|
@@ -1124,7 +1124,7 @@ export interface VCpuCountRequest {
|
|
|
1124
1124
|
* <p>The maximum number of vCPUs.</p>
|
|
1125
1125
|
* @public
|
|
1126
1126
|
*/
|
|
1127
|
-
Max?: number;
|
|
1127
|
+
Max?: number | undefined;
|
|
1128
1128
|
}
|
|
1129
1129
|
/**
|
|
1130
1130
|
* <p>The attributes for the instance types for a mixed instances policy. Amazon EC2 Auto Scaling uses your
|
|
@@ -1194,13 +1194,13 @@ export interface InstanceRequirements {
|
|
|
1194
1194
|
* <p>Default: Any manufacturer</p>
|
|
1195
1195
|
* @public
|
|
1196
1196
|
*/
|
|
1197
|
-
CpuManufacturers?: CpuManufacturer[];
|
|
1197
|
+
CpuManufacturers?: CpuManufacturer[] | undefined;
|
|
1198
1198
|
/**
|
|
1199
1199
|
* <p>The minimum and maximum amount of memory per vCPU for an instance type, in GiB.</p>
|
|
1200
1200
|
* <p>Default: No minimum or maximum limits</p>
|
|
1201
1201
|
* @public
|
|
1202
1202
|
*/
|
|
1203
|
-
MemoryGiBPerVCpu?: MemoryGiBPerVCpuRequest;
|
|
1203
|
+
MemoryGiBPerVCpu?: MemoryGiBPerVCpuRequest | undefined;
|
|
1204
1204
|
/**
|
|
1205
1205
|
* <p>The instance types to exclude. You can use strings with one or more wild cards,
|
|
1206
1206
|
* represented by an asterisk (<code>*</code>), to exclude an instance family, type, size,
|
|
@@ -1217,7 +1217,7 @@ export interface InstanceRequirements {
|
|
|
1217
1217
|
* <p>Default: No excluded instance types</p>
|
|
1218
1218
|
* @public
|
|
1219
1219
|
*/
|
|
1220
|
-
ExcludedInstanceTypes?: string[];
|
|
1220
|
+
ExcludedInstanceTypes?: string[] | undefined;
|
|
1221
1221
|
/**
|
|
1222
1222
|
* <p>Indicates whether current or previous generation instance types are included.</p>
|
|
1223
1223
|
* <ul>
|
|
@@ -1235,7 +1235,7 @@ export interface InstanceRequirements {
|
|
|
1235
1235
|
* <p>Default: Any current or previous generation</p>
|
|
1236
1236
|
* @public
|
|
1237
1237
|
*/
|
|
1238
|
-
InstanceGenerations?: InstanceGeneration[];
|
|
1238
|
+
InstanceGenerations?: InstanceGeneration[] | undefined;
|
|
1239
1239
|
/**
|
|
1240
1240
|
* <p>[Price protection] The price protection threshold for Spot Instances, as a percentage
|
|
1241
1241
|
* higher than an identified Spot price. The identified Spot price is the price of the
|
|
@@ -1260,7 +1260,7 @@ export interface InstanceRequirements {
|
|
|
1260
1260
|
* </note>
|
|
1261
1261
|
* @public
|
|
1262
1262
|
*/
|
|
1263
|
-
SpotMaxPricePercentageOverLowestPrice?: number;
|
|
1263
|
+
SpotMaxPricePercentageOverLowestPrice?: number | undefined;
|
|
1264
1264
|
/**
|
|
1265
1265
|
* <p>[Price protection] The price protection threshold for Spot Instances, as a percentage
|
|
1266
1266
|
* of an identified On-Demand price. The identified On-Demand price is the price of the
|
|
@@ -1285,7 +1285,7 @@ export interface InstanceRequirements {
|
|
|
1285
1285
|
* </note>
|
|
1286
1286
|
* @public
|
|
1287
1287
|
*/
|
|
1288
|
-
MaxSpotPriceAsPercentageOfOptimalOnDemandPrice?: number;
|
|
1288
|
+
MaxSpotPriceAsPercentageOfOptimalOnDemandPrice?: number | undefined;
|
|
1289
1289
|
/**
|
|
1290
1290
|
* <p>[Price protection] The price protection threshold for On-Demand Instances, as a
|
|
1291
1291
|
* percentage higher than an identified On-Demand price. The identified On-Demand price is
|
|
@@ -1305,7 +1305,7 @@ export interface InstanceRequirements {
|
|
|
1305
1305
|
* </p>
|
|
1306
1306
|
* @public
|
|
1307
1307
|
*/
|
|
1308
|
-
OnDemandMaxPricePercentageOverLowestPrice?: number;
|
|
1308
|
+
OnDemandMaxPricePercentageOverLowestPrice?: number | undefined;
|
|
1309
1309
|
/**
|
|
1310
1310
|
* <p>Indicates whether bare metal instance types are included, excluded, or
|
|
1311
1311
|
* required.</p>
|
|
@@ -1313,7 +1313,7 @@ export interface InstanceRequirements {
|
|
|
1313
1313
|
* </p>
|
|
1314
1314
|
* @public
|
|
1315
1315
|
*/
|
|
1316
|
-
BareMetal?: BareMetal;
|
|
1316
|
+
BareMetal?: BareMetal | undefined;
|
|
1317
1317
|
/**
|
|
1318
1318
|
* <p>Indicates whether burstable performance instance types are included, excluded, or
|
|
1319
1319
|
* required. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/burstable-performance-instances.html">Burstable
|
|
@@ -1322,7 +1322,7 @@ export interface InstanceRequirements {
|
|
|
1322
1322
|
* </p>
|
|
1323
1323
|
* @public
|
|
1324
1324
|
*/
|
|
1325
|
-
BurstablePerformance?: BurstablePerformance;
|
|
1325
|
+
BurstablePerformance?: BurstablePerformance | undefined;
|
|
1326
1326
|
/**
|
|
1327
1327
|
* <p>Indicates whether instance types must provide On-Demand Instance hibernation
|
|
1328
1328
|
* support.</p>
|
|
@@ -1330,13 +1330,13 @@ export interface InstanceRequirements {
|
|
|
1330
1330
|
* </p>
|
|
1331
1331
|
* @public
|
|
1332
1332
|
*/
|
|
1333
|
-
RequireHibernateSupport?: boolean;
|
|
1333
|
+
RequireHibernateSupport?: boolean | undefined;
|
|
1334
1334
|
/**
|
|
1335
1335
|
* <p>The minimum and maximum number of network interfaces for an instance type.</p>
|
|
1336
1336
|
* <p>Default: No minimum or maximum limits</p>
|
|
1337
1337
|
* @public
|
|
1338
1338
|
*/
|
|
1339
|
-
NetworkInterfaceCount?: NetworkInterfaceCountRequest;
|
|
1339
|
+
NetworkInterfaceCount?: NetworkInterfaceCountRequest | undefined;
|
|
1340
1340
|
/**
|
|
1341
1341
|
* <p>Indicates whether instance types with instance store volumes are included, excluded,
|
|
1342
1342
|
* or required. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/InstanceStorage.html">Amazon EC2 instance store</a> in
|
|
@@ -1345,7 +1345,7 @@ export interface InstanceRequirements {
|
|
|
1345
1345
|
* </p>
|
|
1346
1346
|
* @public
|
|
1347
1347
|
*/
|
|
1348
|
-
LocalStorage?: LocalStorage;
|
|
1348
|
+
LocalStorage?: LocalStorage | undefined;
|
|
1349
1349
|
/**
|
|
1350
1350
|
* <p>Indicates the type of local storage that is required.</p>
|
|
1351
1351
|
* <ul>
|
|
@@ -1361,13 +1361,13 @@ export interface InstanceRequirements {
|
|
|
1361
1361
|
* <p>Default: Any local storage type</p>
|
|
1362
1362
|
* @public
|
|
1363
1363
|
*/
|
|
1364
|
-
LocalStorageTypes?: LocalStorageType[];
|
|
1364
|
+
LocalStorageTypes?: LocalStorageType[] | undefined;
|
|
1365
1365
|
/**
|
|
1366
1366
|
* <p>The minimum and maximum total local storage size for an instance type, in GB.</p>
|
|
1367
1367
|
* <p>Default: No minimum or maximum limits</p>
|
|
1368
1368
|
* @public
|
|
1369
1369
|
*/
|
|
1370
|
-
TotalLocalStorageGB?: TotalLocalStorageGBRequest;
|
|
1370
|
+
TotalLocalStorageGB?: TotalLocalStorageGBRequest | undefined;
|
|
1371
1371
|
/**
|
|
1372
1372
|
* <p>The minimum and maximum baseline bandwidth performance for an instance type, in Mbps.
|
|
1373
1373
|
* For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ebs-optimized.html">Amazon EBS–optimized instances</a>
|
|
@@ -1375,7 +1375,7 @@ export interface InstanceRequirements {
|
|
|
1375
1375
|
* <p>Default: No minimum or maximum limits</p>
|
|
1376
1376
|
* @public
|
|
1377
1377
|
*/
|
|
1378
|
-
BaselineEbsBandwidthMbps?: BaselineEbsBandwidthMbpsRequest;
|
|
1378
|
+
BaselineEbsBandwidthMbps?: BaselineEbsBandwidthMbpsRequest | undefined;
|
|
1379
1379
|
/**
|
|
1380
1380
|
* <p>Lists the accelerator types that must be on an instance type.</p>
|
|
1381
1381
|
* <ul>
|
|
@@ -1393,7 +1393,7 @@ export interface InstanceRequirements {
|
|
|
1393
1393
|
* <p>Default: Any accelerator type</p>
|
|
1394
1394
|
* @public
|
|
1395
1395
|
*/
|
|
1396
|
-
AcceleratorTypes?: AcceleratorType[];
|
|
1396
|
+
AcceleratorTypes?: AcceleratorType[] | undefined;
|
|
1397
1397
|
/**
|
|
1398
1398
|
* <p>The minimum and maximum number of accelerators (GPUs, FPGAs, or Amazon Web Services Inferentia
|
|
1399
1399
|
* chips) for an instance type.</p>
|
|
@@ -1402,7 +1402,7 @@ export interface InstanceRequirements {
|
|
|
1402
1402
|
* <p>Default: No minimum or maximum limits</p>
|
|
1403
1403
|
* @public
|
|
1404
1404
|
*/
|
|
1405
|
-
AcceleratorCount?: AcceleratorCountRequest;
|
|
1405
|
+
AcceleratorCount?: AcceleratorCountRequest | undefined;
|
|
1406
1406
|
/**
|
|
1407
1407
|
* <p>Indicates whether instance types must have accelerators by specific
|
|
1408
1408
|
* manufacturers.</p>
|
|
@@ -1424,7 +1424,7 @@ export interface InstanceRequirements {
|
|
|
1424
1424
|
* <p>Default: Any manufacturer</p>
|
|
1425
1425
|
* @public
|
|
1426
1426
|
*/
|
|
1427
|
-
AcceleratorManufacturers?: AcceleratorManufacturer[];
|
|
1427
|
+
AcceleratorManufacturers?: AcceleratorManufacturer[] | undefined;
|
|
1428
1428
|
/**
|
|
1429
1429
|
* <p>Lists the accelerators that must be on an instance type.</p>
|
|
1430
1430
|
* <ul>
|
|
@@ -1454,21 +1454,21 @@ export interface InstanceRequirements {
|
|
|
1454
1454
|
* <p>Default: Any accelerator</p>
|
|
1455
1455
|
* @public
|
|
1456
1456
|
*/
|
|
1457
|
-
AcceleratorNames?: AcceleratorName[];
|
|
1457
|
+
AcceleratorNames?: AcceleratorName[] | undefined;
|
|
1458
1458
|
/**
|
|
1459
1459
|
* <p>The minimum and maximum total memory size for the accelerators on an instance type, in
|
|
1460
1460
|
* MiB.</p>
|
|
1461
1461
|
* <p>Default: No minimum or maximum limits</p>
|
|
1462
1462
|
* @public
|
|
1463
1463
|
*/
|
|
1464
|
-
AcceleratorTotalMemoryMiB?: AcceleratorTotalMemoryMiBRequest;
|
|
1464
|
+
AcceleratorTotalMemoryMiB?: AcceleratorTotalMemoryMiBRequest | undefined;
|
|
1465
1465
|
/**
|
|
1466
1466
|
* <p>The minimum and maximum amount of network bandwidth, in gigabits per second
|
|
1467
1467
|
* (Gbps).</p>
|
|
1468
1468
|
* <p>Default: No minimum or maximum limits</p>
|
|
1469
1469
|
* @public
|
|
1470
1470
|
*/
|
|
1471
|
-
NetworkBandwidthGbps?: NetworkBandwidthGbpsRequest;
|
|
1471
|
+
NetworkBandwidthGbps?: NetworkBandwidthGbpsRequest | undefined;
|
|
1472
1472
|
/**
|
|
1473
1473
|
* <p>The instance types to apply your specified attributes against. All other instance
|
|
1474
1474
|
* types are ignored, even if they match your specified attributes.</p>
|
|
@@ -1487,7 +1487,7 @@ export interface InstanceRequirements {
|
|
|
1487
1487
|
* <p>Default: All instance types</p>
|
|
1488
1488
|
* @public
|
|
1489
1489
|
*/
|
|
1490
|
-
AllowedInstanceTypes?: string[];
|
|
1490
|
+
AllowedInstanceTypes?: string[] | undefined;
|
|
1491
1491
|
}
|
|
1492
1492
|
/**
|
|
1493
1493
|
* <p>Use this structure to let Amazon EC2 Auto Scaling do the following when the Auto Scaling group has a mixed
|
|
@@ -1519,7 +1519,7 @@ export interface LaunchTemplateOverrides {
|
|
|
1519
1519
|
* <p>You can specify up to 40 instance types per Auto Scaling group.</p>
|
|
1520
1520
|
* @public
|
|
1521
1521
|
*/
|
|
1522
|
-
InstanceType?: string;
|
|
1522
|
+
InstanceType?: string | undefined;
|
|
1523
1523
|
/**
|
|
1524
1524
|
* <p>If you provide a list of instance types to use, you can specify the number of capacity
|
|
1525
1525
|
* units provided by each instance type in terms of virtual CPUs, memory, storage,
|
|
@@ -1542,7 +1542,7 @@ export interface LaunchTemplateOverrides {
|
|
|
1542
1542
|
* </important>
|
|
1543
1543
|
* @public
|
|
1544
1544
|
*/
|
|
1545
|
-
WeightedCapacity?: string;
|
|
1545
|
+
WeightedCapacity?: string | undefined;
|
|
1546
1546
|
/**
|
|
1547
1547
|
* <p>Provides a launch template for the specified instance type or set of instance
|
|
1548
1548
|
* requirements. For example, some instance types might require a launch template with a
|
|
@@ -1554,7 +1554,7 @@ export interface LaunchTemplateOverrides {
|
|
|
1554
1554
|
* towards this limit.</p>
|
|
1555
1555
|
* @public
|
|
1556
1556
|
*/
|
|
1557
|
-
LaunchTemplateSpecification?: LaunchTemplateSpecification;
|
|
1557
|
+
LaunchTemplateSpecification?: LaunchTemplateSpecification | undefined;
|
|
1558
1558
|
/**
|
|
1559
1559
|
* <p>The instance requirements. Amazon EC2 Auto Scaling uses your specified requirements to identify
|
|
1560
1560
|
* instance types. Then, it uses your On-Demand and Spot allocation strategies to launch
|
|
@@ -1570,7 +1570,7 @@ export interface LaunchTemplateOverrides {
|
|
|
1570
1570
|
* </note>
|
|
1571
1571
|
* @public
|
|
1572
1572
|
*/
|
|
1573
|
-
InstanceRequirements?: InstanceRequirements;
|
|
1573
|
+
InstanceRequirements?: InstanceRequirements | undefined;
|
|
1574
1574
|
}
|
|
1575
1575
|
/**
|
|
1576
1576
|
* <p>Use this structure to specify the launch templates and instance types (overrides) for
|
|
@@ -1582,13 +1582,13 @@ export interface LaunchTemplate {
|
|
|
1582
1582
|
* <p>The launch template.</p>
|
|
1583
1583
|
* @public
|
|
1584
1584
|
*/
|
|
1585
|
-
LaunchTemplateSpecification?: LaunchTemplateSpecification;
|
|
1585
|
+
LaunchTemplateSpecification?: LaunchTemplateSpecification | undefined;
|
|
1586
1586
|
/**
|
|
1587
1587
|
* <p>Any properties that you specify override the same properties in the launch
|
|
1588
1588
|
* template.</p>
|
|
1589
1589
|
* @public
|
|
1590
1590
|
*/
|
|
1591
|
-
Overrides?: LaunchTemplateOverrides[];
|
|
1591
|
+
Overrides?: LaunchTemplateOverrides[] | undefined;
|
|
1592
1592
|
}
|
|
1593
1593
|
/**
|
|
1594
1594
|
* <p>Use this structure to launch multiple instance types and On-Demand Instances and Spot
|
|
@@ -1605,12 +1605,12 @@ export interface MixedInstancesPolicy {
|
|
|
1605
1605
|
* launch EC2 instances to fulfill On-Demand and Spot capacities.</p>
|
|
1606
1606
|
* @public
|
|
1607
1607
|
*/
|
|
1608
|
-
LaunchTemplate?: LaunchTemplate;
|
|
1608
|
+
LaunchTemplate?: LaunchTemplate | undefined;
|
|
1609
1609
|
/**
|
|
1610
1610
|
* <p>The instances distribution.</p>
|
|
1611
1611
|
* @public
|
|
1612
1612
|
*/
|
|
1613
|
-
InstancesDistribution?: InstancesDistribution;
|
|
1613
|
+
InstancesDistribution?: InstancesDistribution | undefined;
|
|
1614
1614
|
}
|
|
1615
1615
|
/**
|
|
1616
1616
|
* <p>Describes a tag for an Auto Scaling group.</p>
|
|
@@ -1621,13 +1621,13 @@ export interface Tag {
|
|
|
1621
1621
|
* <p>The name of the Auto Scaling group.</p>
|
|
1622
1622
|
* @public
|
|
1623
1623
|
*/
|
|
1624
|
-
ResourceId?: string;
|
|
1624
|
+
ResourceId?: string | undefined;
|
|
1625
1625
|
/**
|
|
1626
1626
|
* <p>The type of resource. The only supported value is
|
|
1627
1627
|
* <code>auto-scaling-group</code>.</p>
|
|
1628
1628
|
* @public
|
|
1629
1629
|
*/
|
|
1630
|
-
ResourceType?: string;
|
|
1630
|
+
ResourceType?: string | undefined;
|
|
1631
1631
|
/**
|
|
1632
1632
|
* <p>The tag key.</p>
|
|
1633
1633
|
* @public
|
|
@@ -1637,13 +1637,13 @@ export interface Tag {
|
|
|
1637
1637
|
* <p>The tag value.</p>
|
|
1638
1638
|
* @public
|
|
1639
1639
|
*/
|
|
1640
|
-
Value?: string;
|
|
1640
|
+
Value?: string | undefined;
|
|
1641
1641
|
/**
|
|
1642
1642
|
* <p>Determines whether the tag is added to new instances as they are launched in the
|
|
1643
1643
|
* group.</p>
|
|
1644
1644
|
* @public
|
|
1645
1645
|
*/
|
|
1646
|
-
PropagateAtLaunch?: boolean;
|
|
1646
|
+
PropagateAtLaunch?: boolean | undefined;
|
|
1647
1647
|
}
|
|
1648
1648
|
/**
|
|
1649
1649
|
* @public
|
|
@@ -1666,7 +1666,7 @@ export interface CreateAutoScalingGroupType {
|
|
|
1666
1666
|
* (<code>LaunchConfigurationName</code> or <code>InstanceId</code>).</p>
|
|
1667
1667
|
* @public
|
|
1668
1668
|
*/
|
|
1669
|
-
LaunchConfigurationName?: string;
|
|
1669
|
+
LaunchConfigurationName?: string | undefined;
|
|
1670
1670
|
/**
|
|
1671
1671
|
* <p>Information used to specify the launch template and version to use to launch
|
|
1672
1672
|
* instances. </p>
|
|
@@ -1681,14 +1681,14 @@ export interface CreateAutoScalingGroupType {
|
|
|
1681
1681
|
* </note>
|
|
1682
1682
|
* @public
|
|
1683
1683
|
*/
|
|
1684
|
-
LaunchTemplate?: LaunchTemplateSpecification;
|
|
1684
|
+
LaunchTemplate?: LaunchTemplateSpecification | undefined;
|
|
1685
1685
|
/**
|
|
1686
1686
|
* <p>The mixed instances policy. For more information, see <a href="https://docs.aws.amazon.com/autoscaling/ec2/userguide/ec2-auto-scaling-mixed-instances-groups.html">Auto Scaling
|
|
1687
1687
|
* groups with multiple instance types and purchase options</a> in the
|
|
1688
1688
|
* <i>Amazon EC2 Auto Scaling User Guide</i>.</p>
|
|
1689
1689
|
* @public
|
|
1690
1690
|
*/
|
|
1691
|
-
MixedInstancesPolicy?: MixedInstancesPolicy;
|
|
1691
|
+
MixedInstancesPolicy?: MixedInstancesPolicy | undefined;
|
|
1692
1692
|
/**
|
|
1693
1693
|
* <p>The ID of the instance used to base the launch configuration on. If specified, Amazon
|
|
1694
1694
|
* EC2 Auto Scaling uses the configuration values from the specified instance to create a
|
|
@@ -1696,7 +1696,7 @@ export interface CreateAutoScalingGroupType {
|
|
|
1696
1696
|
* <i>Amazon EC2 Auto Scaling User Guide</i>.</p>
|
|
1697
1697
|
* @public
|
|
1698
1698
|
*/
|
|
1699
|
-
InstanceId?: string;
|
|
1699
|
+
InstanceId?: string | undefined;
|
|
1700
1700
|
/**
|
|
1701
1701
|
* <p>The minimum size of the group.</p>
|
|
1702
1702
|
* @public
|
|
@@ -1722,7 +1722,7 @@ export interface CreateAutoScalingGroupType {
|
|
|
1722
1722
|
* specify a desired capacity, the default is the minimum size of the group.</p>
|
|
1723
1723
|
* @public
|
|
1724
1724
|
*/
|
|
1725
|
-
DesiredCapacity?: number;
|
|
1725
|
+
DesiredCapacity?: number | undefined;
|
|
1726
1726
|
/**
|
|
1727
1727
|
* <p>
|
|
1728
1728
|
* <i>Only needed if you use simple scaling policies.</i>
|
|
@@ -1733,7 +1733,7 @@ export interface CreateAutoScalingGroupType {
|
|
|
1733
1733
|
* <p>Default: <code>300</code> seconds</p>
|
|
1734
1734
|
* @public
|
|
1735
1735
|
*/
|
|
1736
|
-
DefaultCooldown?: number;
|
|
1736
|
+
DefaultCooldown?: number | undefined;
|
|
1737
1737
|
/**
|
|
1738
1738
|
* <p>A list of Availability Zones where instances in the Auto Scaling group can be created. Used
|
|
1739
1739
|
* for launching into the default VPC subnet in each Availability Zone when not using the
|
|
@@ -1741,13 +1741,13 @@ export interface CreateAutoScalingGroupType {
|
|
|
1741
1741
|
* an existing network interface ID is specified in a launch template.</p>
|
|
1742
1742
|
* @public
|
|
1743
1743
|
*/
|
|
1744
|
-
AvailabilityZones?: string[];
|
|
1744
|
+
AvailabilityZones?: string[] | undefined;
|
|
1745
1745
|
/**
|
|
1746
1746
|
* <p>A list of Classic Load Balancers associated with this Auto Scaling group. For Application Load Balancers, Network Load Balancers, and Gateway Load Balancers,
|
|
1747
1747
|
* specify the <code>TargetGroupARNs</code> property instead.</p>
|
|
1748
1748
|
* @public
|
|
1749
1749
|
*/
|
|
1750
|
-
LoadBalancerNames?: string[];
|
|
1750
|
+
LoadBalancerNames?: string[] | undefined;
|
|
1751
1751
|
/**
|
|
1752
1752
|
* <p>The Amazon Resource Names (ARN) of the Elastic Load Balancing target groups to associate with the Auto Scaling
|
|
1753
1753
|
* group. Instances are registered as targets with the target groups. The target groups
|
|
@@ -1757,7 +1757,7 @@ export interface CreateAutoScalingGroupType {
|
|
|
1757
1757
|
* <i>Amazon EC2 Auto Scaling User Guide</i>.</p>
|
|
1758
1758
|
* @public
|
|
1759
1759
|
*/
|
|
1760
|
-
TargetGroupARNs?: string[];
|
|
1760
|
+
TargetGroupARNs?: string[] | undefined;
|
|
1761
1761
|
/**
|
|
1762
1762
|
* <p>A comma-separated value string of one or more health check types.</p>
|
|
1763
1763
|
* <p>The valid values are <code>EC2</code>, <code>EBS</code>, <code>ELB</code>, and
|
|
@@ -1769,7 +1769,7 @@ export interface CreateAutoScalingGroupType {
|
|
|
1769
1769
|
* set.</p>
|
|
1770
1770
|
* @public
|
|
1771
1771
|
*/
|
|
1772
|
-
HealthCheckType?: string;
|
|
1772
|
+
HealthCheckType?: string | undefined;
|
|
1773
1773
|
/**
|
|
1774
1774
|
* <p>The amount of time, in seconds, that Amazon EC2 Auto Scaling waits before checking the health status
|
|
1775
1775
|
* of an EC2 instance that has come into service and marking it unhealthy due to a failed
|
|
@@ -1781,7 +1781,7 @@ export interface CreateAutoScalingGroupType {
|
|
|
1781
1781
|
* <p>Default: <code>0</code> seconds</p>
|
|
1782
1782
|
* @public
|
|
1783
1783
|
*/
|
|
1784
|
-
HealthCheckGracePeriod?: number;
|
|
1784
|
+
HealthCheckGracePeriod?: number | undefined;
|
|
1785
1785
|
/**
|
|
1786
1786
|
* <p>The name of the placement group into which to launch your instances. For more
|
|
1787
1787
|
* information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/placement-groups.html">Placement groups</a> in the
|
|
@@ -1793,7 +1793,7 @@ export interface CreateAutoScalingGroupType {
|
|
|
1793
1793
|
* </note>
|
|
1794
1794
|
* @public
|
|
1795
1795
|
*/
|
|
1796
|
-
PlacementGroup?: string;
|
|
1796
|
+
PlacementGroup?: string | undefined;
|
|
1797
1797
|
/**
|
|
1798
1798
|
* <p>A comma-separated list of subnet IDs for a virtual private cloud (VPC) where instances
|
|
1799
1799
|
* in the Auto Scaling group can be created. If you specify <code>VPCZoneIdentifier</code> with
|
|
@@ -1801,7 +1801,7 @@ export interface CreateAutoScalingGroupType {
|
|
|
1801
1801
|
* Availability Zones.</p>
|
|
1802
1802
|
* @public
|
|
1803
1803
|
*/
|
|
1804
|
-
VPCZoneIdentifier?: string;
|
|
1804
|
+
VPCZoneIdentifier?: string | undefined;
|
|
1805
1805
|
/**
|
|
1806
1806
|
* <p>A policy or a list of policies that are used to select the instance to terminate.
|
|
1807
1807
|
* These policies are executed in the order that you list them. For more information, see
|
|
@@ -1816,7 +1816,7 @@ export interface CreateAutoScalingGroupType {
|
|
|
1816
1816
|
* </p>
|
|
1817
1817
|
* @public
|
|
1818
1818
|
*/
|
|
1819
|
-
TerminationPolicies?: string[];
|
|
1819
|
+
TerminationPolicies?: string[] | undefined;
|
|
1820
1820
|
/**
|
|
1821
1821
|
* <p>Indicates whether newly launched instances are protected from termination by Amazon EC2 Auto Scaling
|
|
1822
1822
|
* when scaling in. For more information about preventing instances from terminating on
|
|
@@ -1825,7 +1825,7 @@ export interface CreateAutoScalingGroupType {
|
|
|
1825
1825
|
* <i>Amazon EC2 Auto Scaling User Guide</i>.</p>
|
|
1826
1826
|
* @public
|
|
1827
1827
|
*/
|
|
1828
|
-
NewInstancesProtectedFromScaleIn?: boolean;
|
|
1828
|
+
NewInstancesProtectedFromScaleIn?: boolean | undefined;
|
|
1829
1829
|
/**
|
|
1830
1830
|
* <p>Indicates whether Capacity Rebalancing is enabled. Otherwise, Capacity Rebalancing is
|
|
1831
1831
|
* disabled. When you turn on Capacity Rebalancing, Amazon EC2 Auto Scaling attempts to launch a Spot
|
|
@@ -1835,13 +1835,13 @@ export interface CreateAutoScalingGroupType {
|
|
|
1835
1835
|
* Rebalancing to handle Amazon EC2 Spot Interruptions</a> in the in the <i>Amazon EC2 Auto Scaling User Guide</i>.</p>
|
|
1836
1836
|
* @public
|
|
1837
1837
|
*/
|
|
1838
|
-
CapacityRebalance?: boolean;
|
|
1838
|
+
CapacityRebalance?: boolean | undefined;
|
|
1839
1839
|
/**
|
|
1840
1840
|
* <p>One or more lifecycle hooks to add to the Auto Scaling group before instances are
|
|
1841
1841
|
* launched.</p>
|
|
1842
1842
|
* @public
|
|
1843
1843
|
*/
|
|
1844
|
-
LifecycleHookSpecificationList?: LifecycleHookSpecification[];
|
|
1844
|
+
LifecycleHookSpecificationList?: LifecycleHookSpecification[] | undefined;
|
|
1845
1845
|
/**
|
|
1846
1846
|
* <p>One or more tags. You can tag your Auto Scaling group and propagate the tags to the Amazon EC2
|
|
1847
1847
|
* instances it launches. Tags are not propagated to Amazon EBS volumes. To add tags to Amazon EBS
|
|
@@ -1852,7 +1852,7 @@ export interface CreateAutoScalingGroupType {
|
|
|
1852
1852
|
* instances</a> in the <i>Amazon EC2 Auto Scaling User Guide</i>.</p>
|
|
1853
1853
|
* @public
|
|
1854
1854
|
*/
|
|
1855
|
-
Tags?: Tag[];
|
|
1855
|
+
Tags?: Tag[] | undefined;
|
|
1856
1856
|
/**
|
|
1857
1857
|
* <p>The Amazon Resource Name (ARN) of the service-linked role that the Auto Scaling group uses to
|
|
1858
1858
|
* call other Amazon Web Services service on your behalf. By default, Amazon EC2 Auto Scaling uses a service-linked role
|
|
@@ -1861,7 +1861,7 @@ export interface CreateAutoScalingGroupType {
|
|
|
1861
1861
|
* roles</a> in the <i>Amazon EC2 Auto Scaling User Guide</i>.</p>
|
|
1862
1862
|
* @public
|
|
1863
1863
|
*/
|
|
1864
|
-
ServiceLinkedRoleARN?: string;
|
|
1864
|
+
ServiceLinkedRoleARN?: string | undefined;
|
|
1865
1865
|
/**
|
|
1866
1866
|
* <p>The maximum amount of time, in seconds, that an instance can be in service. The
|
|
1867
1867
|
* default is null. If specified, the value must be either 0 or a number equal to or
|
|
@@ -1869,12 +1869,12 @@ export interface CreateAutoScalingGroupType {
|
|
|
1869
1869
|
* <i>Amazon EC2 Auto Scaling User Guide</i>.</p>
|
|
1870
1870
|
* @public
|
|
1871
1871
|
*/
|
|
1872
|
-
MaxInstanceLifetime?: number;
|
|
1872
|
+
MaxInstanceLifetime?: number | undefined;
|
|
1873
1873
|
/**
|
|
1874
1874
|
* <p>Reserved.</p>
|
|
1875
1875
|
* @public
|
|
1876
1876
|
*/
|
|
1877
|
-
Context?: string;
|
|
1877
|
+
Context?: string | undefined;
|
|
1878
1878
|
/**
|
|
1879
1879
|
* <p>The unit of measurement for the value specified for desired capacity. Amazon EC2 Auto Scaling
|
|
1880
1880
|
* supports <code>DesiredCapacityType</code> for attribute-based instance type selection
|
|
@@ -1886,7 +1886,7 @@ export interface CreateAutoScalingGroupType {
|
|
|
1886
1886
|
* </p>
|
|
1887
1887
|
* @public
|
|
1888
1888
|
*/
|
|
1889
|
-
DesiredCapacityType?: string;
|
|
1889
|
+
DesiredCapacityType?: string | undefined;
|
|
1890
1890
|
/**
|
|
1891
1891
|
* <p>The amount of time, in seconds, until a new instance is considered to have finished
|
|
1892
1892
|
* initializing and resource consumption to become stable after it enters the
|
|
@@ -1909,25 +1909,25 @@ export interface CreateAutoScalingGroupType {
|
|
|
1909
1909
|
* <p>Default: None </p>
|
|
1910
1910
|
* @public
|
|
1911
1911
|
*/
|
|
1912
|
-
DefaultInstanceWarmup?: number;
|
|
1912
|
+
DefaultInstanceWarmup?: number | undefined;
|
|
1913
1913
|
/**
|
|
1914
1914
|
* <p>The list of traffic sources to attach to this Auto Scaling group. You can use any of the
|
|
1915
1915
|
* following as traffic sources for an Auto Scaling group: Classic Load Balancer, Application Load Balancer, Gateway Load Balancer, Network Load Balancer, and
|
|
1916
1916
|
* VPC Lattice.</p>
|
|
1917
1917
|
* @public
|
|
1918
1918
|
*/
|
|
1919
|
-
TrafficSources?: TrafficSourceIdentifier[];
|
|
1919
|
+
TrafficSources?: TrafficSourceIdentifier[] | undefined;
|
|
1920
1920
|
/**
|
|
1921
1921
|
* <p>An instance maintenance policy. For more information, see <a href="https://docs.aws.amazon.com/autoscaling/ec2/userguide/ec2-auto-scaling-instance-maintenance-policy.html">Set instance maintenance policy</a> in the
|
|
1922
1922
|
* <i>Amazon EC2 Auto Scaling User Guide</i>.</p>
|
|
1923
1923
|
* @public
|
|
1924
1924
|
*/
|
|
1925
|
-
InstanceMaintenancePolicy?: InstanceMaintenancePolicy;
|
|
1925
|
+
InstanceMaintenancePolicy?: InstanceMaintenancePolicy | undefined;
|
|
1926
1926
|
/**
|
|
1927
1927
|
* <p>The instance capacity distribution across Availability Zones.</p>
|
|
1928
1928
|
* @public
|
|
1929
1929
|
*/
|
|
1930
|
-
AvailabilityZoneDistribution?: AvailabilityZoneDistribution;
|
|
1930
|
+
AvailabilityZoneDistribution?: AvailabilityZoneDistribution | undefined;
|
|
1931
1931
|
}
|
|
1932
1932
|
/**
|
|
1933
1933
|
* <p>Describes information used to set up an Amazon EBS volume specified in a block device
|
|
@@ -1940,7 +1940,7 @@ export interface Ebs {
|
|
|
1940
1940
|
* <p>You must specify either a <code>VolumeSize</code> or a <code>SnapshotId</code>.</p>
|
|
1941
1941
|
* @public
|
|
1942
1942
|
*/
|
|
1943
|
-
SnapshotId?: string;
|
|
1943
|
+
SnapshotId?: string | undefined;
|
|
1944
1944
|
/**
|
|
1945
1945
|
* <p>The volume size, in GiBs. The following are the supported volumes sizes for each
|
|
1946
1946
|
* volume type: </p>
|
|
@@ -1967,7 +1967,7 @@ export interface Ebs {
|
|
|
1967
1967
|
* be equal or greater than the size of the snapshot.</p>
|
|
1968
1968
|
* @public
|
|
1969
1969
|
*/
|
|
1970
|
-
VolumeSize?: number;
|
|
1970
|
+
VolumeSize?: number | undefined;
|
|
1971
1971
|
/**
|
|
1972
1972
|
* <p>The volume type. For more information, see <a href="https://docs.aws.amazon.com/ebs/latest/userguide/ebs-volume-types.html">Amazon EBS volume types</a> in the
|
|
1973
1973
|
* <i>Amazon EBS User Guide</i>.</p>
|
|
@@ -1976,13 +1976,13 @@ export interface Ebs {
|
|
|
1976
1976
|
* </p>
|
|
1977
1977
|
* @public
|
|
1978
1978
|
*/
|
|
1979
|
-
VolumeType?: string;
|
|
1979
|
+
VolumeType?: string | undefined;
|
|
1980
1980
|
/**
|
|
1981
1981
|
* <p>Indicates whether the volume is deleted on instance termination. For Amazon EC2 Auto Scaling, the
|
|
1982
1982
|
* default value is <code>true</code>.</p>
|
|
1983
1983
|
* @public
|
|
1984
1984
|
*/
|
|
1985
|
-
DeleteOnTermination?: boolean;
|
|
1985
|
+
DeleteOnTermination?: boolean | undefined;
|
|
1986
1986
|
/**
|
|
1987
1987
|
* <p>The number of input/output (I/O) operations per second (IOPS) to provision for the
|
|
1988
1988
|
* volume. For <code>gp3</code> and <code>io1</code> volumes, this represents the number of
|
|
@@ -2009,7 +2009,7 @@ export interface Ebs {
|
|
|
2009
2009
|
* volumes.) </p>
|
|
2010
2010
|
* @public
|
|
2011
2011
|
*/
|
|
2012
|
-
Iops?: number;
|
|
2012
|
+
Iops?: number | undefined;
|
|
2013
2013
|
/**
|
|
2014
2014
|
* <p>Specifies whether the volume should be encrypted. Encrypted EBS volumes can only be
|
|
2015
2015
|
* attached to instances that support Amazon EBS encryption. For more information, see <a href="https://docs.aws.amazon.com/ebs/latest/userguide/ebs-encryption-requirements.html">Requirements for Amazon EBS encryption</a> in the <i>Amazon EBS User Guide</i>. If your AMI uses encrypted volumes, you
|
|
@@ -2026,12 +2026,12 @@ export interface Ebs {
|
|
|
2026
2026
|
* </note>
|
|
2027
2027
|
* @public
|
|
2028
2028
|
*/
|
|
2029
|
-
Encrypted?: boolean;
|
|
2029
|
+
Encrypted?: boolean | undefined;
|
|
2030
2030
|
/**
|
|
2031
2031
|
* <p>The throughput (MiBps) to provision for a <code>gp3</code> volume.</p>
|
|
2032
2032
|
* @public
|
|
2033
2033
|
*/
|
|
2034
|
-
Throughput?: number;
|
|
2034
|
+
Throughput?: number | undefined;
|
|
2035
2035
|
}
|
|
2036
2036
|
/**
|
|
2037
2037
|
* <p>Describes a block device mapping.</p>
|
|
@@ -2045,7 +2045,7 @@ export interface BlockDeviceMapping {
|
|
|
2045
2045
|
* <code>ephemeral0</code>.</p>
|
|
2046
2046
|
* @public
|
|
2047
2047
|
*/
|
|
2048
|
-
VirtualName?: string;
|
|
2048
|
+
VirtualName?: string | undefined;
|
|
2049
2049
|
/**
|
|
2050
2050
|
* <p>The device name assigned to the volume (for example, <code>/dev/sdh</code> or
|
|
2051
2051
|
* <code>xvdh</code>). For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/device_naming.html">Device naming on Linux
|
|
@@ -2062,7 +2062,7 @@ export interface BlockDeviceMapping {
|
|
|
2062
2062
|
* <p>Information to attach an EBS volume to an instance at launch.</p>
|
|
2063
2063
|
* @public
|
|
2064
2064
|
*/
|
|
2065
|
-
Ebs?: Ebs;
|
|
2065
|
+
Ebs?: Ebs | undefined;
|
|
2066
2066
|
/**
|
|
2067
2067
|
* <p>Setting this value to <code>true</code> prevents a volume that is included in the
|
|
2068
2068
|
* block device mapping of the AMI from being mapped to the specified device name at
|
|
@@ -2071,7 +2071,7 @@ export interface BlockDeviceMapping {
|
|
|
2071
2071
|
* fail the EC2 health check. In that case, Amazon EC2 Auto Scaling launches replacement instances.</p>
|
|
2072
2072
|
* @public
|
|
2073
2073
|
*/
|
|
2074
|
-
NoDevice?: boolean;
|
|
2074
|
+
NoDevice?: boolean | undefined;
|
|
2075
2075
|
}
|
|
2076
2076
|
/**
|
|
2077
2077
|
* <p>Describes whether detailed monitoring is enabled for the Auto Scaling instances.</p>
|
|
@@ -2083,7 +2083,7 @@ export interface InstanceMonitoring {
|
|
|
2083
2083
|
* enabled.</p>
|
|
2084
2084
|
* @public
|
|
2085
2085
|
*/
|
|
2086
|
-
Enabled?: boolean;
|
|
2086
|
+
Enabled?: boolean | undefined;
|
|
2087
2087
|
}
|
|
2088
2088
|
/**
|
|
2089
2089
|
* @public
|
|
@@ -2129,14 +2129,14 @@ export interface InstanceMetadataOptions {
|
|
|
2129
2129
|
* available.</p>
|
|
2130
2130
|
* @public
|
|
2131
2131
|
*/
|
|
2132
|
-
HttpTokens?: InstanceMetadataHttpTokensState;
|
|
2132
|
+
HttpTokens?: InstanceMetadataHttpTokensState | undefined;
|
|
2133
2133
|
/**
|
|
2134
2134
|
* <p>The desired HTTP PUT response hop limit for instance metadata requests. The larger the
|
|
2135
2135
|
* number, the further instance metadata requests can travel.</p>
|
|
2136
2136
|
* <p>Default: 1</p>
|
|
2137
2137
|
* @public
|
|
2138
2138
|
*/
|
|
2139
|
-
HttpPutResponseHopLimit?: number;
|
|
2139
|
+
HttpPutResponseHopLimit?: number | undefined;
|
|
2140
2140
|
/**
|
|
2141
2141
|
* <p>This parameter enables or disables the HTTP metadata endpoint on your instances. If
|
|
2142
2142
|
* the parameter is not specified, the default state is <code>enabled</code>.</p>
|
|
@@ -2146,7 +2146,7 @@ export interface InstanceMetadataOptions {
|
|
|
2146
2146
|
* </note>
|
|
2147
2147
|
* @public
|
|
2148
2148
|
*/
|
|
2149
|
-
HttpEndpoint?: InstanceMetadataEndpointState;
|
|
2149
|
+
HttpEndpoint?: InstanceMetadataEndpointState | undefined;
|
|
2150
2150
|
}
|
|
2151
2151
|
/**
|
|
2152
2152
|
* @public
|
|
@@ -2166,13 +2166,13 @@ export interface CreateLaunchConfigurationType {
|
|
|
2166
2166
|
* required.</p>
|
|
2167
2167
|
* @public
|
|
2168
2168
|
*/
|
|
2169
|
-
ImageId?: string;
|
|
2169
|
+
ImageId?: string | undefined;
|
|
2170
2170
|
/**
|
|
2171
2171
|
* <p>The name of the key pair. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-key-pairs.html">Amazon EC2 key pairs and Amazon EC2
|
|
2172
2172
|
* instances</a> in the <i>Amazon EC2 User Guide for Linux Instances</i>.</p>
|
|
2173
2173
|
* @public
|
|
2174
2174
|
*/
|
|
2175
|
-
KeyName?: string;
|
|
2175
|
+
KeyName?: string | undefined;
|
|
2176
2176
|
/**
|
|
2177
2177
|
* <p>A list that contains the security group IDs to assign to the instances in the Auto Scaling
|
|
2178
2178
|
* group. For more information, see <a href="https://docs.aws.amazon.com/vpc/latest/userguide/vpc-security-groups.html">Control traffic to your Amazon Web Services
|
|
@@ -2180,17 +2180,17 @@ export interface CreateLaunchConfigurationType {
|
|
|
2180
2180
|
* Cloud User Guide</i>.</p>
|
|
2181
2181
|
* @public
|
|
2182
2182
|
*/
|
|
2183
|
-
SecurityGroups?: string[];
|
|
2183
|
+
SecurityGroups?: string[] | undefined;
|
|
2184
2184
|
/**
|
|
2185
2185
|
* <p>Available for backward compatibility.</p>
|
|
2186
2186
|
* @public
|
|
2187
2187
|
*/
|
|
2188
|
-
ClassicLinkVPCId?: string;
|
|
2188
|
+
ClassicLinkVPCId?: string | undefined;
|
|
2189
2189
|
/**
|
|
2190
2190
|
* <p>Available for backward compatibility.</p>
|
|
2191
2191
|
* @public
|
|
2192
2192
|
*/
|
|
2193
|
-
ClassicLinkVPCSecurityGroups?: string[];
|
|
2193
|
+
ClassicLinkVPCSecurityGroups?: string[] | undefined;
|
|
2194
2194
|
/**
|
|
2195
2195
|
* <p>The user data to make available to the launched EC2 instances. For more information,
|
|
2196
2196
|
* see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-instance-metadata.html">Instance metadata and user data</a> (Linux) and <a href="https://docs.aws.amazon.com/AWSEC2/latest/WindowsGuide/ec2-instance-metadata.html">Instance metadata and
|
|
@@ -2199,7 +2199,7 @@ export interface CreateLaunchConfigurationType {
|
|
|
2199
2199
|
* base64-encoded text. User data is limited to 16 KB.</p>
|
|
2200
2200
|
* @public
|
|
2201
2201
|
*/
|
|
2202
|
-
UserData?: string;
|
|
2202
|
+
UserData?: string | undefined;
|
|
2203
2203
|
/**
|
|
2204
2204
|
* <p>The ID of the instance to use to create the launch configuration. The new launch
|
|
2205
2205
|
* configuration derives attributes from the instance, except for the block device
|
|
@@ -2210,7 +2210,7 @@ export interface CreateLaunchConfigurationType {
|
|
|
2210
2210
|
* configuration</a> in the <i>Amazon EC2 Auto Scaling User Guide</i>.</p>
|
|
2211
2211
|
* @public
|
|
2212
2212
|
*/
|
|
2213
|
-
InstanceId?: string;
|
|
2213
|
+
InstanceId?: string | undefined;
|
|
2214
2214
|
/**
|
|
2215
2215
|
* <p>Specifies the instance type of the EC2 instance. For information about available
|
|
2216
2216
|
* instance types, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instance-types.html#AvailableInstanceTypes">Available
|
|
@@ -2219,7 +2219,7 @@ export interface CreateLaunchConfigurationType {
|
|
|
2219
2219
|
* required.</p>
|
|
2220
2220
|
* @public
|
|
2221
2221
|
*/
|
|
2222
|
-
InstanceType?: string;
|
|
2222
|
+
InstanceType?: string | undefined;
|
|
2223
2223
|
/**
|
|
2224
2224
|
* <p>The ID of the kernel associated with the AMI.</p>
|
|
2225
2225
|
* <note>
|
|
@@ -2229,7 +2229,7 @@ export interface CreateLaunchConfigurationType {
|
|
|
2229
2229
|
* </note>
|
|
2230
2230
|
* @public
|
|
2231
2231
|
*/
|
|
2232
|
-
KernelId?: string;
|
|
2232
|
+
KernelId?: string | undefined;
|
|
2233
2233
|
/**
|
|
2234
2234
|
* <p>The ID of the RAM disk to select.</p>
|
|
2235
2235
|
* <note>
|
|
@@ -2239,7 +2239,7 @@ export interface CreateLaunchConfigurationType {
|
|
|
2239
2239
|
* </note>
|
|
2240
2240
|
* @public
|
|
2241
2241
|
*/
|
|
2242
|
-
RamdiskId?: string;
|
|
2242
|
+
RamdiskId?: string | undefined;
|
|
2243
2243
|
/**
|
|
2244
2244
|
* <p>The block device mapping entries that define the block devices to attach to the
|
|
2245
2245
|
* instances at launch. By default, the block devices specified in the block device mapping
|
|
@@ -2247,7 +2247,7 @@ export interface CreateLaunchConfigurationType {
|
|
|
2247
2247
|
* mappings</a> in the <i>Amazon EC2 User Guide for Linux Instances</i>.</p>
|
|
2248
2248
|
* @public
|
|
2249
2249
|
*/
|
|
2250
|
-
BlockDeviceMappings?: BlockDeviceMapping[];
|
|
2250
|
+
BlockDeviceMappings?: BlockDeviceMapping[] | undefined;
|
|
2251
2251
|
/**
|
|
2252
2252
|
* <p>Controls whether instances in this group are launched with detailed
|
|
2253
2253
|
* (<code>true</code>) or basic (<code>false</code>) monitoring.</p>
|
|
@@ -2261,7 +2261,7 @@ export interface CreateLaunchConfigurationType {
|
|
|
2261
2261
|
* </important>
|
|
2262
2262
|
* @public
|
|
2263
2263
|
*/
|
|
2264
|
-
InstanceMonitoring?: InstanceMonitoring;
|
|
2264
|
+
InstanceMonitoring?: InstanceMonitoring | undefined;
|
|
2265
2265
|
/**
|
|
2266
2266
|
* <p>The maximum hourly price to be paid for any Spot Instance launched to fulfill the
|
|
2267
2267
|
* request. Spot Instances are launched when the price you specify exceeds the current Spot
|
|
@@ -2276,7 +2276,7 @@ export interface CreateLaunchConfigurationType {
|
|
|
2276
2276
|
* </note>
|
|
2277
2277
|
* @public
|
|
2278
2278
|
*/
|
|
2279
|
-
SpotPrice?: string;
|
|
2279
|
+
SpotPrice?: string | undefined;
|
|
2280
2280
|
/**
|
|
2281
2281
|
* <p>The name or the Amazon Resource Name (ARN) of the instance profile associated with the
|
|
2282
2282
|
* IAM role for the instance. The instance profile contains the IAM role. For more
|
|
@@ -2284,7 +2284,7 @@ export interface CreateLaunchConfigurationType {
|
|
|
2284
2284
|
* on Amazon EC2 instances</a> in the <i>Amazon EC2 Auto Scaling User Guide</i>.</p>
|
|
2285
2285
|
* @public
|
|
2286
2286
|
*/
|
|
2287
|
-
IamInstanceProfile?: string;
|
|
2287
|
+
IamInstanceProfile?: string | undefined;
|
|
2288
2288
|
/**
|
|
2289
2289
|
* <p>Specifies whether the launch configuration is optimized for EBS I/O
|
|
2290
2290
|
* (<code>true</code>) or not (<code>false</code>). The optimization provides dedicated
|
|
@@ -2296,7 +2296,7 @@ export interface CreateLaunchConfigurationType {
|
|
|
2296
2296
|
* <p>The default value is <code>false</code>.</p>
|
|
2297
2297
|
* @public
|
|
2298
2298
|
*/
|
|
2299
|
-
EbsOptimized?: boolean;
|
|
2299
|
+
EbsOptimized?: boolean | undefined;
|
|
2300
2300
|
/**
|
|
2301
2301
|
* <p>Specifies whether to assign a public IPv4 address to the group's instances. If the
|
|
2302
2302
|
* instance is launched into a default subnet, the default is to assign a public IPv4
|
|
@@ -2312,7 +2312,7 @@ export interface CreateLaunchConfigurationType {
|
|
|
2312
2312
|
* <code>VPCZoneIdentifier</code> when you create your group.</p>
|
|
2313
2313
|
* @public
|
|
2314
2314
|
*/
|
|
2315
|
-
AssociatePublicIpAddress?: boolean;
|
|
2315
|
+
AssociatePublicIpAddress?: boolean | undefined;
|
|
2316
2316
|
/**
|
|
2317
2317
|
* <p>The tenancy of the instance, either <code>default</code> or <code>dedicated</code>. An
|
|
2318
2318
|
* instance with <code>dedicated</code> tenancy runs on isolated, single-tenant hardware
|
|
@@ -2325,13 +2325,13 @@ export interface CreateLaunchConfigurationType {
|
|
|
2325
2325
|
* </p>
|
|
2326
2326
|
* @public
|
|
2327
2327
|
*/
|
|
2328
|
-
PlacementTenancy?: string;
|
|
2328
|
+
PlacementTenancy?: string | undefined;
|
|
2329
2329
|
/**
|
|
2330
2330
|
* <p>The metadata options for the instances. For more information, see <a href="https://docs.aws.amazon.com/autoscaling/ec2/userguide/create-launch-config.html#launch-configurations-imds">Configure the instance metadata options</a> in the
|
|
2331
2331
|
* <i>Amazon EC2 Auto Scaling User Guide</i>.</p>
|
|
2332
2332
|
* @public
|
|
2333
2333
|
*/
|
|
2334
|
-
MetadataOptions?: InstanceMetadataOptions;
|
|
2334
|
+
MetadataOptions?: InstanceMetadataOptions | undefined;
|
|
2335
2335
|
}
|
|
2336
2336
|
/**
|
|
2337
2337
|
* @public
|
|
@@ -2370,7 +2370,7 @@ export interface DeleteAutoScalingGroupType {
|
|
|
2370
2370
|
* outstanding lifecycle actions associated with the group.</p>
|
|
2371
2371
|
* @public
|
|
2372
2372
|
*/
|
|
2373
|
-
ForceDelete?: boolean;
|
|
2373
|
+
ForceDelete?: boolean | undefined;
|
|
2374
2374
|
}
|
|
2375
2375
|
/**
|
|
2376
2376
|
* <p>The operation can't be performed because there are scaling activities in
|
|
@@ -2438,7 +2438,7 @@ export interface DeletePolicyType {
|
|
|
2438
2438
|
* <p>The name of the Auto Scaling group.</p>
|
|
2439
2439
|
* @public
|
|
2440
2440
|
*/
|
|
2441
|
-
AutoScalingGroupName?: string;
|
|
2441
|
+
AutoScalingGroupName?: string | undefined;
|
|
2442
2442
|
/**
|
|
2443
2443
|
* <p>The name or Amazon Resource Name (ARN) of the policy.</p>
|
|
2444
2444
|
* @public
|
|
@@ -2491,7 +2491,7 @@ export interface DeleteWarmPoolType {
|
|
|
2491
2491
|
* instances.</p>
|
|
2492
2492
|
* @public
|
|
2493
2493
|
*/
|
|
2494
|
-
ForceDelete?: boolean;
|
|
2494
|
+
ForceDelete?: boolean | undefined;
|
|
2495
2495
|
}
|
|
2496
2496
|
/**
|
|
2497
2497
|
* @public
|
|
@@ -2502,23 +2502,23 @@ export interface DescribeAccountLimitsAnswer {
|
|
|
2502
2502
|
* Region.</p>
|
|
2503
2503
|
* @public
|
|
2504
2504
|
*/
|
|
2505
|
-
MaxNumberOfAutoScalingGroups?: number;
|
|
2505
|
+
MaxNumberOfAutoScalingGroups?: number | undefined;
|
|
2506
2506
|
/**
|
|
2507
2507
|
* <p>The maximum number of launch configurations allowed for your account. The default is
|
|
2508
2508
|
* 200 launch configurations per Region.</p>
|
|
2509
2509
|
* @public
|
|
2510
2510
|
*/
|
|
2511
|
-
MaxNumberOfLaunchConfigurations?: number;
|
|
2511
|
+
MaxNumberOfLaunchConfigurations?: number | undefined;
|
|
2512
2512
|
/**
|
|
2513
2513
|
* <p>The current number of groups for your account.</p>
|
|
2514
2514
|
* @public
|
|
2515
2515
|
*/
|
|
2516
|
-
NumberOfAutoScalingGroups?: number;
|
|
2516
|
+
NumberOfAutoScalingGroups?: number | undefined;
|
|
2517
2517
|
/**
|
|
2518
2518
|
* <p>The current number of launch configurations for your account.</p>
|
|
2519
2519
|
* @public
|
|
2520
2520
|
*/
|
|
2521
|
-
NumberOfLaunchConfigurations?: number;
|
|
2521
|
+
NumberOfLaunchConfigurations?: number | undefined;
|
|
2522
2522
|
}
|
|
2523
2523
|
/**
|
|
2524
2524
|
* @public
|
|
@@ -2528,7 +2528,7 @@ export interface DescribeAdjustmentTypesAnswer {
|
|
|
2528
2528
|
* <p>The policy adjustment types.</p>
|
|
2529
2529
|
* @public
|
|
2530
2530
|
*/
|
|
2531
|
-
AdjustmentTypes?: AdjustmentType[];
|
|
2531
|
+
AdjustmentTypes?: AdjustmentType[] | undefined;
|
|
2532
2532
|
}
|
|
2533
2533
|
/**
|
|
2534
2534
|
* <p>Describes a filter that is used to return a more specific list of results from a
|
|
@@ -2599,7 +2599,7 @@ export interface Filter {
|
|
|
2599
2599
|
* </ul>
|
|
2600
2600
|
* @public
|
|
2601
2601
|
*/
|
|
2602
|
-
Name?: string;
|
|
2602
|
+
Name?: string | undefined;
|
|
2603
2603
|
/**
|
|
2604
2604
|
* <p>One or more filter values. Filter values are case-sensitive. </p>
|
|
2605
2605
|
* <p>If you specify multiple values for a filter, the values are automatically logically
|
|
@@ -2609,7 +2609,7 @@ export interface Filter {
|
|
|
2609
2609
|
* "environment=production" or "environment=development".</p>
|
|
2610
2610
|
* @public
|
|
2611
2611
|
*/
|
|
2612
|
-
Values?: string[];
|
|
2612
|
+
Values?: string[] | undefined;
|
|
2613
2613
|
}
|
|
2614
2614
|
/**
|
|
2615
2615
|
* @public
|
|
@@ -2621,25 +2621,25 @@ export interface AutoScalingGroupNamesType {
|
|
|
2621
2621
|
* <p>If you omit this property, all Auto Scaling groups are described.</p>
|
|
2622
2622
|
* @public
|
|
2623
2623
|
*/
|
|
2624
|
-
AutoScalingGroupNames?: string[];
|
|
2624
|
+
AutoScalingGroupNames?: string[] | undefined;
|
|
2625
2625
|
/**
|
|
2626
2626
|
* <p>The token for the next set of items to return. (You received this token from a
|
|
2627
2627
|
* previous call.)</p>
|
|
2628
2628
|
* @public
|
|
2629
2629
|
*/
|
|
2630
|
-
NextToken?: string;
|
|
2630
|
+
NextToken?: string | undefined;
|
|
2631
2631
|
/**
|
|
2632
2632
|
* <p>The maximum number of items to return with this call. The default value is
|
|
2633
2633
|
* <code>50</code> and the maximum value is <code>100</code>.</p>
|
|
2634
2634
|
* @public
|
|
2635
2635
|
*/
|
|
2636
|
-
MaxRecords?: number;
|
|
2636
|
+
MaxRecords?: number | undefined;
|
|
2637
2637
|
/**
|
|
2638
2638
|
* <p>One or more filters to limit the results based on specific tags.
|
|
2639
2639
|
* </p>
|
|
2640
2640
|
* @public
|
|
2641
2641
|
*/
|
|
2642
|
-
Filters?: Filter[];
|
|
2642
|
+
Filters?: Filter[] | undefined;
|
|
2643
2643
|
}
|
|
2644
2644
|
/**
|
|
2645
2645
|
* <p>Describes an enabled Auto Scaling group metric.</p>
|
|
@@ -2754,12 +2754,12 @@ export interface EnabledMetric {
|
|
|
2754
2754
|
* Amazon EC2 Auto Scaling</a> in the <i>Amazon EC2 Auto Scaling User Guide</i>.</p>
|
|
2755
2755
|
* @public
|
|
2756
2756
|
*/
|
|
2757
|
-
Metric?: string;
|
|
2757
|
+
Metric?: string | undefined;
|
|
2758
2758
|
/**
|
|
2759
2759
|
* <p>The granularity of the metric. The only valid value is <code>1Minute</code>.</p>
|
|
2760
2760
|
* @public
|
|
2761
2761
|
*/
|
|
2762
|
-
Granularity?: string;
|
|
2762
|
+
Granularity?: string | undefined;
|
|
2763
2763
|
}
|
|
2764
2764
|
/**
|
|
2765
2765
|
* @public
|
|
@@ -2808,7 +2808,7 @@ export interface Instance {
|
|
|
2808
2808
|
* <p>The instance type of the EC2 instance.</p>
|
|
2809
2809
|
* @public
|
|
2810
2810
|
*/
|
|
2811
|
-
InstanceType?: string;
|
|
2811
|
+
InstanceType?: string | undefined;
|
|
2812
2812
|
/**
|
|
2813
2813
|
* <p>The Availability Zone in which the instance is running.</p>
|
|
2814
2814
|
* @public
|
|
@@ -2832,12 +2832,12 @@ export interface Instance {
|
|
|
2832
2832
|
* <p>The launch configuration associated with the instance.</p>
|
|
2833
2833
|
* @public
|
|
2834
2834
|
*/
|
|
2835
|
-
LaunchConfigurationName?: string;
|
|
2835
|
+
LaunchConfigurationName?: string | undefined;
|
|
2836
2836
|
/**
|
|
2837
2837
|
* <p>The launch template for the instance.</p>
|
|
2838
2838
|
* @public
|
|
2839
2839
|
*/
|
|
2840
|
-
LaunchTemplate?: LaunchTemplateSpecification;
|
|
2840
|
+
LaunchTemplate?: LaunchTemplateSpecification | undefined;
|
|
2841
2841
|
/**
|
|
2842
2842
|
* <p>Indicates whether the instance is protected from termination by Amazon EC2 Auto Scaling when scaling
|
|
2843
2843
|
* in.</p>
|
|
@@ -2850,7 +2850,7 @@ export interface Instance {
|
|
|
2850
2850
|
* <p>Valid Range: Minimum value of 1. Maximum value of 999.</p>
|
|
2851
2851
|
* @public
|
|
2852
2852
|
*/
|
|
2853
|
-
WeightedCapacity?: string;
|
|
2853
|
+
WeightedCapacity?: string | undefined;
|
|
2854
2854
|
}
|
|
2855
2855
|
/**
|
|
2856
2856
|
* <p>Describes an auto scaling process that has been suspended.</p>
|
|
@@ -2863,12 +2863,12 @@ export interface SuspendedProcess {
|
|
|
2863
2863
|
* <p>The name of the suspended process.</p>
|
|
2864
2864
|
* @public
|
|
2865
2865
|
*/
|
|
2866
|
-
ProcessName?: string;
|
|
2866
|
+
ProcessName?: string | undefined;
|
|
2867
2867
|
/**
|
|
2868
2868
|
* <p>The reason that the process was suspended.</p>
|
|
2869
2869
|
* @public
|
|
2870
2870
|
*/
|
|
2871
|
-
SuspensionReason?: string;
|
|
2871
|
+
SuspensionReason?: string | undefined;
|
|
2872
2872
|
}
|
|
2873
2873
|
/**
|
|
2874
2874
|
* <p>Describes a tag for an Auto Scaling group.</p>
|
|
@@ -2879,29 +2879,29 @@ export interface TagDescription {
|
|
|
2879
2879
|
* <p>The name of the group.</p>
|
|
2880
2880
|
* @public
|
|
2881
2881
|
*/
|
|
2882
|
-
ResourceId?: string;
|
|
2882
|
+
ResourceId?: string | undefined;
|
|
2883
2883
|
/**
|
|
2884
2884
|
* <p>The type of resource. The only supported value is
|
|
2885
2885
|
* <code>auto-scaling-group</code>.</p>
|
|
2886
2886
|
* @public
|
|
2887
2887
|
*/
|
|
2888
|
-
ResourceType?: string;
|
|
2888
|
+
ResourceType?: string | undefined;
|
|
2889
2889
|
/**
|
|
2890
2890
|
* <p>The tag key.</p>
|
|
2891
2891
|
* @public
|
|
2892
2892
|
*/
|
|
2893
|
-
Key?: string;
|
|
2893
|
+
Key?: string | undefined;
|
|
2894
2894
|
/**
|
|
2895
2895
|
* <p>The tag value.</p>
|
|
2896
2896
|
* @public
|
|
2897
2897
|
*/
|
|
2898
|
-
Value?: string;
|
|
2898
|
+
Value?: string | undefined;
|
|
2899
2899
|
/**
|
|
2900
2900
|
* <p>Determines whether the tag is added to new instances as they are launched in the
|
|
2901
2901
|
* group.</p>
|
|
2902
2902
|
* @public
|
|
2903
2903
|
*/
|
|
2904
|
-
PropagateAtLaunch?: boolean;
|
|
2904
|
+
PropagateAtLaunch?: boolean | undefined;
|
|
2905
2905
|
}
|
|
2906
2906
|
/**
|
|
2907
2907
|
* <p>Describes an instance reuse policy for a warm pool. </p>
|
|
@@ -2915,7 +2915,7 @@ export interface InstanceReusePolicy {
|
|
|
2915
2915
|
* scale in. </p>
|
|
2916
2916
|
* @public
|
|
2917
2917
|
*/
|
|
2918
|
-
ReuseOnScaleIn?: boolean;
|
|
2918
|
+
ReuseOnScaleIn?: boolean | undefined;
|
|
2919
2919
|
}
|
|
2920
2920
|
/**
|
|
2921
2921
|
* @public
|
|
@@ -2951,27 +2951,27 @@ export interface WarmPoolConfiguration {
|
|
|
2951
2951
|
* state except <code>Terminated</code> for the Auto Scaling group.</p>
|
|
2952
2952
|
* @public
|
|
2953
2953
|
*/
|
|
2954
|
-
MaxGroupPreparedCapacity?: number;
|
|
2954
|
+
MaxGroupPreparedCapacity?: number | undefined;
|
|
2955
2955
|
/**
|
|
2956
2956
|
* <p>The minimum number of instances to maintain in the warm pool.</p>
|
|
2957
2957
|
* @public
|
|
2958
2958
|
*/
|
|
2959
|
-
MinSize?: number;
|
|
2959
|
+
MinSize?: number | undefined;
|
|
2960
2960
|
/**
|
|
2961
2961
|
* <p>The instance state to transition to after the lifecycle actions are complete.</p>
|
|
2962
2962
|
* @public
|
|
2963
2963
|
*/
|
|
2964
|
-
PoolState?: WarmPoolState;
|
|
2964
|
+
PoolState?: WarmPoolState | undefined;
|
|
2965
2965
|
/**
|
|
2966
2966
|
* <p>The status of a warm pool that is marked for deletion.</p>
|
|
2967
2967
|
* @public
|
|
2968
2968
|
*/
|
|
2969
|
-
Status?: WarmPoolStatus;
|
|
2969
|
+
Status?: WarmPoolStatus | undefined;
|
|
2970
2970
|
/**
|
|
2971
2971
|
* <p>The instance reuse policy.</p>
|
|
2972
2972
|
* @public
|
|
2973
2973
|
*/
|
|
2974
|
-
InstanceReusePolicy?: InstanceReusePolicy;
|
|
2974
|
+
InstanceReusePolicy?: InstanceReusePolicy | undefined;
|
|
2975
2975
|
}
|
|
2976
2976
|
/**
|
|
2977
2977
|
* <p>Describes an Auto Scaling group.</p>
|
|
@@ -2987,22 +2987,22 @@ export interface AutoScalingGroup {
|
|
|
2987
2987
|
* <p>The Amazon Resource Name (ARN) of the Auto Scaling group.</p>
|
|
2988
2988
|
* @public
|
|
2989
2989
|
*/
|
|
2990
|
-
AutoScalingGroupARN?: string;
|
|
2990
|
+
AutoScalingGroupARN?: string | undefined;
|
|
2991
2991
|
/**
|
|
2992
2992
|
* <p>The name of the associated launch configuration.</p>
|
|
2993
2993
|
* @public
|
|
2994
2994
|
*/
|
|
2995
|
-
LaunchConfigurationName?: string;
|
|
2995
|
+
LaunchConfigurationName?: string | undefined;
|
|
2996
2996
|
/**
|
|
2997
2997
|
* <p>The launch template for the group.</p>
|
|
2998
2998
|
* @public
|
|
2999
2999
|
*/
|
|
3000
|
-
LaunchTemplate?: LaunchTemplateSpecification;
|
|
3000
|
+
LaunchTemplate?: LaunchTemplateSpecification | undefined;
|
|
3001
3001
|
/**
|
|
3002
3002
|
* <p>The mixed instances policy for the group.</p>
|
|
3003
3003
|
* @public
|
|
3004
3004
|
*/
|
|
3005
|
-
MixedInstancesPolicy?: MixedInstancesPolicy;
|
|
3005
|
+
MixedInstancesPolicy?: MixedInstancesPolicy | undefined;
|
|
3006
3006
|
/**
|
|
3007
3007
|
* <p>The minimum size of the group.</p>
|
|
3008
3008
|
* @public
|
|
@@ -3022,7 +3022,7 @@ export interface AutoScalingGroup {
|
|
|
3022
3022
|
* <p>The predicted capacity of the group when it has a predictive scaling policy.</p>
|
|
3023
3023
|
* @public
|
|
3024
3024
|
*/
|
|
3025
|
-
PredictedCapacity?: number;
|
|
3025
|
+
PredictedCapacity?: number | undefined;
|
|
3026
3026
|
/**
|
|
3027
3027
|
* <p>The duration of the default cooldown period, in seconds.</p>
|
|
3028
3028
|
* @public
|
|
@@ -3037,12 +3037,12 @@ export interface AutoScalingGroup {
|
|
|
3037
3037
|
* <p>One or more load balancers associated with the group.</p>
|
|
3038
3038
|
* @public
|
|
3039
3039
|
*/
|
|
3040
|
-
LoadBalancerNames?: string[];
|
|
3040
|
+
LoadBalancerNames?: string[] | undefined;
|
|
3041
3041
|
/**
|
|
3042
3042
|
* <p>The Amazon Resource Names (ARN) of the target groups for your load balancer.</p>
|
|
3043
3043
|
* @public
|
|
3044
3044
|
*/
|
|
3045
|
-
TargetGroupARNs?: string[];
|
|
3045
|
+
TargetGroupARNs?: string[] | undefined;
|
|
3046
3046
|
/**
|
|
3047
3047
|
* <p>A comma-separated value string of one or more health check types.</p>
|
|
3048
3048
|
* @public
|
|
@@ -3052,12 +3052,12 @@ export interface AutoScalingGroup {
|
|
|
3052
3052
|
* <p>The duration of the health check grace period, in seconds.</p>
|
|
3053
3053
|
* @public
|
|
3054
3054
|
*/
|
|
3055
|
-
HealthCheckGracePeriod?: number;
|
|
3055
|
+
HealthCheckGracePeriod?: number | undefined;
|
|
3056
3056
|
/**
|
|
3057
3057
|
* <p>The EC2 instances associated with the group.</p>
|
|
3058
3058
|
* @public
|
|
3059
3059
|
*/
|
|
3060
|
-
Instances?: Instance[];
|
|
3060
|
+
Instances?: Instance[] | undefined;
|
|
3061
3061
|
/**
|
|
3062
3062
|
* <p>The date and time the group was created.</p>
|
|
3063
3063
|
* @public
|
|
@@ -3067,105 +3067,105 @@ export interface AutoScalingGroup {
|
|
|
3067
3067
|
* <p>The suspended processes associated with the group.</p>
|
|
3068
3068
|
* @public
|
|
3069
3069
|
*/
|
|
3070
|
-
SuspendedProcesses?: SuspendedProcess[];
|
|
3070
|
+
SuspendedProcesses?: SuspendedProcess[] | undefined;
|
|
3071
3071
|
/**
|
|
3072
3072
|
* <p>The name of the placement group into which to launch your instances, if any.</p>
|
|
3073
3073
|
* @public
|
|
3074
3074
|
*/
|
|
3075
|
-
PlacementGroup?: string;
|
|
3075
|
+
PlacementGroup?: string | undefined;
|
|
3076
3076
|
/**
|
|
3077
3077
|
* <p>One or more subnet IDs, if applicable, separated by commas.</p>
|
|
3078
3078
|
* @public
|
|
3079
3079
|
*/
|
|
3080
|
-
VPCZoneIdentifier?: string;
|
|
3080
|
+
VPCZoneIdentifier?: string | undefined;
|
|
3081
3081
|
/**
|
|
3082
3082
|
* <p>The metrics enabled for the group.</p>
|
|
3083
3083
|
* @public
|
|
3084
3084
|
*/
|
|
3085
|
-
EnabledMetrics?: EnabledMetric[];
|
|
3085
|
+
EnabledMetrics?: EnabledMetric[] | undefined;
|
|
3086
3086
|
/**
|
|
3087
3087
|
* <p>The current state of the group when the <a href="https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_DeleteAutoScalingGroup.html">DeleteAutoScalingGroup</a>
|
|
3088
3088
|
* operation is in progress.</p>
|
|
3089
3089
|
* @public
|
|
3090
3090
|
*/
|
|
3091
|
-
Status?: string;
|
|
3091
|
+
Status?: string | undefined;
|
|
3092
3092
|
/**
|
|
3093
3093
|
* <p>The tags for the group.</p>
|
|
3094
3094
|
* @public
|
|
3095
3095
|
*/
|
|
3096
|
-
Tags?: TagDescription[];
|
|
3096
|
+
Tags?: TagDescription[] | undefined;
|
|
3097
3097
|
/**
|
|
3098
3098
|
* <p>The termination policies for the group.</p>
|
|
3099
3099
|
* @public
|
|
3100
3100
|
*/
|
|
3101
|
-
TerminationPolicies?: string[];
|
|
3101
|
+
TerminationPolicies?: string[] | undefined;
|
|
3102
3102
|
/**
|
|
3103
3103
|
* <p>Indicates whether newly launched instances are protected from termination by Amazon EC2 Auto Scaling
|
|
3104
3104
|
* when scaling in.</p>
|
|
3105
3105
|
* @public
|
|
3106
3106
|
*/
|
|
3107
|
-
NewInstancesProtectedFromScaleIn?: boolean;
|
|
3107
|
+
NewInstancesProtectedFromScaleIn?: boolean | undefined;
|
|
3108
3108
|
/**
|
|
3109
3109
|
* <p>The Amazon Resource Name (ARN) of the service-linked role that the Auto Scaling group uses to
|
|
3110
3110
|
* call other Amazon Web Services on your behalf.</p>
|
|
3111
3111
|
* @public
|
|
3112
3112
|
*/
|
|
3113
|
-
ServiceLinkedRoleARN?: string;
|
|
3113
|
+
ServiceLinkedRoleARN?: string | undefined;
|
|
3114
3114
|
/**
|
|
3115
3115
|
* <p>The maximum amount of time, in seconds, that an instance can be in service.</p>
|
|
3116
3116
|
* <p>Valid Range: Minimum value of 0.</p>
|
|
3117
3117
|
* @public
|
|
3118
3118
|
*/
|
|
3119
|
-
MaxInstanceLifetime?: number;
|
|
3119
|
+
MaxInstanceLifetime?: number | undefined;
|
|
3120
3120
|
/**
|
|
3121
3121
|
* <p>Indicates whether Capacity Rebalancing is enabled.</p>
|
|
3122
3122
|
* @public
|
|
3123
3123
|
*/
|
|
3124
|
-
CapacityRebalance?: boolean;
|
|
3124
|
+
CapacityRebalance?: boolean | undefined;
|
|
3125
3125
|
/**
|
|
3126
3126
|
* <p>The warm pool for the group.</p>
|
|
3127
3127
|
* @public
|
|
3128
3128
|
*/
|
|
3129
|
-
WarmPoolConfiguration?: WarmPoolConfiguration;
|
|
3129
|
+
WarmPoolConfiguration?: WarmPoolConfiguration | undefined;
|
|
3130
3130
|
/**
|
|
3131
3131
|
* <p>The current size of the warm pool.</p>
|
|
3132
3132
|
* @public
|
|
3133
3133
|
*/
|
|
3134
|
-
WarmPoolSize?: number;
|
|
3134
|
+
WarmPoolSize?: number | undefined;
|
|
3135
3135
|
/**
|
|
3136
3136
|
* <p>Reserved.</p>
|
|
3137
3137
|
* @public
|
|
3138
3138
|
*/
|
|
3139
|
-
Context?: string;
|
|
3139
|
+
Context?: string | undefined;
|
|
3140
3140
|
/**
|
|
3141
3141
|
* <p>The unit of measurement for the value specified for desired capacity. Amazon EC2 Auto Scaling
|
|
3142
3142
|
* supports <code>DesiredCapacityType</code> for attribute-based instance type selection
|
|
3143
3143
|
* only.</p>
|
|
3144
3144
|
* @public
|
|
3145
3145
|
*/
|
|
3146
|
-
DesiredCapacityType?: string;
|
|
3146
|
+
DesiredCapacityType?: string | undefined;
|
|
3147
3147
|
/**
|
|
3148
3148
|
* <p>The duration of the default instance warmup, in seconds.</p>
|
|
3149
3149
|
* @public
|
|
3150
3150
|
*/
|
|
3151
|
-
DefaultInstanceWarmup?: number;
|
|
3151
|
+
DefaultInstanceWarmup?: number | undefined;
|
|
3152
3152
|
/**
|
|
3153
3153
|
* <p>The traffic sources associated with this Auto Scaling group.</p>
|
|
3154
3154
|
* @public
|
|
3155
3155
|
*/
|
|
3156
|
-
TrafficSources?: TrafficSourceIdentifier[];
|
|
3156
|
+
TrafficSources?: TrafficSourceIdentifier[] | undefined;
|
|
3157
3157
|
/**
|
|
3158
3158
|
* <p>An instance maintenance policy.</p>
|
|
3159
3159
|
* @public
|
|
3160
3160
|
*/
|
|
3161
|
-
InstanceMaintenancePolicy?: InstanceMaintenancePolicy;
|
|
3161
|
+
InstanceMaintenancePolicy?: InstanceMaintenancePolicy | undefined;
|
|
3162
3162
|
/**
|
|
3163
3163
|
* <p>
|
|
3164
3164
|
* The instance capacity distribution across Availability Zones.
|
|
3165
3165
|
* </p>
|
|
3166
3166
|
* @public
|
|
3167
3167
|
*/
|
|
3168
|
-
AvailabilityZoneDistribution?: AvailabilityZoneDistribution;
|
|
3168
|
+
AvailabilityZoneDistribution?: AvailabilityZoneDistribution | undefined;
|
|
3169
3169
|
}
|
|
3170
3170
|
/**
|
|
3171
3171
|
* @public
|
|
@@ -3183,7 +3183,7 @@ export interface AutoScalingGroupsType {
|
|
|
3183
3183
|
* null when there are no more items to return.</p>
|
|
3184
3184
|
* @public
|
|
3185
3185
|
*/
|
|
3186
|
-
NextToken?: string;
|
|
3186
|
+
NextToken?: string | undefined;
|
|
3187
3187
|
}
|
|
3188
3188
|
/**
|
|
3189
3189
|
* <p>The <code>NextToken</code> value is not valid.</p>
|
|
@@ -3211,7 +3211,7 @@ export interface AutoScalingInstanceDetails {
|
|
|
3211
3211
|
* <p>The instance type of the EC2 instance.</p>
|
|
3212
3212
|
* @public
|
|
3213
3213
|
*/
|
|
3214
|
-
InstanceType?: string;
|
|
3214
|
+
InstanceType?: string | undefined;
|
|
3215
3215
|
/**
|
|
3216
3216
|
* <p>The name of the Auto Scaling group for the instance.</p>
|
|
3217
3217
|
* @public
|
|
@@ -3252,12 +3252,12 @@ export interface AutoScalingInstanceDetails {
|
|
|
3252
3252
|
* you attached the instance to the Auto Scaling group.</p>
|
|
3253
3253
|
* @public
|
|
3254
3254
|
*/
|
|
3255
|
-
LaunchConfigurationName?: string;
|
|
3255
|
+
LaunchConfigurationName?: string | undefined;
|
|
3256
3256
|
/**
|
|
3257
3257
|
* <p>The launch template for the instance.</p>
|
|
3258
3258
|
* @public
|
|
3259
3259
|
*/
|
|
3260
|
-
LaunchTemplate?: LaunchTemplateSpecification;
|
|
3260
|
+
LaunchTemplate?: LaunchTemplateSpecification | undefined;
|
|
3261
3261
|
/**
|
|
3262
3262
|
* <p>Indicates whether the instance is protected from termination by Amazon EC2 Auto Scaling when scaling
|
|
3263
3263
|
* in.</p>
|
|
@@ -3270,7 +3270,7 @@ export interface AutoScalingInstanceDetails {
|
|
|
3270
3270
|
* <p>Valid Range: Minimum value of 1. Maximum value of 999.</p>
|
|
3271
3271
|
* @public
|
|
3272
3272
|
*/
|
|
3273
|
-
WeightedCapacity?: string;
|
|
3273
|
+
WeightedCapacity?: string | undefined;
|
|
3274
3274
|
}
|
|
3275
3275
|
/**
|
|
3276
3276
|
* @public
|
|
@@ -3280,7 +3280,7 @@ export interface AutoScalingInstancesType {
|
|
|
3280
3280
|
* <p>The instances.</p>
|
|
3281
3281
|
* @public
|
|
3282
3282
|
*/
|
|
3283
|
-
AutoScalingInstances?: AutoScalingInstanceDetails[];
|
|
3283
|
+
AutoScalingInstances?: AutoScalingInstanceDetails[] | undefined;
|
|
3284
3284
|
/**
|
|
3285
3285
|
* <p>A string that indicates that the response contains more items than can be returned in
|
|
3286
3286
|
* a single response. To receive additional items, specify this string for the
|
|
@@ -3288,7 +3288,7 @@ export interface AutoScalingInstancesType {
|
|
|
3288
3288
|
* null when there are no more items to return.</p>
|
|
3289
3289
|
* @public
|
|
3290
3290
|
*/
|
|
3291
|
-
NextToken?: string;
|
|
3291
|
+
NextToken?: string | undefined;
|
|
3292
3292
|
}
|
|
3293
3293
|
/**
|
|
3294
3294
|
* @public
|
|
@@ -3300,19 +3300,19 @@ export interface DescribeAutoScalingInstancesType {
|
|
|
3300
3300
|
* <p>Array Members: Maximum number of 50 items.</p>
|
|
3301
3301
|
* @public
|
|
3302
3302
|
*/
|
|
3303
|
-
InstanceIds?: string[];
|
|
3303
|
+
InstanceIds?: string[] | undefined;
|
|
3304
3304
|
/**
|
|
3305
3305
|
* <p>The maximum number of items to return with this call. The default value is
|
|
3306
3306
|
* <code>50</code> and the maximum value is <code>50</code>.</p>
|
|
3307
3307
|
* @public
|
|
3308
3308
|
*/
|
|
3309
|
-
MaxRecords?: number;
|
|
3309
|
+
MaxRecords?: number | undefined;
|
|
3310
3310
|
/**
|
|
3311
3311
|
* <p>The token for the next set of items to return. (You received this token from a
|
|
3312
3312
|
* previous call.)</p>
|
|
3313
3313
|
* @public
|
|
3314
3314
|
*/
|
|
3315
|
-
NextToken?: string;
|
|
3315
|
+
NextToken?: string | undefined;
|
|
3316
3316
|
}
|
|
3317
3317
|
/**
|
|
3318
3318
|
* @public
|
|
@@ -3322,7 +3322,7 @@ export interface DescribeAutoScalingNotificationTypesAnswer {
|
|
|
3322
3322
|
* <p>The notification types.</p>
|
|
3323
3323
|
* @public
|
|
3324
3324
|
*/
|
|
3325
|
-
AutoScalingNotificationTypes?: string[];
|
|
3325
|
+
AutoScalingNotificationTypes?: string[] | undefined;
|
|
3326
3326
|
}
|
|
3327
3327
|
/**
|
|
3328
3328
|
* <p>Describes the desired configuration for an instance refresh. </p>
|
|
@@ -3337,7 +3337,7 @@ export interface DesiredConfiguration {
|
|
|
3337
3337
|
* templates</a> in the <i>Amazon EC2 Auto Scaling User Guide</i>.</p>
|
|
3338
3338
|
* @public
|
|
3339
3339
|
*/
|
|
3340
|
-
LaunchTemplate?: LaunchTemplateSpecification;
|
|
3340
|
+
LaunchTemplate?: LaunchTemplateSpecification | undefined;
|
|
3341
3341
|
/**
|
|
3342
3342
|
* <p>Use this structure to launch multiple instance types and On-Demand Instances and Spot
|
|
3343
3343
|
* Instances within a single Auto Scaling group.</p>
|
|
@@ -3347,7 +3347,7 @@ export interface DesiredConfiguration {
|
|
|
3347
3347
|
* <i>Amazon EC2 Auto Scaling User Guide</i>.</p>
|
|
3348
3348
|
* @public
|
|
3349
3349
|
*/
|
|
3350
|
-
MixedInstancesPolicy?: MixedInstancesPolicy;
|
|
3350
|
+
MixedInstancesPolicy?: MixedInstancesPolicy | undefined;
|
|
3351
3351
|
}
|
|
3352
3352
|
/**
|
|
3353
3353
|
* @public
|
|
@@ -3389,7 +3389,7 @@ export interface RefreshPreferences {
|
|
|
3389
3389
|
* in the instance maintenance policy for the Auto Scaling group, if defined.</p>
|
|
3390
3390
|
* @public
|
|
3391
3391
|
*/
|
|
3392
|
-
MinHealthyPercentage?: number;
|
|
3392
|
+
MinHealthyPercentage?: number | undefined;
|
|
3393
3393
|
/**
|
|
3394
3394
|
* <p>A time period, in seconds, during which an instance refresh waits before moving on to
|
|
3395
3395
|
* replacing the next instance after a new instance enters the <code>InService</code>
|
|
@@ -3404,7 +3404,7 @@ export interface RefreshPreferences {
|
|
|
3404
3404
|
* cases), or the <code>HealthCheckGracePeriod</code> property otherwise.</p>
|
|
3405
3405
|
* @public
|
|
3406
3406
|
*/
|
|
3407
|
-
InstanceWarmup?: number;
|
|
3407
|
+
InstanceWarmup?: number | undefined;
|
|
3408
3408
|
/**
|
|
3409
3409
|
* <p>(Optional) Threshold values for each checkpoint in ascending order. Each number must
|
|
3410
3410
|
* be unique. To replace all instances in the Auto Scaling group, the last number in the array must
|
|
@@ -3413,7 +3413,7 @@ export interface RefreshPreferences {
|
|
|
3413
3413
|
* <i>Amazon EC2 Auto Scaling User Guide</i>.</p>
|
|
3414
3414
|
* @public
|
|
3415
3415
|
*/
|
|
3416
|
-
CheckpointPercentages?: number[];
|
|
3416
|
+
CheckpointPercentages?: number[] | undefined;
|
|
3417
3417
|
/**
|
|
3418
3418
|
* <p>(Optional) The amount of time, in seconds, to wait after a checkpoint before
|
|
3419
3419
|
* continuing. This property is optional, but if you specify a value for it, you must also
|
|
@@ -3422,7 +3422,7 @@ export interface RefreshPreferences {
|
|
|
3422
3422
|
* <code>CheckpointDelay</code> defaults to <code>3600</code> (1 hour). </p>
|
|
3423
3423
|
* @public
|
|
3424
3424
|
*/
|
|
3425
|
-
CheckpointDelay?: number;
|
|
3425
|
+
CheckpointDelay?: number | undefined;
|
|
3426
3426
|
/**
|
|
3427
3427
|
* <p>(Optional) Indicates whether skip matching is enabled. If enabled (<code>true</code>),
|
|
3428
3428
|
* then Amazon EC2 Auto Scaling skips replacing instances that match the desired configuration. If no
|
|
@@ -3434,7 +3434,7 @@ export interface RefreshPreferences {
|
|
|
3434
3434
|
* <i>Amazon EC2 Auto Scaling User Guide</i>.</p>
|
|
3435
3435
|
* @public
|
|
3436
3436
|
*/
|
|
3437
|
-
SkipMatching?: boolean;
|
|
3437
|
+
SkipMatching?: boolean | undefined;
|
|
3438
3438
|
/**
|
|
3439
3439
|
* <p>(Optional) Indicates whether to roll back the Auto Scaling group to its previous configuration
|
|
3440
3440
|
* if the instance refresh fails or a CloudWatch alarm threshold is met. The default is
|
|
@@ -3457,7 +3457,7 @@ export interface RefreshPreferences {
|
|
|
3457
3457
|
* rollback</a> in the <i>Amazon EC2 Auto Scaling User Guide</i>.</p>
|
|
3458
3458
|
* @public
|
|
3459
3459
|
*/
|
|
3460
|
-
AutoRollback?: boolean;
|
|
3460
|
+
AutoRollback?: boolean | undefined;
|
|
3461
3461
|
/**
|
|
3462
3462
|
* <p>Choose the behavior that you want Amazon EC2 Auto Scaling to use if instances protected from scale in
|
|
3463
3463
|
* are found. </p>
|
|
@@ -3480,7 +3480,7 @@ export interface RefreshPreferences {
|
|
|
3480
3480
|
* </dl>
|
|
3481
3481
|
* @public
|
|
3482
3482
|
*/
|
|
3483
|
-
ScaleInProtectedInstances?: ScaleInProtectedInstances;
|
|
3483
|
+
ScaleInProtectedInstances?: ScaleInProtectedInstances | undefined;
|
|
3484
3484
|
/**
|
|
3485
3485
|
* <p>Choose the behavior that you want Amazon EC2 Auto Scaling to use if instances in <code>Standby</code>
|
|
3486
3486
|
* state are found.</p>
|
|
@@ -3503,13 +3503,13 @@ export interface RefreshPreferences {
|
|
|
3503
3503
|
* </dl>
|
|
3504
3504
|
* @public
|
|
3505
3505
|
*/
|
|
3506
|
-
StandbyInstances?: StandbyInstances;
|
|
3506
|
+
StandbyInstances?: StandbyInstances | undefined;
|
|
3507
3507
|
/**
|
|
3508
3508
|
* <p>(Optional) The CloudWatch alarm specification. CloudWatch alarms can be used to identify any
|
|
3509
3509
|
* issues and fail the operation if an alarm threshold is met.</p>
|
|
3510
3510
|
* @public
|
|
3511
3511
|
*/
|
|
3512
|
-
AlarmSpecification?: AlarmSpecification;
|
|
3512
|
+
AlarmSpecification?: AlarmSpecification | undefined;
|
|
3513
3513
|
/**
|
|
3514
3514
|
* <p>Specifies the maximum percentage of the group that can be in service and healthy, or
|
|
3515
3515
|
* pending, to support your workload when replacing instances. The value is expressed as a
|
|
@@ -3522,14 +3522,14 @@ export interface RefreshPreferences {
|
|
|
3522
3522
|
* in the instance maintenance policy for the Auto Scaling group, if defined.</p>
|
|
3523
3523
|
* @public
|
|
3524
3524
|
*/
|
|
3525
|
-
MaxHealthyPercentage?: number;
|
|
3525
|
+
MaxHealthyPercentage?: number | undefined;
|
|
3526
3526
|
/**
|
|
3527
3527
|
* <p>
|
|
3528
3528
|
* The amount of time, in seconds, to wait at the end of an instance refresh before the instance refresh is considered complete.
|
|
3529
3529
|
* </p>
|
|
3530
3530
|
* @public
|
|
3531
3531
|
*/
|
|
3532
|
-
BakeTime?: number;
|
|
3532
|
+
BakeTime?: number | undefined;
|
|
3533
3533
|
}
|
|
3534
3534
|
/**
|
|
3535
3535
|
* <p>Reports progress on replacing instances that are in the Auto Scaling group.</p>
|
|
@@ -3544,12 +3544,12 @@ export interface InstanceRefreshLivePoolProgress {
|
|
|
3544
3544
|
* complete.</p>
|
|
3545
3545
|
* @public
|
|
3546
3546
|
*/
|
|
3547
|
-
PercentageComplete?: number;
|
|
3547
|
+
PercentageComplete?: number | undefined;
|
|
3548
3548
|
/**
|
|
3549
3549
|
* <p>The number of instances remaining to update.</p>
|
|
3550
3550
|
* @public
|
|
3551
3551
|
*/
|
|
3552
|
-
InstancesToUpdate?: number;
|
|
3552
|
+
InstancesToUpdate?: number | undefined;
|
|
3553
3553
|
}
|
|
3554
3554
|
/**
|
|
3555
3555
|
* <p>Reports progress on replacing instances that are in the warm pool.</p>
|
|
@@ -3564,12 +3564,12 @@ export interface InstanceRefreshWarmPoolProgress {
|
|
|
3564
3564
|
* complete.</p>
|
|
3565
3565
|
* @public
|
|
3566
3566
|
*/
|
|
3567
|
-
PercentageComplete?: number;
|
|
3567
|
+
PercentageComplete?: number | undefined;
|
|
3568
3568
|
/**
|
|
3569
3569
|
* <p>The number of instances remaining to update.</p>
|
|
3570
3570
|
* @public
|
|
3571
3571
|
*/
|
|
3572
|
-
InstancesToUpdate?: number;
|
|
3572
|
+
InstancesToUpdate?: number | undefined;
|
|
3573
3573
|
}
|
|
3574
3574
|
/**
|
|
3575
3575
|
* <p>Reports progress on replacing instances in an Auto Scaling group that has a warm pool. This
|
|
@@ -3582,12 +3582,12 @@ export interface InstanceRefreshProgressDetails {
|
|
|
3582
3582
|
* <p>Reports progress on replacing instances that are in the Auto Scaling group.</p>
|
|
3583
3583
|
* @public
|
|
3584
3584
|
*/
|
|
3585
|
-
LivePoolProgress?: InstanceRefreshLivePoolProgress;
|
|
3585
|
+
LivePoolProgress?: InstanceRefreshLivePoolProgress | undefined;
|
|
3586
3586
|
/**
|
|
3587
3587
|
* <p>Reports progress on replacing instances that are in the warm pool.</p>
|
|
3588
3588
|
* @public
|
|
3589
3589
|
*/
|
|
3590
|
-
WarmPoolProgress?: InstanceRefreshWarmPoolProgress;
|
|
3590
|
+
WarmPoolProgress?: InstanceRefreshWarmPoolProgress | undefined;
|
|
3591
3591
|
}
|
|
3592
3592
|
/**
|
|
3593
3593
|
* <p>Details about an instance refresh rollback.</p>
|
|
@@ -3599,31 +3599,31 @@ export interface RollbackDetails {
|
|
|
3599
3599
|
* automatic rollback was initiated).</p>
|
|
3600
3600
|
* @public
|
|
3601
3601
|
*/
|
|
3602
|
-
RollbackReason?: string;
|
|
3602
|
+
RollbackReason?: string | undefined;
|
|
3603
3603
|
/**
|
|
3604
3604
|
* <p>The date and time at which the rollback began.</p>
|
|
3605
3605
|
* @public
|
|
3606
3606
|
*/
|
|
3607
|
-
RollbackStartTime?: Date;
|
|
3607
|
+
RollbackStartTime?: Date | undefined;
|
|
3608
3608
|
/**
|
|
3609
3609
|
* <p>Indicates the value of <code>PercentageComplete</code> at the time the rollback
|
|
3610
3610
|
* started.</p>
|
|
3611
3611
|
* @public
|
|
3612
3612
|
*/
|
|
3613
|
-
PercentageCompleteOnRollback?: number;
|
|
3613
|
+
PercentageCompleteOnRollback?: number | undefined;
|
|
3614
3614
|
/**
|
|
3615
3615
|
* <p>Indicates the value of <code>InstancesToUpdate</code> at the time the rollback
|
|
3616
3616
|
* started.</p>
|
|
3617
3617
|
* @public
|
|
3618
3618
|
*/
|
|
3619
|
-
InstancesToUpdateOnRollback?: number;
|
|
3619
|
+
InstancesToUpdateOnRollback?: number | undefined;
|
|
3620
3620
|
/**
|
|
3621
3621
|
* <p>Reports progress on replacing instances in an Auto Scaling group that has a warm pool. This
|
|
3622
3622
|
* includes separate details for instances in the warm pool and instances in the Auto Scaling group
|
|
3623
3623
|
* (the live pool).</p>
|
|
3624
3624
|
* @public
|
|
3625
3625
|
*/
|
|
3626
|
-
ProgressDetailsOnRollback?: InstanceRefreshProgressDetails;
|
|
3626
|
+
ProgressDetailsOnRollback?: InstanceRefreshProgressDetails | undefined;
|
|
3627
3627
|
}
|
|
3628
3628
|
/**
|
|
3629
3629
|
* @public
|
|
@@ -3654,12 +3654,12 @@ export interface InstanceRefresh {
|
|
|
3654
3654
|
* <p>The instance refresh ID.</p>
|
|
3655
3655
|
* @public
|
|
3656
3656
|
*/
|
|
3657
|
-
InstanceRefreshId?: string;
|
|
3657
|
+
InstanceRefreshId?: string | undefined;
|
|
3658
3658
|
/**
|
|
3659
3659
|
* <p>The name of the Auto Scaling group.</p>
|
|
3660
3660
|
* @public
|
|
3661
3661
|
*/
|
|
3662
|
-
AutoScalingGroupName?: string;
|
|
3662
|
+
AutoScalingGroupName?: string | undefined;
|
|
3663
3663
|
/**
|
|
3664
3664
|
* <p>The current status for the instance refresh operation:</p>
|
|
3665
3665
|
* <ul>
|
|
@@ -3711,22 +3711,22 @@ export interface InstanceRefresh {
|
|
|
3711
3711
|
* </ul>
|
|
3712
3712
|
* @public
|
|
3713
3713
|
*/
|
|
3714
|
-
Status?: InstanceRefreshStatus;
|
|
3714
|
+
Status?: InstanceRefreshStatus | undefined;
|
|
3715
3715
|
/**
|
|
3716
3716
|
* <p>The explanation for the specific status assigned to this operation.</p>
|
|
3717
3717
|
* @public
|
|
3718
3718
|
*/
|
|
3719
|
-
StatusReason?: string;
|
|
3719
|
+
StatusReason?: string | undefined;
|
|
3720
3720
|
/**
|
|
3721
3721
|
* <p>The date and time at which the instance refresh began.</p>
|
|
3722
3722
|
* @public
|
|
3723
3723
|
*/
|
|
3724
|
-
StartTime?: Date;
|
|
3724
|
+
StartTime?: Date | undefined;
|
|
3725
3725
|
/**
|
|
3726
3726
|
* <p>The date and time at which the instance refresh ended.</p>
|
|
3727
3727
|
* @public
|
|
3728
3728
|
*/
|
|
3729
|
-
EndTime?: Date;
|
|
3729
|
+
EndTime?: Date | undefined;
|
|
3730
3730
|
/**
|
|
3731
3731
|
* <p>The percentage of the instance refresh that is complete. For each instance
|
|
3732
3732
|
* replacement, Amazon EC2 Auto Scaling tracks the instance's health status and warm-up time. When the
|
|
@@ -3740,7 +3740,7 @@ export interface InstanceRefresh {
|
|
|
3740
3740
|
* </note>
|
|
3741
3741
|
* @public
|
|
3742
3742
|
*/
|
|
3743
|
-
PercentageComplete?: number;
|
|
3743
|
+
PercentageComplete?: number | undefined;
|
|
3744
3744
|
/**
|
|
3745
3745
|
* <p>The number of instances remaining to update before the instance refresh is
|
|
3746
3746
|
* complete.</p>
|
|
@@ -3751,27 +3751,27 @@ export interface InstanceRefresh {
|
|
|
3751
3751
|
* </note>
|
|
3752
3752
|
* @public
|
|
3753
3753
|
*/
|
|
3754
|
-
InstancesToUpdate?: number;
|
|
3754
|
+
InstancesToUpdate?: number | undefined;
|
|
3755
3755
|
/**
|
|
3756
3756
|
* <p>Additional progress details for an Auto Scaling group that has a warm pool.</p>
|
|
3757
3757
|
* @public
|
|
3758
3758
|
*/
|
|
3759
|
-
ProgressDetails?: InstanceRefreshProgressDetails;
|
|
3759
|
+
ProgressDetails?: InstanceRefreshProgressDetails | undefined;
|
|
3760
3760
|
/**
|
|
3761
3761
|
* <p>The preferences for an instance refresh.</p>
|
|
3762
3762
|
* @public
|
|
3763
3763
|
*/
|
|
3764
|
-
Preferences?: RefreshPreferences;
|
|
3764
|
+
Preferences?: RefreshPreferences | undefined;
|
|
3765
3765
|
/**
|
|
3766
3766
|
* <p>Describes the desired configuration for the instance refresh.</p>
|
|
3767
3767
|
* @public
|
|
3768
3768
|
*/
|
|
3769
|
-
DesiredConfiguration?: DesiredConfiguration;
|
|
3769
|
+
DesiredConfiguration?: DesiredConfiguration | undefined;
|
|
3770
3770
|
/**
|
|
3771
3771
|
* <p>The rollback details.</p>
|
|
3772
3772
|
* @public
|
|
3773
3773
|
*/
|
|
3774
|
-
RollbackDetails?: RollbackDetails;
|
|
3774
|
+
RollbackDetails?: RollbackDetails | undefined;
|
|
3775
3775
|
}
|
|
3776
3776
|
/**
|
|
3777
3777
|
* @public
|
|
@@ -3782,7 +3782,7 @@ export interface DescribeInstanceRefreshesAnswer {
|
|
|
3782
3782
|
* descending order.</p>
|
|
3783
3783
|
* @public
|
|
3784
3784
|
*/
|
|
3785
|
-
InstanceRefreshes?: InstanceRefresh[];
|
|
3785
|
+
InstanceRefreshes?: InstanceRefresh[] | undefined;
|
|
3786
3786
|
/**
|
|
3787
3787
|
* <p>A string that indicates that the response contains more items than can be returned in
|
|
3788
3788
|
* a single response. To receive additional items, specify this string for the
|
|
@@ -3790,7 +3790,7 @@ export interface DescribeInstanceRefreshesAnswer {
|
|
|
3790
3790
|
* null when there are no more items to return.</p>
|
|
3791
3791
|
* @public
|
|
3792
3792
|
*/
|
|
3793
|
-
NextToken?: string;
|
|
3793
|
+
NextToken?: string | undefined;
|
|
3794
3794
|
}
|
|
3795
3795
|
/**
|
|
3796
3796
|
* @public
|
|
@@ -3805,19 +3805,19 @@ export interface DescribeInstanceRefreshesType {
|
|
|
3805
3805
|
* <p>One or more instance refresh IDs.</p>
|
|
3806
3806
|
* @public
|
|
3807
3807
|
*/
|
|
3808
|
-
InstanceRefreshIds?: string[];
|
|
3808
|
+
InstanceRefreshIds?: string[] | undefined;
|
|
3809
3809
|
/**
|
|
3810
3810
|
* <p>The token for the next set of items to return. (You received this token from a
|
|
3811
3811
|
* previous call.)</p>
|
|
3812
3812
|
* @public
|
|
3813
3813
|
*/
|
|
3814
|
-
NextToken?: string;
|
|
3814
|
+
NextToken?: string | undefined;
|
|
3815
3815
|
/**
|
|
3816
3816
|
* <p>The maximum number of items to return with this call. The default value is
|
|
3817
3817
|
* <code>50</code> and the maximum value is <code>100</code>.</p>
|
|
3818
3818
|
* @public
|
|
3819
3819
|
*/
|
|
3820
|
-
MaxRecords?: number;
|
|
3820
|
+
MaxRecords?: number | undefined;
|
|
3821
3821
|
}
|
|
3822
3822
|
/**
|
|
3823
3823
|
* @public
|
|
@@ -3829,19 +3829,19 @@ export interface LaunchConfigurationNamesType {
|
|
|
3829
3829
|
* <p>Array Members: Maximum number of 50 items.</p>
|
|
3830
3830
|
* @public
|
|
3831
3831
|
*/
|
|
3832
|
-
LaunchConfigurationNames?: string[];
|
|
3832
|
+
LaunchConfigurationNames?: string[] | undefined;
|
|
3833
3833
|
/**
|
|
3834
3834
|
* <p>The token for the next set of items to return. (You received this token from a
|
|
3835
3835
|
* previous call.)</p>
|
|
3836
3836
|
* @public
|
|
3837
3837
|
*/
|
|
3838
|
-
NextToken?: string;
|
|
3838
|
+
NextToken?: string | undefined;
|
|
3839
3839
|
/**
|
|
3840
3840
|
* <p>The maximum number of items to return with this call. The default value is
|
|
3841
3841
|
* <code>50</code> and the maximum value is <code>100</code>.</p>
|
|
3842
3842
|
* @public
|
|
3843
3843
|
*/
|
|
3844
|
-
MaxRecords?: number;
|
|
3844
|
+
MaxRecords?: number | undefined;
|
|
3845
3845
|
}
|
|
3846
3846
|
/**
|
|
3847
3847
|
* <p>Describes a launch configuration.</p>
|
|
@@ -3857,7 +3857,7 @@ export interface LaunchConfiguration {
|
|
|
3857
3857
|
* <p>The Amazon Resource Name (ARN) of the launch configuration.</p>
|
|
3858
3858
|
* @public
|
|
3859
3859
|
*/
|
|
3860
|
-
LaunchConfigurationARN?: string;
|
|
3860
|
+
LaunchConfigurationARN?: string | undefined;
|
|
3861
3861
|
/**
|
|
3862
3862
|
* <p>The ID of the Amazon Machine Image (AMI) to use to launch your EC2 instances. For more
|
|
3863
3863
|
* information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/finding-an-ami.html">Find a Linux AMI</a> in the
|
|
@@ -3871,7 +3871,7 @@ export interface LaunchConfiguration {
|
|
|
3871
3871
|
* instances</a> in the <i>Amazon EC2 User Guide for Linux Instances</i>.</p>
|
|
3872
3872
|
* @public
|
|
3873
3873
|
*/
|
|
3874
|
-
KeyName?: string;
|
|
3874
|
+
KeyName?: string | undefined;
|
|
3875
3875
|
/**
|
|
3876
3876
|
* <p>A list that contains the security groups to assign to the instances in the Auto Scaling group.
|
|
3877
3877
|
* For more information, see <a href="https://docs.aws.amazon.com/vpc/latest/userguide/vpc-security-groups.html">Control traffic to your Amazon Web Services
|
|
@@ -3879,17 +3879,17 @@ export interface LaunchConfiguration {
|
|
|
3879
3879
|
* Cloud User Guide</i>.</p>
|
|
3880
3880
|
* @public
|
|
3881
3881
|
*/
|
|
3882
|
-
SecurityGroups?: string[];
|
|
3882
|
+
SecurityGroups?: string[] | undefined;
|
|
3883
3883
|
/**
|
|
3884
3884
|
* <p>Available for backward compatibility.</p>
|
|
3885
3885
|
* @public
|
|
3886
3886
|
*/
|
|
3887
|
-
ClassicLinkVPCId?: string;
|
|
3887
|
+
ClassicLinkVPCId?: string | undefined;
|
|
3888
3888
|
/**
|
|
3889
3889
|
* <p>Available for backward compatibility.</p>
|
|
3890
3890
|
* @public
|
|
3891
3891
|
*/
|
|
3892
|
-
ClassicLinkVPCSecurityGroups?: string[];
|
|
3892
|
+
ClassicLinkVPCSecurityGroups?: string[] | undefined;
|
|
3893
3893
|
/**
|
|
3894
3894
|
* <p>The user data to make available to the launched EC2 instances. For more information,
|
|
3895
3895
|
* see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-instance-metadata.html">Instance metadata and user data</a> (Linux) and <a href="https://docs.aws.amazon.com/AWSEC2/latest/WindowsGuide/ec2-instance-metadata.html">Instance metadata and
|
|
@@ -3898,7 +3898,7 @@ export interface LaunchConfiguration {
|
|
|
3898
3898
|
* base64-encoded text. User data is limited to 16 KB.</p>
|
|
3899
3899
|
* @public
|
|
3900
3900
|
*/
|
|
3901
|
-
UserData?: string;
|
|
3901
|
+
UserData?: string | undefined;
|
|
3902
3902
|
/**
|
|
3903
3903
|
* <p>The instance type for the instances. For information about available instance types,
|
|
3904
3904
|
* see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instance-types.html#AvailableInstanceTypes">Available
|
|
@@ -3910,12 +3910,12 @@ export interface LaunchConfiguration {
|
|
|
3910
3910
|
* <p>The ID of the kernel associated with the AMI.</p>
|
|
3911
3911
|
* @public
|
|
3912
3912
|
*/
|
|
3913
|
-
KernelId?: string;
|
|
3913
|
+
KernelId?: string | undefined;
|
|
3914
3914
|
/**
|
|
3915
3915
|
* <p>The ID of the RAM disk associated with the AMI.</p>
|
|
3916
3916
|
* @public
|
|
3917
3917
|
*/
|
|
3918
|
-
RamdiskId?: string;
|
|
3918
|
+
RamdiskId?: string | undefined;
|
|
3919
3919
|
/**
|
|
3920
3920
|
* <p>The block device mapping entries that define the block devices to attach to the
|
|
3921
3921
|
* instances at launch. By default, the block devices specified in the block device mapping
|
|
@@ -3923,7 +3923,7 @@ export interface LaunchConfiguration {
|
|
|
3923
3923
|
* mappings</a> in the <i>Amazon EC2 User Guide for Linux Instances</i>.</p>
|
|
3924
3924
|
* @public
|
|
3925
3925
|
*/
|
|
3926
|
-
BlockDeviceMappings?: BlockDeviceMapping[];
|
|
3926
|
+
BlockDeviceMappings?: BlockDeviceMapping[] | undefined;
|
|
3927
3927
|
/**
|
|
3928
3928
|
* <p>Controls whether instances in this group are launched with detailed
|
|
3929
3929
|
* (<code>true</code>) or basic (<code>false</code>) monitoring.</p>
|
|
@@ -3932,7 +3932,7 @@ export interface LaunchConfiguration {
|
|
|
3932
3932
|
* <i>Amazon EC2 Auto Scaling User Guide</i>.</p>
|
|
3933
3933
|
* @public
|
|
3934
3934
|
*/
|
|
3935
|
-
InstanceMonitoring?: InstanceMonitoring;
|
|
3935
|
+
InstanceMonitoring?: InstanceMonitoring | undefined;
|
|
3936
3936
|
/**
|
|
3937
3937
|
* <p>The maximum hourly price to be paid for any Spot Instance launched to fulfill the
|
|
3938
3938
|
* request. Spot Instances are launched when the price you specify exceeds the current Spot
|
|
@@ -3940,7 +3940,7 @@ export interface LaunchConfiguration {
|
|
|
3940
3940
|
* Instances for fault-tolerant and flexible applications</a> in the <i>Amazon EC2 Auto Scaling User Guide</i>.</p>
|
|
3941
3941
|
* @public
|
|
3942
3942
|
*/
|
|
3943
|
-
SpotPrice?: string;
|
|
3943
|
+
SpotPrice?: string | undefined;
|
|
3944
3944
|
/**
|
|
3945
3945
|
* <p>The name or the Amazon Resource Name (ARN) of the instance profile associated with the
|
|
3946
3946
|
* IAM role for the instance. The instance profile contains the IAM role. For more
|
|
@@ -3948,7 +3948,7 @@ export interface LaunchConfiguration {
|
|
|
3948
3948
|
* on Amazon EC2 instances</a> in the <i>Amazon EC2 Auto Scaling User Guide</i>.</p>
|
|
3949
3949
|
* @public
|
|
3950
3950
|
*/
|
|
3951
|
-
IamInstanceProfile?: string;
|
|
3951
|
+
IamInstanceProfile?: string | undefined;
|
|
3952
3952
|
/**
|
|
3953
3953
|
* <p>The creation date and time for the launch configuration.</p>
|
|
3954
3954
|
* @public
|
|
@@ -3960,7 +3960,7 @@ export interface LaunchConfiguration {
|
|
|
3960
3960
|
* <i>Amazon EC2 User Guide for Linux Instances</i>.</p>
|
|
3961
3961
|
* @public
|
|
3962
3962
|
*/
|
|
3963
|
-
EbsOptimized?: boolean;
|
|
3963
|
+
EbsOptimized?: boolean | undefined;
|
|
3964
3964
|
/**
|
|
3965
3965
|
* <p>Specifies whether to assign a public IPv4 address to the group's instances. If the
|
|
3966
3966
|
* instance is launched into a default subnet, the default is to assign a public IPv4
|
|
@@ -3972,20 +3972,20 @@ export interface LaunchConfiguration {
|
|
|
3972
3972
|
* <i>Amazon EC2 Auto Scaling User Guide</i>.</p>
|
|
3973
3973
|
* @public
|
|
3974
3974
|
*/
|
|
3975
|
-
AssociatePublicIpAddress?: boolean;
|
|
3975
|
+
AssociatePublicIpAddress?: boolean | undefined;
|
|
3976
3976
|
/**
|
|
3977
3977
|
* <p>The tenancy of the instance, either <code>default</code> or <code>dedicated</code>. An
|
|
3978
3978
|
* instance with <code>dedicated</code> tenancy runs on isolated, single-tenant hardware
|
|
3979
3979
|
* and can only be launched into a VPC.</p>
|
|
3980
3980
|
* @public
|
|
3981
3981
|
*/
|
|
3982
|
-
PlacementTenancy?: string;
|
|
3982
|
+
PlacementTenancy?: string | undefined;
|
|
3983
3983
|
/**
|
|
3984
3984
|
* <p>The metadata options for the instances. For more information, see <a href="https://docs.aws.amazon.com/autoscaling/ec2/userguide/create-launch-config.html#launch-configurations-imds">Configure the instance metadata options</a> in the
|
|
3985
3985
|
* <i>Amazon EC2 Auto Scaling User Guide</i>.</p>
|
|
3986
3986
|
* @public
|
|
3987
3987
|
*/
|
|
3988
|
-
MetadataOptions?: InstanceMetadataOptions;
|
|
3988
|
+
MetadataOptions?: InstanceMetadataOptions | undefined;
|
|
3989
3989
|
}
|
|
3990
3990
|
/**
|
|
3991
3991
|
* @public
|
|
@@ -4003,7 +4003,7 @@ export interface LaunchConfigurationsType {
|
|
|
4003
4003
|
* null when there are no more items to return.</p>
|
|
4004
4004
|
* @public
|
|
4005
4005
|
*/
|
|
4006
|
-
NextToken?: string;
|
|
4006
|
+
NextToken?: string | undefined;
|
|
4007
4007
|
}
|
|
4008
4008
|
/**
|
|
4009
4009
|
* <p>Describes a lifecycle hook. A lifecycle hook lets you create solutions that are aware
|
|
@@ -4017,12 +4017,12 @@ export interface LifecycleHook {
|
|
|
4017
4017
|
* <p>The name of the lifecycle hook.</p>
|
|
4018
4018
|
* @public
|
|
4019
4019
|
*/
|
|
4020
|
-
LifecycleHookName?: string;
|
|
4020
|
+
LifecycleHookName?: string | undefined;
|
|
4021
4021
|
/**
|
|
4022
4022
|
* <p>The name of the Auto Scaling group for the lifecycle hook.</p>
|
|
4023
4023
|
* @public
|
|
4024
4024
|
*/
|
|
4025
|
-
AutoScalingGroupName?: string;
|
|
4025
|
+
AutoScalingGroupName?: string | undefined;
|
|
4026
4026
|
/**
|
|
4027
4027
|
* <p>The lifecycle transition.</p>
|
|
4028
4028
|
* <p>Valid values: <code>autoscaling:EC2_INSTANCE_LAUNCHING</code> |
|
|
@@ -4030,39 +4030,39 @@ export interface LifecycleHook {
|
|
|
4030
4030
|
* </p>
|
|
4031
4031
|
* @public
|
|
4032
4032
|
*/
|
|
4033
|
-
LifecycleTransition?: string;
|
|
4033
|
+
LifecycleTransition?: string | undefined;
|
|
4034
4034
|
/**
|
|
4035
4035
|
* <p>The ARN of the target that Amazon EC2 Auto Scaling sends notifications to when an instance is in a
|
|
4036
4036
|
* wait state for the lifecycle hook.</p>
|
|
4037
4037
|
* @public
|
|
4038
4038
|
*/
|
|
4039
|
-
NotificationTargetARN?: string;
|
|
4039
|
+
NotificationTargetARN?: string | undefined;
|
|
4040
4040
|
/**
|
|
4041
4041
|
* <p>The ARN of the IAM role that allows the Auto Scaling group to publish to the specified
|
|
4042
4042
|
* notification target (an Amazon SNS topic or an Amazon SQS queue).</p>
|
|
4043
4043
|
* @public
|
|
4044
4044
|
*/
|
|
4045
|
-
RoleARN?: string;
|
|
4045
|
+
RoleARN?: string | undefined;
|
|
4046
4046
|
/**
|
|
4047
4047
|
* <p>Additional information that is included any time Amazon EC2 Auto Scaling sends a message to the
|
|
4048
4048
|
* notification target.</p>
|
|
4049
4049
|
* @public
|
|
4050
4050
|
*/
|
|
4051
|
-
NotificationMetadata?: string;
|
|
4051
|
+
NotificationMetadata?: string | undefined;
|
|
4052
4052
|
/**
|
|
4053
4053
|
* <p>The maximum time, in seconds, that can elapse before the lifecycle hook times out. If
|
|
4054
4054
|
* the lifecycle hook times out, Amazon EC2 Auto Scaling performs the action that you specified in the
|
|
4055
4055
|
* <code>DefaultResult</code> property.</p>
|
|
4056
4056
|
* @public
|
|
4057
4057
|
*/
|
|
4058
|
-
HeartbeatTimeout?: number;
|
|
4058
|
+
HeartbeatTimeout?: number | undefined;
|
|
4059
4059
|
/**
|
|
4060
4060
|
* <p>The maximum time, in seconds, that an instance can remain in a wait state. The maximum
|
|
4061
4061
|
* is 172800 seconds (48 hours) or 100 times <code>HeartbeatTimeout</code>, whichever is
|
|
4062
4062
|
* smaller.</p>
|
|
4063
4063
|
* @public
|
|
4064
4064
|
*/
|
|
4065
|
-
GlobalTimeout?: number;
|
|
4065
|
+
GlobalTimeout?: number | undefined;
|
|
4066
4066
|
/**
|
|
4067
4067
|
* <p>The action the Auto Scaling group takes when the lifecycle hook timeout elapses or if an
|
|
4068
4068
|
* unexpected failure occurs.</p>
|
|
@@ -4070,7 +4070,7 @@ export interface LifecycleHook {
|
|
|
4070
4070
|
* </p>
|
|
4071
4071
|
* @public
|
|
4072
4072
|
*/
|
|
4073
|
-
DefaultResult?: string;
|
|
4073
|
+
DefaultResult?: string | undefined;
|
|
4074
4074
|
}
|
|
4075
4075
|
/**
|
|
4076
4076
|
* @public
|
|
@@ -4080,7 +4080,7 @@ export interface DescribeLifecycleHooksAnswer {
|
|
|
4080
4080
|
* <p>The lifecycle hooks for the specified group.</p>
|
|
4081
4081
|
* @public
|
|
4082
4082
|
*/
|
|
4083
|
-
LifecycleHooks?: LifecycleHook[];
|
|
4083
|
+
LifecycleHooks?: LifecycleHook[] | undefined;
|
|
4084
4084
|
}
|
|
4085
4085
|
/**
|
|
4086
4086
|
* @public
|
|
@@ -4096,7 +4096,7 @@ export interface DescribeLifecycleHooksType {
|
|
|
4096
4096
|
* hooks are described.</p>
|
|
4097
4097
|
* @public
|
|
4098
4098
|
*/
|
|
4099
|
-
LifecycleHookNames?: string[];
|
|
4099
|
+
LifecycleHookNames?: string[] | undefined;
|
|
4100
4100
|
}
|
|
4101
4101
|
/**
|
|
4102
4102
|
* @public
|
|
@@ -4106,7 +4106,7 @@ export interface DescribeLifecycleHookTypesAnswer {
|
|
|
4106
4106
|
* <p>The lifecycle hook types.</p>
|
|
4107
4107
|
* @public
|
|
4108
4108
|
*/
|
|
4109
|
-
LifecycleHookTypes?: string[];
|
|
4109
|
+
LifecycleHookTypes?: string[] | undefined;
|
|
4110
4110
|
}
|
|
4111
4111
|
/**
|
|
4112
4112
|
* @public
|
|
@@ -4122,13 +4122,13 @@ export interface DescribeLoadBalancersRequest {
|
|
|
4122
4122
|
* previous call.)</p>
|
|
4123
4123
|
* @public
|
|
4124
4124
|
*/
|
|
4125
|
-
NextToken?: string;
|
|
4125
|
+
NextToken?: string | undefined;
|
|
4126
4126
|
/**
|
|
4127
4127
|
* <p>The maximum number of items to return with this call. The default value is
|
|
4128
4128
|
* <code>100</code> and the maximum value is <code>100</code>.</p>
|
|
4129
4129
|
* @public
|
|
4130
4130
|
*/
|
|
4131
|
-
MaxRecords?: number;
|
|
4131
|
+
MaxRecords?: number | undefined;
|
|
4132
4132
|
}
|
|
4133
4133
|
/**
|
|
4134
4134
|
* <p>Describes the state of a Classic Load Balancer.</p>
|
|
@@ -4139,7 +4139,7 @@ export interface LoadBalancerState {
|
|
|
4139
4139
|
* <p>The name of the load balancer.</p>
|
|
4140
4140
|
* @public
|
|
4141
4141
|
*/
|
|
4142
|
-
LoadBalancerName?: string;
|
|
4142
|
+
LoadBalancerName?: string | undefined;
|
|
4143
4143
|
/**
|
|
4144
4144
|
* <p>One of the following load balancer states:</p>
|
|
4145
4145
|
* <ul>
|
|
@@ -4172,7 +4172,7 @@ export interface LoadBalancerState {
|
|
|
4172
4172
|
* </ul>
|
|
4173
4173
|
* @public
|
|
4174
4174
|
*/
|
|
4175
|
-
State?: string;
|
|
4175
|
+
State?: string | undefined;
|
|
4176
4176
|
}
|
|
4177
4177
|
/**
|
|
4178
4178
|
* @public
|
|
@@ -4182,7 +4182,7 @@ export interface DescribeLoadBalancersResponse {
|
|
|
4182
4182
|
* <p>The load balancers.</p>
|
|
4183
4183
|
* @public
|
|
4184
4184
|
*/
|
|
4185
|
-
LoadBalancers?: LoadBalancerState[];
|
|
4185
|
+
LoadBalancers?: LoadBalancerState[] | undefined;
|
|
4186
4186
|
/**
|
|
4187
4187
|
* <p>A string that indicates that the response contains more items than can be returned in
|
|
4188
4188
|
* a single response. To receive additional items, specify this string for the
|
|
@@ -4190,7 +4190,7 @@ export interface DescribeLoadBalancersResponse {
|
|
|
4190
4190
|
* null when there are no more items to return.</p>
|
|
4191
4191
|
* @public
|
|
4192
4192
|
*/
|
|
4193
|
-
NextToken?: string;
|
|
4193
|
+
NextToken?: string | undefined;
|
|
4194
4194
|
}
|
|
4195
4195
|
/**
|
|
4196
4196
|
* @public
|
|
@@ -4206,13 +4206,13 @@ export interface DescribeLoadBalancerTargetGroupsRequest {
|
|
|
4206
4206
|
* previous call.)</p>
|
|
4207
4207
|
* @public
|
|
4208
4208
|
*/
|
|
4209
|
-
NextToken?: string;
|
|
4209
|
+
NextToken?: string | undefined;
|
|
4210
4210
|
/**
|
|
4211
4211
|
* <p>The maximum number of items to return with this call. The default value is
|
|
4212
4212
|
* <code>100</code> and the maximum value is <code>100</code>.</p>
|
|
4213
4213
|
* @public
|
|
4214
4214
|
*/
|
|
4215
|
-
MaxRecords?: number;
|
|
4215
|
+
MaxRecords?: number | undefined;
|
|
4216
4216
|
}
|
|
4217
4217
|
/**
|
|
4218
4218
|
* <p>Describes the state of a target group.</p>
|
|
@@ -4223,7 +4223,7 @@ export interface LoadBalancerTargetGroupState {
|
|
|
4223
4223
|
* <p>The Amazon Resource Name (ARN) of the target group.</p>
|
|
4224
4224
|
* @public
|
|
4225
4225
|
*/
|
|
4226
|
-
LoadBalancerTargetGroupARN?: string;
|
|
4226
|
+
LoadBalancerTargetGroupARN?: string | undefined;
|
|
4227
4227
|
/**
|
|
4228
4228
|
* <p>The state of the target group.</p>
|
|
4229
4229
|
* <ul>
|
|
@@ -4256,7 +4256,7 @@ export interface LoadBalancerTargetGroupState {
|
|
|
4256
4256
|
* </ul>
|
|
4257
4257
|
* @public
|
|
4258
4258
|
*/
|
|
4259
|
-
State?: string;
|
|
4259
|
+
State?: string | undefined;
|
|
4260
4260
|
}
|
|
4261
4261
|
/**
|
|
4262
4262
|
* @public
|
|
@@ -4266,7 +4266,7 @@ export interface DescribeLoadBalancerTargetGroupsResponse {
|
|
|
4266
4266
|
* <p>Information about the target groups.</p>
|
|
4267
4267
|
* @public
|
|
4268
4268
|
*/
|
|
4269
|
-
LoadBalancerTargetGroups?: LoadBalancerTargetGroupState[];
|
|
4269
|
+
LoadBalancerTargetGroups?: LoadBalancerTargetGroupState[] | undefined;
|
|
4270
4270
|
/**
|
|
4271
4271
|
* <p>A string that indicates that the response contains more items than can be returned in
|
|
4272
4272
|
* a single response. To receive additional items, specify this string for the
|
|
@@ -4274,7 +4274,7 @@ export interface DescribeLoadBalancerTargetGroupsResponse {
|
|
|
4274
4274
|
* null when there are no more items to return.</p>
|
|
4275
4275
|
* @public
|
|
4276
4276
|
*/
|
|
4277
|
-
NextToken?: string;
|
|
4277
|
+
NextToken?: string | undefined;
|
|
4278
4278
|
}
|
|
4279
4279
|
/**
|
|
4280
4280
|
* <p>Describes a granularity of a metric.</p>
|
|
@@ -4285,7 +4285,7 @@ export interface MetricGranularityType {
|
|
|
4285
4285
|
* <p>The granularity. The only valid value is <code>1Minute</code>.</p>
|
|
4286
4286
|
* @public
|
|
4287
4287
|
*/
|
|
4288
|
-
Granularity?: string;
|
|
4288
|
+
Granularity?: string | undefined;
|
|
4289
4289
|
}
|
|
4290
4290
|
/**
|
|
4291
4291
|
* <p>Describes a metric.</p>
|
|
@@ -4398,7 +4398,7 @@ export interface MetricCollectionType {
|
|
|
4398
4398
|
* </ul>
|
|
4399
4399
|
* @public
|
|
4400
4400
|
*/
|
|
4401
|
-
Metric?: string;
|
|
4401
|
+
Metric?: string | undefined;
|
|
4402
4402
|
}
|
|
4403
4403
|
/**
|
|
4404
4404
|
* @public
|
|
@@ -4408,12 +4408,12 @@ export interface DescribeMetricCollectionTypesAnswer {
|
|
|
4408
4408
|
* <p>The metrics.</p>
|
|
4409
4409
|
* @public
|
|
4410
4410
|
*/
|
|
4411
|
-
Metrics?: MetricCollectionType[];
|
|
4411
|
+
Metrics?: MetricCollectionType[] | undefined;
|
|
4412
4412
|
/**
|
|
4413
4413
|
* <p>The granularities for the metrics.</p>
|
|
4414
4414
|
* @public
|
|
4415
4415
|
*/
|
|
4416
|
-
Granularities?: MetricGranularityType[];
|
|
4416
|
+
Granularities?: MetricGranularityType[] | undefined;
|
|
4417
4417
|
}
|
|
4418
4418
|
/**
|
|
4419
4419
|
* <p>Describes a notification.</p>
|
|
@@ -4424,12 +4424,12 @@ export interface NotificationConfiguration {
|
|
|
4424
4424
|
* <p>The name of the Auto Scaling group.</p>
|
|
4425
4425
|
* @public
|
|
4426
4426
|
*/
|
|
4427
|
-
AutoScalingGroupName?: string;
|
|
4427
|
+
AutoScalingGroupName?: string | undefined;
|
|
4428
4428
|
/**
|
|
4429
4429
|
* <p>The Amazon Resource Name (ARN) of the Amazon SNS topic.</p>
|
|
4430
4430
|
* @public
|
|
4431
4431
|
*/
|
|
4432
|
-
TopicARN?: string;
|
|
4432
|
+
TopicARN?: string | undefined;
|
|
4433
4433
|
/**
|
|
4434
4434
|
* <p>One of the following event notification types:</p>
|
|
4435
4435
|
* <ul>
|
|
@@ -4461,7 +4461,7 @@ export interface NotificationConfiguration {
|
|
|
4461
4461
|
* </ul>
|
|
4462
4462
|
* @public
|
|
4463
4463
|
*/
|
|
4464
|
-
NotificationType?: string;
|
|
4464
|
+
NotificationType?: string | undefined;
|
|
4465
4465
|
}
|
|
4466
4466
|
/**
|
|
4467
4467
|
* @public
|
|
@@ -4479,7 +4479,7 @@ export interface DescribeNotificationConfigurationsAnswer {
|
|
|
4479
4479
|
* null when there are no more items to return.</p>
|
|
4480
4480
|
* @public
|
|
4481
4481
|
*/
|
|
4482
|
-
NextToken?: string;
|
|
4482
|
+
NextToken?: string | undefined;
|
|
4483
4483
|
}
|
|
4484
4484
|
/**
|
|
4485
4485
|
* @public
|
|
@@ -4489,19 +4489,19 @@ export interface DescribeNotificationConfigurationsType {
|
|
|
4489
4489
|
* <p>The name of the Auto Scaling group.</p>
|
|
4490
4490
|
* @public
|
|
4491
4491
|
*/
|
|
4492
|
-
AutoScalingGroupNames?: string[];
|
|
4492
|
+
AutoScalingGroupNames?: string[] | undefined;
|
|
4493
4493
|
/**
|
|
4494
4494
|
* <p>The token for the next set of items to return. (You received this token from a
|
|
4495
4495
|
* previous call.)</p>
|
|
4496
4496
|
* @public
|
|
4497
4497
|
*/
|
|
4498
|
-
NextToken?: string;
|
|
4498
|
+
NextToken?: string | undefined;
|
|
4499
4499
|
/**
|
|
4500
4500
|
* <p>The maximum number of items to return with this call. The default value is
|
|
4501
4501
|
* <code>50</code> and the maximum value is <code>100</code>.</p>
|
|
4502
4502
|
* @public
|
|
4503
4503
|
*/
|
|
4504
|
-
MaxRecords?: number;
|
|
4504
|
+
MaxRecords?: number | undefined;
|
|
4505
4505
|
}
|
|
4506
4506
|
/**
|
|
4507
4507
|
* @public
|
|
@@ -4511,7 +4511,7 @@ export interface DescribePoliciesType {
|
|
|
4511
4511
|
* <p>The name of the Auto Scaling group.</p>
|
|
4512
4512
|
* @public
|
|
4513
4513
|
*/
|
|
4514
|
-
AutoScalingGroupName?: string;
|
|
4514
|
+
AutoScalingGroupName?: string | undefined;
|
|
4515
4515
|
/**
|
|
4516
4516
|
* <p>The names of one or more policies. If you omit this property, all policies are
|
|
4517
4517
|
* described. If a group name is provided, the results are limited to that group. If you
|
|
@@ -4519,26 +4519,26 @@ export interface DescribePoliciesType {
|
|
|
4519
4519
|
* <p>Array Members: Maximum number of 50 items.</p>
|
|
4520
4520
|
* @public
|
|
4521
4521
|
*/
|
|
4522
|
-
PolicyNames?: string[];
|
|
4522
|
+
PolicyNames?: string[] | undefined;
|
|
4523
4523
|
/**
|
|
4524
4524
|
* <p>One or more policy types. The valid values are <code>SimpleScaling</code>,
|
|
4525
4525
|
* <code>StepScaling</code>, <code>TargetTrackingScaling</code>, and
|
|
4526
4526
|
* <code>PredictiveScaling</code>.</p>
|
|
4527
4527
|
* @public
|
|
4528
4528
|
*/
|
|
4529
|
-
PolicyTypes?: string[];
|
|
4529
|
+
PolicyTypes?: string[] | undefined;
|
|
4530
4530
|
/**
|
|
4531
4531
|
* <p>The token for the next set of items to return. (You received this token from a
|
|
4532
4532
|
* previous call.)</p>
|
|
4533
4533
|
* @public
|
|
4534
4534
|
*/
|
|
4535
|
-
NextToken?: string;
|
|
4535
|
+
NextToken?: string | undefined;
|
|
4536
4536
|
/**
|
|
4537
4537
|
* <p>The maximum number of items to be returned with each call. The default value is
|
|
4538
4538
|
* <code>50</code> and the maximum value is <code>100</code>.</p>
|
|
4539
4539
|
* @public
|
|
4540
4540
|
*/
|
|
4541
|
-
MaxRecords?: number;
|
|
4541
|
+
MaxRecords?: number | undefined;
|
|
4542
4542
|
}
|
|
4543
4543
|
/**
|
|
4544
4544
|
* @public
|
|
@@ -4594,7 +4594,7 @@ export interface Metric {
|
|
|
4594
4594
|
* dimensions in your scaling policy.</p>
|
|
4595
4595
|
* @public
|
|
4596
4596
|
*/
|
|
4597
|
-
Dimensions?: MetricDimension[];
|
|
4597
|
+
Dimensions?: MetricDimension[] | undefined;
|
|
4598
4598
|
}
|
|
4599
4599
|
/**
|
|
4600
4600
|
* <p>This structure defines the CloudWatch metric to return, along with the statistic and
|
|
@@ -4624,7 +4624,7 @@ export interface MetricStat {
|
|
|
4624
4624
|
* data type in the <i>Amazon CloudWatch API Reference</i>.</p>
|
|
4625
4625
|
* @public
|
|
4626
4626
|
*/
|
|
4627
|
-
Unit?: string;
|
|
4627
|
+
Unit?: string | undefined;
|
|
4628
4628
|
}
|
|
4629
4629
|
/**
|
|
4630
4630
|
* <p>The metric data to return. Also defines whether this call is returning data for one
|
|
@@ -4655,20 +4655,20 @@ export interface MetricDataQuery {
|
|
|
4655
4655
|
* <code>Expression</code> or <code>MetricStat</code>, but not both.</p>
|
|
4656
4656
|
* @public
|
|
4657
4657
|
*/
|
|
4658
|
-
Expression?: string;
|
|
4658
|
+
Expression?: string | undefined;
|
|
4659
4659
|
/**
|
|
4660
4660
|
* <p>Information about the metric data to return.</p>
|
|
4661
4661
|
* <p>Conditional: Within each <code>MetricDataQuery</code> object, you must specify either
|
|
4662
4662
|
* <code>Expression</code> or <code>MetricStat</code>, but not both.</p>
|
|
4663
4663
|
* @public
|
|
4664
4664
|
*/
|
|
4665
|
-
MetricStat?: MetricStat;
|
|
4665
|
+
MetricStat?: MetricStat | undefined;
|
|
4666
4666
|
/**
|
|
4667
4667
|
* <p>A human-readable label for this metric or expression. This is especially useful if
|
|
4668
4668
|
* this is a math expression, so that you know what the value represents.</p>
|
|
4669
4669
|
* @public
|
|
4670
4670
|
*/
|
|
4671
|
-
Label?: string;
|
|
4671
|
+
Label?: string | undefined;
|
|
4672
4672
|
/**
|
|
4673
4673
|
* <p>Indicates whether to return the timestamps and raw data values of this metric. </p>
|
|
4674
4674
|
* <p>If you use any math expressions, specify <code>true</code> for this value for only the
|
|
@@ -4680,7 +4680,7 @@ export interface MetricDataQuery {
|
|
|
4680
4680
|
* (<code>true</code>).</p>
|
|
4681
4681
|
* @public
|
|
4682
4682
|
*/
|
|
4683
|
-
ReturnData?: boolean;
|
|
4683
|
+
ReturnData?: boolean | undefined;
|
|
4684
4684
|
}
|
|
4685
4685
|
/**
|
|
4686
4686
|
* <p>Describes a customized capacity metric for a predictive scaling policy.</p>
|
|
@@ -4772,7 +4772,7 @@ export interface PredictiveScalingPredefinedLoadMetric {
|
|
|
4772
4772
|
* the <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/APIReference/API_DescribeTargetGroups.html">DescribeTargetGroups</a> API operation.</p>
|
|
4773
4773
|
* @public
|
|
4774
4774
|
*/
|
|
4775
|
-
ResourceLabel?: string;
|
|
4775
|
+
ResourceLabel?: string | undefined;
|
|
4776
4776
|
}
|
|
4777
4777
|
/**
|
|
4778
4778
|
* @public
|
|
@@ -4825,7 +4825,7 @@ export interface PredictiveScalingPredefinedMetricPair {
|
|
|
4825
4825
|
* the <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/APIReference/API_DescribeTargetGroups.html">DescribeTargetGroups</a> API operation.</p>
|
|
4826
4826
|
* @public
|
|
4827
4827
|
*/
|
|
4828
|
-
ResourceLabel?: string;
|
|
4828
|
+
ResourceLabel?: string | undefined;
|
|
4829
4829
|
}
|
|
4830
4830
|
/**
|
|
4831
4831
|
* @public
|
|
@@ -4878,7 +4878,7 @@ export interface PredictiveScalingPredefinedScalingMetric {
|
|
|
4878
4878
|
* the <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/APIReference/API_DescribeTargetGroups.html">DescribeTargetGroups</a> API operation.</p>
|
|
4879
4879
|
* @public
|
|
4880
4880
|
*/
|
|
4881
|
-
ResourceLabel?: string;
|
|
4881
|
+
ResourceLabel?: string | undefined;
|
|
4882
4882
|
}
|
|
4883
4883
|
/**
|
|
4884
4884
|
* <p>This structure specifies the metrics and target utilization settings for a predictive
|
|
@@ -4945,32 +4945,32 @@ export interface PredictiveScalingMetricSpecification {
|
|
|
4945
4945
|
* appropriate scaling metric and load metric to use.</p>
|
|
4946
4946
|
* @public
|
|
4947
4947
|
*/
|
|
4948
|
-
PredefinedMetricPairSpecification?: PredictiveScalingPredefinedMetricPair;
|
|
4948
|
+
PredefinedMetricPairSpecification?: PredictiveScalingPredefinedMetricPair | undefined;
|
|
4949
4949
|
/**
|
|
4950
4950
|
* <p>The predefined scaling metric specification.</p>
|
|
4951
4951
|
* @public
|
|
4952
4952
|
*/
|
|
4953
|
-
PredefinedScalingMetricSpecification?: PredictiveScalingPredefinedScalingMetric;
|
|
4953
|
+
PredefinedScalingMetricSpecification?: PredictiveScalingPredefinedScalingMetric | undefined;
|
|
4954
4954
|
/**
|
|
4955
4955
|
* <p>The predefined load metric specification.</p>
|
|
4956
4956
|
* @public
|
|
4957
4957
|
*/
|
|
4958
|
-
PredefinedLoadMetricSpecification?: PredictiveScalingPredefinedLoadMetric;
|
|
4958
|
+
PredefinedLoadMetricSpecification?: PredictiveScalingPredefinedLoadMetric | undefined;
|
|
4959
4959
|
/**
|
|
4960
4960
|
* <p>The customized scaling metric specification.</p>
|
|
4961
4961
|
* @public
|
|
4962
4962
|
*/
|
|
4963
|
-
CustomizedScalingMetricSpecification?: PredictiveScalingCustomizedScalingMetric;
|
|
4963
|
+
CustomizedScalingMetricSpecification?: PredictiveScalingCustomizedScalingMetric | undefined;
|
|
4964
4964
|
/**
|
|
4965
4965
|
* <p>The customized load metric specification.</p>
|
|
4966
4966
|
* @public
|
|
4967
4967
|
*/
|
|
4968
|
-
CustomizedLoadMetricSpecification?: PredictiveScalingCustomizedLoadMetric;
|
|
4968
|
+
CustomizedLoadMetricSpecification?: PredictiveScalingCustomizedLoadMetric | undefined;
|
|
4969
4969
|
/**
|
|
4970
4970
|
* <p>The customized capacity metric specification.</p>
|
|
4971
4971
|
* @public
|
|
4972
4972
|
*/
|
|
4973
|
-
CustomizedCapacityMetricSpecification?: PredictiveScalingCustomizedCapacityMetric;
|
|
4973
|
+
CustomizedCapacityMetricSpecification?: PredictiveScalingCustomizedCapacityMetric | undefined;
|
|
4974
4974
|
}
|
|
4975
4975
|
/**
|
|
4976
4976
|
* @public
|
|
@@ -5003,7 +5003,7 @@ export interface PredictiveScalingConfiguration {
|
|
|
5003
5003
|
* specified.</p>
|
|
5004
5004
|
* @public
|
|
5005
5005
|
*/
|
|
5006
|
-
Mode?: PredictiveScalingMode;
|
|
5006
|
+
Mode?: PredictiveScalingMode | undefined;
|
|
5007
5007
|
/**
|
|
5008
5008
|
* <p>The amount of time, in seconds, by which the instance launch time can be advanced. For
|
|
5009
5009
|
* example, the forecast says to add capacity at 10:00 AM, and you choose to pre-launch
|
|
@@ -5015,7 +5015,7 @@ export interface PredictiveScalingConfiguration {
|
|
|
5015
5015
|
* minutes). Defaults to 300 seconds if not specified. </p>
|
|
5016
5016
|
* @public
|
|
5017
5017
|
*/
|
|
5018
|
-
SchedulingBufferTime?: number;
|
|
5018
|
+
SchedulingBufferTime?: number | undefined;
|
|
5019
5019
|
/**
|
|
5020
5020
|
* <p>Defines the behavior that should be applied if the forecast capacity approaches or
|
|
5021
5021
|
* exceeds the maximum capacity of the Auto Scaling group. Defaults to
|
|
@@ -5046,7 +5046,7 @@ export interface PredictiveScalingConfiguration {
|
|
|
5046
5046
|
* </important>
|
|
5047
5047
|
* @public
|
|
5048
5048
|
*/
|
|
5049
|
-
MaxCapacityBreachBehavior?: PredictiveScalingMaxCapacityBreachBehavior;
|
|
5049
|
+
MaxCapacityBreachBehavior?: PredictiveScalingMaxCapacityBreachBehavior | undefined;
|
|
5050
5050
|
/**
|
|
5051
5051
|
* <p>The size of the capacity buffer to use when the forecast capacity is close to or
|
|
5052
5052
|
* exceeds the maximum capacity. The value is specified as a percentage relative to the
|
|
@@ -5059,7 +5059,7 @@ export interface PredictiveScalingConfiguration {
|
|
|
5059
5059
|
* <code>IncreaseMaxCapacity</code>, and cannot be used otherwise.</p>
|
|
5060
5060
|
* @public
|
|
5061
5061
|
*/
|
|
5062
|
-
MaxCapacityBuffer?: number;
|
|
5062
|
+
MaxCapacityBuffer?: number | undefined;
|
|
5063
5063
|
}
|
|
5064
5064
|
/**
|
|
5065
5065
|
* <p>Describes information used to create a step adjustment for a step scaling
|
|
@@ -5108,7 +5108,7 @@ export interface StepAdjustment {
|
|
|
5108
5108
|
* value indicates negative infinity.</p>
|
|
5109
5109
|
* @public
|
|
5110
5110
|
*/
|
|
5111
|
-
MetricIntervalLowerBound?: number;
|
|
5111
|
+
MetricIntervalLowerBound?: number | undefined;
|
|
5112
5112
|
/**
|
|
5113
5113
|
* <p>The upper bound for the difference between the alarm threshold and the CloudWatch metric. If
|
|
5114
5114
|
* the metric value is above the breach threshold, the upper bound is exclusive (the metric
|
|
@@ -5118,7 +5118,7 @@ export interface StepAdjustment {
|
|
|
5118
5118
|
* <p>The upper bound must be greater than the lower bound.</p>
|
|
5119
5119
|
* @public
|
|
5120
5120
|
*/
|
|
5121
|
-
MetricIntervalUpperBound?: number;
|
|
5121
|
+
MetricIntervalUpperBound?: number | undefined;
|
|
5122
5122
|
/**
|
|
5123
5123
|
* <p>The amount by which to scale, based on the specified adjustment type. A positive value
|
|
5124
5124
|
* adds to the current capacity while a negative number removes from the current capacity.
|
|
@@ -5153,7 +5153,7 @@ export interface TargetTrackingMetricStat {
|
|
|
5153
5153
|
* data type in the <i>Amazon CloudWatch API Reference</i>.</p>
|
|
5154
5154
|
* @public
|
|
5155
5155
|
*/
|
|
5156
|
-
Unit?: string;
|
|
5156
|
+
Unit?: string | undefined;
|
|
5157
5157
|
}
|
|
5158
5158
|
/**
|
|
5159
5159
|
* <p>The metric data to return. Also defines whether this call is returning data for one
|
|
@@ -5182,20 +5182,20 @@ export interface TargetTrackingMetricDataQuery {
|
|
|
5182
5182
|
* specify either <code>Expression</code> or <code>MetricStat</code>, but not both.</p>
|
|
5183
5183
|
* @public
|
|
5184
5184
|
*/
|
|
5185
|
-
Expression?: string;
|
|
5185
|
+
Expression?: string | undefined;
|
|
5186
5186
|
/**
|
|
5187
5187
|
* <p>Information about the metric data to return.</p>
|
|
5188
5188
|
* <p>Conditional: Within each <code>TargetTrackingMetricDataQuery</code> object, you must
|
|
5189
5189
|
* specify either <code>Expression</code> or <code>MetricStat</code>, but not both.</p>
|
|
5190
5190
|
* @public
|
|
5191
5191
|
*/
|
|
5192
|
-
MetricStat?: TargetTrackingMetricStat;
|
|
5192
|
+
MetricStat?: TargetTrackingMetricStat | undefined;
|
|
5193
5193
|
/**
|
|
5194
5194
|
* <p>A human-readable label for this metric or expression. This is especially useful if
|
|
5195
5195
|
* this is a math expression, so that you know what the value represents.</p>
|
|
5196
5196
|
* @public
|
|
5197
5197
|
*/
|
|
5198
|
-
Label?: string;
|
|
5198
|
+
Label?: string | undefined;
|
|
5199
5199
|
/**
|
|
5200
5200
|
* <p>Indicates whether to return the timestamps and raw data values of this metric. </p>
|
|
5201
5201
|
* <p>If you use any math expressions, specify <code>true</code> for this value for only the
|
|
@@ -5207,7 +5207,7 @@ export interface TargetTrackingMetricDataQuery {
|
|
|
5207
5207
|
* (<code>true</code>).</p>
|
|
5208
5208
|
* @public
|
|
5209
5209
|
*/
|
|
5210
|
-
ReturnData?: boolean;
|
|
5210
|
+
ReturnData?: boolean | undefined;
|
|
5211
5211
|
}
|
|
5212
5212
|
/**
|
|
5213
5213
|
* @public
|
|
@@ -5259,37 +5259,37 @@ export interface CustomizedMetricSpecification {
|
|
|
5259
5259
|
* that is returned by a call to <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/APIReference/API_ListMetrics.html">ListMetrics</a>.</p>
|
|
5260
5260
|
* @public
|
|
5261
5261
|
*/
|
|
5262
|
-
MetricName?: string;
|
|
5262
|
+
MetricName?: string | undefined;
|
|
5263
5263
|
/**
|
|
5264
5264
|
* <p>The namespace of the metric.</p>
|
|
5265
5265
|
* @public
|
|
5266
5266
|
*/
|
|
5267
|
-
Namespace?: string;
|
|
5267
|
+
Namespace?: string | undefined;
|
|
5268
5268
|
/**
|
|
5269
5269
|
* <p>The dimensions of the metric.</p>
|
|
5270
5270
|
* <p>Conditional: If you published your metric with dimensions, you must specify the same
|
|
5271
5271
|
* dimensions in your scaling policy.</p>
|
|
5272
5272
|
* @public
|
|
5273
5273
|
*/
|
|
5274
|
-
Dimensions?: MetricDimension[];
|
|
5274
|
+
Dimensions?: MetricDimension[] | undefined;
|
|
5275
5275
|
/**
|
|
5276
5276
|
* <p>The statistic of the metric.</p>
|
|
5277
5277
|
* @public
|
|
5278
5278
|
*/
|
|
5279
|
-
Statistic?: MetricStatistic;
|
|
5279
|
+
Statistic?: MetricStatistic | undefined;
|
|
5280
5280
|
/**
|
|
5281
5281
|
* <p>The unit of the metric. For a complete list of the units that CloudWatch supports, see the
|
|
5282
5282
|
* <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/APIReference/API_MetricDatum.html">MetricDatum</a>
|
|
5283
5283
|
* data type in the <i>Amazon CloudWatch API Reference</i>.</p>
|
|
5284
5284
|
* @public
|
|
5285
5285
|
*/
|
|
5286
|
-
Unit?: string;
|
|
5286
|
+
Unit?: string | undefined;
|
|
5287
5287
|
/**
|
|
5288
5288
|
* <p>The metrics to include in the target tracking scaling policy, as a metric data query.
|
|
5289
5289
|
* This can include both raw metric and metric math expressions.</p>
|
|
5290
5290
|
* @public
|
|
5291
5291
|
*/
|
|
5292
|
-
Metrics?: TargetTrackingMetricDataQuery[];
|
|
5292
|
+
Metrics?: TargetTrackingMetricDataQuery[] | undefined;
|
|
5293
5293
|
}
|
|
5294
5294
|
/**
|
|
5295
5295
|
* @public
|
|
@@ -5362,7 +5362,7 @@ export interface PredefinedMetricSpecification {
|
|
|
5362
5362
|
* the <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/APIReference/API_DescribeTargetGroups.html">DescribeTargetGroups</a> API operation.</p>
|
|
5363
5363
|
* @public
|
|
5364
5364
|
*/
|
|
5365
|
-
ResourceLabel?: string;
|
|
5365
|
+
ResourceLabel?: string | undefined;
|
|
5366
5366
|
}
|
|
5367
5367
|
/**
|
|
5368
5368
|
* <p>Represents a target tracking scaling policy configuration to use with Amazon EC2 Auto Scaling.</p>
|
|
@@ -5374,13 +5374,13 @@ export interface TargetTrackingConfiguration {
|
|
|
5374
5374
|
* metric.</p>
|
|
5375
5375
|
* @public
|
|
5376
5376
|
*/
|
|
5377
|
-
PredefinedMetricSpecification?: PredefinedMetricSpecification;
|
|
5377
|
+
PredefinedMetricSpecification?: PredefinedMetricSpecification | undefined;
|
|
5378
5378
|
/**
|
|
5379
5379
|
* <p>A customized metric. You must specify either a predefined metric or a customized
|
|
5380
5380
|
* metric.</p>
|
|
5381
5381
|
* @public
|
|
5382
5382
|
*/
|
|
5383
|
-
CustomizedMetricSpecification?: CustomizedMetricSpecification;
|
|
5383
|
+
CustomizedMetricSpecification?: CustomizedMetricSpecification | undefined;
|
|
5384
5384
|
/**
|
|
5385
5385
|
* <p>The target value for the metric.</p>
|
|
5386
5386
|
* <note>
|
|
@@ -5400,7 +5400,7 @@ export interface TargetTrackingConfiguration {
|
|
|
5400
5400
|
* the Auto Scaling group. The default is <code>false</code>.</p>
|
|
5401
5401
|
* @public
|
|
5402
5402
|
*/
|
|
5403
|
-
DisableScaleIn?: boolean;
|
|
5403
|
+
DisableScaleIn?: boolean | undefined;
|
|
5404
5404
|
}
|
|
5405
5405
|
/**
|
|
5406
5406
|
* <p>Describes a scaling policy.</p>
|
|
@@ -5411,17 +5411,17 @@ export interface ScalingPolicy {
|
|
|
5411
5411
|
* <p>The name of the Auto Scaling group.</p>
|
|
5412
5412
|
* @public
|
|
5413
5413
|
*/
|
|
5414
|
-
AutoScalingGroupName?: string;
|
|
5414
|
+
AutoScalingGroupName?: string | undefined;
|
|
5415
5415
|
/**
|
|
5416
5416
|
* <p>The name of the scaling policy.</p>
|
|
5417
5417
|
* @public
|
|
5418
5418
|
*/
|
|
5419
|
-
PolicyName?: string;
|
|
5419
|
+
PolicyName?: string | undefined;
|
|
5420
5420
|
/**
|
|
5421
5421
|
* <p>The Amazon Resource Name (ARN) of the policy.</p>
|
|
5422
5422
|
* @public
|
|
5423
5423
|
*/
|
|
5424
|
-
PolicyARN?: string;
|
|
5424
|
+
PolicyARN?: string | undefined;
|
|
5425
5425
|
/**
|
|
5426
5426
|
* <p>One of the following policy types: </p>
|
|
5427
5427
|
* <ul>
|
|
@@ -5450,14 +5450,14 @@ export interface ScalingPolicy {
|
|
|
5450
5450
|
* policies</a> in the <i>Amazon EC2 Auto Scaling User Guide</i>.</p>
|
|
5451
5451
|
* @public
|
|
5452
5452
|
*/
|
|
5453
|
-
PolicyType?: string;
|
|
5453
|
+
PolicyType?: string | undefined;
|
|
5454
5454
|
/**
|
|
5455
5455
|
* <p>Specifies how the scaling adjustment is interpreted (for example, an absolute number
|
|
5456
5456
|
* or a percentage). The valid values are <code>ChangeInCapacity</code>,
|
|
5457
5457
|
* <code>ExactCapacity</code>, and <code>PercentChangeInCapacity</code>.</p>
|
|
5458
5458
|
* @public
|
|
5459
5459
|
*/
|
|
5460
|
-
AdjustmentType?: string;
|
|
5460
|
+
AdjustmentType?: string | undefined;
|
|
5461
5461
|
/**
|
|
5462
5462
|
* @deprecated
|
|
5463
5463
|
*
|
|
@@ -5465,64 +5465,64 @@ export interface ScalingPolicy {
|
|
|
5465
5465
|
* instead.</p>
|
|
5466
5466
|
* @public
|
|
5467
5467
|
*/
|
|
5468
|
-
MinAdjustmentStep?: number;
|
|
5468
|
+
MinAdjustmentStep?: number | undefined;
|
|
5469
5469
|
/**
|
|
5470
5470
|
* <p>The minimum value to scale by when the adjustment type is
|
|
5471
5471
|
* <code>PercentChangeInCapacity</code>. </p>
|
|
5472
5472
|
* @public
|
|
5473
5473
|
*/
|
|
5474
|
-
MinAdjustmentMagnitude?: number;
|
|
5474
|
+
MinAdjustmentMagnitude?: number | undefined;
|
|
5475
5475
|
/**
|
|
5476
5476
|
* <p>The amount by which to scale, based on the specified adjustment type. A positive value
|
|
5477
5477
|
* adds to the current capacity while a negative number removes from the current
|
|
5478
5478
|
* capacity.</p>
|
|
5479
5479
|
* @public
|
|
5480
5480
|
*/
|
|
5481
|
-
ScalingAdjustment?: number;
|
|
5481
|
+
ScalingAdjustment?: number | undefined;
|
|
5482
5482
|
/**
|
|
5483
5483
|
* <p>The duration of the policy's cooldown period, in seconds.</p>
|
|
5484
5484
|
* @public
|
|
5485
5485
|
*/
|
|
5486
|
-
Cooldown?: number;
|
|
5486
|
+
Cooldown?: number | undefined;
|
|
5487
5487
|
/**
|
|
5488
5488
|
* <p>A set of adjustments that enable you to scale based on the size of the alarm
|
|
5489
5489
|
* breach.</p>
|
|
5490
5490
|
* @public
|
|
5491
5491
|
*/
|
|
5492
|
-
StepAdjustments?: StepAdjustment[];
|
|
5492
|
+
StepAdjustments?: StepAdjustment[] | undefined;
|
|
5493
5493
|
/**
|
|
5494
5494
|
* <p>The aggregation type for the CloudWatch metrics. The valid values are <code>Minimum</code>,
|
|
5495
5495
|
* <code>Maximum</code>, and <code>Average</code>.</p>
|
|
5496
5496
|
* @public
|
|
5497
5497
|
*/
|
|
5498
|
-
MetricAggregationType?: string;
|
|
5498
|
+
MetricAggregationType?: string | undefined;
|
|
5499
5499
|
/**
|
|
5500
5500
|
* <p>The estimated time, in seconds, until a newly launched instance can contribute to the
|
|
5501
5501
|
* CloudWatch metrics.</p>
|
|
5502
5502
|
* @public
|
|
5503
5503
|
*/
|
|
5504
|
-
EstimatedInstanceWarmup?: number;
|
|
5504
|
+
EstimatedInstanceWarmup?: number | undefined;
|
|
5505
5505
|
/**
|
|
5506
5506
|
* <p>The CloudWatch alarms related to the policy.</p>
|
|
5507
5507
|
* @public
|
|
5508
5508
|
*/
|
|
5509
|
-
Alarms?: Alarm[];
|
|
5509
|
+
Alarms?: Alarm[] | undefined;
|
|
5510
5510
|
/**
|
|
5511
5511
|
* <p>A target tracking scaling policy.</p>
|
|
5512
5512
|
* @public
|
|
5513
5513
|
*/
|
|
5514
|
-
TargetTrackingConfiguration?: TargetTrackingConfiguration;
|
|
5514
|
+
TargetTrackingConfiguration?: TargetTrackingConfiguration | undefined;
|
|
5515
5515
|
/**
|
|
5516
5516
|
* <p>Indicates whether the policy is enabled (<code>true</code>) or disabled
|
|
5517
5517
|
* (<code>false</code>).</p>
|
|
5518
5518
|
* @public
|
|
5519
5519
|
*/
|
|
5520
|
-
Enabled?: boolean;
|
|
5520
|
+
Enabled?: boolean | undefined;
|
|
5521
5521
|
/**
|
|
5522
5522
|
* <p>A predictive scaling policy.</p>
|
|
5523
5523
|
* @public
|
|
5524
5524
|
*/
|
|
5525
|
-
PredictiveScalingConfiguration?: PredictiveScalingConfiguration;
|
|
5525
|
+
PredictiveScalingConfiguration?: PredictiveScalingConfiguration | undefined;
|
|
5526
5526
|
}
|
|
5527
5527
|
/**
|
|
5528
5528
|
* @public
|
|
@@ -5532,7 +5532,7 @@ export interface PoliciesType {
|
|
|
5532
5532
|
* <p>The scaling policies.</p>
|
|
5533
5533
|
* @public
|
|
5534
5534
|
*/
|
|
5535
|
-
ScalingPolicies?: ScalingPolicy[];
|
|
5535
|
+
ScalingPolicies?: ScalingPolicy[] | undefined;
|
|
5536
5536
|
/**
|
|
5537
5537
|
* <p>A string that indicates that the response contains more items than can be returned in
|
|
5538
5538
|
* a single response. To receive additional items, specify this string for the
|
|
@@ -5540,7 +5540,7 @@ export interface PoliciesType {
|
|
|
5540
5540
|
* null when there are no more items to return.</p>
|
|
5541
5541
|
* @public
|
|
5542
5542
|
*/
|
|
5543
|
-
NextToken?: string;
|
|
5543
|
+
NextToken?: string | undefined;
|
|
5544
5544
|
}
|
|
5545
5545
|
/**
|
|
5546
5546
|
* @public
|
|
@@ -5554,29 +5554,29 @@ export interface DescribeScalingActivitiesType {
|
|
|
5554
5554
|
* <p>Array Members: Maximum number of 50 IDs.</p>
|
|
5555
5555
|
* @public
|
|
5556
5556
|
*/
|
|
5557
|
-
ActivityIds?: string[];
|
|
5557
|
+
ActivityIds?: string[] | undefined;
|
|
5558
5558
|
/**
|
|
5559
5559
|
* <p>The name of the Auto Scaling group.</p>
|
|
5560
5560
|
* @public
|
|
5561
5561
|
*/
|
|
5562
|
-
AutoScalingGroupName?: string;
|
|
5562
|
+
AutoScalingGroupName?: string | undefined;
|
|
5563
5563
|
/**
|
|
5564
5564
|
* <p>Indicates whether to include scaling activity from deleted Auto Scaling groups.</p>
|
|
5565
5565
|
* @public
|
|
5566
5566
|
*/
|
|
5567
|
-
IncludeDeletedGroups?: boolean;
|
|
5567
|
+
IncludeDeletedGroups?: boolean | undefined;
|
|
5568
5568
|
/**
|
|
5569
5569
|
* <p>The maximum number of items to return with this call. The default value is
|
|
5570
5570
|
* <code>100</code> and the maximum value is <code>100</code>.</p>
|
|
5571
5571
|
* @public
|
|
5572
5572
|
*/
|
|
5573
|
-
MaxRecords?: number;
|
|
5573
|
+
MaxRecords?: number | undefined;
|
|
5574
5574
|
/**
|
|
5575
5575
|
* <p>The token for the next set of items to return. (You received this token from a
|
|
5576
5576
|
* previous call.)</p>
|
|
5577
5577
|
* @public
|
|
5578
5578
|
*/
|
|
5579
|
-
NextToken?: string;
|
|
5579
|
+
NextToken?: string | undefined;
|
|
5580
5580
|
}
|
|
5581
5581
|
/**
|
|
5582
5582
|
* <p>Describes a process type.</p>
|
|
@@ -5646,7 +5646,7 @@ export interface ProcessesType {
|
|
|
5646
5646
|
* <p>The names of the process types.</p>
|
|
5647
5647
|
* @public
|
|
5648
5648
|
*/
|
|
5649
|
-
Processes?: ProcessType[];
|
|
5649
|
+
Processes?: ProcessType[] | undefined;
|
|
5650
5650
|
}
|
|
5651
5651
|
/**
|
|
5652
5652
|
* @public
|
|
@@ -5656,7 +5656,7 @@ export interface DescribeScheduledActionsType {
|
|
|
5656
5656
|
* <p>The name of the Auto Scaling group.</p>
|
|
5657
5657
|
* @public
|
|
5658
5658
|
*/
|
|
5659
|
-
AutoScalingGroupName?: string;
|
|
5659
|
+
AutoScalingGroupName?: string | undefined;
|
|
5660
5660
|
/**
|
|
5661
5661
|
* <p>The names of one or more scheduled actions. If you omit this property, all scheduled
|
|
5662
5662
|
* actions are described. If you specify an unknown scheduled action, it is ignored with no
|
|
@@ -5664,31 +5664,31 @@ export interface DescribeScheduledActionsType {
|
|
|
5664
5664
|
* <p>Array Members: Maximum number of 50 actions.</p>
|
|
5665
5665
|
* @public
|
|
5666
5666
|
*/
|
|
5667
|
-
ScheduledActionNames?: string[];
|
|
5667
|
+
ScheduledActionNames?: string[] | undefined;
|
|
5668
5668
|
/**
|
|
5669
5669
|
* <p>The earliest scheduled start time to return. If scheduled action names are provided,
|
|
5670
5670
|
* this property is ignored.</p>
|
|
5671
5671
|
* @public
|
|
5672
5672
|
*/
|
|
5673
|
-
StartTime?: Date;
|
|
5673
|
+
StartTime?: Date | undefined;
|
|
5674
5674
|
/**
|
|
5675
5675
|
* <p>The latest scheduled start time to return. If scheduled action names are provided,
|
|
5676
5676
|
* this property is ignored.</p>
|
|
5677
5677
|
* @public
|
|
5678
5678
|
*/
|
|
5679
|
-
EndTime?: Date;
|
|
5679
|
+
EndTime?: Date | undefined;
|
|
5680
5680
|
/**
|
|
5681
5681
|
* <p>The token for the next set of items to return. (You received this token from a
|
|
5682
5682
|
* previous call.)</p>
|
|
5683
5683
|
* @public
|
|
5684
5684
|
*/
|
|
5685
|
-
NextToken?: string;
|
|
5685
|
+
NextToken?: string | undefined;
|
|
5686
5686
|
/**
|
|
5687
5687
|
* <p>The maximum number of items to return with this call. The default value is
|
|
5688
5688
|
* <code>50</code> and the maximum value is <code>100</code>.</p>
|
|
5689
5689
|
* @public
|
|
5690
5690
|
*/
|
|
5691
|
-
MaxRecords?: number;
|
|
5691
|
+
MaxRecords?: number | undefined;
|
|
5692
5692
|
}
|
|
5693
5693
|
/**
|
|
5694
5694
|
* <p>Describes a scheduled scaling
|
|
@@ -5700,34 +5700,34 @@ export interface ScheduledUpdateGroupAction {
|
|
|
5700
5700
|
* <p>The name of the Auto Scaling group.</p>
|
|
5701
5701
|
* @public
|
|
5702
5702
|
*/
|
|
5703
|
-
AutoScalingGroupName?: string;
|
|
5703
|
+
AutoScalingGroupName?: string | undefined;
|
|
5704
5704
|
/**
|
|
5705
5705
|
* <p>The name of the scheduled action.</p>
|
|
5706
5706
|
* @public
|
|
5707
5707
|
*/
|
|
5708
|
-
ScheduledActionName?: string;
|
|
5708
|
+
ScheduledActionName?: string | undefined;
|
|
5709
5709
|
/**
|
|
5710
5710
|
* <p>The Amazon Resource Name (ARN) of the scheduled action.</p>
|
|
5711
5711
|
* @public
|
|
5712
5712
|
*/
|
|
5713
|
-
ScheduledActionARN?: string;
|
|
5713
|
+
ScheduledActionARN?: string | undefined;
|
|
5714
5714
|
/**
|
|
5715
5715
|
* <p>This property is no longer used.</p>
|
|
5716
5716
|
* @public
|
|
5717
5717
|
*/
|
|
5718
|
-
Time?: Date;
|
|
5718
|
+
Time?: Date | undefined;
|
|
5719
5719
|
/**
|
|
5720
5720
|
* <p>The date and time in UTC for this action to start. For example,
|
|
5721
5721
|
* <code>"2019-06-01T00:00:00Z"</code>. </p>
|
|
5722
5722
|
* @public
|
|
5723
5723
|
*/
|
|
5724
|
-
StartTime?: Date;
|
|
5724
|
+
StartTime?: Date | undefined;
|
|
5725
5725
|
/**
|
|
5726
5726
|
* <p>The date and time in UTC for the recurring schedule to end. For example,
|
|
5727
5727
|
* <code>"2019-06-01T00:00:00Z"</code>. </p>
|
|
5728
5728
|
* @public
|
|
5729
5729
|
*/
|
|
5730
|
-
EndTime?: Date;
|
|
5730
|
+
EndTime?: Date | undefined;
|
|
5731
5731
|
/**
|
|
5732
5732
|
* <p>The recurring schedule for the action, in Unix cron syntax format.</p>
|
|
5733
5733
|
* <p>When <code>StartTime</code> and <code>EndTime</code> are specified with
|
|
@@ -5735,28 +5735,28 @@ export interface ScheduledUpdateGroupAction {
|
|
|
5735
5735
|
* starts and stops.</p>
|
|
5736
5736
|
* @public
|
|
5737
5737
|
*/
|
|
5738
|
-
Recurrence?: string;
|
|
5738
|
+
Recurrence?: string | undefined;
|
|
5739
5739
|
/**
|
|
5740
5740
|
* <p>The minimum size of the Auto Scaling group.</p>
|
|
5741
5741
|
* @public
|
|
5742
5742
|
*/
|
|
5743
|
-
MinSize?: number;
|
|
5743
|
+
MinSize?: number | undefined;
|
|
5744
5744
|
/**
|
|
5745
5745
|
* <p>The maximum size of the Auto Scaling group.</p>
|
|
5746
5746
|
* @public
|
|
5747
5747
|
*/
|
|
5748
|
-
MaxSize?: number;
|
|
5748
|
+
MaxSize?: number | undefined;
|
|
5749
5749
|
/**
|
|
5750
5750
|
* <p>The desired capacity is the initial capacity of the Auto Scaling group after the scheduled
|
|
5751
5751
|
* action runs and the capacity it attempts to maintain.</p>
|
|
5752
5752
|
* @public
|
|
5753
5753
|
*/
|
|
5754
|
-
DesiredCapacity?: number;
|
|
5754
|
+
DesiredCapacity?: number | undefined;
|
|
5755
5755
|
/**
|
|
5756
5756
|
* <p>The time zone for the cron expression.</p>
|
|
5757
5757
|
* @public
|
|
5758
5758
|
*/
|
|
5759
|
-
TimeZone?: string;
|
|
5759
|
+
TimeZone?: string | undefined;
|
|
5760
5760
|
}
|
|
5761
5761
|
/**
|
|
5762
5762
|
* @public
|
|
@@ -5766,7 +5766,7 @@ export interface ScheduledActionsType {
|
|
|
5766
5766
|
* <p>The scheduled actions.</p>
|
|
5767
5767
|
* @public
|
|
5768
5768
|
*/
|
|
5769
|
-
ScheduledUpdateGroupActions?: ScheduledUpdateGroupAction[];
|
|
5769
|
+
ScheduledUpdateGroupActions?: ScheduledUpdateGroupAction[] | undefined;
|
|
5770
5770
|
/**
|
|
5771
5771
|
* <p>A string that indicates that the response contains more items than can be returned in
|
|
5772
5772
|
* a single response. To receive additional items, specify this string for the
|
|
@@ -5774,7 +5774,7 @@ export interface ScheduledActionsType {
|
|
|
5774
5774
|
* null when there are no more items to return.</p>
|
|
5775
5775
|
* @public
|
|
5776
5776
|
*/
|
|
5777
|
-
NextToken?: string;
|
|
5777
|
+
NextToken?: string | undefined;
|
|
5778
5778
|
}
|
|
5779
5779
|
/**
|
|
5780
5780
|
* @public
|
|
@@ -5785,19 +5785,19 @@ export interface DescribeTagsType {
|
|
|
5785
5785
|
* filter type (for example, <code>auto-scaling-group</code>) is 1000.</p>
|
|
5786
5786
|
* @public
|
|
5787
5787
|
*/
|
|
5788
|
-
Filters?: Filter[];
|
|
5788
|
+
Filters?: Filter[] | undefined;
|
|
5789
5789
|
/**
|
|
5790
5790
|
* <p>The token for the next set of items to return. (You received this token from a
|
|
5791
5791
|
* previous call.)</p>
|
|
5792
5792
|
* @public
|
|
5793
5793
|
*/
|
|
5794
|
-
NextToken?: string;
|
|
5794
|
+
NextToken?: string | undefined;
|
|
5795
5795
|
/**
|
|
5796
5796
|
* <p>The maximum number of items to return with this call. The default value is
|
|
5797
5797
|
* <code>50</code> and the maximum value is <code>100</code>.</p>
|
|
5798
5798
|
* @public
|
|
5799
5799
|
*/
|
|
5800
|
-
MaxRecords?: number;
|
|
5800
|
+
MaxRecords?: number | undefined;
|
|
5801
5801
|
}
|
|
5802
5802
|
/**
|
|
5803
5803
|
* @public
|
|
@@ -5807,7 +5807,7 @@ export interface TagsType {
|
|
|
5807
5807
|
* <p>One or more tags.</p>
|
|
5808
5808
|
* @public
|
|
5809
5809
|
*/
|
|
5810
|
-
Tags?: TagDescription[];
|
|
5810
|
+
Tags?: TagDescription[] | undefined;
|
|
5811
5811
|
/**
|
|
5812
5812
|
* <p>A string that indicates that the response contains more items than can be returned in
|
|
5813
5813
|
* a single response. To receive additional items, specify this string for the
|
|
@@ -5815,7 +5815,7 @@ export interface TagsType {
|
|
|
5815
5815
|
* null when there are no more items to return.</p>
|
|
5816
5816
|
* @public
|
|
5817
5817
|
*/
|
|
5818
|
-
NextToken?: string;
|
|
5818
|
+
NextToken?: string | undefined;
|
|
5819
5819
|
}
|
|
5820
5820
|
/**
|
|
5821
5821
|
* @public
|
|
@@ -5828,7 +5828,7 @@ export interface DescribeTerminationPolicyTypesAnswer {
|
|
|
5828
5828
|
* <code>OldestLaunchTemplate</code>, and <code>AllocationStrategy</code>.</p>
|
|
5829
5829
|
* @public
|
|
5830
5830
|
*/
|
|
5831
|
-
TerminationPolicyTypes?: string[];
|
|
5831
|
+
TerminationPolicyTypes?: string[] | undefined;
|
|
5832
5832
|
}
|
|
5833
5833
|
/**
|
|
5834
5834
|
* @public
|
|
@@ -5858,19 +5858,19 @@ export interface DescribeTrafficSourcesRequest {
|
|
|
5858
5858
|
* </ul>
|
|
5859
5859
|
* @public
|
|
5860
5860
|
*/
|
|
5861
|
-
TrafficSourceType?: string;
|
|
5861
|
+
TrafficSourceType?: string | undefined;
|
|
5862
5862
|
/**
|
|
5863
5863
|
* <p>The token for the next set of items to return. (You received this token from a
|
|
5864
5864
|
* previous call.)</p>
|
|
5865
5865
|
* @public
|
|
5866
5866
|
*/
|
|
5867
|
-
NextToken?: string;
|
|
5867
|
+
NextToken?: string | undefined;
|
|
5868
5868
|
/**
|
|
5869
5869
|
* <p>The maximum number of items to return with this call. The maximum value is
|
|
5870
5870
|
* <code>50</code>.</p>
|
|
5871
5871
|
* @public
|
|
5872
5872
|
*/
|
|
5873
|
-
MaxRecords?: number;
|
|
5873
|
+
MaxRecords?: number | undefined;
|
|
5874
5874
|
}
|
|
5875
5875
|
/**
|
|
5876
5876
|
* <p>Describes the state of a traffic source.</p>
|
|
@@ -5883,7 +5883,7 @@ export interface TrafficSourceState {
|
|
|
5883
5883
|
* <p>This is replaced by <code>Identifier</code>.</p>
|
|
5884
5884
|
* @public
|
|
5885
5885
|
*/
|
|
5886
|
-
TrafficSource?: string;
|
|
5886
|
+
TrafficSource?: string | undefined;
|
|
5887
5887
|
/**
|
|
5888
5888
|
* <p>Describes the current state of a traffic source.</p>
|
|
5889
5889
|
* <p>The state values are as follows:</p>
|
|
@@ -5919,12 +5919,12 @@ export interface TrafficSourceState {
|
|
|
5919
5919
|
* </ul>
|
|
5920
5920
|
* @public
|
|
5921
5921
|
*/
|
|
5922
|
-
State?: string;
|
|
5922
|
+
State?: string | undefined;
|
|
5923
5923
|
/**
|
|
5924
5924
|
* <p>The unique identifier of the traffic source.</p>
|
|
5925
5925
|
* @public
|
|
5926
5926
|
*/
|
|
5927
|
-
Identifier?: string;
|
|
5927
|
+
Identifier?: string | undefined;
|
|
5928
5928
|
/**
|
|
5929
5929
|
* <p>Provides additional context for the value of <code>Identifier</code>.</p>
|
|
5930
5930
|
* <p>The following lists the valid values:</p>
|
|
@@ -5947,7 +5947,7 @@ export interface TrafficSourceState {
|
|
|
5947
5947
|
* <p>Required if the identifier is the name of a Classic Load Balancer.</p>
|
|
5948
5948
|
* @public
|
|
5949
5949
|
*/
|
|
5950
|
-
Type?: string;
|
|
5950
|
+
Type?: string | undefined;
|
|
5951
5951
|
}
|
|
5952
5952
|
/**
|
|
5953
5953
|
* @public
|
|
@@ -5957,7 +5957,7 @@ export interface DescribeTrafficSourcesResponse {
|
|
|
5957
5957
|
* <p>Information about the traffic sources.</p>
|
|
5958
5958
|
* @public
|
|
5959
5959
|
*/
|
|
5960
|
-
TrafficSources?: TrafficSourceState[];
|
|
5960
|
+
TrafficSources?: TrafficSourceState[] | undefined;
|
|
5961
5961
|
/**
|
|
5962
5962
|
* <p>This string indicates that the response contains more items than can be returned in a
|
|
5963
5963
|
* single response. To receive additional items, specify this string for the
|
|
@@ -5965,7 +5965,7 @@ export interface DescribeTrafficSourcesResponse {
|
|
|
5965
5965
|
* null when there are no more items to return.</p>
|
|
5966
5966
|
* @public
|
|
5967
5967
|
*/
|
|
5968
|
-
NextToken?: string;
|
|
5968
|
+
NextToken?: string | undefined;
|
|
5969
5969
|
}
|
|
5970
5970
|
/**
|
|
5971
5971
|
* @public
|
|
@@ -5975,12 +5975,12 @@ export interface DescribeWarmPoolAnswer {
|
|
|
5975
5975
|
* <p>The warm pool configuration details. </p>
|
|
5976
5976
|
* @public
|
|
5977
5977
|
*/
|
|
5978
|
-
WarmPoolConfiguration?: WarmPoolConfiguration;
|
|
5978
|
+
WarmPoolConfiguration?: WarmPoolConfiguration | undefined;
|
|
5979
5979
|
/**
|
|
5980
5980
|
* <p>The instances that are currently in the warm pool.</p>
|
|
5981
5981
|
* @public
|
|
5982
5982
|
*/
|
|
5983
|
-
Instances?: Instance[];
|
|
5983
|
+
Instances?: Instance[] | undefined;
|
|
5984
5984
|
/**
|
|
5985
5985
|
* <p>This string indicates that the response contains more items than can be returned in a
|
|
5986
5986
|
* single response. To receive additional items, specify this string for the
|
|
@@ -5988,7 +5988,7 @@ export interface DescribeWarmPoolAnswer {
|
|
|
5988
5988
|
* null when there are no more items to return.</p>
|
|
5989
5989
|
* @public
|
|
5990
5990
|
*/
|
|
5991
|
-
NextToken?: string;
|
|
5991
|
+
NextToken?: string | undefined;
|
|
5992
5992
|
}
|
|
5993
5993
|
/**
|
|
5994
5994
|
* @public
|
|
@@ -6004,13 +6004,13 @@ export interface DescribeWarmPoolType {
|
|
|
6004
6004
|
* <code>50</code>.</p>
|
|
6005
6005
|
* @public
|
|
6006
6006
|
*/
|
|
6007
|
-
MaxRecords?: number;
|
|
6007
|
+
MaxRecords?: number | undefined;
|
|
6008
6008
|
/**
|
|
6009
6009
|
* <p>The token for the next set of instances to return. (You received this token from a
|
|
6010
6010
|
* previous call.)</p>
|
|
6011
6011
|
* @public
|
|
6012
6012
|
*/
|
|
6013
|
-
NextToken?: string;
|
|
6013
|
+
NextToken?: string | undefined;
|
|
6014
6014
|
}
|
|
6015
6015
|
/**
|
|
6016
6016
|
* @public
|
|
@@ -6020,7 +6020,7 @@ export interface DetachInstancesAnswer {
|
|
|
6020
6020
|
* <p>The activities related to detaching the instances from the Auto Scaling group.</p>
|
|
6021
6021
|
* @public
|
|
6022
6022
|
*/
|
|
6023
|
-
Activities?: Activity[];
|
|
6023
|
+
Activities?: Activity[] | undefined;
|
|
6024
6024
|
}
|
|
6025
6025
|
/**
|
|
6026
6026
|
* @public
|
|
@@ -6030,7 +6030,7 @@ export interface DetachInstancesQuery {
|
|
|
6030
6030
|
* <p>The IDs of the instances. You can specify up to 20 instances.</p>
|
|
6031
6031
|
* @public
|
|
6032
6032
|
*/
|
|
6033
|
-
InstanceIds?: string[];
|
|
6033
|
+
InstanceIds?: string[] | undefined;
|
|
6034
6034
|
/**
|
|
6035
6035
|
* <p>The name of the Auto Scaling group.</p>
|
|
6036
6036
|
* @public
|
|
@@ -6224,7 +6224,7 @@ export interface DisableMetricsCollectionQuery {
|
|
|
6224
6224
|
* Amazon EC2 Auto Scaling</a> in the <i>Amazon EC2 Auto Scaling User Guide</i>.</p>
|
|
6225
6225
|
* @public
|
|
6226
6226
|
*/
|
|
6227
|
-
Metrics?: string[];
|
|
6227
|
+
Metrics?: string[] | undefined;
|
|
6228
6228
|
}
|
|
6229
6229
|
/**
|
|
6230
6230
|
* @public
|
|
@@ -6346,7 +6346,7 @@ export interface EnableMetricsCollectionQuery {
|
|
|
6346
6346
|
* Amazon EC2 Auto Scaling</a> in the <i>Amazon EC2 Auto Scaling User Guide</i>.</p>
|
|
6347
6347
|
* @public
|
|
6348
6348
|
*/
|
|
6349
|
-
Metrics?: string[];
|
|
6349
|
+
Metrics?: string[] | undefined;
|
|
6350
6350
|
/**
|
|
6351
6351
|
* <p>The frequency at which Amazon EC2 Auto Scaling sends aggregated data to CloudWatch. The only valid value is
|
|
6352
6352
|
* <code>1Minute</code>.</p>
|
|
@@ -6362,7 +6362,7 @@ export interface EnterStandbyAnswer {
|
|
|
6362
6362
|
* <p>The activities related to moving instances into <code>Standby</code> mode.</p>
|
|
6363
6363
|
* @public
|
|
6364
6364
|
*/
|
|
6365
|
-
Activities?: Activity[];
|
|
6365
|
+
Activities?: Activity[] | undefined;
|
|
6366
6366
|
}
|
|
6367
6367
|
/**
|
|
6368
6368
|
* @public
|
|
@@ -6372,7 +6372,7 @@ export interface EnterStandbyQuery {
|
|
|
6372
6372
|
* <p>The IDs of the instances. You can specify up to 20 instances.</p>
|
|
6373
6373
|
* @public
|
|
6374
6374
|
*/
|
|
6375
|
-
InstanceIds?: string[];
|
|
6375
|
+
InstanceIds?: string[] | undefined;
|
|
6376
6376
|
/**
|
|
6377
6377
|
* <p>The name of the Auto Scaling group.</p>
|
|
6378
6378
|
* @public
|
|
@@ -6393,7 +6393,7 @@ export interface ExecutePolicyType {
|
|
|
6393
6393
|
* <p>The name of the Auto Scaling group.</p>
|
|
6394
6394
|
* @public
|
|
6395
6395
|
*/
|
|
6396
|
-
AutoScalingGroupName?: string;
|
|
6396
|
+
AutoScalingGroupName?: string | undefined;
|
|
6397
6397
|
/**
|
|
6398
6398
|
* <p>The name or ARN of the policy.</p>
|
|
6399
6399
|
* @public
|
|
@@ -6407,7 +6407,7 @@ export interface ExecutePolicyType {
|
|
|
6407
6407
|
* cooldowns for Amazon EC2 Auto Scaling</a> in the <i>Amazon EC2 Auto Scaling User Guide</i>.</p>
|
|
6408
6408
|
* @public
|
|
6409
6409
|
*/
|
|
6410
|
-
HonorCooldown?: boolean;
|
|
6410
|
+
HonorCooldown?: boolean | undefined;
|
|
6411
6411
|
/**
|
|
6412
6412
|
* <p>The metric value to compare to <code>BreachThreshold</code>. This enables you to
|
|
6413
6413
|
* execute a policy of type <code>StepScaling</code> and determine which step adjustment to
|
|
@@ -6420,14 +6420,14 @@ export interface ExecutePolicyType {
|
|
|
6420
6420
|
* otherwise.</p>
|
|
6421
6421
|
* @public
|
|
6422
6422
|
*/
|
|
6423
|
-
MetricValue?: number;
|
|
6423
|
+
MetricValue?: number | undefined;
|
|
6424
6424
|
/**
|
|
6425
6425
|
* <p>The breach threshold for the alarm.</p>
|
|
6426
6426
|
* <p>Required if the policy type is <code>StepScaling</code> and not supported
|
|
6427
6427
|
* otherwise.</p>
|
|
6428
6428
|
* @public
|
|
6429
6429
|
*/
|
|
6430
|
-
BreachThreshold?: number;
|
|
6430
|
+
BreachThreshold?: number | undefined;
|
|
6431
6431
|
}
|
|
6432
6432
|
/**
|
|
6433
6433
|
* @public
|
|
@@ -6437,7 +6437,7 @@ export interface ExitStandbyAnswer {
|
|
|
6437
6437
|
* <p>The activities related to moving instances out of <code>Standby</code> mode.</p>
|
|
6438
6438
|
* @public
|
|
6439
6439
|
*/
|
|
6440
|
-
Activities?: Activity[];
|
|
6440
|
+
Activities?: Activity[] | undefined;
|
|
6441
6441
|
}
|
|
6442
6442
|
/**
|
|
6443
6443
|
* @public
|
|
@@ -6447,7 +6447,7 @@ export interface ExitStandbyQuery {
|
|
|
6447
6447
|
* <p>The IDs of the instances. You can specify up to 20 instances.</p>
|
|
6448
6448
|
* @public
|
|
6449
6449
|
*/
|
|
6450
|
-
InstanceIds?: string[];
|
|
6450
|
+
InstanceIds?: string[] | undefined;
|
|
6451
6451
|
/**
|
|
6452
6452
|
* <p>The name of the Auto Scaling group.</p>
|
|
6453
6453
|
* @public
|
|
@@ -6581,7 +6581,7 @@ export interface PutLifecycleHookType {
|
|
|
6581
6581
|
* <p>Required for new lifecycle hooks, but optional when updating existing hooks.</p>
|
|
6582
6582
|
* @public
|
|
6583
6583
|
*/
|
|
6584
|
-
LifecycleTransition?: string;
|
|
6584
|
+
LifecycleTransition?: string | undefined;
|
|
6585
6585
|
/**
|
|
6586
6586
|
* <p>The ARN of the IAM role that allows the Auto Scaling group to publish to the specified
|
|
6587
6587
|
* notification target.</p>
|
|
@@ -6589,7 +6589,7 @@ export interface PutLifecycleHookType {
|
|
|
6589
6589
|
* for new lifecycle hooks, but optional when updating existing hooks.</p>
|
|
6590
6590
|
* @public
|
|
6591
6591
|
*/
|
|
6592
|
-
RoleARN?: string;
|
|
6592
|
+
RoleARN?: string | undefined;
|
|
6593
6593
|
/**
|
|
6594
6594
|
* <p>The Amazon Resource Name (ARN) of the notification target that Amazon EC2 Auto Scaling uses to notify
|
|
6595
6595
|
* you when an instance is in a wait state for the lifecycle hook. You can specify either
|
|
@@ -6602,20 +6602,20 @@ export interface PutLifecycleHookType {
|
|
|
6602
6602
|
* "autoscaling:TEST_NOTIFICATION"</code>.</p>
|
|
6603
6603
|
* @public
|
|
6604
6604
|
*/
|
|
6605
|
-
NotificationTargetARN?: string;
|
|
6605
|
+
NotificationTargetARN?: string | undefined;
|
|
6606
6606
|
/**
|
|
6607
6607
|
* <p>Additional information that you want to include any time Amazon EC2 Auto Scaling sends a message to
|
|
6608
6608
|
* the notification target.</p>
|
|
6609
6609
|
* @public
|
|
6610
6610
|
*/
|
|
6611
|
-
NotificationMetadata?: string;
|
|
6611
|
+
NotificationMetadata?: string | undefined;
|
|
6612
6612
|
/**
|
|
6613
6613
|
* <p>The maximum time, in seconds, that can elapse before the lifecycle hook times out. The
|
|
6614
6614
|
* range is from <code>30</code> to <code>7200</code> seconds. The default value is
|
|
6615
6615
|
* <code>3600</code> seconds (1 hour).</p>
|
|
6616
6616
|
* @public
|
|
6617
6617
|
*/
|
|
6618
|
-
HeartbeatTimeout?: number;
|
|
6618
|
+
HeartbeatTimeout?: number | undefined;
|
|
6619
6619
|
/**
|
|
6620
6620
|
* <p>The action the Auto Scaling group takes when the lifecycle hook timeout elapses or if an
|
|
6621
6621
|
* unexpected failure occurs. The default value is <code>ABANDON</code>.</p>
|
|
@@ -6623,7 +6623,7 @@ export interface PutLifecycleHookType {
|
|
|
6623
6623
|
* </p>
|
|
6624
6624
|
* @public
|
|
6625
6625
|
*/
|
|
6626
|
-
DefaultResult?: string;
|
|
6626
|
+
DefaultResult?: string | undefined;
|
|
6627
6627
|
}
|
|
6628
6628
|
/**
|
|
6629
6629
|
* @public
|
|
@@ -6655,12 +6655,12 @@ export interface PolicyARNType {
|
|
|
6655
6655
|
* <p>The Amazon Resource Name (ARN) of the policy.</p>
|
|
6656
6656
|
* @public
|
|
6657
6657
|
*/
|
|
6658
|
-
PolicyARN?: string;
|
|
6658
|
+
PolicyARN?: string | undefined;
|
|
6659
6659
|
/**
|
|
6660
6660
|
* <p>The CloudWatch alarms created for the target tracking scaling policy.</p>
|
|
6661
6661
|
* @public
|
|
6662
6662
|
*/
|
|
6663
|
-
Alarms?: Alarm[];
|
|
6663
|
+
Alarms?: Alarm[] | undefined;
|
|
6664
6664
|
}
|
|
6665
6665
|
/**
|
|
6666
6666
|
* @public
|
|
@@ -6701,7 +6701,7 @@ export interface PutScalingPolicyType {
|
|
|
6701
6701
|
* </ul>
|
|
6702
6702
|
* @public
|
|
6703
6703
|
*/
|
|
6704
|
-
PolicyType?: string;
|
|
6704
|
+
PolicyType?: string | undefined;
|
|
6705
6705
|
/**
|
|
6706
6706
|
* <p>Specifies how the scaling adjustment is interpreted (for example, an absolute number
|
|
6707
6707
|
* or a percentage). The valid values are <code>ChangeInCapacity</code>,
|
|
@@ -6710,7 +6710,7 @@ export interface PutScalingPolicyType {
|
|
|
6710
6710
|
* For more information, see <a href="https://docs.aws.amazon.com/autoscaling/ec2/userguide/as-scaling-simple-step.html#as-scaling-adjustment">Scaling adjustment types</a> in the <i>Amazon EC2 Auto Scaling User Guide</i>.</p>
|
|
6711
6711
|
* @public
|
|
6712
6712
|
*/
|
|
6713
|
-
AdjustmentType?: string;
|
|
6713
|
+
AdjustmentType?: string | undefined;
|
|
6714
6714
|
/**
|
|
6715
6715
|
* @deprecated
|
|
6716
6716
|
*
|
|
@@ -6718,7 +6718,7 @@ export interface PutScalingPolicyType {
|
|
|
6718
6718
|
* instead.</p>
|
|
6719
6719
|
* @public
|
|
6720
6720
|
*/
|
|
6721
|
-
MinAdjustmentStep?: number;
|
|
6721
|
+
MinAdjustmentStep?: number | undefined;
|
|
6722
6722
|
/**
|
|
6723
6723
|
* <p>The minimum value to scale by when the adjustment type is
|
|
6724
6724
|
* <code>PercentChangeInCapacity</code>. For example, suppose that you create a step
|
|
@@ -6737,7 +6737,7 @@ export interface PutScalingPolicyType {
|
|
|
6737
6737
|
* </note>
|
|
6738
6738
|
* @public
|
|
6739
6739
|
*/
|
|
6740
|
-
MinAdjustmentMagnitude?: number;
|
|
6740
|
+
MinAdjustmentMagnitude?: number | undefined;
|
|
6741
6741
|
/**
|
|
6742
6742
|
* <p>The amount by which to scale, based on the specified adjustment type. A positive value
|
|
6743
6743
|
* adds to the current capacity while a negative number removes from the current capacity.
|
|
@@ -6746,7 +6746,7 @@ export interface PutScalingPolicyType {
|
|
|
6746
6746
|
* policy type.) </p>
|
|
6747
6747
|
* @public
|
|
6748
6748
|
*/
|
|
6749
|
-
ScalingAdjustment?: number;
|
|
6749
|
+
ScalingAdjustment?: number | undefined;
|
|
6750
6750
|
/**
|
|
6751
6751
|
* <p>A cooldown period, in seconds, that applies to a specific simple scaling policy. When
|
|
6752
6752
|
* a cooldown period is specified here, it overrides the default cooldown.</p>
|
|
@@ -6756,7 +6756,7 @@ export interface PutScalingPolicyType {
|
|
|
6756
6756
|
* <p>Default: None</p>
|
|
6757
6757
|
* @public
|
|
6758
6758
|
*/
|
|
6759
|
-
Cooldown?: number;
|
|
6759
|
+
Cooldown?: number | undefined;
|
|
6760
6760
|
/**
|
|
6761
6761
|
* <p>The aggregation type for the CloudWatch metrics. The valid values are <code>Minimum</code>,
|
|
6762
6762
|
* <code>Maximum</code>, and <code>Average</code>. If the aggregation type is null, the
|
|
@@ -6764,7 +6764,7 @@ export interface PutScalingPolicyType {
|
|
|
6764
6764
|
* <p>Valid only if the policy type is <code>StepScaling</code>.</p>
|
|
6765
6765
|
* @public
|
|
6766
6766
|
*/
|
|
6767
|
-
MetricAggregationType?: string;
|
|
6767
|
+
MetricAggregationType?: string | undefined;
|
|
6768
6768
|
/**
|
|
6769
6769
|
* <p>A set of adjustments that enable you to scale based on the size of the alarm
|
|
6770
6770
|
* breach.</p>
|
|
@@ -6772,7 +6772,7 @@ export interface PutScalingPolicyType {
|
|
|
6772
6772
|
* policy type.) </p>
|
|
6773
6773
|
* @public
|
|
6774
6774
|
*/
|
|
6775
|
-
StepAdjustments?: StepAdjustment[];
|
|
6775
|
+
StepAdjustments?: StepAdjustment[] | undefined;
|
|
6776
6776
|
/**
|
|
6777
6777
|
* <p>
|
|
6778
6778
|
* <i>Not needed if the default instance warmup is defined for the
|
|
@@ -6791,7 +6791,7 @@ export interface PutScalingPolicyType {
|
|
|
6791
6791
|
* </note>
|
|
6792
6792
|
* @public
|
|
6793
6793
|
*/
|
|
6794
|
-
EstimatedInstanceWarmup?: number;
|
|
6794
|
+
EstimatedInstanceWarmup?: number | undefined;
|
|
6795
6795
|
/**
|
|
6796
6796
|
* <p>A target tracking scaling policy. Provides support for predefined or custom
|
|
6797
6797
|
* metrics.</p>
|
|
@@ -6826,7 +6826,7 @@ export interface PutScalingPolicyType {
|
|
|
6826
6826
|
* <p>Required if the policy type is <code>TargetTrackingScaling</code>.</p>
|
|
6827
6827
|
* @public
|
|
6828
6828
|
*/
|
|
6829
|
-
TargetTrackingConfiguration?: TargetTrackingConfiguration;
|
|
6829
|
+
TargetTrackingConfiguration?: TargetTrackingConfiguration | undefined;
|
|
6830
6830
|
/**
|
|
6831
6831
|
* <p>Indicates whether the scaling policy is enabled or disabled. The default is enabled.
|
|
6832
6832
|
* For more information, see <a href="https://docs.aws.amazon.com/autoscaling/ec2/userguide/as-enable-disable-scaling-policy.html">Disable a
|
|
@@ -6834,7 +6834,7 @@ export interface PutScalingPolicyType {
|
|
|
6834
6834
|
* <i>Amazon EC2 Auto Scaling User Guide</i>.</p>
|
|
6835
6835
|
* @public
|
|
6836
6836
|
*/
|
|
6837
|
-
Enabled?: boolean;
|
|
6837
|
+
Enabled?: boolean | undefined;
|
|
6838
6838
|
/**
|
|
6839
6839
|
* <p>A predictive scaling policy. Provides support for predefined and custom
|
|
6840
6840
|
* metrics.</p>
|
|
@@ -6845,7 +6845,7 @@ export interface PutScalingPolicyType {
|
|
|
6845
6845
|
* <p>Required if the policy type is <code>PredictiveScaling</code>.</p>
|
|
6846
6846
|
* @public
|
|
6847
6847
|
*/
|
|
6848
|
-
PredictiveScalingConfiguration?: PredictiveScalingConfiguration;
|
|
6848
|
+
PredictiveScalingConfiguration?: PredictiveScalingConfiguration | undefined;
|
|
6849
6849
|
}
|
|
6850
6850
|
/**
|
|
6851
6851
|
* @public
|
|
@@ -6865,7 +6865,7 @@ export interface PutScheduledUpdateGroupActionType {
|
|
|
6865
6865
|
* <p>This property is no longer used.</p>
|
|
6866
6866
|
* @public
|
|
6867
6867
|
*/
|
|
6868
|
-
Time?: Date;
|
|
6868
|
+
Time?: Date | undefined;
|
|
6869
6869
|
/**
|
|
6870
6870
|
* <p>The date and time for this action to start, in YYYY-MM-DDThh:mm:ssZ format in UTC/GMT
|
|
6871
6871
|
* only and in quotes (for example, <code>"2021-06-01T00:00:00Z"</code>).</p>
|
|
@@ -6874,13 +6874,13 @@ export interface PutScheduledUpdateGroupActionType {
|
|
|
6874
6874
|
* recurrence.</p>
|
|
6875
6875
|
* @public
|
|
6876
6876
|
*/
|
|
6877
|
-
StartTime?: Date;
|
|
6877
|
+
StartTime?: Date | undefined;
|
|
6878
6878
|
/**
|
|
6879
6879
|
* <p>The date and time for the recurring schedule to end, in UTC. For example,
|
|
6880
6880
|
* <code>"2021-06-01T00:00:00Z"</code>.</p>
|
|
6881
6881
|
* @public
|
|
6882
6882
|
*/
|
|
6883
|
-
EndTime?: Date;
|
|
6883
|
+
EndTime?: Date | undefined;
|
|
6884
6884
|
/**
|
|
6885
6885
|
* <p>The recurring schedule for this action. This format consists of five fields separated
|
|
6886
6886
|
* by white spaces: [Minute] [Hour] [Day_of_Month] [Month_of_Year] [Day_of_Week]. The value
|
|
@@ -6892,17 +6892,17 @@ export interface PutScheduledUpdateGroupActionType {
|
|
|
6892
6892
|
* <p>Cron expressions use Universal Coordinated Time (UTC) by default.</p>
|
|
6893
6893
|
* @public
|
|
6894
6894
|
*/
|
|
6895
|
-
Recurrence?: string;
|
|
6895
|
+
Recurrence?: string | undefined;
|
|
6896
6896
|
/**
|
|
6897
6897
|
* <p>The minimum size of the Auto Scaling group.</p>
|
|
6898
6898
|
* @public
|
|
6899
6899
|
*/
|
|
6900
|
-
MinSize?: number;
|
|
6900
|
+
MinSize?: number | undefined;
|
|
6901
6901
|
/**
|
|
6902
6902
|
* <p>The maximum size of the Auto Scaling group.</p>
|
|
6903
6903
|
* @public
|
|
6904
6904
|
*/
|
|
6905
|
-
MaxSize?: number;
|
|
6905
|
+
MaxSize?: number | undefined;
|
|
6906
6906
|
/**
|
|
6907
6907
|
* <p>The desired capacity is the initial capacity of the Auto Scaling group after the scheduled
|
|
6908
6908
|
* action runs and the capacity it attempts to maintain. It can scale beyond this capacity
|
|
@@ -6913,7 +6913,7 @@ export interface PutScheduledUpdateGroupActionType {
|
|
|
6913
6913
|
* </note>
|
|
6914
6914
|
* @public
|
|
6915
6915
|
*/
|
|
6916
|
-
DesiredCapacity?: number;
|
|
6916
|
+
DesiredCapacity?: number | undefined;
|
|
6917
6917
|
/**
|
|
6918
6918
|
* <p>Specifies the time zone for a cron expression. If a time zone is not provided, UTC is
|
|
6919
6919
|
* used by default. </p>
|
|
@@ -6922,7 +6922,7 @@ export interface PutScheduledUpdateGroupActionType {
|
|
|
6922
6922
|
* more information, see <a href="https://en.wikipedia.org/wiki/List_of_tz_database_time_zones">https://en.wikipedia.org/wiki/List_of_tz_database_time_zones</a>.</p>
|
|
6923
6923
|
* @public
|
|
6924
6924
|
*/
|
|
6925
|
-
TimeZone?: string;
|
|
6925
|
+
TimeZone?: string | undefined;
|
|
6926
6926
|
}
|
|
6927
6927
|
/**
|
|
6928
6928
|
* @public
|
|
@@ -6959,27 +6959,27 @@ export interface PutWarmPoolType {
|
|
|
6959
6959
|
* include the property but specify -1 for the value. </p>
|
|
6960
6960
|
* @public
|
|
6961
6961
|
*/
|
|
6962
|
-
MaxGroupPreparedCapacity?: number;
|
|
6962
|
+
MaxGroupPreparedCapacity?: number | undefined;
|
|
6963
6963
|
/**
|
|
6964
6964
|
* <p>Specifies the minimum number of instances to maintain in the warm pool. This helps you
|
|
6965
6965
|
* to ensure that there is always a certain number of warmed instances available to handle
|
|
6966
6966
|
* traffic spikes. Defaults to 0 if not specified.</p>
|
|
6967
6967
|
* @public
|
|
6968
6968
|
*/
|
|
6969
|
-
MinSize?: number;
|
|
6969
|
+
MinSize?: number | undefined;
|
|
6970
6970
|
/**
|
|
6971
6971
|
* <p>Sets the instance state to transition to after the lifecycle actions are complete.
|
|
6972
6972
|
* Default is <code>Stopped</code>.</p>
|
|
6973
6973
|
* @public
|
|
6974
6974
|
*/
|
|
6975
|
-
PoolState?: WarmPoolState;
|
|
6975
|
+
PoolState?: WarmPoolState | undefined;
|
|
6976
6976
|
/**
|
|
6977
6977
|
* <p>Indicates whether instances in the Auto Scaling group can be returned to the warm pool on
|
|
6978
6978
|
* scale in. The default is to terminate instances in the Auto Scaling group when the group scales
|
|
6979
6979
|
* in.</p>
|
|
6980
6980
|
* @public
|
|
6981
6981
|
*/
|
|
6982
|
-
InstanceReusePolicy?: InstanceReusePolicy;
|
|
6982
|
+
InstanceReusePolicy?: InstanceReusePolicy | undefined;
|
|
6983
6983
|
}
|
|
6984
6984
|
/**
|
|
6985
6985
|
* @public
|
|
@@ -7006,12 +7006,12 @@ export interface RecordLifecycleActionHeartbeatType {
|
|
|
7006
7006
|
* you created the lifecycle hook.</p>
|
|
7007
7007
|
* @public
|
|
7008
7008
|
*/
|
|
7009
|
-
LifecycleActionToken?: string;
|
|
7009
|
+
LifecycleActionToken?: string | undefined;
|
|
7010
7010
|
/**
|
|
7011
7011
|
* <p>The ID of the instance.</p>
|
|
7012
7012
|
* @public
|
|
7013
7013
|
*/
|
|
7014
|
-
InstanceId?: string;
|
|
7014
|
+
InstanceId?: string | undefined;
|
|
7015
7015
|
}
|
|
7016
7016
|
/**
|
|
7017
7017
|
* @public
|
|
@@ -7074,7 +7074,7 @@ export interface ScalingProcessQuery {
|
|
|
7074
7074
|
* <p>If you omit this property, all processes are specified.</p>
|
|
7075
7075
|
* @public
|
|
7076
7076
|
*/
|
|
7077
|
-
ScalingProcesses?: string[];
|
|
7077
|
+
ScalingProcesses?: string[] | undefined;
|
|
7078
7078
|
}
|
|
7079
7079
|
/**
|
|
7080
7080
|
* <p>The request failed because a desired configuration was not found or an incompatible
|
|
@@ -7100,7 +7100,7 @@ export interface RollbackInstanceRefreshAnswer {
|
|
|
7100
7100
|
* the instance refresh when it was started.</p>
|
|
7101
7101
|
* @public
|
|
7102
7102
|
*/
|
|
7103
|
-
InstanceRefreshId?: string;
|
|
7103
|
+
InstanceRefreshId?: string | undefined;
|
|
7104
7104
|
}
|
|
7105
7105
|
/**
|
|
7106
7106
|
* @public
|
|
@@ -7133,7 +7133,7 @@ export interface SetDesiredCapacityType {
|
|
|
7133
7133
|
* not honor the cooldown period during manual scaling activities.</p>
|
|
7134
7134
|
* @public
|
|
7135
7135
|
*/
|
|
7136
|
-
HonorCooldown?: boolean;
|
|
7136
|
+
HonorCooldown?: boolean | undefined;
|
|
7137
7137
|
}
|
|
7138
7138
|
/**
|
|
7139
7139
|
* @public
|
|
@@ -7160,7 +7160,7 @@ export interface SetInstanceHealthQuery {
|
|
|
7160
7160
|
* <i>Amazon EC2 Auto Scaling User Guide</i>.</p>
|
|
7161
7161
|
* @public
|
|
7162
7162
|
*/
|
|
7163
|
-
ShouldRespectGracePeriod?: boolean;
|
|
7163
|
+
ShouldRespectGracePeriod?: boolean | undefined;
|
|
7164
7164
|
}
|
|
7165
7165
|
/**
|
|
7166
7166
|
* @public
|
|
@@ -7209,7 +7209,7 @@ export interface StartInstanceRefreshAnswer {
|
|
|
7209
7209
|
* <p>A unique ID for tracking the progress of the instance refresh.</p>
|
|
7210
7210
|
* @public
|
|
7211
7211
|
*/
|
|
7212
|
-
InstanceRefreshId?: string;
|
|
7212
|
+
InstanceRefreshId?: string | undefined;
|
|
7213
7213
|
}
|
|
7214
7214
|
/**
|
|
7215
7215
|
* @public
|
|
@@ -7236,7 +7236,7 @@ export interface StartInstanceRefreshType {
|
|
|
7236
7236
|
* <code>Rolling</code>.</p>
|
|
7237
7237
|
* @public
|
|
7238
7238
|
*/
|
|
7239
|
-
Strategy?: RefreshStrategy;
|
|
7239
|
+
Strategy?: RefreshStrategy | undefined;
|
|
7240
7240
|
/**
|
|
7241
7241
|
* <p>The desired configuration. For example, the desired configuration can specify a new
|
|
7242
7242
|
* launch template or a new version of the current launch template.</p>
|
|
@@ -7252,7 +7252,7 @@ export interface StartInstanceRefreshType {
|
|
|
7252
7252
|
* </note>
|
|
7253
7253
|
* @public
|
|
7254
7254
|
*/
|
|
7255
|
-
DesiredConfiguration?: DesiredConfiguration;
|
|
7255
|
+
DesiredConfiguration?: DesiredConfiguration | undefined;
|
|
7256
7256
|
/**
|
|
7257
7257
|
* <p>Sets your preferences for the instance refresh so that it performs as expected when
|
|
7258
7258
|
* you start it. Includes the instance warmup time, the minimum and maximum healthy
|
|
@@ -7278,7 +7278,7 @@ export interface StartInstanceRefreshType {
|
|
|
7278
7278
|
* </ul>
|
|
7279
7279
|
* @public
|
|
7280
7280
|
*/
|
|
7281
|
-
Preferences?: RefreshPreferences;
|
|
7281
|
+
Preferences?: RefreshPreferences | undefined;
|
|
7282
7282
|
}
|
|
7283
7283
|
/**
|
|
7284
7284
|
* @public
|
|
@@ -7311,26 +7311,26 @@ export interface UpdateAutoScalingGroupType {
|
|
|
7311
7311
|
* <code>LaunchTemplate</code> or <code>MixedInstancesPolicy</code>.</p>
|
|
7312
7312
|
* @public
|
|
7313
7313
|
*/
|
|
7314
|
-
LaunchConfigurationName?: string;
|
|
7314
|
+
LaunchConfigurationName?: string | undefined;
|
|
7315
7315
|
/**
|
|
7316
7316
|
* <p>The launch template and version to use to specify the updates. If you specify
|
|
7317
7317
|
* <code>LaunchTemplate</code> in your update request, you can't specify
|
|
7318
7318
|
* <code>LaunchConfigurationName</code> or <code>MixedInstancesPolicy</code>.</p>
|
|
7319
7319
|
* @public
|
|
7320
7320
|
*/
|
|
7321
|
-
LaunchTemplate?: LaunchTemplateSpecification;
|
|
7321
|
+
LaunchTemplate?: LaunchTemplateSpecification | undefined;
|
|
7322
7322
|
/**
|
|
7323
7323
|
* <p>The mixed instances policy. For more information, see <a href="https://docs.aws.amazon.com/autoscaling/ec2/userguide/ec2-auto-scaling-mixed-instances-groups.html">Auto Scaling
|
|
7324
7324
|
* groups with multiple instance types and purchase options</a> in the
|
|
7325
7325
|
* <i>Amazon EC2 Auto Scaling User Guide</i>.</p>
|
|
7326
7326
|
* @public
|
|
7327
7327
|
*/
|
|
7328
|
-
MixedInstancesPolicy?: MixedInstancesPolicy;
|
|
7328
|
+
MixedInstancesPolicy?: MixedInstancesPolicy | undefined;
|
|
7329
7329
|
/**
|
|
7330
7330
|
* <p>The minimum size of the Auto Scaling group.</p>
|
|
7331
7331
|
* @public
|
|
7332
7332
|
*/
|
|
7333
|
-
MinSize?: number;
|
|
7333
|
+
MinSize?: number | undefined;
|
|
7334
7334
|
/**
|
|
7335
7335
|
* <p>The maximum size of the Auto Scaling group.</p>
|
|
7336
7336
|
* <note>
|
|
@@ -7342,7 +7342,7 @@ export interface UpdateAutoScalingGroupType {
|
|
|
7342
7342
|
* </note>
|
|
7343
7343
|
* @public
|
|
7344
7344
|
*/
|
|
7345
|
-
MaxSize?: number;
|
|
7345
|
+
MaxSize?: number | undefined;
|
|
7346
7346
|
/**
|
|
7347
7347
|
* <p>The desired capacity is the initial capacity of the Auto Scaling group after this operation
|
|
7348
7348
|
* completes and the capacity it attempts to maintain. This number must be greater than or
|
|
@@ -7350,7 +7350,7 @@ export interface UpdateAutoScalingGroupType {
|
|
|
7350
7350
|
* group.</p>
|
|
7351
7351
|
* @public
|
|
7352
7352
|
*/
|
|
7353
|
-
DesiredCapacity?: number;
|
|
7353
|
+
DesiredCapacity?: number | undefined;
|
|
7354
7354
|
/**
|
|
7355
7355
|
* <p>
|
|
7356
7356
|
* <i>Only needed if you use simple scaling policies.</i>
|
|
@@ -7360,12 +7360,12 @@ export interface UpdateAutoScalingGroupType {
|
|
|
7360
7360
|
* cooldowns for Amazon EC2 Auto Scaling</a> in the <i>Amazon EC2 Auto Scaling User Guide</i>.</p>
|
|
7361
7361
|
* @public
|
|
7362
7362
|
*/
|
|
7363
|
-
DefaultCooldown?: number;
|
|
7363
|
+
DefaultCooldown?: number | undefined;
|
|
7364
7364
|
/**
|
|
7365
7365
|
* <p>One or more Availability Zones for the group.</p>
|
|
7366
7366
|
* @public
|
|
7367
7367
|
*/
|
|
7368
|
-
AvailabilityZones?: string[];
|
|
7368
|
+
AvailabilityZones?: string[] | undefined;
|
|
7369
7369
|
/**
|
|
7370
7370
|
* <p>A comma-separated value string of one or more health check types.</p>
|
|
7371
7371
|
* <p>The valid values are <code>EC2</code>, <code>EBS</code>, <code>ELB</code>, and
|
|
@@ -7377,7 +7377,7 @@ export interface UpdateAutoScalingGroupType {
|
|
|
7377
7377
|
* set.</p>
|
|
7378
7378
|
* @public
|
|
7379
7379
|
*/
|
|
7380
|
-
HealthCheckType?: string;
|
|
7380
|
+
HealthCheckType?: string | undefined;
|
|
7381
7381
|
/**
|
|
7382
7382
|
* <p>The amount of time, in seconds, that Amazon EC2 Auto Scaling waits before checking the health status
|
|
7383
7383
|
* of an EC2 instance that has come into service and marking it unhealthy due to a failed
|
|
@@ -7388,7 +7388,7 @@ export interface UpdateAutoScalingGroupType {
|
|
|
7388
7388
|
* <i>Amazon EC2 Auto Scaling User Guide</i>.</p>
|
|
7389
7389
|
* @public
|
|
7390
7390
|
*/
|
|
7391
|
-
HealthCheckGracePeriod?: number;
|
|
7391
|
+
HealthCheckGracePeriod?: number | undefined;
|
|
7392
7392
|
/**
|
|
7393
7393
|
* <p>The name of an existing placement group into which to launch your instances. To remove the placement group setting, pass an empty string for <code>placement-group</code>. For more
|
|
7394
7394
|
* information about placement groups, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/placement-groups.html">Placement groups</a> in the
|
|
@@ -7400,14 +7400,14 @@ export interface UpdateAutoScalingGroupType {
|
|
|
7400
7400
|
* </note>
|
|
7401
7401
|
* @public
|
|
7402
7402
|
*/
|
|
7403
|
-
PlacementGroup?: string;
|
|
7403
|
+
PlacementGroup?: string | undefined;
|
|
7404
7404
|
/**
|
|
7405
7405
|
* <p>A comma-separated list of subnet IDs for a virtual private cloud (VPC). If you specify
|
|
7406
7406
|
* <code>VPCZoneIdentifier</code> with <code>AvailabilityZones</code>, the subnets that
|
|
7407
7407
|
* you specify must reside in those Availability Zones.</p>
|
|
7408
7408
|
* @public
|
|
7409
7409
|
*/
|
|
7410
|
-
VPCZoneIdentifier?: string;
|
|
7410
|
+
VPCZoneIdentifier?: string | undefined;
|
|
7411
7411
|
/**
|
|
7412
7412
|
* <p>A policy or a list of policies that are used to select the instances to terminate. The
|
|
7413
7413
|
* policies are executed in the order that you list them. For more information, see <a href="https://docs.aws.amazon.com/autoscaling/ec2/userguide/ec2-auto-scaling-termination-policies.html">Configure
|
|
@@ -7421,7 +7421,7 @@ export interface UpdateAutoScalingGroupType {
|
|
|
7421
7421
|
* </p>
|
|
7422
7422
|
* @public
|
|
7423
7423
|
*/
|
|
7424
|
-
TerminationPolicies?: string[];
|
|
7424
|
+
TerminationPolicies?: string[] | undefined;
|
|
7425
7425
|
/**
|
|
7426
7426
|
* <p>Indicates whether newly launched instances are protected from termination by Amazon EC2 Auto Scaling
|
|
7427
7427
|
* when scaling in. For more information about preventing instances from terminating on
|
|
@@ -7430,14 +7430,14 @@ export interface UpdateAutoScalingGroupType {
|
|
|
7430
7430
|
* <i>Amazon EC2 Auto Scaling User Guide</i>.</p>
|
|
7431
7431
|
* @public
|
|
7432
7432
|
*/
|
|
7433
|
-
NewInstancesProtectedFromScaleIn?: boolean;
|
|
7433
|
+
NewInstancesProtectedFromScaleIn?: boolean | undefined;
|
|
7434
7434
|
/**
|
|
7435
7435
|
* <p>The Amazon Resource Name (ARN) of the service-linked role that the Auto Scaling group uses to
|
|
7436
7436
|
* call other Amazon Web Services on your behalf. For more information, see <a href="https://docs.aws.amazon.com/autoscaling/ec2/userguide/autoscaling-service-linked-role.html">Service-linked
|
|
7437
7437
|
* roles</a> in the <i>Amazon EC2 Auto Scaling User Guide</i>.</p>
|
|
7438
7438
|
* @public
|
|
7439
7439
|
*/
|
|
7440
|
-
ServiceLinkedRoleARN?: string;
|
|
7440
|
+
ServiceLinkedRoleARN?: string | undefined;
|
|
7441
7441
|
/**
|
|
7442
7442
|
* <p>The maximum amount of time, in seconds, that an instance can be in service. The
|
|
7443
7443
|
* default is null. If specified, the value must be either 0 or a number equal to or
|
|
@@ -7447,18 +7447,18 @@ export interface UpdateAutoScalingGroupType {
|
|
|
7447
7447
|
* <i>Amazon EC2 Auto Scaling User Guide</i>.</p>
|
|
7448
7448
|
* @public
|
|
7449
7449
|
*/
|
|
7450
|
-
MaxInstanceLifetime?: number;
|
|
7450
|
+
MaxInstanceLifetime?: number | undefined;
|
|
7451
7451
|
/**
|
|
7452
7452
|
* <p>Enables or disables Capacity Rebalancing. For more information, see <a href="https://docs.aws.amazon.com/autoscaling/ec2/userguide/ec2-auto-scaling-capacity-rebalancing.html">Use Capacity
|
|
7453
7453
|
* Rebalancing to handle Amazon EC2 Spot Interruptions</a> in the <i>Amazon EC2 Auto Scaling User Guide</i>.</p>
|
|
7454
7454
|
* @public
|
|
7455
7455
|
*/
|
|
7456
|
-
CapacityRebalance?: boolean;
|
|
7456
|
+
CapacityRebalance?: boolean | undefined;
|
|
7457
7457
|
/**
|
|
7458
7458
|
* <p>Reserved.</p>
|
|
7459
7459
|
* @public
|
|
7460
7460
|
*/
|
|
7461
|
-
Context?: string;
|
|
7461
|
+
Context?: string | undefined;
|
|
7462
7462
|
/**
|
|
7463
7463
|
* <p>The unit of measurement for the value specified for desired capacity. Amazon EC2 Auto Scaling
|
|
7464
7464
|
* supports <code>DesiredCapacityType</code> for attribute-based instance type selection
|
|
@@ -7470,7 +7470,7 @@ export interface UpdateAutoScalingGroupType {
|
|
|
7470
7470
|
* </p>
|
|
7471
7471
|
* @public
|
|
7472
7472
|
*/
|
|
7473
|
-
DesiredCapacityType?: string;
|
|
7473
|
+
DesiredCapacityType?: string | undefined;
|
|
7474
7474
|
/**
|
|
7475
7475
|
* <p>The amount of time, in seconds, until a new instance is considered to have finished
|
|
7476
7476
|
* initializing and resource consumption to become stable after it enters the
|
|
@@ -7492,18 +7492,18 @@ export interface UpdateAutoScalingGroupType {
|
|
|
7492
7492
|
* </important>
|
|
7493
7493
|
* @public
|
|
7494
7494
|
*/
|
|
7495
|
-
DefaultInstanceWarmup?: number;
|
|
7495
|
+
DefaultInstanceWarmup?: number | undefined;
|
|
7496
7496
|
/**
|
|
7497
7497
|
* <p>An instance maintenance policy. For more information, see <a href="https://docs.aws.amazon.com/autoscaling/ec2/userguide/ec2-auto-scaling-instance-maintenance-policy.html">Set instance maintenance policy</a> in the
|
|
7498
7498
|
* <i>Amazon EC2 Auto Scaling User Guide</i>.</p>
|
|
7499
7499
|
* @public
|
|
7500
7500
|
*/
|
|
7501
|
-
InstanceMaintenancePolicy?: InstanceMaintenancePolicy;
|
|
7501
|
+
InstanceMaintenancePolicy?: InstanceMaintenancePolicy | undefined;
|
|
7502
7502
|
/**
|
|
7503
7503
|
* <p>
|
|
7504
7504
|
* The instance capacity distribution across Availability Zones.
|
|
7505
7505
|
* </p>
|
|
7506
7506
|
* @public
|
|
7507
7507
|
*/
|
|
7508
|
-
AvailabilityZoneDistribution?: AvailabilityZoneDistribution;
|
|
7508
|
+
AvailabilityZoneDistribution?: AvailabilityZoneDistribution | undefined;
|
|
7509
7509
|
}
|