@aws-sdk/client-ec2 3.1065.0 → 3.1067.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.
Files changed (65) hide show
  1. package/README.md +14 -0
  2. package/dist-cjs/index.js +28 -0
  3. package/dist-cjs/schemas/schemas_0.js +127 -66
  4. package/dist-es/EC2.js +4 -0
  5. package/dist-es/commands/AttachImageWatermarkCommand.js +16 -0
  6. package/dist-es/commands/DetachImageWatermarkCommand.js +16 -0
  7. package/dist-es/commands/index.js +2 -0
  8. package/dist-es/schemas/schemas_0.js +65 -4
  9. package/dist-types/EC2.d.ts +14 -0
  10. package/dist-types/EC2Client.d.ts +4 -2
  11. package/dist-types/commands/AttachImageWatermarkCommand.d.ts +84 -0
  12. package/dist-types/commands/CreateDefaultSubnetCommand.d.ts +2 -1
  13. package/dist-types/commands/CreateDefaultVpcCommand.d.ts +1 -2
  14. package/dist-types/commands/CreateRouteServerPeerCommand.d.ts +2 -1
  15. package/dist-types/commands/DeleteSecurityGroupCommand.d.ts +2 -1
  16. package/dist-types/commands/DeleteSnapshotCommand.d.ts +1 -1
  17. package/dist-types/commands/DescribeImagesCommand.d.ts +9 -0
  18. package/dist-types/commands/DescribeImportSnapshotTasksCommand.d.ts +1 -2
  19. package/dist-types/commands/DescribeInstanceImageMetadataCommand.d.ts +9 -0
  20. package/dist-types/commands/DescribeSpotInstanceRequestsCommand.d.ts +2 -1
  21. package/dist-types/commands/DescribeSpotPriceHistoryCommand.d.ts +1 -2
  22. package/dist-types/commands/DetachImageWatermarkCommand.d.ts +82 -0
  23. package/dist-types/commands/GetCapacityManagerAttributesCommand.d.ts +1 -1
  24. package/dist-types/commands/GetCapacityManagerMetricDataCommand.d.ts +1 -2
  25. package/dist-types/commands/ModifyIpamScopeCommand.d.ts +2 -1
  26. package/dist-types/commands/ModifyLaunchTemplateCommand.d.ts +1 -1
  27. package/dist-types/commands/ModifyLocalGatewayRouteCommand.d.ts +1 -1
  28. package/dist-types/commands/index.d.ts +2 -0
  29. package/dist-types/models/models_0.d.ts +37 -22
  30. package/dist-types/models/models_1.d.ts +24 -100
  31. package/dist-types/models/models_2.d.ts +100 -34
  32. package/dist-types/models/models_3.d.ts +73 -120
  33. package/dist-types/models/models_4.d.ts +128 -172
  34. package/dist-types/models/models_5.d.ts +204 -183
  35. package/dist-types/models/models_6.d.ts +186 -119
  36. package/dist-types/models/models_7.d.ts +115 -1
  37. package/dist-types/schemas/schemas_0.d.ts +7 -0
  38. package/dist-types/ts3.4/EC2.d.ts +34 -0
  39. package/dist-types/ts3.4/EC2Client.d.ts +12 -0
  40. package/dist-types/ts3.4/commands/AttachImageWatermarkCommand.d.ts +53 -0
  41. package/dist-types/ts3.4/commands/CreateDefaultSubnetCommand.d.ts +2 -4
  42. package/dist-types/ts3.4/commands/CreateDefaultVpcCommand.d.ts +4 -2
  43. package/dist-types/ts3.4/commands/CreateRouteServerPeerCommand.d.ts +2 -4
  44. package/dist-types/ts3.4/commands/DeleteSecurityGroupCommand.d.ts +2 -4
  45. package/dist-types/ts3.4/commands/DeleteSnapshotCommand.d.ts +1 -1
  46. package/dist-types/ts3.4/commands/DescribeImportSnapshotTasksCommand.d.ts +4 -2
  47. package/dist-types/ts3.4/commands/DescribeSpotInstanceRequestsCommand.d.ts +2 -4
  48. package/dist-types/ts3.4/commands/DescribeSpotPriceHistoryCommand.d.ts +4 -2
  49. package/dist-types/ts3.4/commands/DetachImageWatermarkCommand.d.ts +53 -0
  50. package/dist-types/ts3.4/commands/GetCapacityManagerAttributesCommand.d.ts +1 -1
  51. package/dist-types/ts3.4/commands/GetCapacityManagerMetricDataCommand.d.ts +4 -2
  52. package/dist-types/ts3.4/commands/ModifyIpamScopeCommand.d.ts +2 -4
  53. package/dist-types/ts3.4/commands/ModifyLaunchTemplateCommand.d.ts +1 -1
  54. package/dist-types/ts3.4/commands/ModifyLocalGatewayRouteCommand.d.ts +1 -1
  55. package/dist-types/ts3.4/commands/index.d.ts +2 -0
  56. package/dist-types/ts3.4/models/models_0.d.ts +8 -6
  57. package/dist-types/ts3.4/models/models_1.d.ts +7 -20
  58. package/dist-types/ts3.4/models/models_2.d.ts +23 -9
  59. package/dist-types/ts3.4/models/models_3.d.ts +16 -26
  60. package/dist-types/ts3.4/models/models_4.d.ts +30 -26
  61. package/dist-types/ts3.4/models/models_5.d.ts +35 -37
  62. package/dist-types/ts3.4/models/models_6.d.ts +37 -29
  63. package/dist-types/ts3.4/models/models_7.d.ts +26 -0
  64. package/dist-types/ts3.4/schemas/schemas_0.d.ts +7 -0
  65. package/package.json +2 -2
