@aws-sdk/client-s3outposts 3.687.0 → 3.691.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -7,7 +7,7 @@ import { S3OutpostsServiceException as __BaseException } from "./S3OutpostsServi
7
7
  export declare class AccessDeniedException extends __BaseException {
8
8
  readonly name: "AccessDeniedException";
9
9
  readonly $fault: "client";
10
- Message?: string;
10
+ Message?: string | undefined;
11
11
  /**
12
12
  * @internal
13
13
  */
@@ -20,7 +20,7 @@ export declare class AccessDeniedException extends __BaseException {
20
20
  export declare class ConflictException extends __BaseException {
21
21
  readonly name: "ConflictException";
22
22
  readonly $fault: "client";
23
- Message?: string;
23
+ Message?: string | undefined;
24
24
  /**
25
25
  * @internal
26
26
  */
@@ -70,13 +70,13 @@ export interface CreateEndpointRequest {
70
70
  * </note>
71
71
  * @public
72
72
  */
73
- AccessType?: EndpointAccessType;
73
+ AccessType?: EndpointAccessType | undefined;
74
74
  /**
75
75
  * <p>The ID of the customer-owned IPv4 address pool (CoIP pool) for the endpoint. IP addresses
76
76
  * are allocated from this pool for the endpoint.</p>
77
77
  * @public
78
78
  */
79
- CustomerOwnedIpv4Pool?: string;
79
+ CustomerOwnedIpv4Pool?: string | undefined;
80
80
  }
81
81
  /**
82
82
  * @public
@@ -86,7 +86,7 @@ export interface CreateEndpointResult {
86
86
  * <p>The Amazon Resource Name (ARN) of the endpoint.</p>
87
87
  * @public
88
88
  */
89
- EndpointArn?: string;
89
+ EndpointArn?: string | undefined;
90
90
  }
91
91
  /**
92
92
  * <p>There was an exception with the internal server.</p>
@@ -95,7 +95,7 @@ export interface CreateEndpointResult {
95
95
  export declare class InternalServerException extends __BaseException {
96
96
  readonly name: "InternalServerException";
97
97
  readonly $fault: "server";
98
- Message?: string;
98
+ Message?: string | undefined;
99
99
  /**
100
100
  * @internal
101
101
  */
@@ -108,7 +108,7 @@ export declare class InternalServerException extends __BaseException {
108
108
  export declare class OutpostOfflineException extends __BaseException {
109
109
  readonly name: "OutpostOfflineException";
110
110
  readonly $fault: "client";
111
- Message?: string;
111
+ Message?: string | undefined;
112
112
  /**
113
113
  * @internal
114
114
  */
@@ -121,7 +121,7 @@ export declare class OutpostOfflineException extends __BaseException {
121
121
  export declare class ResourceNotFoundException extends __BaseException {
122
122
  readonly name: "ResourceNotFoundException";
123
123
  readonly $fault: "client";
124
- Message?: string;
124
+ Message?: string | undefined;
125
125
  /**
126
126
  * @internal
127
127
  */
@@ -134,7 +134,7 @@ export declare class ResourceNotFoundException extends __BaseException {
134
134
  export declare class ThrottlingException extends __BaseException {
135
135
  readonly name: "ThrottlingException";
136
136
  readonly $fault: "client";
137
- Message?: string;
137
+ Message?: string | undefined;
138
138
  /**
139
139
  * @internal
140
140
  */
@@ -147,7 +147,7 @@ export declare class ThrottlingException extends __BaseException {
147
147
  export declare class ValidationException extends __BaseException {
148
148
  readonly name: "ValidationException";
149
149
  readonly $fault: "client";
150
- Message?: string;
150
+ Message?: string | undefined;
151
151
  /**
152
152
  * @internal
153
153
  */
@@ -177,12 +177,12 @@ export interface FailedReason {
177
177
  * <p>The failure code, if any, for a create or delete endpoint operation.</p>
178
178
  * @public
179
179
  */
180
- ErrorCode?: string;
180
+ ErrorCode?: string | undefined;
181
181
  /**
182
182
  * <p>Additional error details describing the endpoint failure and recommended action.</p>
183
183
  * @public
184
184
  */
185
- Message?: string;
185
+ Message?: string | undefined;
186
186
  }
187
187
  /**
188
188
  * <p>The container for the network interface.</p>
@@ -193,7 +193,7 @@ export interface NetworkInterface {
193
193
  * <p>The ID for the network interface.</p>
194
194
  * @public
195
195
  */
196
- NetworkInterfaceId?: string;
196
+ NetworkInterfaceId?: string | undefined;
197
197
  }
198
198
  /**
199
199
  * @public
@@ -222,62 +222,62 @@ export interface Endpoint {
222
222
  * <p>The Amazon Resource Name (ARN) of the endpoint.</p>
223
223
  * @public
224
224
  */
225
- EndpointArn?: string;
225
+ EndpointArn?: string | undefined;
226
226
  /**
227
227
  * <p>The ID of the Outposts.</p>
228
228
  * @public
229
229
  */
230
- OutpostsId?: string;
230
+ OutpostsId?: string | undefined;
231
231
  /**
232
232
  * <p>The VPC CIDR committed by this endpoint.</p>
233
233
  * @public
234
234
  */
235
- CidrBlock?: string;
235
+ CidrBlock?: string | undefined;
236
236
  /**
237
237
  * <p>The status of the endpoint.</p>
238
238
  * @public
239
239
  */
240
- Status?: EndpointStatus;
240
+ Status?: EndpointStatus | undefined;
241
241
  /**
242
242
  * <p>The time the endpoint was created.</p>
243
243
  * @public
244
244
  */
245
- CreationTime?: Date;
245
+ CreationTime?: Date | undefined;
246
246
  /**
247
247
  * <p>The network interface of the endpoint.</p>
248
248
  * @public
249
249
  */
250
- NetworkInterfaces?: NetworkInterface[];
250
+ NetworkInterfaces?: NetworkInterface[] | undefined;
251
251
  /**
252
252
  * <p>The ID of the VPC used for the endpoint.</p>
253
253
  * @public
254
254
  */
255
- VpcId?: string;
255
+ VpcId?: string | undefined;
256
256
  /**
257
257
  * <p>The ID of the subnet used for the endpoint.</p>
258
258
  * @public
259
259
  */
260
- SubnetId?: string;
260
+ SubnetId?: string | undefined;
261
261
  /**
262
262
  * <p>The ID of the security group used for the endpoint.</p>
263
263
  * @public
264
264
  */
265
- SecurityGroupId?: string;
265
+ SecurityGroupId?: string | undefined;
266
266
  /**
267
267
  * <p>The type of connectivity used to access the Amazon S3 on Outposts endpoint.</p>
268
268
  * @public
269
269
  */
270
- AccessType?: EndpointAccessType;
270
+ AccessType?: EndpointAccessType | undefined;
271
271
  /**
272
272
  * <p>The ID of the customer-owned IPv4 address pool used for the endpoint.</p>
273
273
  * @public
274
274
  */
275
- CustomerOwnedIpv4Pool?: string;
275
+ CustomerOwnedIpv4Pool?: string | undefined;
276
276
  /**
277
277
  * <p>The failure reason, if any, for a create or delete endpoint operation.</p>
278
278
  * @public
279
279
  */
280
- FailedReason?: FailedReason;
280
+ FailedReason?: FailedReason | undefined;
281
281
  }
282
282
  /**
283
283
  * @public
@@ -288,12 +288,12 @@ export interface ListEndpointsRequest {
288
288
  * provide that value here to retrieve the next page of results.</p>
289
289
  * @public
290
290
  */
291
- NextToken?: string;
291
+ NextToken?: string | undefined;
292
292
  /**
293
293
  * <p>The maximum number of endpoints that will be returned in the response.</p>
294
294
  * @public
295
295
  */
296
- MaxResults?: number;
296
+ MaxResults?: number | undefined;
297
297
  }
298
298
  /**
299
299
  * @public
@@ -303,13 +303,13 @@ export interface ListEndpointsResult {
303
303
  * <p>The list of endpoints associated with the specified Outpost.</p>
304
304
  * @public
305
305
  */
306
- Endpoints?: Endpoint[];
306
+ Endpoints?: Endpoint[] | undefined;
307
307
  /**
308
308
  * <p>If the number of endpoints associated with the specified Outpost exceeds <code>MaxResults</code>,
309
309
  * you can include this value in subsequent calls to this operation to retrieve more results.</p>
310
310
  * @public
311
311
  */
312
- NextToken?: string;
312
+ NextToken?: string | undefined;
313
313
  }
314
314
  /**
315
315
  * @public
@@ -322,12 +322,12 @@ export interface ListOutpostsWithS3Request {
322
322
  * additional Outposts.</p>
323
323
  * @public
324
324
  */
325
- NextToken?: string;
325
+ NextToken?: string | undefined;
326
326
  /**
327
327
  * <p>The maximum number of Outposts to return. The limit is 100.</p>
328
328
  * @public
329
329
  */
330
- MaxResults?: number;
330
+ MaxResults?: number | undefined;
331
331
  }
332
332
  /**
333
333
  * <p>Contains the details for the Outpost object.</p>
@@ -338,27 +338,27 @@ export interface Outpost {
338
338
  * <p>Specifies the unique Amazon Resource Name (ARN) for the outpost.</p>
339
339
  * @public
340
340
  */
341
- OutpostArn?: string;
341
+ OutpostArn?: string | undefined;
342
342
  /**
343
343
  * <p>Specifies the unique S3 on Outposts ARN for use with Resource Access Manager (RAM).</p>
344
344
  * @public
345
345
  */
346
- S3OutpostArn?: string;
346
+ S3OutpostArn?: string | undefined;
347
347
  /**
348
348
  * <p>Specifies the unique identifier for the outpost.</p>
349
349
  * @public
350
350
  */
351
- OutpostId?: string;
351
+ OutpostId?: string | undefined;
352
352
  /**
353
353
  * <p>Returns the Amazon Web Services account ID of the outpost owner. Useful for comparing owned versus shared outposts.</p>
354
354
  * @public
355
355
  */
356
- OwnerId?: string;
356
+ OwnerId?: string | undefined;
357
357
  /**
358
358
  * <p>The Amazon S3 capacity of the outpost in bytes.</p>
359
359
  * @public
360
360
  */
361
- CapacityInBytes?: number;
361
+ CapacityInBytes?: number | undefined;
362
362
  }
363
363
  /**
364
364
  * @public
@@ -379,12 +379,12 @@ export interface ListOutpostsWithS3Result {
379
379
  * </ul>
380
380
  * @public
381
381
  */
382
- Outposts?: Outpost[];
382
+ Outposts?: Outpost[] | undefined;
383
383
  /**
384
384
  * <p>Returns a token that you can use to call <code>ListOutpostsWithS3</code> again and receive additional results, if there are any.</p>
385
385
  * @public
386
386
  */
387
- NextToken?: string;
387
+ NextToken?: string | undefined;
388
388
  }
389
389
  /**
390
390
  * @public
@@ -395,12 +395,12 @@ export interface ListSharedEndpointsRequest {
395
395
  * can provide that value here to retrieve the next page of results.</p>
396
396
  * @public
397
397
  */
398
- NextToken?: string;
398
+ NextToken?: string | undefined;
399
399
  /**
400
400
  * <p>The maximum number of endpoints that will be returned in the response.</p>
401
401
  * @public
402
402
  */
403
- MaxResults?: number;
403
+ MaxResults?: number | undefined;
404
404
  /**
405
405
  * <p>The ID of the Amazon Web Services Outpost.</p>
406
406
  * @public
@@ -415,11 +415,11 @@ export interface ListSharedEndpointsResult {
415
415
  * <p>The list of endpoints associated with the specified Outpost that have been shared by Amazon Web Services Resource Access Manager (RAM).</p>
416
416
  * @public
417
417
  */
418
- Endpoints?: Endpoint[];
418
+ Endpoints?: Endpoint[] | undefined;
419
419
  /**
420
420
  * <p>If the number of endpoints associated with the specified Outpost exceeds <code>MaxResults</code>,
421
421
  * you can include this value in subsequent calls to this operation to retrieve more results.</p>
422
422
  * @public
423
423
  */
424
- NextToken?: string;
424
+ NextToken?: string | undefined;
425
425
  }
@@ -3,7 +3,7 @@ import { S3OutpostsServiceException as __BaseException } from "./S3OutpostsServi
3
3
  export declare class AccessDeniedException extends __BaseException {
4
4
  readonly name: "AccessDeniedException";
5
5
  readonly $fault: "client";
6
- Message?: string;
6
+ Message?: string | undefined;
7
7
  constructor(
8
8
  opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
9
9
  );
@@ -11,7 +11,7 @@ export declare class AccessDeniedException extends __BaseException {
11
11
  export declare class ConflictException extends __BaseException {
12
12
  readonly name: "ConflictException";
13
13
  readonly $fault: "client";
14
- Message?: string;
14
+ Message?: string | undefined;
15
15
  constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
16
16
  }
17
17
  export declare const EndpointAccessType: {
@@ -24,16 +24,16 @@ export interface CreateEndpointRequest {
24
24
  OutpostId: string | undefined;
25
25
  SubnetId: string | undefined;
26
26
  SecurityGroupId: string | undefined;
27
- AccessType?: EndpointAccessType;
28
- CustomerOwnedIpv4Pool?: string;
27
+ AccessType?: EndpointAccessType | undefined;
28
+ CustomerOwnedIpv4Pool?: string | undefined;
29
29
  }
30
30
  export interface CreateEndpointResult {
31
- EndpointArn?: string;
31
+ EndpointArn?: string | undefined;
32
32
  }
33
33
  export declare class InternalServerException extends __BaseException {
34
34
  readonly name: "InternalServerException";
35
35
  readonly $fault: "server";
36
- Message?: string;
36
+ Message?: string | undefined;
37
37
  constructor(
38
38
  opts: __ExceptionOptionType<InternalServerException, __BaseException>
39
39
  );
@@ -41,7 +41,7 @@ export declare class InternalServerException extends __BaseException {
41
41
  export declare class OutpostOfflineException extends __BaseException {
42
42
  readonly name: "OutpostOfflineException";
43
43
  readonly $fault: "client";
44
- Message?: string;
44
+ Message?: string | undefined;
45
45
  constructor(
46
46
  opts: __ExceptionOptionType<OutpostOfflineException, __BaseException>
47
47
  );
@@ -49,7 +49,7 @@ export declare class OutpostOfflineException extends __BaseException {
49
49
  export declare class ResourceNotFoundException extends __BaseException {
50
50
  readonly name: "ResourceNotFoundException";
51
51
  readonly $fault: "client";
52
- Message?: string;
52
+ Message?: string | undefined;
53
53
  constructor(
54
54
  opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
55
55
  );
@@ -57,7 +57,7 @@ export declare class ResourceNotFoundException extends __BaseException {
57
57
  export declare class ThrottlingException extends __BaseException {
58
58
  readonly name: "ThrottlingException";
59
59
  readonly $fault: "client";
60
- Message?: string;
60
+ Message?: string | undefined;
61
61
  constructor(
62
62
  opts: __ExceptionOptionType<ThrottlingException, __BaseException>
63
63
  );
@@ -65,7 +65,7 @@ export declare class ThrottlingException extends __BaseException {
65
65
  export declare class ValidationException extends __BaseException {
66
66
  readonly name: "ValidationException";
67
67
  readonly $fault: "client";
68
- Message?: string;
68
+ Message?: string | undefined;
69
69
  constructor(
70
70
  opts: __ExceptionOptionType<ValidationException, __BaseException>
71
71
  );
@@ -75,11 +75,11 @@ export interface DeleteEndpointRequest {
75
75
  OutpostId: string | undefined;
76
76
  }
77
77
  export interface FailedReason {
78
- ErrorCode?: string;
79
- Message?: string;
78
+ ErrorCode?: string | undefined;
79
+ Message?: string | undefined;
80
80
  }
81
81
  export interface NetworkInterface {
82
- NetworkInterfaceId?: string;
82
+ NetworkInterfaceId?: string | undefined;
83
83
  }
84
84
  export declare const EndpointStatus: {
85
85
  readonly AVAILABLE: "Available";
@@ -91,48 +91,48 @@ export declare const EndpointStatus: {
91
91
  export type EndpointStatus =
92
92
  (typeof EndpointStatus)[keyof typeof EndpointStatus];
93
93
  export interface Endpoint {
94
- EndpointArn?: string;
95
- OutpostsId?: string;
96
- CidrBlock?: string;
97
- Status?: EndpointStatus;
98
- CreationTime?: Date;
99
- NetworkInterfaces?: NetworkInterface[];
100
- VpcId?: string;
101
- SubnetId?: string;
102
- SecurityGroupId?: string;
103
- AccessType?: EndpointAccessType;
104
- CustomerOwnedIpv4Pool?: string;
105
- FailedReason?: FailedReason;
94
+ EndpointArn?: string | undefined;
95
+ OutpostsId?: string | undefined;
96
+ CidrBlock?: string | undefined;
97
+ Status?: EndpointStatus | undefined;
98
+ CreationTime?: Date | undefined;
99
+ NetworkInterfaces?: NetworkInterface[] | undefined;
100
+ VpcId?: string | undefined;
101
+ SubnetId?: string | undefined;
102
+ SecurityGroupId?: string | undefined;
103
+ AccessType?: EndpointAccessType | undefined;
104
+ CustomerOwnedIpv4Pool?: string | undefined;
105
+ FailedReason?: FailedReason | undefined;
106
106
  }
107
107
  export interface ListEndpointsRequest {
108
- NextToken?: string;
109
- MaxResults?: number;
108
+ NextToken?: string | undefined;
109
+ MaxResults?: number | undefined;
110
110
  }
111
111
  export interface ListEndpointsResult {
112
- Endpoints?: Endpoint[];
113
- NextToken?: string;
112
+ Endpoints?: Endpoint[] | undefined;
113
+ NextToken?: string | undefined;
114
114
  }
115
115
  export interface ListOutpostsWithS3Request {
116
- NextToken?: string;
117
- MaxResults?: number;
116
+ NextToken?: string | undefined;
117
+ MaxResults?: number | undefined;
118
118
  }
119
119
  export interface Outpost {
120
- OutpostArn?: string;
121
- S3OutpostArn?: string;
122
- OutpostId?: string;
123
- OwnerId?: string;
124
- CapacityInBytes?: number;
120
+ OutpostArn?: string | undefined;
121
+ S3OutpostArn?: string | undefined;
122
+ OutpostId?: string | undefined;
123
+ OwnerId?: string | undefined;
124
+ CapacityInBytes?: number | undefined;
125
125
  }
126
126
  export interface ListOutpostsWithS3Result {
127
- Outposts?: Outpost[];
128
- NextToken?: string;
127
+ Outposts?: Outpost[] | undefined;
128
+ NextToken?: string | undefined;
129
129
  }
130
130
  export interface ListSharedEndpointsRequest {
131
- NextToken?: string;
132
- MaxResults?: number;
131
+ NextToken?: string | undefined;
132
+ MaxResults?: number | undefined;
133
133
  OutpostId: string | undefined;
134
134
  }
135
135
  export interface ListSharedEndpointsResult {
136
- Endpoints?: Endpoint[];
137
- NextToken?: string;
136
+ Endpoints?: Endpoint[] | undefined;
137
+ NextToken?: string | undefined;
138
138
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-s3outposts",
3
3
  "description": "AWS SDK for JavaScript S3outposts Client for Node.js, Browser and React Native",
4
- "version": "3.687.0",
4
+ "version": "3.691.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-s3outposts",
@@ -20,19 +20,19 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/client-sso-oidc": "3.687.0",
24
- "@aws-sdk/client-sts": "3.687.0",
25
- "@aws-sdk/core": "3.686.0",
26
- "@aws-sdk/credential-provider-node": "3.687.0",
23
+ "@aws-sdk/client-sso-oidc": "3.691.0",
24
+ "@aws-sdk/client-sts": "3.691.0",
25
+ "@aws-sdk/core": "3.691.0",
26
+ "@aws-sdk/credential-provider-node": "3.691.0",
27
27
  "@aws-sdk/middleware-host-header": "3.686.0",
28
28
  "@aws-sdk/middleware-logger": "3.686.0",
29
29
  "@aws-sdk/middleware-recursion-detection": "3.686.0",
30
- "@aws-sdk/middleware-user-agent": "3.687.0",
30
+ "@aws-sdk/middleware-user-agent": "3.691.0",
31
31
  "@aws-sdk/region-config-resolver": "3.686.0",
32
32
  "@aws-sdk/types": "3.686.0",
33
33
  "@aws-sdk/util-endpoints": "3.686.0",
34
34
  "@aws-sdk/util-user-agent-browser": "3.686.0",
35
- "@aws-sdk/util-user-agent-node": "3.687.0",
35
+ "@aws-sdk/util-user-agent-node": "3.691.0",
36
36
  "@smithy/config-resolver": "^3.0.10",
37
37
  "@smithy/core": "^2.5.1",
38
38
  "@smithy/fetch-http-handler": "^4.0.0",