@aws-sdk/client-auto-scaling 3.301.0 → 3.303.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-cjs/models/models_0.js +167 -192
- package/dist-cjs/pagination/DescribeTrafficSourcesPaginator.js +29 -0
- package/dist-cjs/pagination/index.js +1 -0
- package/dist-cjs/protocols/Aws_query.js +12 -0
- package/dist-es/models/models_0.js +167 -192
- package/dist-es/pagination/DescribeTrafficSourcesPaginator.js +25 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_query.js +12 -0
- package/dist-types/AutoScaling.d.ts +93 -28
- package/dist-types/commands/AttachLoadBalancerTargetGroupsCommand.d.ts +10 -1
- package/dist-types/commands/AttachLoadBalancersCommand.d.ts +7 -1
- package/dist-types/commands/AttachTrafficSourcesCommand.d.ts +25 -9
- package/dist-types/commands/CreateAutoScalingGroupCommand.d.ts +2 -1
- package/dist-types/commands/DescribeLoadBalancerTargetGroupsCommand.d.ts +10 -1
- package/dist-types/commands/DescribeLoadBalancersCommand.d.ts +11 -2
- package/dist-types/commands/DescribeTrafficSourcesCommand.d.ts +6 -6
- package/dist-types/commands/DetachLoadBalancerTargetGroupsCommand.d.ts +10 -1
- package/dist-types/commands/DetachLoadBalancersCommand.d.ts +11 -2
- package/dist-types/commands/DetachTrafficSourcesCommand.d.ts +6 -6
- package/dist-types/commands/RollbackInstanceRefreshCommand.d.ts +2 -2
- package/dist-types/models/models_0.d.ts +432 -238
- package/dist-types/pagination/DescribeTrafficSourcesPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +220 -168
- package/dist-types/ts3.4/pagination/DescribeTrafficSourcesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/package.json +35 -35
|
@@ -17,25 +17,35 @@ export interface AcceleratorCountRequest {
|
|
|
17
17
|
}
|
|
18
18
|
/**
|
|
19
19
|
* @public
|
|
20
|
+
* @enum
|
|
20
21
|
*/
|
|
21
|
-
export declare
|
|
22
|
-
AMAZON_WEB_SERVICES
|
|
23
|
-
AMD
|
|
24
|
-
NVIDIA
|
|
25
|
-
XILINX
|
|
26
|
-
}
|
|
22
|
+
export declare const AcceleratorManufacturer: {
|
|
23
|
+
readonly AMAZON_WEB_SERVICES: "amazon-web-services";
|
|
24
|
+
readonly AMD: "amd";
|
|
25
|
+
readonly NVIDIA: "nvidia";
|
|
26
|
+
readonly XILINX: "xilinx";
|
|
27
|
+
};
|
|
27
28
|
/**
|
|
28
29
|
* @public
|
|
29
30
|
*/
|
|
30
|
-
export
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
31
|
+
export type AcceleratorManufacturer = (typeof AcceleratorManufacturer)[keyof typeof AcceleratorManufacturer];
|
|
32
|
+
/**
|
|
33
|
+
* @public
|
|
34
|
+
* @enum
|
|
35
|
+
*/
|
|
36
|
+
export declare const AcceleratorName: {
|
|
37
|
+
readonly A100: "a100";
|
|
38
|
+
readonly K80: "k80";
|
|
39
|
+
readonly M60: "m60";
|
|
40
|
+
readonly RADEON_PRO_V520: "radeon-pro-v520";
|
|
41
|
+
readonly T4: "t4";
|
|
42
|
+
readonly V100: "v100";
|
|
43
|
+
readonly VU9P: "vu9p";
|
|
44
|
+
};
|
|
45
|
+
/**
|
|
46
|
+
* @public
|
|
47
|
+
*/
|
|
48
|
+
export type AcceleratorName = (typeof AcceleratorName)[keyof typeof AcceleratorName];
|
|
39
49
|
/**
|
|
40
50
|
* @public
|
|
41
51
|
* <p>Specifies the minimum and maximum for the <code>AcceleratorTotalMemoryMiB</code>
|
|
@@ -53,12 +63,17 @@ export interface AcceleratorTotalMemoryMiBRequest {
|
|
|
53
63
|
}
|
|
54
64
|
/**
|
|
55
65
|
* @public
|
|
66
|
+
* @enum
|
|
56
67
|
*/
|
|
57
|
-
export declare
|
|
58
|
-
FPGA
|
|
59
|
-
GPU
|
|
60
|
-
INFERENCE
|
|
61
|
-
}
|
|
68
|
+
export declare const AcceleratorType: {
|
|
69
|
+
readonly FPGA: "fpga";
|
|
70
|
+
readonly GPU: "gpu";
|
|
71
|
+
readonly INFERENCE: "inference";
|
|
72
|
+
};
|
|
73
|
+
/**
|
|
74
|
+
* @public
|
|
75
|
+
*/
|
|
76
|
+
export type AcceleratorType = (typeof AcceleratorType)[keyof typeof AcceleratorType];
|
|
62
77
|
/**
|
|
63
78
|
* @public
|
|
64
79
|
* <p>The request failed because an active instance refresh or rollback for the specified
|
|
@@ -74,21 +89,27 @@ export declare class ActiveInstanceRefreshNotFoundFault extends __BaseException
|
|
|
74
89
|
}
|
|
75
90
|
/**
|
|
76
91
|
* @public
|
|
92
|
+
* @enum
|
|
77
93
|
*/
|
|
78
|
-
export declare
|
|
79
|
-
Cancelled
|
|
80
|
-
Failed
|
|
81
|
-
InProgress
|
|
82
|
-
MidLifecycleAction
|
|
83
|
-
PendingSpotBidPlacement
|
|
84
|
-
PreInService
|
|
85
|
-
Successful
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
94
|
+
export declare const ScalingActivityStatusCode: {
|
|
95
|
+
readonly Cancelled: "Cancelled";
|
|
96
|
+
readonly Failed: "Failed";
|
|
97
|
+
readonly InProgress: "InProgress";
|
|
98
|
+
readonly MidLifecycleAction: "MidLifecycleAction";
|
|
99
|
+
readonly PendingSpotBidPlacement: "PendingSpotBidPlacement";
|
|
100
|
+
readonly PreInService: "PreInService";
|
|
101
|
+
readonly Successful: "Successful";
|
|
102
|
+
readonly WaitingForConnectionDraining: "WaitingForConnectionDraining";
|
|
103
|
+
readonly WaitingForELBConnectionDraining: "WaitingForELBConnectionDraining";
|
|
104
|
+
readonly WaitingForInstanceId: "WaitingForInstanceId";
|
|
105
|
+
readonly WaitingForInstanceWarmup: "WaitingForInstanceWarmup";
|
|
106
|
+
readonly WaitingForSpotInstanceId: "WaitingForSpotInstanceId";
|
|
107
|
+
readonly WaitingForSpotInstanceRequestId: "WaitingForSpotInstanceRequestId";
|
|
108
|
+
};
|
|
109
|
+
/**
|
|
110
|
+
* @public
|
|
111
|
+
*/
|
|
112
|
+
export type ScalingActivityStatusCode = (typeof ScalingActivityStatusCode)[keyof typeof ScalingActivityStatusCode];
|
|
92
113
|
/**
|
|
93
114
|
* @public
|
|
94
115
|
* <p>Describes scaling activity, which is a long-running process that represents a change
|
|
@@ -290,15 +311,58 @@ export interface AttachTrafficSourcesResultType {
|
|
|
290
311
|
}
|
|
291
312
|
/**
|
|
292
313
|
* @public
|
|
293
|
-
* <p>
|
|
294
|
-
* <p>Currently, you must specify an Amazon Resource Name (ARN) for an existing VPC Lattice
|
|
295
|
-
* target group.</p>
|
|
314
|
+
* <p>Identifying information for a traffic source.</p>
|
|
296
315
|
*/
|
|
297
316
|
export interface TrafficSourceIdentifier {
|
|
298
317
|
/**
|
|
299
|
-
* <p>
|
|
318
|
+
* <p>Identifies the traffic source.</p>
|
|
319
|
+
* <p>For Application Load Balancers, Gateway Load Balancers, Network Load Balancers, and VPC Lattice, this will be the Amazon Resource Name
|
|
320
|
+
* (ARN) for a target group in this account and Region. For Classic Load Balancers, this will be the name
|
|
321
|
+
* of the Classic Load Balancer in this account and Region.</p>
|
|
322
|
+
* <p>For example: </p>
|
|
323
|
+
* <ul>
|
|
324
|
+
* <li>
|
|
325
|
+
* <p>Application Load Balancer ARN:
|
|
326
|
+
* <code>arn:aws:elasticloadbalancing:us-west-2:123456789012:targetgroup/my-targets/1234567890123456</code>
|
|
327
|
+
* </p>
|
|
328
|
+
* </li>
|
|
329
|
+
* <li>
|
|
330
|
+
* <p>Classic Load Balancer name: <code>my-classic-load-balancer</code>
|
|
331
|
+
* </p>
|
|
332
|
+
* </li>
|
|
333
|
+
* <li>
|
|
334
|
+
* <p>VPC Lattice ARN:
|
|
335
|
+
* <code>arn:aws:vpc-lattice:us-west-2:123456789012:targetgroup/tg-1234567890123456</code>
|
|
336
|
+
* </p>
|
|
337
|
+
* </li>
|
|
338
|
+
* </ul>
|
|
339
|
+
* <p>To get the ARN of a target group for a Application Load Balancer, Gateway Load Balancer, or Network Load Balancer, or the name of a
|
|
340
|
+
* Classic Load Balancer, use the Elastic Load Balancing <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/APIReference/API_DescribeTargetGroups.html">DescribeTargetGroups</a> and <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/APIReference/API_DescribeLoadBalancers.html">DescribeLoadBalancers</a> API operations.</p>
|
|
341
|
+
* <p>To get the ARN of a target group for VPC Lattice, use the VPC Lattice <a href="https://docs.aws.amazon.com/vpc-lattice/latest/APIReference/API_GetTargetGroup.html">GetTargetGroup</a> API operation.</p>
|
|
300
342
|
*/
|
|
301
|
-
Identifier
|
|
343
|
+
Identifier: string | undefined;
|
|
344
|
+
/**
|
|
345
|
+
* <p>Provides additional context for the value of <code>Identifier</code>.</p>
|
|
346
|
+
* <p>The following lists the valid values:</p>
|
|
347
|
+
* <ul>
|
|
348
|
+
* <li>
|
|
349
|
+
* <p>
|
|
350
|
+
* <code>elb</code> if <code>Identifier</code> is the name of a Classic Load Balancer.</p>
|
|
351
|
+
* </li>
|
|
352
|
+
* <li>
|
|
353
|
+
* <p>
|
|
354
|
+
* <code>elbv2</code> if <code>Identifier</code> is the ARN of an Application Load Balancer, Gateway Load Balancer,
|
|
355
|
+
* or Network Load Balancer target group.</p>
|
|
356
|
+
* </li>
|
|
357
|
+
* <li>
|
|
358
|
+
* <p>
|
|
359
|
+
* <code>vpc-lattice</code> if <code>Identifier</code> is the ARN of a VPC Lattice
|
|
360
|
+
* target group.</p>
|
|
361
|
+
* </li>
|
|
362
|
+
* </ul>
|
|
363
|
+
* <p>Required if the identifier is the name of a Classic Load Balancer.</p>
|
|
364
|
+
*/
|
|
365
|
+
Type?: string;
|
|
302
366
|
}
|
|
303
367
|
/**
|
|
304
368
|
* @public
|
|
@@ -311,10 +375,6 @@ export interface AttachTrafficSourcesType {
|
|
|
311
375
|
/**
|
|
312
376
|
* <p>The unique identifiers of one or more traffic sources. You can specify up to 10
|
|
313
377
|
* traffic sources.</p>
|
|
314
|
-
* <p>Currently, you must specify an Amazon Resource Name (ARN) for an existing VPC Lattice
|
|
315
|
-
* target group. Amazon EC2 Auto Scaling registers the running instances with the attached target groups.
|
|
316
|
-
* The target groups receive incoming traffic and route requests to one or more registered
|
|
317
|
-
* targets.</p>
|
|
318
378
|
*/
|
|
319
379
|
TrafficSources: TrafficSourceIdentifier[] | undefined;
|
|
320
380
|
}
|
|
@@ -715,12 +775,17 @@ export interface InstancesDistribution {
|
|
|
715
775
|
}
|
|
716
776
|
/**
|
|
717
777
|
* @public
|
|
778
|
+
* @enum
|
|
718
779
|
*/
|
|
719
|
-
export declare
|
|
720
|
-
EXCLUDED
|
|
721
|
-
INCLUDED
|
|
722
|
-
REQUIRED
|
|
723
|
-
}
|
|
780
|
+
export declare const BareMetal: {
|
|
781
|
+
readonly EXCLUDED: "excluded";
|
|
782
|
+
readonly INCLUDED: "included";
|
|
783
|
+
readonly REQUIRED: "required";
|
|
784
|
+
};
|
|
785
|
+
/**
|
|
786
|
+
* @public
|
|
787
|
+
*/
|
|
788
|
+
export type BareMetal = (typeof BareMetal)[keyof typeof BareMetal];
|
|
724
789
|
/**
|
|
725
790
|
* @public
|
|
726
791
|
* <p>Specifies the minimum and maximum for the <code>BaselineEbsBandwidthMbps</code> object
|
|
@@ -738,42 +803,67 @@ export interface BaselineEbsBandwidthMbpsRequest {
|
|
|
738
803
|
}
|
|
739
804
|
/**
|
|
740
805
|
* @public
|
|
806
|
+
* @enum
|
|
741
807
|
*/
|
|
742
|
-
export declare
|
|
743
|
-
EXCLUDED
|
|
744
|
-
INCLUDED
|
|
745
|
-
REQUIRED
|
|
746
|
-
}
|
|
808
|
+
export declare const BurstablePerformance: {
|
|
809
|
+
readonly EXCLUDED: "excluded";
|
|
810
|
+
readonly INCLUDED: "included";
|
|
811
|
+
readonly REQUIRED: "required";
|
|
812
|
+
};
|
|
747
813
|
/**
|
|
748
814
|
* @public
|
|
749
815
|
*/
|
|
750
|
-
export
|
|
751
|
-
AMAZON_WEB_SERVICES = "amazon-web-services",
|
|
752
|
-
AMD = "amd",
|
|
753
|
-
INTEL = "intel"
|
|
754
|
-
}
|
|
816
|
+
export type BurstablePerformance = (typeof BurstablePerformance)[keyof typeof BurstablePerformance];
|
|
755
817
|
/**
|
|
756
818
|
* @public
|
|
819
|
+
* @enum
|
|
757
820
|
*/
|
|
758
|
-
export declare
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
|
|
821
|
+
export declare const CpuManufacturer: {
|
|
822
|
+
readonly AMAZON_WEB_SERVICES: "amazon-web-services";
|
|
823
|
+
readonly AMD: "amd";
|
|
824
|
+
readonly INTEL: "intel";
|
|
825
|
+
};
|
|
762
826
|
/**
|
|
763
827
|
* @public
|
|
764
828
|
*/
|
|
765
|
-
export
|
|
766
|
-
EXCLUDED = "excluded",
|
|
767
|
-
INCLUDED = "included",
|
|
768
|
-
REQUIRED = "required"
|
|
769
|
-
}
|
|
829
|
+
export type CpuManufacturer = (typeof CpuManufacturer)[keyof typeof CpuManufacturer];
|
|
770
830
|
/**
|
|
771
831
|
* @public
|
|
832
|
+
* @enum
|
|
772
833
|
*/
|
|
773
|
-
export declare
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
}
|
|
834
|
+
export declare const InstanceGeneration: {
|
|
835
|
+
readonly CURRENT: "current";
|
|
836
|
+
readonly PREVIOUS: "previous";
|
|
837
|
+
};
|
|
838
|
+
/**
|
|
839
|
+
* @public
|
|
840
|
+
*/
|
|
841
|
+
export type InstanceGeneration = (typeof InstanceGeneration)[keyof typeof InstanceGeneration];
|
|
842
|
+
/**
|
|
843
|
+
* @public
|
|
844
|
+
* @enum
|
|
845
|
+
*/
|
|
846
|
+
export declare const LocalStorage: {
|
|
847
|
+
readonly EXCLUDED: "excluded";
|
|
848
|
+
readonly INCLUDED: "included";
|
|
849
|
+
readonly REQUIRED: "required";
|
|
850
|
+
};
|
|
851
|
+
/**
|
|
852
|
+
* @public
|
|
853
|
+
*/
|
|
854
|
+
export type LocalStorage = (typeof LocalStorage)[keyof typeof LocalStorage];
|
|
855
|
+
/**
|
|
856
|
+
* @public
|
|
857
|
+
* @enum
|
|
858
|
+
*/
|
|
859
|
+
export declare const LocalStorageType: {
|
|
860
|
+
readonly HDD: "hdd";
|
|
861
|
+
readonly SSD: "ssd";
|
|
862
|
+
};
|
|
863
|
+
/**
|
|
864
|
+
* @public
|
|
865
|
+
*/
|
|
866
|
+
export type LocalStorageType = (typeof LocalStorageType)[keyof typeof LocalStorageType];
|
|
777
867
|
/**
|
|
778
868
|
* @public
|
|
779
869
|
* <p>Specifies the minimum and maximum for the <code>MemoryGiBPerVCpu</code> object when
|
|
@@ -1405,7 +1495,7 @@ export interface CreateAutoScalingGroupType {
|
|
|
1405
1495
|
*/
|
|
1406
1496
|
AvailabilityZones?: string[];
|
|
1407
1497
|
/**
|
|
1408
|
-
* <p>A list of Classic Load Balancers associated with this Auto Scaling group. For Application Load Balancers, Network Load Balancers, and Gateway Load
|
|
1498
|
+
* <p>A list of Classic Load Balancers associated with this Auto Scaling group. For Application Load Balancers, Network Load Balancers, and Gateway Load Balancers,
|
|
1409
1499
|
* specify the <code>TargetGroupARNs</code> property instead.</p>
|
|
1410
1500
|
*/
|
|
1411
1501
|
LoadBalancerNames?: string[];
|
|
@@ -1419,12 +1509,11 @@ export interface CreateAutoScalingGroupType {
|
|
|
1419
1509
|
*/
|
|
1420
1510
|
TargetGroupARNs?: string[];
|
|
1421
1511
|
/**
|
|
1422
|
-
* <p>
|
|
1423
|
-
*
|
|
1424
|
-
*
|
|
1425
|
-
*
|
|
1426
|
-
*
|
|
1427
|
-
* for use with VPC Lattice, which is in preview release and is subject to change.</p>
|
|
1512
|
+
* <p>A comma-separated list of one or more health check types.</p>
|
|
1513
|
+
* <p>The valid values are <code>EC2</code>, <code>ELB</code>, and <code>VPC_LATTICE</code>.
|
|
1514
|
+
* <code>EC2</code> is the default health check and cannot be disabled. For more
|
|
1515
|
+
* information, see <a href="https://docs.aws.amazon.com/autoscaling/ec2/userguide/healthcheck.html">Health checks for Auto Scaling
|
|
1516
|
+
* instances</a> in the <i>Amazon EC2 Auto Scaling User Guide</i>.</p>
|
|
1428
1517
|
*/
|
|
1429
1518
|
HealthCheckType?: string;
|
|
1430
1519
|
/**
|
|
@@ -1556,15 +1645,9 @@ export interface CreateAutoScalingGroupType {
|
|
|
1556
1645
|
*/
|
|
1557
1646
|
DefaultInstanceWarmup?: number;
|
|
1558
1647
|
/**
|
|
1559
|
-
* <p>
|
|
1560
|
-
*
|
|
1561
|
-
*
|
|
1562
|
-
* </p>
|
|
1563
|
-
* <p>The unique identifiers of one or more traffic sources.</p>
|
|
1564
|
-
* <p>Currently, you must specify an Amazon Resource Name (ARN) for an existing VPC Lattice
|
|
1565
|
-
* target group. Amazon EC2 Auto Scaling registers the running instances with the attached target groups.
|
|
1566
|
-
* The target groups receive incoming traffic and route requests to one or more registered
|
|
1567
|
-
* targets.</p>
|
|
1648
|
+
* <p>The list of traffic sources to attach to this Auto Scaling group. You can use any of the
|
|
1649
|
+
* following as traffic sources for an Auto Scaling group: Classic Load Balancer, Application Load Balancer, Gateway Load Balancer, Network Load Balancer, and
|
|
1650
|
+
* VPC Lattice.</p>
|
|
1568
1651
|
*/
|
|
1569
1652
|
TrafficSources?: TrafficSourceIdentifier[];
|
|
1570
1653
|
}
|
|
@@ -1715,18 +1798,28 @@ export interface InstanceMonitoring {
|
|
|
1715
1798
|
}
|
|
1716
1799
|
/**
|
|
1717
1800
|
* @public
|
|
1801
|
+
* @enum
|
|
1718
1802
|
*/
|
|
1719
|
-
export declare
|
|
1720
|
-
Disabled
|
|
1721
|
-
Enabled
|
|
1722
|
-
}
|
|
1803
|
+
export declare const InstanceMetadataEndpointState: {
|
|
1804
|
+
readonly Disabled: "disabled";
|
|
1805
|
+
readonly Enabled: "enabled";
|
|
1806
|
+
};
|
|
1723
1807
|
/**
|
|
1724
1808
|
* @public
|
|
1725
1809
|
*/
|
|
1726
|
-
export
|
|
1727
|
-
|
|
1728
|
-
|
|
1729
|
-
|
|
1810
|
+
export type InstanceMetadataEndpointState = (typeof InstanceMetadataEndpointState)[keyof typeof InstanceMetadataEndpointState];
|
|
1811
|
+
/**
|
|
1812
|
+
* @public
|
|
1813
|
+
* @enum
|
|
1814
|
+
*/
|
|
1815
|
+
export declare const InstanceMetadataHttpTokensState: {
|
|
1816
|
+
readonly Optional: "optional";
|
|
1817
|
+
readonly Required: "required";
|
|
1818
|
+
};
|
|
1819
|
+
/**
|
|
1820
|
+
* @public
|
|
1821
|
+
*/
|
|
1822
|
+
export type InstanceMetadataHttpTokensState = (typeof InstanceMetadataHttpTokensState)[keyof typeof InstanceMetadataHttpTokensState];
|
|
1730
1823
|
/**
|
|
1731
1824
|
* @public
|
|
1732
1825
|
* <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">Configuring the Instance Metadata Options</a> in the
|
|
@@ -2334,32 +2427,37 @@ export interface EnabledMetric {
|
|
|
2334
2427
|
}
|
|
2335
2428
|
/**
|
|
2336
2429
|
* @public
|
|
2430
|
+
* @enum
|
|
2337
2431
|
*/
|
|
2338
|
-
export declare
|
|
2339
|
-
DETACHED
|
|
2340
|
-
DETACHING
|
|
2341
|
-
ENTERING_STANDBY
|
|
2342
|
-
IN_SERVICE
|
|
2343
|
-
PENDING
|
|
2344
|
-
PENDING_PROCEED
|
|
2345
|
-
PENDING_WAIT
|
|
2346
|
-
QUARANTINED
|
|
2347
|
-
STANDBY
|
|
2348
|
-
TERMINATED
|
|
2349
|
-
TERMINATING
|
|
2350
|
-
TERMINATING_PROCEED
|
|
2351
|
-
TERMINATING_WAIT
|
|
2352
|
-
WARMED_HIBERNATED
|
|
2353
|
-
WARMED_PENDING
|
|
2354
|
-
WARMED_PENDING_PROCEED
|
|
2355
|
-
WARMED_PENDING_WAIT
|
|
2356
|
-
WARMED_RUNNING
|
|
2357
|
-
WARMED_STOPPED
|
|
2358
|
-
WARMED_TERMINATED
|
|
2359
|
-
WARMED_TERMINATING
|
|
2360
|
-
WARMED_TERMINATING_PROCEED
|
|
2361
|
-
WARMED_TERMINATING_WAIT
|
|
2362
|
-
}
|
|
2432
|
+
export declare const LifecycleState: {
|
|
2433
|
+
readonly DETACHED: "Detached";
|
|
2434
|
+
readonly DETACHING: "Detaching";
|
|
2435
|
+
readonly ENTERING_STANDBY: "EnteringStandby";
|
|
2436
|
+
readonly IN_SERVICE: "InService";
|
|
2437
|
+
readonly PENDING: "Pending";
|
|
2438
|
+
readonly PENDING_PROCEED: "Pending:Proceed";
|
|
2439
|
+
readonly PENDING_WAIT: "Pending:Wait";
|
|
2440
|
+
readonly QUARANTINED: "Quarantined";
|
|
2441
|
+
readonly STANDBY: "Standby";
|
|
2442
|
+
readonly TERMINATED: "Terminated";
|
|
2443
|
+
readonly TERMINATING: "Terminating";
|
|
2444
|
+
readonly TERMINATING_PROCEED: "Terminating:Proceed";
|
|
2445
|
+
readonly TERMINATING_WAIT: "Terminating:Wait";
|
|
2446
|
+
readonly WARMED_HIBERNATED: "Warmed:Hibernated";
|
|
2447
|
+
readonly WARMED_PENDING: "Warmed:Pending";
|
|
2448
|
+
readonly WARMED_PENDING_PROCEED: "Warmed:Pending:Proceed";
|
|
2449
|
+
readonly WARMED_PENDING_WAIT: "Warmed:Pending:Wait";
|
|
2450
|
+
readonly WARMED_RUNNING: "Warmed:Running";
|
|
2451
|
+
readonly WARMED_STOPPED: "Warmed:Stopped";
|
|
2452
|
+
readonly WARMED_TERMINATED: "Warmed:Terminated";
|
|
2453
|
+
readonly WARMED_TERMINATING: "Warmed:Terminating";
|
|
2454
|
+
readonly WARMED_TERMINATING_PROCEED: "Warmed:Terminating:Proceed";
|
|
2455
|
+
readonly WARMED_TERMINATING_WAIT: "Warmed:Terminating:Wait";
|
|
2456
|
+
};
|
|
2457
|
+
/**
|
|
2458
|
+
* @public
|
|
2459
|
+
*/
|
|
2460
|
+
export type LifecycleState = (typeof LifecycleState)[keyof typeof LifecycleState];
|
|
2363
2461
|
/**
|
|
2364
2462
|
* @public
|
|
2365
2463
|
* <p>Describes an EC2 instance.</p>
|
|
@@ -2384,9 +2482,9 @@ export interface Instance {
|
|
|
2384
2482
|
*/
|
|
2385
2483
|
LifecycleState: LifecycleState | string | undefined;
|
|
2386
2484
|
/**
|
|
2387
|
-
* <p>The last reported health status of the instance.
|
|
2388
|
-
* healthy and should remain in service.
|
|
2389
|
-
* and that Amazon EC2 Auto Scaling should terminate and replace it.</p>
|
|
2485
|
+
* <p>The last reported health status of the instance. <code>Healthy</code> means that the
|
|
2486
|
+
* instance is healthy and should remain in service. <code>Unhealthy</code> means that the
|
|
2487
|
+
* instance is unhealthy and that Amazon EC2 Auto Scaling should terminate and replace it.</p>
|
|
2390
2488
|
*/
|
|
2391
2489
|
HealthStatus: string | undefined;
|
|
2392
2490
|
/**
|
|
@@ -2467,18 +2565,28 @@ export interface InstanceReusePolicy {
|
|
|
2467
2565
|
}
|
|
2468
2566
|
/**
|
|
2469
2567
|
* @public
|
|
2568
|
+
* @enum
|
|
2470
2569
|
*/
|
|
2471
|
-
export declare
|
|
2472
|
-
Hibernated
|
|
2473
|
-
Running
|
|
2474
|
-
Stopped
|
|
2475
|
-
}
|
|
2570
|
+
export declare const WarmPoolState: {
|
|
2571
|
+
readonly Hibernated: "Hibernated";
|
|
2572
|
+
readonly Running: "Running";
|
|
2573
|
+
readonly Stopped: "Stopped";
|
|
2574
|
+
};
|
|
2476
2575
|
/**
|
|
2477
2576
|
* @public
|
|
2478
2577
|
*/
|
|
2479
|
-
export
|
|
2480
|
-
|
|
2481
|
-
|
|
2578
|
+
export type WarmPoolState = (typeof WarmPoolState)[keyof typeof WarmPoolState];
|
|
2579
|
+
/**
|
|
2580
|
+
* @public
|
|
2581
|
+
* @enum
|
|
2582
|
+
*/
|
|
2583
|
+
export declare const WarmPoolStatus: {
|
|
2584
|
+
readonly PendingDelete: "PendingDelete";
|
|
2585
|
+
};
|
|
2586
|
+
/**
|
|
2587
|
+
* @public
|
|
2588
|
+
*/
|
|
2589
|
+
export type WarmPoolStatus = (typeof WarmPoolStatus)[keyof typeof WarmPoolStatus];
|
|
2482
2590
|
/**
|
|
2483
2591
|
* @public
|
|
2484
2592
|
* <p>Describes a warm pool configuration. </p>
|
|
@@ -2564,11 +2672,7 @@ export interface AutoScalingGroup {
|
|
|
2564
2672
|
*/
|
|
2565
2673
|
TargetGroupARNs?: string[];
|
|
2566
2674
|
/**
|
|
2567
|
-
* <p>
|
|
2568
|
-
* group. Amazon EC2 health checks are always on.</p>
|
|
2569
|
-
* <p>The valid values are <code>EC2</code> (default), <code>ELB</code>, and
|
|
2570
|
-
* <code>VPC_LATTICE</code>. The <code>VPC_LATTICE</code> health check type is reserved
|
|
2571
|
-
* for use with VPC Lattice, which is in preview release and is subject to change.</p>
|
|
2675
|
+
* <p>A comma-separated list of one or more health check types.</p>
|
|
2572
2676
|
*/
|
|
2573
2677
|
HealthCheckType: string | undefined;
|
|
2574
2678
|
/**
|
|
@@ -2654,11 +2758,7 @@ export interface AutoScalingGroup {
|
|
|
2654
2758
|
*/
|
|
2655
2759
|
DefaultInstanceWarmup?: number;
|
|
2656
2760
|
/**
|
|
2657
|
-
* <p>
|
|
2658
|
-
* <b>Reserved for use with Amazon VPC Lattice, which is in preview release and is subject to
|
|
2659
|
-
* change. Do not use this parameter for production workloads. It is also subject to change.</b>
|
|
2660
|
-
* </p>
|
|
2661
|
-
* <p>The unique identifiers of the traffic sources.</p>
|
|
2761
|
+
* <p>The traffic sources associated with this Auto Scaling group.</p>
|
|
2662
2762
|
*/
|
|
2663
2763
|
TrafficSources?: TrafficSourceIdentifier[];
|
|
2664
2764
|
}
|
|
@@ -2729,9 +2829,9 @@ export interface AutoScalingInstanceDetails {
|
|
|
2729
2829
|
*/
|
|
2730
2830
|
LifecycleState: string | undefined;
|
|
2731
2831
|
/**
|
|
2732
|
-
* <p>The last reported health status of this instance.
|
|
2733
|
-
* healthy and should remain in service.
|
|
2734
|
-
* and Amazon EC2 Auto Scaling should terminate and replace it.</p>
|
|
2832
|
+
* <p>The last reported health status of this instance. <code>Healthy</code> means that the
|
|
2833
|
+
* instance is healthy and should remain in service. <code>Unhealthy</code> means that the
|
|
2834
|
+
* instance is unhealthy and Amazon EC2 Auto Scaling should terminate and replace it.</p>
|
|
2735
2835
|
*/
|
|
2736
2836
|
HealthStatus: string | undefined;
|
|
2737
2837
|
/**
|
|
@@ -2826,20 +2926,30 @@ export interface DesiredConfiguration {
|
|
|
2826
2926
|
}
|
|
2827
2927
|
/**
|
|
2828
2928
|
* @public
|
|
2929
|
+
* @enum
|
|
2829
2930
|
*/
|
|
2830
|
-
export declare
|
|
2831
|
-
Ignore
|
|
2832
|
-
Refresh
|
|
2833
|
-
Wait
|
|
2834
|
-
}
|
|
2931
|
+
export declare const ScaleInProtectedInstances: {
|
|
2932
|
+
readonly Ignore: "Ignore";
|
|
2933
|
+
readonly Refresh: "Refresh";
|
|
2934
|
+
readonly Wait: "Wait";
|
|
2935
|
+
};
|
|
2835
2936
|
/**
|
|
2836
2937
|
* @public
|
|
2837
2938
|
*/
|
|
2838
|
-
export
|
|
2839
|
-
|
|
2840
|
-
|
|
2841
|
-
|
|
2842
|
-
|
|
2939
|
+
export type ScaleInProtectedInstances = (typeof ScaleInProtectedInstances)[keyof typeof ScaleInProtectedInstances];
|
|
2940
|
+
/**
|
|
2941
|
+
* @public
|
|
2942
|
+
* @enum
|
|
2943
|
+
*/
|
|
2944
|
+
export declare const StandbyInstances: {
|
|
2945
|
+
readonly Ignore: "Ignore";
|
|
2946
|
+
readonly Terminate: "Terminate";
|
|
2947
|
+
readonly Wait: "Wait";
|
|
2948
|
+
};
|
|
2949
|
+
/**
|
|
2950
|
+
* @public
|
|
2951
|
+
*/
|
|
2952
|
+
export type StandbyInstances = (typeof StandbyInstances)[keyof typeof StandbyInstances];
|
|
2843
2953
|
/**
|
|
2844
2954
|
* @public
|
|
2845
2955
|
* <p>Describes the preferences for an instance refresh.</p>
|
|
@@ -3046,18 +3156,23 @@ export interface RollbackDetails {
|
|
|
3046
3156
|
}
|
|
3047
3157
|
/**
|
|
3048
3158
|
* @public
|
|
3159
|
+
* @enum
|
|
3049
3160
|
*/
|
|
3050
|
-
export declare
|
|
3051
|
-
Cancelled
|
|
3052
|
-
Cancelling
|
|
3053
|
-
Failed
|
|
3054
|
-
InProgress
|
|
3055
|
-
Pending
|
|
3056
|
-
RollbackFailed
|
|
3057
|
-
RollbackInProgress
|
|
3058
|
-
RollbackSuccessful
|
|
3059
|
-
Successful
|
|
3060
|
-
}
|
|
3161
|
+
export declare const InstanceRefreshStatus: {
|
|
3162
|
+
readonly Cancelled: "Cancelled";
|
|
3163
|
+
readonly Cancelling: "Cancelling";
|
|
3164
|
+
readonly Failed: "Failed";
|
|
3165
|
+
readonly InProgress: "InProgress";
|
|
3166
|
+
readonly Pending: "Pending";
|
|
3167
|
+
readonly RollbackFailed: "RollbackFailed";
|
|
3168
|
+
readonly RollbackInProgress: "RollbackInProgress";
|
|
3169
|
+
readonly RollbackSuccessful: "RollbackSuccessful";
|
|
3170
|
+
readonly Successful: "Successful";
|
|
3171
|
+
};
|
|
3172
|
+
/**
|
|
3173
|
+
* @public
|
|
3174
|
+
*/
|
|
3175
|
+
export type InstanceRefreshStatus = (typeof InstanceRefreshStatus)[keyof typeof InstanceRefreshStatus];
|
|
3061
3176
|
/**
|
|
3062
3177
|
* @public
|
|
3063
3178
|
* <p>Describes an instance refresh for an Auto Scaling group. </p>
|
|
@@ -3158,7 +3273,7 @@ export interface InstanceRefresh {
|
|
|
3158
3273
|
*/
|
|
3159
3274
|
ProgressDetails?: InstanceRefreshProgressDetails;
|
|
3160
3275
|
/**
|
|
3161
|
-
* <p>
|
|
3276
|
+
* <p>The preferences for an instance refresh.</p>
|
|
3162
3277
|
*/
|
|
3163
3278
|
Preferences?: RefreshPreferences;
|
|
3164
3279
|
/**
|
|
@@ -3866,11 +3981,16 @@ export interface DescribePoliciesType {
|
|
|
3866
3981
|
}
|
|
3867
3982
|
/**
|
|
3868
3983
|
* @public
|
|
3984
|
+
* @enum
|
|
3869
3985
|
*/
|
|
3870
|
-
export declare
|
|
3871
|
-
HonorMaxCapacity
|
|
3872
|
-
IncreaseMaxCapacity
|
|
3873
|
-
}
|
|
3986
|
+
export declare const PredictiveScalingMaxCapacityBreachBehavior: {
|
|
3987
|
+
readonly HonorMaxCapacity: "HonorMaxCapacity";
|
|
3988
|
+
readonly IncreaseMaxCapacity: "IncreaseMaxCapacity";
|
|
3989
|
+
};
|
|
3990
|
+
/**
|
|
3991
|
+
* @public
|
|
3992
|
+
*/
|
|
3993
|
+
export type PredictiveScalingMaxCapacityBreachBehavior = (typeof PredictiveScalingMaxCapacityBreachBehavior)[keyof typeof PredictiveScalingMaxCapacityBreachBehavior];
|
|
3874
3994
|
/**
|
|
3875
3995
|
* @public
|
|
3876
3996
|
* <p>Describes the dimension of a metric.</p>
|
|
@@ -4026,13 +4146,18 @@ export interface PredictiveScalingCustomizedScalingMetric {
|
|
|
4026
4146
|
}
|
|
4027
4147
|
/**
|
|
4028
4148
|
* @public
|
|
4149
|
+
* @enum
|
|
4029
4150
|
*/
|
|
4030
|
-
export declare
|
|
4031
|
-
ALBTargetGroupRequestCount
|
|
4032
|
-
ASGTotalCPUUtilization
|
|
4033
|
-
ASGTotalNetworkIn
|
|
4034
|
-
ASGTotalNetworkOut
|
|
4035
|
-
}
|
|
4151
|
+
export declare const PredefinedLoadMetricType: {
|
|
4152
|
+
readonly ALBTargetGroupRequestCount: "ALBTargetGroupRequestCount";
|
|
4153
|
+
readonly ASGTotalCPUUtilization: "ASGTotalCPUUtilization";
|
|
4154
|
+
readonly ASGTotalNetworkIn: "ASGTotalNetworkIn";
|
|
4155
|
+
readonly ASGTotalNetworkOut: "ASGTotalNetworkOut";
|
|
4156
|
+
};
|
|
4157
|
+
/**
|
|
4158
|
+
* @public
|
|
4159
|
+
*/
|
|
4160
|
+
export type PredefinedLoadMetricType = (typeof PredefinedLoadMetricType)[keyof typeof PredefinedLoadMetricType];
|
|
4036
4161
|
/**
|
|
4037
4162
|
* @public
|
|
4038
4163
|
* <p>Describes a load metric for a predictive scaling policy.</p>
|
|
@@ -4072,13 +4197,18 @@ export interface PredictiveScalingPredefinedLoadMetric {
|
|
|
4072
4197
|
}
|
|
4073
4198
|
/**
|
|
4074
4199
|
* @public
|
|
4200
|
+
* @enum
|
|
4075
4201
|
*/
|
|
4076
|
-
export declare
|
|
4077
|
-
ALBRequestCount
|
|
4078
|
-
ASGCPUUtilization
|
|
4079
|
-
ASGNetworkIn
|
|
4080
|
-
ASGNetworkOut
|
|
4081
|
-
}
|
|
4202
|
+
export declare const PredefinedMetricPairType: {
|
|
4203
|
+
readonly ALBRequestCount: "ALBRequestCount";
|
|
4204
|
+
readonly ASGCPUUtilization: "ASGCPUUtilization";
|
|
4205
|
+
readonly ASGNetworkIn: "ASGNetworkIn";
|
|
4206
|
+
readonly ASGNetworkOut: "ASGNetworkOut";
|
|
4207
|
+
};
|
|
4208
|
+
/**
|
|
4209
|
+
* @public
|
|
4210
|
+
*/
|
|
4211
|
+
export type PredefinedMetricPairType = (typeof PredefinedMetricPairType)[keyof typeof PredefinedMetricPairType];
|
|
4082
4212
|
/**
|
|
4083
4213
|
* @public
|
|
4084
4214
|
* <p>Represents a metric pair for a predictive scaling policy. </p>
|
|
@@ -4118,13 +4248,18 @@ export interface PredictiveScalingPredefinedMetricPair {
|
|
|
4118
4248
|
}
|
|
4119
4249
|
/**
|
|
4120
4250
|
* @public
|
|
4251
|
+
* @enum
|
|
4121
4252
|
*/
|
|
4122
|
-
export declare
|
|
4123
|
-
ALBRequestCountPerTarget
|
|
4124
|
-
ASGAverageCPUUtilization
|
|
4125
|
-
ASGAverageNetworkIn
|
|
4126
|
-
ASGAverageNetworkOut
|
|
4127
|
-
}
|
|
4253
|
+
export declare const PredefinedScalingMetricType: {
|
|
4254
|
+
readonly ALBRequestCountPerTarget: "ALBRequestCountPerTarget";
|
|
4255
|
+
readonly ASGAverageCPUUtilization: "ASGAverageCPUUtilization";
|
|
4256
|
+
readonly ASGAverageNetworkIn: "ASGAverageNetworkIn";
|
|
4257
|
+
readonly ASGAverageNetworkOut: "ASGAverageNetworkOut";
|
|
4258
|
+
};
|
|
4259
|
+
/**
|
|
4260
|
+
* @public
|
|
4261
|
+
*/
|
|
4262
|
+
export type PredefinedScalingMetricType = (typeof PredefinedScalingMetricType)[keyof typeof PredefinedScalingMetricType];
|
|
4128
4263
|
/**
|
|
4129
4264
|
* @public
|
|
4130
4265
|
* <p>Describes a scaling metric for a predictive scaling policy.</p>
|
|
@@ -4249,11 +4384,16 @@ export interface PredictiveScalingMetricSpecification {
|
|
|
4249
4384
|
}
|
|
4250
4385
|
/**
|
|
4251
4386
|
* @public
|
|
4387
|
+
* @enum
|
|
4252
4388
|
*/
|
|
4253
|
-
export declare
|
|
4254
|
-
ForecastAndScale
|
|
4255
|
-
ForecastOnly
|
|
4256
|
-
}
|
|
4389
|
+
export declare const PredictiveScalingMode: {
|
|
4390
|
+
readonly ForecastAndScale: "ForecastAndScale";
|
|
4391
|
+
readonly ForecastOnly: "ForecastOnly";
|
|
4392
|
+
};
|
|
4393
|
+
/**
|
|
4394
|
+
* @public
|
|
4395
|
+
*/
|
|
4396
|
+
export type PredictiveScalingMode = (typeof PredictiveScalingMode)[keyof typeof PredictiveScalingMode];
|
|
4257
4397
|
/**
|
|
4258
4398
|
* @public
|
|
4259
4399
|
* <p>Represents a predictive scaling policy configuration to use with Amazon EC2 Auto Scaling.</p>
|
|
@@ -4386,21 +4526,20 @@ export interface StepAdjustment {
|
|
|
4386
4526
|
}
|
|
4387
4527
|
/**
|
|
4388
4528
|
* @public
|
|
4389
|
-
* <p>This structure defines the CloudWatch metric to return, along with the statistic
|
|
4390
|
-
*
|
|
4529
|
+
* <p>This structure defines the CloudWatch metric to return, along with the statistic and
|
|
4530
|
+
* unit.</p>
|
|
4391
4531
|
* <p>For more information about the CloudWatch terminology below, see <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/cloudwatch_concepts.html">Amazon CloudWatch
|
|
4392
4532
|
* concepts</a> in the <i>Amazon CloudWatch User Guide</i>.</p>
|
|
4393
4533
|
*/
|
|
4394
4534
|
export interface TargetTrackingMetricStat {
|
|
4395
4535
|
/**
|
|
4396
|
-
* <p>
|
|
4536
|
+
* <p>The metric to use.</p>
|
|
4397
4537
|
*/
|
|
4398
4538
|
Metric: Metric | undefined;
|
|
4399
4539
|
/**
|
|
4400
4540
|
* <p>The statistic to return. It can include any CloudWatch statistic or extended statistic. For
|
|
4401
4541
|
* a list of valid values, see the table in <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/cloudwatch_concepts.html#Statistic">Statistics</a> in the <i>Amazon CloudWatch User Guide</i>.</p>
|
|
4402
|
-
* <p>The most commonly used
|
|
4403
|
-
* </p>
|
|
4542
|
+
* <p>The most commonly used metric for scaling is <code>Average</code>.</p>
|
|
4404
4543
|
*/
|
|
4405
4544
|
Stat: string | undefined;
|
|
4406
4545
|
/**
|
|
@@ -4461,14 +4600,19 @@ export interface TargetTrackingMetricDataQuery {
|
|
|
4461
4600
|
}
|
|
4462
4601
|
/**
|
|
4463
4602
|
* @public
|
|
4603
|
+
* @enum
|
|
4464
4604
|
*/
|
|
4465
|
-
export declare
|
|
4466
|
-
Average
|
|
4467
|
-
Maximum
|
|
4468
|
-
Minimum
|
|
4469
|
-
SampleCount
|
|
4470
|
-
Sum
|
|
4471
|
-
}
|
|
4605
|
+
export declare const MetricStatistic: {
|
|
4606
|
+
readonly Average: "Average";
|
|
4607
|
+
readonly Maximum: "Maximum";
|
|
4608
|
+
readonly Minimum: "Minimum";
|
|
4609
|
+
readonly SampleCount: "SampleCount";
|
|
4610
|
+
readonly Sum: "Sum";
|
|
4611
|
+
};
|
|
4612
|
+
/**
|
|
4613
|
+
* @public
|
|
4614
|
+
*/
|
|
4615
|
+
export type MetricStatistic = (typeof MetricStatistic)[keyof typeof MetricStatistic];
|
|
4472
4616
|
/**
|
|
4473
4617
|
* @public
|
|
4474
4618
|
* <p>Represents a CloudWatch metric of your choosing for a target tracking scaling policy to use
|
|
@@ -4532,13 +4676,18 @@ export interface CustomizedMetricSpecification {
|
|
|
4532
4676
|
}
|
|
4533
4677
|
/**
|
|
4534
4678
|
* @public
|
|
4679
|
+
* @enum
|
|
4535
4680
|
*/
|
|
4536
|
-
export declare
|
|
4537
|
-
ALBRequestCountPerTarget
|
|
4538
|
-
ASGAverageCPUUtilization
|
|
4539
|
-
ASGAverageNetworkIn
|
|
4540
|
-
ASGAverageNetworkOut
|
|
4541
|
-
}
|
|
4681
|
+
export declare const MetricType: {
|
|
4682
|
+
readonly ALBRequestCountPerTarget: "ALBRequestCountPerTarget";
|
|
4683
|
+
readonly ASGAverageCPUUtilization: "ASGAverageCPUUtilization";
|
|
4684
|
+
readonly ASGAverageNetworkIn: "ASGAverageNetworkIn";
|
|
4685
|
+
readonly ASGAverageNetworkOut: "ASGAverageNetworkOut";
|
|
4686
|
+
};
|
|
4687
|
+
/**
|
|
4688
|
+
* @public
|
|
4689
|
+
*/
|
|
4690
|
+
export type MetricType = (typeof MetricType)[keyof typeof MetricType];
|
|
4542
4691
|
/**
|
|
4543
4692
|
* @public
|
|
4544
4693
|
* <p>Represents a predefined metric for a target tracking scaling policy to use with
|
|
@@ -5016,10 +5165,24 @@ export interface DescribeTrafficSourcesRequest {
|
|
|
5016
5165
|
*/
|
|
5017
5166
|
AutoScalingGroupName: string | undefined;
|
|
5018
5167
|
/**
|
|
5019
|
-
* <p>The
|
|
5020
|
-
*
|
|
5168
|
+
* <p>The traffic source type that you want to describe.</p>
|
|
5169
|
+
* <p>The following lists the valid values:</p>
|
|
5170
|
+
* <ul>
|
|
5171
|
+
* <li>
|
|
5172
|
+
* <p>
|
|
5173
|
+
* <code>elb</code> if the traffic source is a Classic Load Balancer.</p>
|
|
5174
|
+
* </li>
|
|
5175
|
+
* <li>
|
|
5176
|
+
* <p>
|
|
5177
|
+
* <code>elbv2</code> if the traffic source is a Application Load Balancer, Gateway Load Balancer, or Network Load Balancer.</p>
|
|
5178
|
+
* </li>
|
|
5179
|
+
* <li>
|
|
5180
|
+
* <p>
|
|
5181
|
+
* <code>vpc-lattice</code> if the traffic source is VPC Lattice.</p>
|
|
5182
|
+
* </li>
|
|
5183
|
+
* </ul>
|
|
5021
5184
|
*/
|
|
5022
|
-
TrafficSourceType
|
|
5185
|
+
TrafficSourceType?: string;
|
|
5023
5186
|
/**
|
|
5024
5187
|
* <p>The token for the next set of items to return. (You received this token from a
|
|
5025
5188
|
* previous call.)</p>
|
|
@@ -5037,42 +5200,72 @@ export interface DescribeTrafficSourcesRequest {
|
|
|
5037
5200
|
*/
|
|
5038
5201
|
export interface TrafficSourceState {
|
|
5039
5202
|
/**
|
|
5040
|
-
*
|
|
5041
|
-
*
|
|
5203
|
+
* @deprecated
|
|
5204
|
+
*
|
|
5205
|
+
* <p>This is replaced by <code>Identifier</code>.</p>
|
|
5042
5206
|
*/
|
|
5043
5207
|
TrafficSource?: string;
|
|
5044
5208
|
/**
|
|
5045
|
-
* <p>
|
|
5209
|
+
* <p>Describes the current state of a traffic source.</p>
|
|
5210
|
+
* <p>The state values are as follows:</p>
|
|
5046
5211
|
* <ul>
|
|
5047
5212
|
* <li>
|
|
5048
5213
|
* <p>
|
|
5049
|
-
* <code>Adding</code> - The Auto Scaling instances are being registered with the
|
|
5050
|
-
* group.</p>
|
|
5214
|
+
* <code>Adding</code> - The Auto Scaling instances are being registered with the load
|
|
5215
|
+
* balancer or target group.</p>
|
|
5051
5216
|
* </li>
|
|
5052
5217
|
* <li>
|
|
5053
5218
|
* <p>
|
|
5054
|
-
* <code>Added</code> - All Auto Scaling instances are registered with the
|
|
5055
|
-
* group.</p>
|
|
5219
|
+
* <code>Added</code> - All Auto Scaling instances are registered with the load balancer or
|
|
5220
|
+
* target group.</p>
|
|
5056
5221
|
* </li>
|
|
5057
5222
|
* <li>
|
|
5058
5223
|
* <p>
|
|
5059
|
-
* <code>InService</code> -
|
|
5060
|
-
*
|
|
5224
|
+
* <code>InService</code> - For an Elastic Load Balancing load balancer or target group, at least
|
|
5225
|
+
* one Auto Scaling instance passed an <code>ELB</code> health check. For VPC Lattice, at
|
|
5226
|
+
* least one Auto Scaling instance passed an <code>VPC_LATTICE</code> health check.</p>
|
|
5061
5227
|
* </li>
|
|
5062
5228
|
* <li>
|
|
5063
5229
|
* <p>
|
|
5064
5230
|
* <code>Removing</code> - The Auto Scaling instances are being deregistered from the
|
|
5065
|
-
* target group. If connection draining
|
|
5066
|
-
* requests to complete before
|
|
5231
|
+
* load balancer or target group. If connection draining (deregistration delay) is
|
|
5232
|
+
* enabled, Elastic Load Balancing or VPC Lattice waits for in-flight requests to complete before
|
|
5233
|
+
* deregistering the instances.</p>
|
|
5067
5234
|
* </li>
|
|
5068
5235
|
* <li>
|
|
5069
5236
|
* <p>
|
|
5070
|
-
* <code>Removed</code> - All Auto Scaling instances are deregistered from the
|
|
5071
|
-
* group.</p>
|
|
5237
|
+
* <code>Removed</code> - All Auto Scaling instances are deregistered from the load
|
|
5238
|
+
* balancer or target group.</p>
|
|
5072
5239
|
* </li>
|
|
5073
5240
|
* </ul>
|
|
5074
5241
|
*/
|
|
5075
5242
|
State?: string;
|
|
5243
|
+
/**
|
|
5244
|
+
* <p>The unique identifier of the traffic source.</p>
|
|
5245
|
+
*/
|
|
5246
|
+
Identifier?: string;
|
|
5247
|
+
/**
|
|
5248
|
+
* <p>Provides additional context for the value of <code>Identifier</code>.</p>
|
|
5249
|
+
* <p>The following lists the valid values:</p>
|
|
5250
|
+
* <ul>
|
|
5251
|
+
* <li>
|
|
5252
|
+
* <p>
|
|
5253
|
+
* <code>elb</code> if <code>Identifier</code> is the name of a Classic Load Balancer.</p>
|
|
5254
|
+
* </li>
|
|
5255
|
+
* <li>
|
|
5256
|
+
* <p>
|
|
5257
|
+
* <code>elbv2</code> if <code>Identifier</code> is the ARN of an Application Load Balancer, Gateway Load Balancer,
|
|
5258
|
+
* or Network Load Balancer target group.</p>
|
|
5259
|
+
* </li>
|
|
5260
|
+
* <li>
|
|
5261
|
+
* <p>
|
|
5262
|
+
* <code>vpc-lattice</code> if <code>Identifier</code> is the ARN of a VPC Lattice
|
|
5263
|
+
* target group.</p>
|
|
5264
|
+
* </li>
|
|
5265
|
+
* </ul>
|
|
5266
|
+
* <p>Required if the identifier is the name of a Classic Load Balancer.</p>
|
|
5267
|
+
*/
|
|
5268
|
+
Type?: string;
|
|
5076
5269
|
}
|
|
5077
5270
|
/**
|
|
5078
5271
|
* @public
|
|
@@ -5209,10 +5402,6 @@ export interface DetachTrafficSourcesType {
|
|
|
5209
5402
|
/**
|
|
5210
5403
|
* <p>The unique identifiers of one or more traffic sources you are detaching. You can
|
|
5211
5404
|
* specify up to 10 traffic sources.</p>
|
|
5212
|
-
* <p>Currently, you must specify an Amazon Resource Name (ARN) for an existing VPC Lattice
|
|
5213
|
-
* target group. When you detach a target group, it enters the <code>Removing</code> state
|
|
5214
|
-
* while deregistering the instances in the group. When all instances are deregistered,
|
|
5215
|
-
* then you can no longer describe the target group using the <a>DescribeTrafficSources</a> API call. The instances continue to run.</p>
|
|
5216
5405
|
*/
|
|
5217
5406
|
TrafficSources: TrafficSourceIdentifier[] | undefined;
|
|
5218
5407
|
}
|
|
@@ -6234,10 +6423,15 @@ export interface StartInstanceRefreshAnswer {
|
|
|
6234
6423
|
}
|
|
6235
6424
|
/**
|
|
6236
6425
|
* @public
|
|
6426
|
+
* @enum
|
|
6237
6427
|
*/
|
|
6238
|
-
export declare
|
|
6239
|
-
Rolling
|
|
6240
|
-
}
|
|
6428
|
+
export declare const RefreshStrategy: {
|
|
6429
|
+
readonly Rolling: "Rolling";
|
|
6430
|
+
};
|
|
6431
|
+
/**
|
|
6432
|
+
* @public
|
|
6433
|
+
*/
|
|
6434
|
+
export type RefreshStrategy = (typeof RefreshStrategy)[keyof typeof RefreshStrategy];
|
|
6241
6435
|
/**
|
|
6242
6436
|
* @public
|
|
6243
6437
|
*/
|
|
@@ -6362,11 +6556,11 @@ export interface UpdateAutoScalingGroupType {
|
|
|
6362
6556
|
*/
|
|
6363
6557
|
AvailabilityZones?: string[];
|
|
6364
6558
|
/**
|
|
6365
|
-
* <p>
|
|
6366
|
-
*
|
|
6367
|
-
*
|
|
6368
|
-
*
|
|
6369
|
-
*
|
|
6559
|
+
* <p>A comma-separated list of one or more health check types.</p>
|
|
6560
|
+
* <p>The valid values are <code>EC2</code>, <code>ELB</code>, and <code>VPC_LATTICE</code>.
|
|
6561
|
+
* <code>EC2</code> is the default health check and cannot be disabled. For more
|
|
6562
|
+
* information, see <a href="https://docs.aws.amazon.com/autoscaling/ec2/userguide/healthcheck.html">Health checks for Auto Scaling
|
|
6563
|
+
* instances</a> in the <i>Amazon EC2 Auto Scaling User Guide</i>.</p>
|
|
6370
6564
|
*/
|
|
6371
6565
|
HealthCheckType?: string;
|
|
6372
6566
|
/**
|