@@ -5,8 +5,10 @@ import {
5
5
  ServiceInputTypes,
6
6
  ServiceOutputTypes,
7
7
  } from "../EC2Client";
8
- import { CreateDefaultVpcRequest } from "../models/models_0";
9
- import { CreateDefaultVpcResult } from "../models/models_1";
8
+ import {
9
+ CreateDefaultVpcRequest,
10
+ CreateDefaultVpcResult,
11
+ } from "../models/models_1";
10
12
  export { __MetadataBearer };
11
13
  export { $Command };
12
14
  export interface CreateDefaultVpcCommandInput extends CreateDefaultVpcRequest {}
@@ -5,10 +5,8 @@ import {
5
5
  ServiceInputTypes,
6
6
  ServiceOutputTypes,
7
7
  } from "../EC2Client";
8
- import {
9
- CreateRouteServerPeerRequest,
10
- CreateRouteServerPeerResult,
11
- } from "../models/models_1";
8
+ import { CreateRouteServerPeerRequest } from "../models/models_1";
9
+ import { CreateRouteServerPeerResult } from "../models/models_2";
12
10
  export { __MetadataBearer };
13
11
  export { $Command };
14
12
  export interface CreateRouteServerPeerCommandInput
@@ -5,10 +5,8 @@ import {
5
5
  ServiceInputTypes,
6
6
  ServiceOutputTypes,
7
7
  } from "../EC2Client";
8
- import {
9
- DeleteSecurityGroupRequest,
10
- DeleteSecurityGroupResult,
11
- } from "../models/models_2";
8
+ import { DeleteSecurityGroupRequest } from "../models/models_2";
9
+ import { DeleteSecurityGroupResult } from "../models/models_3";
12
10
  export { __MetadataBearer };
13
11
  export { $Command };
14
12
  export interface DeleteSecurityGroupCommandInput
@@ -5,7 +5,7 @@ import {
5
5
  ServiceInputTypes,
6
6
  ServiceOutputTypes,
7
7
  } from "../EC2Client";
8
- import { DeleteSnapshotRequest } from "../models/models_2";
8
+ import { DeleteSnapshotRequest } from "../models/models_3";
9
9
  export { __MetadataBearer };
10
10
  export { $Command };
11
11
  export interface DeleteSnapshotCommandInput extends DeleteSnapshotRequest {}
@@ -5,8 +5,10 @@ import {
5
5
  ServiceInputTypes,
6
6
  ServiceOutputTypes,
7
7
  } from "../EC2Client";
8
- import { DescribeImportSnapshotTasksRequest } from "../models/models_3";
9
- import { DescribeImportSnapshotTasksResult } from "../models/models_4";
8
+ import {
9
+ DescribeImportSnapshotTasksRequest,
10
+ DescribeImportSnapshotTasksResult,
11
+ } from "../models/models_4";
10
12
  export { __MetadataBearer };
