@aws-sdk/client-ec2 3.956.0 → 3.958.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/README.md +1 -755
- package/dist-cjs/auth/httpAuthSchemeProvider.js +3 -4
- package/dist-cjs/index.js +16417 -26946
- package/dist-cjs/runtimeConfig.browser.js +1 -2
- package/dist-cjs/runtimeConfig.js +2 -4
- package/dist-es/auth/httpAuthSchemeProvider.js +3 -4
- package/dist-es/pagination/index.js +16 -16
- package/dist-es/runtimeConfig.browser.js +1 -2
- package/dist-es/runtimeConfig.js +4 -6
- package/dist-es/schemas/schemas_0.js +15776 -26305
- package/dist-es/waiters/index.js +6 -6
- package/dist-es/waiters/waitForBundleTaskComplete.js +10 -10
- package/dist-es/waiters/waitForConversionTaskCancelled.js +6 -6
- package/dist-es/waiters/waitForConversionTaskCompleted.js +14 -14
- package/dist-es/waiters/waitForConversionTaskDeleted.js +6 -6
- package/dist-es/waiters/waitForCustomerGatewayAvailable.js +14 -14
- package/dist-es/waiters/waitForExportTaskCancelled.js +6 -6
- package/dist-es/waiters/waitForExportTaskCompleted.js +6 -6
- package/dist-es/waiters/waitForImageAvailable.js +10 -10
- package/dist-es/waiters/waitForImageExists.js +3 -3
- package/dist-es/waiters/waitForImageUsageReportAvailable.js +10 -10
- package/dist-es/waiters/waitForInstanceExists.js +3 -3
- package/dist-es/waiters/waitForInstanceRunning.js +26 -26
- package/dist-es/waiters/waitForInstanceStatusOk.js +6 -6
- package/dist-es/waiters/waitForInstanceStopped.js +20 -20
- package/dist-es/waiters/waitForInstanceTerminated.js +20 -20
- package/dist-es/waiters/waitForInternetGatewayExists.js +4 -4
- package/dist-es/waiters/waitForKeyPairExists.js +4 -4
- package/dist-es/waiters/waitForNatGatewayAvailable.js +18 -18
- package/dist-es/waiters/waitForNatGatewayDeleted.js +6 -6
- package/dist-es/waiters/waitForNetworkInterfaceAvailable.js +6 -6
- package/dist-es/waiters/waitForPasswordDataAvailable.js +2 -2
- package/dist-es/waiters/waitForSecurityGroupExists.js +4 -4
- package/dist-es/waiters/waitForSecurityGroupVpcAssociationAssociated.js +14 -14
- package/dist-es/waiters/waitForSecurityGroupVpcAssociationDisassociated.js +17 -17
- package/dist-es/waiters/waitForSnapshotCompleted.js +10 -10
- package/dist-es/waiters/waitForSnapshotImported.js +10 -10
- package/dist-es/waiters/waitForSpotInstanceRequestFulfilled.js +28 -28
- package/dist-es/waiters/waitForStoreImageTaskComplete.js +14 -14
- package/dist-es/waiters/waitForSubnetAvailable.js +6 -6
- package/dist-es/waiters/waitForSystemStatusOk.js +6 -6
- package/dist-es/waiters/waitForVolumeAvailable.js +10 -10
- package/dist-es/waiters/waitForVolumeDeleted.js +6 -6
- package/dist-es/waiters/waitForVolumeInUse.js +10 -10
- package/dist-es/waiters/waitForVpcAvailable.js +6 -6
- package/dist-es/waiters/waitForVpcPeeringConnectionDeleted.js +6 -6
- package/dist-es/waiters/waitForVpnConnectionAvailable.js +14 -14
- package/dist-es/waiters/waitForVpnConnectionDeleted.js +10 -10
- package/dist-types/commands/CreatePlacementGroupCommand.d.ts +2 -0
- package/dist-types/commands/DescribePlacementGroupsCommand.d.ts +1 -0
- package/dist-types/models/models_1.d.ts +10 -0
- package/dist-types/pagination/index.d.ts +16 -16
- package/dist-types/ts3.4/models/models_1.d.ts +2 -0
- package/dist-types/ts3.4/pagination/index.d.ts +16 -16
- package/dist-types/ts3.4/waiters/index.d.ts +6 -6
- package/dist-types/waiters/index.d.ts +6 -6
- package/package.json +14 -14
|
@@ -6,16 +6,16 @@ const checkState = async (client, input) => {
|
|
|
6
6
|
const result = await client.send(new DescribeStoreImageTasksCommand(input));
|
|
7
7
|
reason = result;
|
|
8
8
|
try {
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
let returnComparator = () => {
|
|
10
|
+
let flat_1 = [].concat(...result.StoreImageTaskResults);
|
|
11
|
+
let projection_3 = flat_1.map((element_2) => {
|
|
12
12
|
return element_2.StoreTaskState;
|
|
13
13
|
});
|
|
14
14
|
return projection_3;
|
|
15
15
|
};
|
|
16
|
-
let allStringEq_5 = returnComparator().length > 0;
|
|
17
|
-
for (
|
|
18
|
-
allStringEq_5 = allStringEq_5 && element_4 == "Completed";
|
|
16
|
+
let allStringEq_5 = (returnComparator().length > 0);
|
|
17
|
+
for (let element_4 of returnComparator()) {
|
|
18
|
+
allStringEq_5 = allStringEq_5 && (element_4 == "Completed");
|
|
19
19
|
}
|
|
20
20
|
if (allStringEq_5) {
|
|
21
21
|
return { state: WaiterState.SUCCESS, reason };
|
|
@@ -23,14 +23,14 @@ const checkState = async (client, input) => {
|
|
|
23
23
|
}
|
|
24
24
|
catch (e) { }
|
|
25
25
|
try {
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
26
|
+
let returnComparator = () => {
|
|
27
|
+
let flat_1 = [].concat(...result.StoreImageTaskResults);
|
|
28
|
+
let projection_3 = flat_1.map((element_2) => {
|
|
29
29
|
return element_2.StoreTaskState;
|
|
30
30
|
});
|
|
31
31
|
return projection_3;
|
|
32
32
|
};
|
|
33
|
-
for (
|
|
33
|
+
for (let anyStringEq_4 of returnComparator()) {
|
|
34
34
|
if (anyStringEq_4 == "Failed") {
|
|
35
35
|
return { state: WaiterState.FAILURE, reason };
|
|
36
36
|
}
|
|
@@ -38,14 +38,14 @@ const checkState = async (client, input) => {
|
|
|
38
38
|
}
|
|
39
39
|
catch (e) { }
|
|
40
40
|
try {
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
41
|
+
let returnComparator = () => {
|
|
42
|
+
let flat_1 = [].concat(...result.StoreImageTaskResults);
|
|
43
|
+
let projection_3 = flat_1.map((element_2) => {
|
|
44
44
|
return element_2.StoreTaskState;
|
|
45
45
|
});
|
|
46
46
|
return projection_3;
|
|
47
47
|
};
|
|
48
|
-
for (
|
|
48
|
+
for (let anyStringEq_4 of returnComparator()) {
|
|
49
49
|
if (anyStringEq_4 == "InProgress") {
|
|
50
50
|
return { state: WaiterState.RETRY, reason };
|
|
51
51
|
}
|
|
@@ -6,16 +6,16 @@ const checkState = async (client, input) => {
|
|
|
6
6
|
const result = await client.send(new DescribeSubnetsCommand(input));
|
|
7
7
|
reason = result;
|
|
8
8
|
try {
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
let returnComparator = () => {
|
|
10
|
+
let flat_1 = [].concat(...result.Subnets);
|
|
11
|
+
let projection_3 = flat_1.map((element_2) => {
|
|
12
12
|
return element_2.State;
|
|
13
13
|
});
|
|
14
14
|
return projection_3;
|
|
15
15
|
};
|
|
16
|
-
let allStringEq_5 = returnComparator().length > 0;
|
|
17
|
-
for (
|
|
18
|
-
allStringEq_5 = allStringEq_5 && element_4 == "available";
|
|
16
|
+
let allStringEq_5 = (returnComparator().length > 0);
|
|
17
|
+
for (let element_4 of returnComparator()) {
|
|
18
|
+
allStringEq_5 = allStringEq_5 && (element_4 == "available");
|
|
19
19
|
}
|
|
20
20
|
if (allStringEq_5) {
|
|
21
21
|
return { state: WaiterState.SUCCESS, reason };
|
|
@@ -6,16 +6,16 @@ const checkState = async (client, input) => {
|
|
|
6
6
|
const result = await client.send(new DescribeInstanceStatusCommand(input));
|
|
7
7
|
reason = result;
|
|
8
8
|
try {
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
let returnComparator = () => {
|
|
10
|
+
let flat_1 = [].concat(...result.InstanceStatuses);
|
|
11
|
+
let projection_3 = flat_1.map((element_2) => {
|
|
12
12
|
return element_2.SystemStatus.Status;
|
|
13
13
|
});
|
|
14
14
|
return projection_3;
|
|
15
15
|
};
|
|
16
|
-
let allStringEq_5 = returnComparator().length > 0;
|
|
17
|
-
for (
|
|
18
|
-
allStringEq_5 = allStringEq_5 && element_4 == "ok";
|
|
16
|
+
let allStringEq_5 = (returnComparator().length > 0);
|
|
17
|
+
for (let element_4 of returnComparator()) {
|
|
18
|
+
allStringEq_5 = allStringEq_5 && (element_4 == "ok");
|
|
19
19
|
}
|
|
20
20
|
if (allStringEq_5) {
|
|
21
21
|
return { state: WaiterState.SUCCESS, reason };
|
|
@@ -6,16 +6,16 @@ const checkState = async (client, input) => {
|
|
|
6
6
|
const result = await client.send(new DescribeVolumesCommand(input));
|
|
7
7
|
reason = result;
|
|
8
8
|
try {
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
let returnComparator = () => {
|
|
10
|
+
let flat_1 = [].concat(...result.Volumes);
|
|
11
|
+
let projection_3 = flat_1.map((element_2) => {
|
|
12
12
|
return element_2.State;
|
|
13
13
|
});
|
|
14
14
|
return projection_3;
|
|
15
15
|
};
|
|
16
|
-
let allStringEq_5 = returnComparator().length > 0;
|
|
17
|
-
for (
|
|
18
|
-
allStringEq_5 = allStringEq_5 && element_4 == "available";
|
|
16
|
+
let allStringEq_5 = (returnComparator().length > 0);
|
|
17
|
+
for (let element_4 of returnComparator()) {
|
|
18
|
+
allStringEq_5 = allStringEq_5 && (element_4 == "available");
|
|
19
19
|
}
|
|
20
20
|
if (allStringEq_5) {
|
|
21
21
|
return { state: WaiterState.SUCCESS, reason };
|
|
@@ -23,14 +23,14 @@ const checkState = async (client, input) => {
|
|
|
23
23
|
}
|
|
24
24
|
catch (e) { }
|
|
25
25
|
try {
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
26
|
+
let returnComparator = () => {
|
|
27
|
+
let flat_1 = [].concat(...result.Volumes);
|
|
28
|
+
let projection_3 = flat_1.map((element_2) => {
|
|
29
29
|
return element_2.State;
|
|
30
30
|
});
|
|
31
31
|
return projection_3;
|
|
32
32
|
};
|
|
33
|
-
for (
|
|
33
|
+
for (let anyStringEq_4 of returnComparator()) {
|
|
34
34
|
if (anyStringEq_4 == "deleted") {
|
|
35
35
|
return { state: WaiterState.FAILURE, reason };
|
|
36
36
|
}
|
|
@@ -6,16 +6,16 @@ const checkState = async (client, input) => {
|
|
|
6
6
|
const result = await client.send(new DescribeVolumesCommand(input));
|
|
7
7
|
reason = result;
|
|
8
8
|
try {
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
let returnComparator = () => {
|
|
10
|
+
let flat_1 = [].concat(...result.Volumes);
|
|
11
|
+
let projection_3 = flat_1.map((element_2) => {
|
|
12
12
|
return element_2.State;
|
|
13
13
|
});
|
|
14
14
|
return projection_3;
|
|
15
15
|
};
|
|
16
|
-
let allStringEq_5 = returnComparator().length > 0;
|
|
17
|
-
for (
|
|
18
|
-
allStringEq_5 = allStringEq_5 && element_4 == "deleted";
|
|
16
|
+
let allStringEq_5 = (returnComparator().length > 0);
|
|
17
|
+
for (let element_4 of returnComparator()) {
|
|
18
|
+
allStringEq_5 = allStringEq_5 && (element_4 == "deleted");
|
|
19
19
|
}
|
|
20
20
|
if (allStringEq_5) {
|
|
21
21
|
return { state: WaiterState.SUCCESS, reason };
|
|
@@ -6,16 +6,16 @@ const checkState = async (client, input) => {
|
|
|
6
6
|
const result = await client.send(new DescribeVolumesCommand(input));
|
|
7
7
|
reason = result;
|
|
8
8
|
try {
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
let returnComparator = () => {
|
|
10
|
+
let flat_1 = [].concat(...result.Volumes);
|
|
11
|
+
let projection_3 = flat_1.map((element_2) => {
|
|
12
12
|
return element_2.State;
|
|
13
13
|
});
|
|
14
14
|
return projection_3;
|
|
15
15
|
};
|
|
16
|
-
let allStringEq_5 = returnComparator().length > 0;
|
|
17
|
-
for (
|
|
18
|
-
allStringEq_5 = allStringEq_5 && element_4 == "in-use";
|
|
16
|
+
let allStringEq_5 = (returnComparator().length > 0);
|
|
17
|
+
for (let element_4 of returnComparator()) {
|
|
18
|
+
allStringEq_5 = allStringEq_5 && (element_4 == "in-use");
|
|
19
19
|
}
|
|
20
20
|
if (allStringEq_5) {
|
|
21
21
|
return { state: WaiterState.SUCCESS, reason };
|
|
@@ -23,14 +23,14 @@ const checkState = async (client, input) => {
|
|
|
23
23
|
}
|
|
24
24
|
catch (e) { }
|
|
25
25
|
try {
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
26
|
+
let returnComparator = () => {
|
|
27
|
+
let flat_1 = [].concat(...result.Volumes);
|
|
28
|
+
let projection_3 = flat_1.map((element_2) => {
|
|
29
29
|
return element_2.State;
|
|
30
30
|
});
|
|
31
31
|
return projection_3;
|
|
32
32
|
};
|
|
33
|
-
for (
|
|
33
|
+
for (let anyStringEq_4 of returnComparator()) {
|
|
34
34
|
if (anyStringEq_4 == "deleted") {
|
|
35
35
|
return { state: WaiterState.FAILURE, reason };
|
|
36
36
|
}
|
|
@@ -6,16 +6,16 @@ const checkState = async (client, input) => {
|
|
|
6
6
|
const result = await client.send(new DescribeVpcsCommand(input));
|
|
7
7
|
reason = result;
|
|
8
8
|
try {
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
let returnComparator = () => {
|
|
10
|
+
let flat_1 = [].concat(...result.Vpcs);
|
|
11
|
+
let projection_3 = flat_1.map((element_2) => {
|
|
12
12
|
return element_2.State;
|
|
13
13
|
});
|
|
14
14
|
return projection_3;
|
|
15
15
|
};
|
|
16
|
-
let allStringEq_5 = returnComparator().length > 0;
|
|
17
|
-
for (
|
|
18
|
-
allStringEq_5 = allStringEq_5 && element_4 == "available";
|
|
16
|
+
let allStringEq_5 = (returnComparator().length > 0);
|
|
17
|
+
for (let element_4 of returnComparator()) {
|
|
18
|
+
allStringEq_5 = allStringEq_5 && (element_4 == "available");
|
|
19
19
|
}
|
|
20
20
|
if (allStringEq_5) {
|
|
21
21
|
return { state: WaiterState.SUCCESS, reason };
|
|
@@ -6,16 +6,16 @@ const checkState = async (client, input) => {
|
|
|
6
6
|
const result = await client.send(new DescribeVpcPeeringConnectionsCommand(input));
|
|
7
7
|
reason = result;
|
|
8
8
|
try {
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
let returnComparator = () => {
|
|
10
|
+
let flat_1 = [].concat(...result.VpcPeeringConnections);
|
|
11
|
+
let projection_3 = flat_1.map((element_2) => {
|
|
12
12
|
return element_2.Status.Code;
|
|
13
13
|
});
|
|
14
14
|
return projection_3;
|
|
15
15
|
};
|
|
16
|
-
let allStringEq_5 = returnComparator().length > 0;
|
|
17
|
-
for (
|
|
18
|
-
allStringEq_5 = allStringEq_5 && element_4 == "deleted";
|
|
16
|
+
let allStringEq_5 = (returnComparator().length > 0);
|
|
17
|
+
for (let element_4 of returnComparator()) {
|
|
18
|
+
allStringEq_5 = allStringEq_5 && (element_4 == "deleted");
|
|
19
19
|
}
|
|
20
20
|
if (allStringEq_5) {
|
|
21
21
|
return { state: WaiterState.SUCCESS, reason };
|
|
@@ -6,16 +6,16 @@ const checkState = async (client, input) => {
|
|
|
6
6
|
const result = await client.send(new DescribeVpnConnectionsCommand(input));
|
|
7
7
|
reason = result;
|
|
8
8
|
try {
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
let returnComparator = () => {
|
|
10
|
+
let flat_1 = [].concat(...result.VpnConnections);
|
|
11
|
+
let projection_3 = flat_1.map((element_2) => {
|
|
12
12
|
return element_2.State;
|
|
13
13
|
});
|
|
14
14
|
return projection_3;
|
|
15
15
|
};
|
|
16
|
-
let allStringEq_5 = returnComparator().length > 0;
|
|
17
|
-
for (
|
|
18
|
-
allStringEq_5 = allStringEq_5 && element_4 == "available";
|
|
16
|
+
let allStringEq_5 = (returnComparator().length > 0);
|
|
17
|
+
for (let element_4 of returnComparator()) {
|
|
18
|
+
allStringEq_5 = allStringEq_5 && (element_4 == "available");
|
|
19
19
|
}
|
|
20
20
|
if (allStringEq_5) {
|
|
21
21
|
return { state: WaiterState.SUCCESS, reason };
|
|
@@ -23,14 +23,14 @@ const checkState = async (client, input) => {
|
|
|
23
23
|
}
|
|
24
24
|
catch (e) { }
|
|
25
25
|
try {
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
26
|
+
let returnComparator = () => {
|
|
27
|
+
let flat_1 = [].concat(...result.VpnConnections);
|
|
28
|
+
let projection_3 = flat_1.map((element_2) => {
|
|
29
29
|
return element_2.State;
|
|
30
30
|
});
|
|
31
31
|
return projection_3;
|
|
32
32
|
};
|
|
33
|
-
for (
|
|
33
|
+
for (let anyStringEq_4 of returnComparator()) {
|
|
34
34
|
if (anyStringEq_4 == "deleting") {
|
|
35
35
|
return { state: WaiterState.FAILURE, reason };
|
|
36
36
|
}
|
|
@@ -38,14 +38,14 @@ const checkState = async (client, input) => {
|
|
|
38
38
|
}
|
|
39
39
|
catch (e) { }
|
|
40
40
|
try {
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
41
|
+
let returnComparator = () => {
|
|
42
|
+
let flat_1 = [].concat(...result.VpnConnections);
|
|
43
|
+
let projection_3 = flat_1.map((element_2) => {
|
|
44
44
|
return element_2.State;
|
|
45
45
|
});
|
|
46
46
|
return projection_3;
|
|
47
47
|
};
|
|
48
|
-
for (
|
|
48
|
+
for (let anyStringEq_4 of returnComparator()) {
|
|
49
49
|
if (anyStringEq_4 == "deleted") {
|
|
50
50
|
return { state: WaiterState.FAILURE, reason };
|
|
51
51
|
}
|
|
@@ -6,16 +6,16 @@ const checkState = async (client, input) => {
|
|
|
6
6
|
const result = await client.send(new DescribeVpnConnectionsCommand(input));
|
|
7
7
|
reason = result;
|
|
8
8
|
try {
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
let returnComparator = () => {
|
|
10
|
+
let flat_1 = [].concat(...result.VpnConnections);
|
|
11
|
+
let projection_3 = flat_1.map((element_2) => {
|
|
12
12
|
return element_2.State;
|
|
13
13
|
});
|
|
14
14
|
return projection_3;
|
|
15
15
|
};
|
|
16
|
-
let allStringEq_5 = returnComparator().length > 0;
|
|
17
|
-
for (
|
|
18
|
-
allStringEq_5 = allStringEq_5 && element_4 == "deleted";
|
|
16
|
+
let allStringEq_5 = (returnComparator().length > 0);
|
|
17
|
+
for (let element_4 of returnComparator()) {
|
|
18
|
+
allStringEq_5 = allStringEq_5 && (element_4 == "deleted");
|
|
19
19
|
}
|
|
20
20
|
if (allStringEq_5) {
|
|
21
21
|
return { state: WaiterState.SUCCESS, reason };
|
|
@@ -23,14 +23,14 @@ const checkState = async (client, input) => {
|
|
|
23
23
|
}
|
|
24
24
|
catch (e) { }
|
|
25
25
|
try {
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
26
|
+
let returnComparator = () => {
|
|
27
|
+
let flat_1 = [].concat(...result.VpnConnections);
|
|
28
|
+
let projection_3 = flat_1.map((element_2) => {
|
|
29
29
|
return element_2.State;
|
|
30
30
|
});
|
|
31
31
|
return projection_3;
|
|
32
32
|
};
|
|
33
|
-
for (
|
|
33
|
+
for (let anyStringEq_4 of returnComparator()) {
|
|
34
34
|
if (anyStringEq_4 == "pending") {
|
|
35
35
|
return { state: WaiterState.FAILURE, reason };
|
|
36
36
|
}
|
|
@@ -59,6 +59,7 @@ declare const CreatePlacementGroupCommand_base: {
|
|
|
59
59
|
* },
|
|
60
60
|
* ],
|
|
61
61
|
* SpreadLevel: "host" || "rack",
|
|
62
|
+
* LinkedGroupId: "STRING_VALUE",
|
|
62
63
|
* DryRun: true || false,
|
|
63
64
|
* GroupName: "STRING_VALUE",
|
|
64
65
|
* Strategy: "cluster" || "spread" || "partition",
|
|
@@ -80,6 +81,7 @@ declare const CreatePlacementGroupCommand_base: {
|
|
|
80
81
|
* // ],
|
|
81
82
|
* // GroupArn: "STRING_VALUE",
|
|
82
83
|
* // SpreadLevel: "host" || "rack",
|
|
84
|
+
* // LinkedGroupId: "STRING_VALUE",
|
|
83
85
|
* // },
|
|
84
86
|
* // };
|
|
85
87
|
*
|
|
@@ -11037,6 +11037,11 @@ export interface CreatePlacementGroupRequest {
|
|
|
11037
11037
|
* @public
|
|
11038
11038
|
*/
|
|
11039
11039
|
SpreadLevel?: SpreadLevel | undefined;
|
|
11040
|
+
/**
|
|
11041
|
+
* <p>Reserved for future use.</p>
|
|
11042
|
+
* @public
|
|
11043
|
+
*/
|
|
11044
|
+
LinkedGroupId?: string | undefined;
|
|
11040
11045
|
/**
|
|
11041
11046
|
* <p>Checks whether you have the required permissions for the operation, without actually making the
|
|
11042
11047
|
* request, and provides an error response. If you have the required permissions, the error response is
|
|
@@ -11104,6 +11109,11 @@ export interface PlacementGroup {
|
|
|
11104
11109
|
* @public
|
|
11105
11110
|
*/
|
|
11106
11111
|
SpreadLevel?: SpreadLevel | undefined;
|
|
11112
|
+
/**
|
|
11113
|
+
* <p>Reserved for future use.</p>
|
|
11114
|
+
* @public
|
|
11115
|
+
*/
|
|
11116
|
+
LinkedGroupId?: string | undefined;
|
|
11107
11117
|
}
|
|
11108
11118
|
/**
|
|
11109
11119
|
* @public
|
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
export * from "./
|
|
1
|
+
export * from "./Interfaces";
|
|
2
2
|
export * from "./DescribeAddressesAttributePaginator";
|
|
3
|
+
export * from "./DescribeAddressTransfersPaginator";
|
|
3
4
|
export * from "./DescribeAwsNetworkPerformanceMetricSubscriptionsPaginator";
|
|
4
5
|
export * from "./DescribeByoipCidrsPaginator";
|
|
5
6
|
export * from "./DescribeCapacityBlockExtensionHistoryPaginator";
|
|
6
7
|
export * from "./DescribeCapacityBlockExtensionOfferingsPaginator";
|
|
7
8
|
export * from "./DescribeCapacityBlockOfferingsPaginator";
|
|
8
|
-
export * from "./DescribeCapacityBlockStatusPaginator";
|
|
9
9
|
export * from "./DescribeCapacityBlocksPaginator";
|
|
10
|
+
export * from "./DescribeCapacityBlockStatusPaginator";
|
|
10
11
|
export * from "./DescribeCapacityManagerDataExportsPaginator";
|
|
11
|
-
export * from "./Interfaces";
|
|
12
12
|
export * from "./DescribeCapacityReservationBillingRequestsPaginator";
|
|
13
13
|
export * from "./DescribeCapacityReservationFleetsPaginator";
|
|
14
14
|
export * from "./DescribeCapacityReservationsPaginator";
|
|
@@ -33,37 +33,37 @@ export * from "./DescribeHostReservationsPaginator";
|
|
|
33
33
|
export * from "./DescribeHostsPaginator";
|
|
34
34
|
export * from "./DescribeIamInstanceProfileAssociationsPaginator";
|
|
35
35
|
export * from "./DescribeImageReferencesPaginator";
|
|
36
|
+
export * from "./DescribeImagesPaginator";
|
|
36
37
|
export * from "./DescribeImageUsageReportEntriesPaginator";
|
|
37
38
|
export * from "./DescribeImageUsageReportsPaginator";
|
|
38
|
-
export * from "./DescribeImagesPaginator";
|
|
39
39
|
export * from "./DescribeImportImageTasksPaginator";
|
|
40
40
|
export * from "./DescribeImportSnapshotTasksPaginator";
|
|
41
41
|
export * from "./DescribeInstanceConnectEndpointsPaginator";
|
|
42
42
|
export * from "./DescribeInstanceCreditSpecificationsPaginator";
|
|
43
43
|
export * from "./DescribeInstanceEventWindowsPaginator";
|
|
44
44
|
export * from "./DescribeInstanceImageMetadataPaginator";
|
|
45
|
+
export * from "./DescribeInstancesPaginator";
|
|
45
46
|
export * from "./DescribeInstanceStatusPaginator";
|
|
46
47
|
export * from "./DescribeInstanceTopologyPaginator";
|
|
47
48
|
export * from "./DescribeInstanceTypeOfferingsPaginator";
|
|
48
49
|
export * from "./DescribeInstanceTypesPaginator";
|
|
49
|
-
export * from "./DescribeInstancesPaginator";
|
|
50
50
|
export * from "./DescribeInternetGatewaysPaginator";
|
|
51
51
|
export * from "./DescribeIpamPoolsPaginator";
|
|
52
|
-
export * from "./DescribeIpamPrefixListResolverTargetsPaginator";
|
|
53
52
|
export * from "./DescribeIpamPrefixListResolversPaginator";
|
|
53
|
+
export * from "./DescribeIpamPrefixListResolverTargetsPaginator";
|
|
54
54
|
export * from "./DescribeIpamResourceDiscoveriesPaginator";
|
|
55
55
|
export * from "./DescribeIpamResourceDiscoveryAssociationsPaginator";
|
|
56
|
-
export * from "./DescribeIpamScopesPaginator";
|
|
57
56
|
export * from "./DescribeIpamsPaginator";
|
|
57
|
+
export * from "./DescribeIpamScopesPaginator";
|
|
58
58
|
export * from "./DescribeIpv6PoolsPaginator";
|
|
59
|
-
export * from "./DescribeLaunchTemplateVersionsPaginator";
|
|
60
59
|
export * from "./DescribeLaunchTemplatesPaginator";
|
|
60
|
+
export * from "./DescribeLaunchTemplateVersionsPaginator";
|
|
61
|
+
export * from "./DescribeLocalGatewayRouteTablesPaginator";
|
|
61
62
|
export * from "./DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsPaginator";
|
|
62
63
|
export * from "./DescribeLocalGatewayRouteTableVpcAssociationsPaginator";
|
|
63
|
-
export * from "./
|
|
64
|
+
export * from "./DescribeLocalGatewaysPaginator";
|
|
64
65
|
export * from "./DescribeLocalGatewayVirtualInterfaceGroupsPaginator";
|
|
65
66
|
export * from "./DescribeLocalGatewayVirtualInterfacesPaginator";
|
|
66
|
-
export * from "./DescribeLocalGatewaysPaginator";
|
|
67
67
|
export * from "./DescribeMacHostsPaginator";
|
|
68
68
|
export * from "./DescribeMacModificationTasksPaginator";
|
|
69
69
|
export * from "./DescribeManagedPrefixListsPaginator";
|
|
@@ -89,10 +89,10 @@ export * from "./DescribeRouteTablesPaginator";
|
|
|
89
89
|
export * from "./DescribeScheduledInstanceAvailabilityPaginator";
|
|
90
90
|
export * from "./DescribeScheduledInstancesPaginator";
|
|
91
91
|
export * from "./DescribeSecurityGroupRulesPaginator";
|
|
92
|
-
export * from "./DescribeSecurityGroupVpcAssociationsPaginator";
|
|
93
92
|
export * from "./DescribeSecurityGroupsPaginator";
|
|
94
|
-
export * from "./
|
|
93
|
+
export * from "./DescribeSecurityGroupVpcAssociationsPaginator";
|
|
95
94
|
export * from "./DescribeSnapshotsPaginator";
|
|
95
|
+
export * from "./DescribeSnapshotTierStatusPaginator";
|
|
96
96
|
export * from "./DescribeSpotFleetRequestsPaginator";
|
|
97
97
|
export * from "./DescribeSpotInstanceRequestsPaginator";
|
|
98
98
|
export * from "./DescribeSpotPriceHistoryPaginator";
|
|
@@ -111,23 +111,23 @@ export * from "./DescribeTransitGatewayPeeringAttachmentsPaginator";
|
|
|
111
111
|
export * from "./DescribeTransitGatewayPolicyTablesPaginator";
|
|
112
112
|
export * from "./DescribeTransitGatewayRouteTableAnnouncementsPaginator";
|
|
113
113
|
export * from "./DescribeTransitGatewayRouteTablesPaginator";
|
|
114
|
-
export * from "./DescribeTransitGatewayVpcAttachmentsPaginator";
|
|
115
114
|
export * from "./DescribeTransitGatewaysPaginator";
|
|
115
|
+
export * from "./DescribeTransitGatewayVpcAttachmentsPaginator";
|
|
116
116
|
export * from "./DescribeTrunkInterfaceAssociationsPaginator";
|
|
117
117
|
export * from "./DescribeVerifiedAccessEndpointsPaginator";
|
|
118
118
|
export * from "./DescribeVerifiedAccessGroupsPaginator";
|
|
119
119
|
export * from "./DescribeVerifiedAccessInstanceLoggingConfigurationsPaginator";
|
|
120
120
|
export * from "./DescribeVerifiedAccessInstancesPaginator";
|
|
121
121
|
export * from "./DescribeVerifiedAccessTrustProvidersPaginator";
|
|
122
|
-
export * from "./DescribeVolumeStatusPaginator";
|
|
123
|
-
export * from "./DescribeVolumesModificationsPaginator";
|
|
124
122
|
export * from "./DescribeVolumesPaginator";
|
|
123
|
+
export * from "./DescribeVolumesModificationsPaginator";
|
|
124
|
+
export * from "./DescribeVolumeStatusPaginator";
|
|
125
125
|
export * from "./DescribeVpcClassicLinkDnsSupportPaginator";
|
|
126
126
|
export * from "./DescribeVpcEndpointConnectionNotificationsPaginator";
|
|
127
127
|
export * from "./DescribeVpcEndpointConnectionsPaginator";
|
|
128
|
+
export * from "./DescribeVpcEndpointsPaginator";
|
|
128
129
|
export * from "./DescribeVpcEndpointServiceConfigurationsPaginator";
|
|
129
130
|
export * from "./DescribeVpcEndpointServicePermissionsPaginator";
|
|
130
|
-
export * from "./DescribeVpcEndpointsPaginator";
|
|
131
131
|
export * from "./DescribeVpcPeeringConnectionsPaginator";
|
|
132
132
|
export * from "./DescribeVpcsPaginator";
|
|
133
133
|
export * from "./DescribeVpnConcentratorsPaginator";
|
|
@@ -1964,6 +1964,7 @@ export interface CreatePlacementGroupRequest {
|
|
|
1964
1964
|
PartitionCount?: number | undefined;
|
|
1965
1965
|
TagSpecifications?: TagSpecification[] | undefined;
|
|
1966
1966
|
SpreadLevel?: SpreadLevel | undefined;
|
|
1967
|
+
LinkedGroupId?: string | undefined;
|
|
1967
1968
|
DryRun?: boolean | undefined;
|
|
1968
1969
|
GroupName?: string | undefined;
|
|
1969
1970
|
Strategy?: PlacementStrategy | undefined;
|
|
@@ -1977,6 +1978,7 @@ export interface PlacementGroup {
|
|
|
1977
1978
|
Tags?: Tag[] | undefined;
|
|
1978
1979
|
GroupArn?: string | undefined;
|
|
1979
1980
|
SpreadLevel?: SpreadLevel | undefined;
|
|
1981
|
+
LinkedGroupId?: string | undefined;
|
|
1980
1982
|
}
|
|
1981
1983
|
export interface CreatePlacementGroupResult {
|
|
1982
1984
|
PlacementGroup?: PlacementGroup | undefined;
|