11
13
  export { $Command };
12
14
  export interface DescribeImportSnapshotTasksCommandInput
@@ -5,10 +5,8 @@ import {
5
5
  ServiceInputTypes,
6
6
  ServiceOutputTypes,
7
7
  } from "../EC2Client";
8
- import {
9
- DescribeSpotInstanceRequestsRequest,
10
- DescribeSpotInstanceRequestsResult,
11
- } from "../models/models_4";
8
+ import { DescribeSpotInstanceRequestsRequest } from "../models/models_4";
9
+ import { DescribeSpotInstanceRequestsResult } from "../models/models_5";
12
10
  export { __MetadataBearer };
13
11
  export { $Command };
14
12
  export interface DescribeSpotInstanceRequestsCommandInput
@@ -5,8 +5,10 @@ import {
5
5
  ServiceInputTypes,
6
6
  ServiceOutputTypes,
7
7
  } from "../EC2Client";
8
- import { DescribeSpotPriceHistoryRequest } from "../models/models_4";
9
- import { DescribeSpotPriceHistoryResult } from "../models/models_5";
8
+ import {
9
+ DescribeSpotPriceHistoryRequest,
10
+ DescribeSpotPriceHistoryResult,
11
+ } from "../models/models_5";
10
12
  export { __MetadataBearer };
11
13
  export { $Command };
12
14
  export interface DescribeSpotPriceHistoryCommandInput
@@ -0,0 +1,53 @@
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ EC2ClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../EC2Client";
8
+ import {
9
+ DetachImageWatermarkRequest,
10
+ DetachImageWatermarkResult,
11
+ } from "../models/models_5";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface DetachImageWatermarkCommandInput
15
+ extends DetachImageWatermarkRequest {}
16
+ export interface DetachImageWatermarkCommandOutput
17
+ extends DetachImageWatermarkResult,
18
+ __MetadataBearer {}
19
+ declare const DetachImageWatermarkCommand_base: {
20
+ new (
21
+ input: DetachImageWatermarkCommandInput
22
+ ): import("@smithy/core/client").CommandImpl<
23
+ DetachImageWatermarkCommandInput,
24
+ DetachImageWatermarkCommandOutput,
25
+ EC2ClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: DetachImageWatermarkCommandInput
31
+ ): import("@smithy/core/client").CommandImpl<
32
+ DetachImageWatermarkCommandInput,
33
+ DetachImageWatermarkCommandOutput,
34
+ EC2ClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): {
39
+ [x: string]: unknown;
40
+ };
41
+ };
42
+ export declare class DetachImageWatermarkCommand extends DetachImageWatermarkCommand_base {
43
+ protected static __types: {
44
+ api: {
45
+ input: DetachImageWatermarkRequest;
46
+ output: DetachImageWatermarkResult;
47
+ };
48
+ sdk: {
49
+ input: DetachImageWatermarkCommandInput;
50
+ output: DetachImageWatermarkCommandOutput;
51
+ };
52
+ };
53
+ }
@@ -8,7 +8,7 @@ import {
8
8
  import {
9
9
  GetCapacityManagerAttributesRequest,
10
10
  GetCapacityManagerAttributesResult,
11
- } from "../models/models_5";
11
+ } from "../models/models_6";
12
12
  export { __MetadataBearer };
13
13
  export { $Command };
14
14
  export interface GetCapacityManagerAttributesCommandInput
@@ -5,8 +5,10 @@ import {
5
5
  ServiceInputTypes,
6
6
  ServiceOutputTypes,
7
7
  } from "../EC2Client";
8
- import { GetCapacityManagerMetricDataRequest } from "../models/models_5";
9
- import { GetCapacityManagerMetricDataResult } from "../models/models_6";
8
+ import {
9
+ GetCapacityManagerMetricDataRequest,
10
+ GetCapacityManagerMetricDataResult,
11
+ } from "../models/models_6";
10
12
  export { __MetadataBearer };
11
13
  export { $Command };
12
14
  export interface GetCapacityManagerMetricDataCommandInput
@@ -5,10 +5,8 @@ import {
5
5
  ServiceInputTypes,
6
6
  ServiceOutputTypes,
7
7
  } from "../EC2Client";
8
- import {
9
- ModifyIpamScopeRequest,
10
- ModifyIpamScopeResult,
11
- } from "../models/models_6";
8
+ import { ModifyIpamScopeRequest } from "../models/models_6";
9
+ import { ModifyIpamScopeResult } from "../models/models_7";
12
10
  export { __MetadataBearer };
13
11
  export { $Command };
14
12
  export interface ModifyIpamScopeCommandInput extends ModifyIpamScopeRequest {}
@@ -8,7 +8,7 @@ import {
8
8
  import {
9
9
  ModifyLaunchTemplateRequest,
10
10
  ModifyLaunchTemplateResult,
11
- } from "../models/models_6";
11
+ } from "../models/models_7";
12
12
  export { __MetadataBearer };
13
13
  export { $Command };
14
14
  export interface ModifyLaunchTemplateCommandInput
@@ -8,7 +8,7 @@ import {
8
8
  import {
9
9
  ModifyLocalGatewayRouteRequest,
10
10
  ModifyLocalGatewayRouteResult,
11
- } from "../models/models_6";
11
+ } from "../models/models_7";
12
12
  export { __MetadataBearer };
13
13
  export { $Command };
14
14
  export interface ModifyLocalGatewayRouteCommandInput
@@ -35,6 +35,7 @@ export * from "./AssociateTransitGatewayRouteTableCommand";
35
35
  export * from "./AssociateTrunkInterfaceCommand";
36
36
  export * from "./AssociateVpcCidrBlockCommand";
37
37
  export * from "./AttachClassicLinkVpcCommand";
38
+ export * from "./AttachImageWatermarkCommand";
38
39
  export * from "./AttachInternetGatewayCommand";
39
40
  export * from "./AttachNetworkInterfaceCommand";
40
41
  export * from "./AttachVerifiedAccessTrustProviderCommand";
@@ -454,6 +455,7 @@ export * from "./DescribeVpnConcentratorsCommand";
454
455
  export * from "./DescribeVpnConnectionsCommand";
455
456
  export * from "./DescribeVpnGatewaysCommand";
456
457
  export * from "./DetachClassicLinkVpcCommand";
458
+ export * from "./DetachImageWatermarkCommand";
457
459
  export * from "./DetachInternetGatewayCommand";
458
460
  export * from "./DetachNetworkInterfaceCommand";
459
461
  export * from "./DetachVerifiedAccessTrustProviderCommand";
@@ -1079,6 +1079,14 @@ export interface AttachClassicLinkVpcRequest {
1079
1079
  export interface AttachClassicLinkVpcResult {
1080
1080
  Return?: boolean | undefined;
1081
1081
  }
1082
+ export interface AttachImageWatermarkRequest {
1083
+ ImageId: string | undefined;
1084
+ WatermarkName: string | undefined;
1085
+ DryRun?: boolean | undefined;
1086
+ }
1087
+ export interface AttachImageWatermarkResult {
1088
+ WatermarkKey?: string | undefined;
1089
+ }
1082
1090
  export interface AttachInternetGatewayRequest {
1083
1091
  DryRun?: boolean | undefined;
1084
1092
  InternetGatewayId: string | undefined;
@@ -1960,9 +1968,3 @@ export interface Subnet {
1960
1968
  DefaultForAz?: boolean | undefined;
1961
1969
  MapPublicIpOnLaunch?: boolean | undefined;
1962
1970
  }
1963
- export interface CreateDefaultSubnetResult {
1964
- Subnet?: Subnet | undefined;
1965
- }
1966
- export interface CreateDefaultVpcRequest {
1967
- DryRun?: boolean | undefined;
1968
- }
@@ -97,7 +97,6 @@ import {
97
97
  RouteServerBgpState,
98
98
  RouteServerEndpointState,
99
99
  RouteServerPeerLivenessMode,
100
- RouteServerPeerState,
101
100
  RouteServerPersistRoutesAction,
102
101
  RouteServerPersistRoutesState,
103
102
  RouteServerState,
@@ -137,12 +136,19 @@ import {
137
136
  OperatorResponse,
138
137
  PortRange,
139
138
  ReservedInstancesListing,
139
+ Subnet,
140
140
  Tag,
141
141
  TagSpecification,
142
142
  UnsuccessfulItem,
143
143
  VpcCidrBlockAssociation,
144
144
  VpcIpv6CidrBlockAssociation,
145
145
  } from "./models_0";
146
+ export interface CreateDefaultSubnetResult {
147
+ Subnet?: Subnet | undefined;
148
+ }
149
+ export interface CreateDefaultVpcRequest {
150
+ DryRun?: boolean | undefined;
151
+ }
146
152
  export interface VpcEncryptionControlExclusion {
147
153
  State?: VpcEncryptionControlExclusionState | undefined;
148
154
  StateMessage?: string | undefined;
@@ -2253,22 +2259,3 @@ export interface RouteServerBgpOptions {
2253
2259
  export interface RouteServerBgpStatus {
2254
2260
  Status?: RouteServerBgpState | undefined;
2255
2261
  }
2256
- export interface RouteServerPeer {
2257
- RouteServerPeerId?: string | undefined;
2258
- RouteServerEndpointId?: string | undefined;
2259
- RouteServerId?: string | undefined;
2260
- VpcId?: string | undefined;
2261
- SubnetId?: string | undefined;
2262
- State?: RouteServerPeerState | undefined;
2263
- FailureReason?: string | undefined;
2264
- EndpointEniId?: string | undefined;
2265
- EndpointEniAddress?: string | undefined;
2266
- PeerAddress?: string | undefined;
2267
- BgpOptions?: RouteServerBgpOptions | undefined;
2268
- BgpStatus?: RouteServerBgpStatus | undefined;
2269
- BfdStatus?: RouteServerBfdStatus | undefined;
2270
- Tags?: Tag[] | undefined;
2271
- }
2272
- export interface CreateRouteServerPeerResult {
2273
- RouteServerPeer?: RouteServerPeer | undefined;
2274
- }
@@ -30,6 +30,7 @@ import {
30
30
  PayerResponsibility,
31
31
  ProtocolValue,
32
32
  RouteOrigin,
33
+ RouteServerPeerState,
33
34
  RouteState,
34
35
  SecondaryNetworkCidrBlockAssociationState,
35
36
  SecondaryNetworkState,
@@ -126,11 +127,32 @@ import {
126
127
  ManagedPrefixList,
127
128
  OperatorRequest,
128
129
  RouteServer,
130
+ RouteServerBfdStatus,
131
+ RouteServerBgpOptions,
132
+ RouteServerBgpStatus,
129
133
  RouteServerEndpoint,
130
- RouteServerPeer,
131
134
  Vpc,
132
135
  VpcEncryptionControl,
133
136
  } from "./models_1";
137
+ export interface RouteServerPeer {
138
+ RouteServerPeerId?: string | undefined;
139
+ RouteServerEndpointId?: string | undefined;
140
+ RouteServerId?: string | undefined;
141
+ VpcId?: string | undefined;
142
+ SubnetId?: string | undefined;
143
+ State?: RouteServerPeerState | undefined;
144
+ FailureReason?: string | undefined;
145
+ EndpointEniId?: string | undefined;
146
+ EndpointEniAddress?: string | undefined;
147
+ PeerAddress?: string | undefined;
148
+ BgpOptions?: RouteServerBgpOptions | undefined;
149
+ BgpStatus?: RouteServerBgpStatus | undefined;
150
+ BfdStatus?: RouteServerBfdStatus | undefined;
151
+ Tags?: Tag[] | undefined;
152
+ }
153
+ export interface CreateRouteServerPeerResult {
154
+ RouteServerPeer?: RouteServerPeer | undefined;
155
+ }
134
156
  export interface CreateRouteTableRequest {
135
157
  TagSpecifications?: TagSpecification[] | undefined;
136
158
  ClientToken?: string | undefined;
@@ -1964,11 +1986,3 @@ export interface DeleteSecurityGroupRequest {
1964
1986
  GroupName?: string | undefined;
1965
1987
  DryRun?: boolean | undefined;
1966
1988
  }
1967
- export interface DeleteSecurityGroupResult {
1968
- Return?: boolean | undefined;
1969
- GroupId?: string | undefined;
1970
- }
1971
- export interface DeleteSnapshotRequest {
1972
- SnapshotId: string | undefined;
1973
- DryRun?: boolean | undefined;
1974
- }
@@ -140,6 +140,14 @@ import {
140
140
  VerifiedAccessGroup,
141
141
  VpcBlockPublicAccessExclusion,
142
142
  } from "./models_2";
143
+ export interface DeleteSecurityGroupResult {
144
+ Return?: boolean | undefined;
145
+ GroupId?: string | undefined;
146
+ }
147
+ export interface DeleteSnapshotRequest {
148
+ SnapshotId: string | undefined;
149
+ DryRun?: boolean | undefined;
150
+ }
143
151
  export interface DeleteSpotDatafeedSubscriptionRequest {
144
152
  DryRun?: boolean | undefined;
145
153
  }
@@ -1739,6 +1747,13 @@ export interface DescribeImagesRequest {
1739
1747
  DryRun?: boolean | undefined;
1740
1748
  Filters?: Filter[] | undefined;
1741
1749
  }
1750
+ export interface ImageWatermark {
1751
+ WatermarkKey?: string | undefined;
1752
+ SourceImageRegion?: string | undefined;
1753
+ SourceImageId?: string | undefined;
1754
+ SourceImageCreationTime?: Date | undefined;
1755
+ WatermarkCreationTime?: Date | undefined;
1756
+ }
1742
1757
  export interface Image {
1743
1758
  PlatformDetails?: string | undefined;
1744
1759
  UsageOperation?: string | undefined;
@@ -1765,6 +1780,7 @@ export interface Image {
1765
1780
  SourceImageId?: string | undefined;
1766
1781
  SourceImageRegion?: string | undefined;
1767
1782
  FreeTierEligible?: boolean | undefined;
1783
+ ImageWatermarks?: ImageWatermark[] | undefined;
1768
1784
  ImageId?: string | undefined;
1769
1785
  ImageLocation?: string | undefined;
1770
1786
  State?: ImageState | undefined;
@@ -1882,29 +1898,3 @@ export interface DescribeImportImageTasksResult {
1882
1898
  ImportImageTasks?: ImportImageTask[] | undefined;
1883
1899
  NextToken?: string | undefined;
1884
1900
  }
1885
- export interface DescribeImportSnapshotTasksRequest {
1886
- DryRun?: boolean | undefined;
1887
- Filters?: Filter[] | undefined;
1888
- ImportTaskIds?: string[] | undefined;
1889
- MaxResults?: number | undefined;
1890
- NextToken?: string | undefined;
1891
- }
1892
- export interface SnapshotTaskDetail {
1893
- Description?: string | undefined;
1894
- DiskImageSize?: number | undefined;
1895
- Encrypted?: boolean | undefined;
1896
- Format?: string | undefined;
1897
- KmsKeyId?: string | undefined;
1898
- Progress?: string | undefined;
1899
- SnapshotId?: string | undefined;
1900
- Status?: string | undefined;
1901
- StatusMessage?: string | undefined;
1902
- Url?: string | undefined;
1903
- UserBucket?: UserBucketDetails | undefined;
1904
- }
1905
- export interface ImportSnapshotTask {
1906
- Description?: string | undefined;
1907
- ImportTaskId?: string | undefined;
1908
- SnapshotTaskDetail?: SnapshotTaskDetail | undefined;
1909
- Tags?: Tag[] | undefined;
1910
- }
@@ -153,10 +153,10 @@ import {
153
153
  ReplaceRootVolumeTask,
154
154
  RouteServer,
155
155
  RouteServerEndpoint,
156
- RouteServerPeer,
157
156
  StateReason,
158
157
  } from "./models_1";
159
158
  import {
159
+ RouteServerPeer,
160
160
  RouteTable,
161
161
  SecondaryNetwork,
162
162
  SecondarySubnet,
@@ -169,10 +169,37 @@ import {
169
169
  EventInformation,
170
170
  Filter,
171
171
  IdFormat,
172
- ImportSnapshotTask,
172
+ ImageWatermark,
173
173
  InstanceTagNotificationAttribute,
174
174
  ProductCode,
175
+ UserBucketDetails,
175
176
  } from "./models_3";
177
+ export interface DescribeImportSnapshotTasksRequest {
178
+ DryRun?: boolean | undefined;
179
+ Filters?: Filter[] | undefined;
180
+ ImportTaskIds?: string[] | undefined;
181
+ MaxResults?: number | undefined;
182
+ NextToken?: string | undefined;
183
+ }
184
+ export interface SnapshotTaskDetail {
185
+ Description?: string | undefined;
186
+ DiskImageSize?: number | undefined;
187
+ Encrypted?: boolean | undefined;
188
+ Format?: string | undefined;
189
+ KmsKeyId?: string | undefined;
190
+ Progress?: string | undefined;
191
+ SnapshotId?: string | undefined;
192
+ Status?: string | undefined;
193
+ StatusMessage?: string | undefined;
194
+ Url?: string | undefined;
195
+ UserBucket?: UserBucketDetails | undefined;
196
+ }
197
+ export interface ImportSnapshotTask {
198
+ Description?: string | undefined;
199
+ ImportTaskId?: string | undefined;
200
+ SnapshotTaskDetail?: SnapshotTaskDetail | undefined;
201
+ Tags?: Tag[] | undefined;
202
+ }
176
203
  export interface DescribeImportSnapshotTasksResult {
177
204
  ImportSnapshotTasks?: ImportSnapshotTask[] | undefined;
178
205
  NextToken?: string | undefined;
@@ -281,6 +308,7 @@ export interface ImageMetadata {
281
308
  DeprecationTime?: string | undefined;
282
309
  ImageAllowed?: boolean | undefined;
283
310
  IsPublic?: boolean | undefined;
311
+ ImageWatermarks?: ImageWatermark[] | undefined;
284
312
  }
285
313
  export interface InstanceState {
286
314
  Code?: number | undefined;
@@ -2169,27 +2197,3 @@ export interface SpotInstanceRequest {
2169
2197
  ValidUntil?: Date | undefined;
2170
2198
  InstanceInterruptionBehavior?: InstanceInterruptionBehavior | undefined;
2171
2199
  }
2172
- export interface DescribeSpotInstanceRequestsResult {
2173
- SpotInstanceRequests?: SpotInstanceRequest[] | undefined;
2174
- NextToken?: string | undefined;
2175
- }
2176
- export interface DescribeSpotPriceHistoryRequest {
2177
- AvailabilityZoneId?: string | undefined;
2178
- DryRun?: boolean | undefined;
2179
- StartTime?: Date | undefined;
2180
- EndTime?: Date | undefined;
2181
- InstanceTypes?: _InstanceType[] | undefined;
2182
- ProductDescriptions?: string[] | undefined;
2183
- Filters?: Filter[] | undefined;
2184
- AvailabilityZone?: string | undefined;
2185
- MaxResults?: number | undefined;
2186
- NextToken?: string | undefined;
2187
- }
2188
- export interface SpotPrice {
2189
- AvailabilityZone?: string | undefined;
2190
- AvailabilityZoneId?: string | undefined;
2191
- InstanceType?: _InstanceType | undefined;
2192
- ProductDescription?: RIProductDescription | undefined;
2193
- SpotPrice?: string | undefined;
2194
- Timestamp?: Date | undefined;
2195
- }
@@ -1,29 +1,26 @@
1
1
  import {
2
+ _InstanceType,
2
3
  AllowedImagesSettingsDisabledState,
3
4
  AllowedImagesSettingsEnabledState,
4
5
  CapacityManagerStatus,
5
6
  ClientCertificateRevocationListStatusCode,
6
- Comparison,
7
7
  DeviceTrustProviderType,
8
8
  DiskImageFormat,
9
9
  DnsNameState,
10
10
  FastLaunchResourceType,
11
11
  FastLaunchStateCode,
12
12
  FastSnapshotRestoreStateCode,
13
- FilterByDimension,
14
- GroupBy,
15
13
  ImageBlockPublicAccessDisabledState,
16
14
  ImageBlockPublicAccessEnabledState,
17
- IngestionStatus,
18
15
  InitializationType,
19
16
  InternetGatewayBlockMode,
20
17
  IpAddressType,
21
18
  ManagedBy,
22
- Metric,
23
19
  MetricType,
24
20
  PayerResponsibility,
25
21
  PeriodType,
26
22
  ResourceType,
23
+ RIProductDescription,
27
24
  RouteServerPropagationState,
28
25
  SecurityGroupVpcAssociationState,
29
26
  ServiceConnectivityType,
@@ -111,8 +108,32 @@ import {
111
108
  import {
112
109
  AttributeBooleanValue,
113
110
  RegisteredInstance,
114
- SpotPrice,
111
+ SpotInstanceRequest,
115
112
  } from "./models_4";
113
+ export interface DescribeSpotInstanceRequestsResult {
114
+ SpotInstanceRequests?: SpotInstanceRequest[] | undefined;
115
+ NextToken?: string | undefined;
116
+ }
117
+ export interface DescribeSpotPriceHistoryRequest {
118
+ AvailabilityZoneId?: string | undefined;
119
+ DryRun?: boolean | undefined;
120
+ StartTime?: Date | undefined;
121
+ EndTime?: Date | undefined;
122
+ InstanceTypes?: _InstanceType[] | undefined;
123
+ ProductDescriptions?: string[] | undefined;
124
+ Filters?: Filter[] | undefined;
125
+ AvailabilityZone?: string | undefined;
126
+ MaxResults?: number | undefined;
127
+ NextToken?: string | undefined;
128
+ }
129
+ export interface SpotPrice {
130
+ AvailabilityZone?: string | undefined;
131
+ AvailabilityZoneId?: string | undefined;
132
+ InstanceType?: _InstanceType | undefined;
133
+ ProductDescription?: RIProductDescription | undefined;
134
+ SpotPrice?: string | undefined;
135
+ Timestamp?: Date | undefined;
136
+ }
116
137
  export interface DescribeSpotPriceHistoryResult {
117
138
  NextToken?: string | undefined;
118
139
  SpotPriceHistory?: SpotPrice[] | undefined;
@@ -848,6 +869,14 @@ export interface DetachClassicLinkVpcRequest {
848
869
  export interface DetachClassicLinkVpcResult {
849
870
  Return?: boolean | undefined;
850
871
  }
872
+ export interface DetachImageWatermarkRequest {
873
+ ImageId: string | undefined;
874
+ WatermarkKey: string | undefined;
875
+ DryRun?: boolean | undefined;
876
+ }
877
+ export interface DetachImageWatermarkResult {
878
+ Return?: boolean | undefined;
879
+ }
851
880
  export interface DetachInternetGatewayRequest {
852
881
  DryRun?: boolean | undefined;
853
882
  InternetGatewayId: string | undefined;
@@ -1623,34 +1652,3 @@ export interface GetAwsNetworkPerformanceDataResult {
1623
1652
  DataResponses?: DataResponse[] | undefined;
1624
1653
  NextToken?: string | undefined;
1625
1654
  }
1626
- export interface GetCapacityManagerAttributesRequest {
1627
- DryRun?: boolean | undefined;
1628
- }
1629
- export interface GetCapacityManagerAttributesResult {
1630
- CapacityManagerStatus?: CapacityManagerStatus | undefined;
1631
- OrganizationsAccess?: boolean | undefined;
1632
- DataExportCount?: number | undefined;
1633
- IngestionStatus?: IngestionStatus | undefined;
1634
- IngestionStatusMessage?: string | undefined;
1635
- EarliestDatapointTimestamp?: Date | undefined;
1636
- LatestDatapointTimestamp?: Date | undefined;
1637
- }
1638
- export interface DimensionCondition {
1639
- Dimension?: FilterByDimension | undefined;
1640
- Comparison?: Comparison | undefined;
1641
- Values?: string[] | undefined;
1642
- }
1643
- export interface CapacityManagerCondition {
1644
- DimensionCondition?: DimensionCondition | undefined;
1645
- }
1646
- export interface GetCapacityManagerMetricDataRequest {
1647
- MetricNames: Metric[] | undefined;
1648
- StartTime: Date | undefined;
1649
- EndTime: Date | undefined;
1650
- Period: number | undefined;
1651
- GroupBy?: GroupBy[] | undefined;
1652
- FilterBy?: CapacityManagerCondition[] | undefined;
1653
- MaxResults?: number | undefined;
1654
- NextToken?: string | undefined;
1655
- DryRun?: boolean | undefined;
1656
- }