@aws-sdk/client-opensearchserverless 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.
@@ -14,21 +14,21 @@ export declare class ConflictException extends __BaseException {
14
14
  export interface CreateAccessPolicyRequest {
15
15
  type: AccessPolicyType | undefined;
16
16
  name: string | undefined;
17
- description?: string;
17
+ description?: string | undefined;
18
18
  policy: string | undefined;
19
- clientToken?: string;
19
+ clientToken?: string | undefined;
20
20
  }
21
21
  export interface AccessPolicyDetail {
22
- type?: AccessPolicyType;
23
- name?: string;
24
- policyVersion?: string;
25
- description?: string;
26
- policy?: __DocumentType;
27
- createdDate?: number;
28
- lastModifiedDate?: number;
22
+ type?: AccessPolicyType | undefined;
23
+ name?: string | undefined;
24
+ policyVersion?: string | undefined;
25
+ description?: string | undefined;
26
+ policy?: __DocumentType | undefined;
27
+ createdDate?: number | undefined;
28
+ lastModifiedDate?: number | undefined;
29
29
  }
30
30
  export interface CreateAccessPolicyResponse {
31
- accessPolicyDetail?: AccessPolicyDetail;
31
+ accessPolicyDetail?: AccessPolicyDetail | undefined;
32
32
  }
33
33
  export declare class InternalServerException extends __BaseException {
34
34
  readonly name: "InternalServerException";
@@ -40,10 +40,10 @@ export declare class InternalServerException extends __BaseException {
40
40
  export declare class ServiceQuotaExceededException extends __BaseException {
41
41
  readonly name: "ServiceQuotaExceededException";
42
42
  readonly $fault: "client";
43
- resourceId?: string;
44
- resourceType?: string;
43
+ resourceId?: string | undefined;
44
+ resourceType?: string | undefined;
45
45
  serviceCode: string | undefined;
46
- quotaCode?: string;
46
+ quotaCode?: string | undefined;
47
47
  constructor(
48
48
  opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
49
49
  );
@@ -58,7 +58,7 @@ export declare class ValidationException extends __BaseException {
58
58
  export interface DeleteAccessPolicyRequest {
59
59
  type: AccessPolicyType | undefined;
60
60
  name: string | undefined;
61
- clientToken?: string;
61
+ clientToken?: string | undefined;
62
62
  }
63
63
  export interface DeleteAccessPolicyResponse {}
64
64
  export declare class ResourceNotFoundException extends __BaseException {
@@ -73,50 +73,50 @@ export interface GetAccessPolicyRequest {
73
73
  name: string | undefined;
74
74
  }
75
75
  export interface GetAccessPolicyResponse {
76
- accessPolicyDetail?: AccessPolicyDetail;
76
+ accessPolicyDetail?: AccessPolicyDetail | undefined;
77
77
  }
78
78
  export interface ListAccessPoliciesRequest {
79
79
  type: AccessPolicyType | undefined;
80
- resource?: string[];
81
- nextToken?: string;
82
- maxResults?: number;
80
+ resource?: string[] | undefined;
81
+ nextToken?: string | undefined;
82
+ maxResults?: number | undefined;
83
83
  }
84
84
  export interface AccessPolicySummary {
85
- type?: AccessPolicyType;
86
- name?: string;
87
- policyVersion?: string;
88
- description?: string;
89
- createdDate?: number;
90
- lastModifiedDate?: number;
85
+ type?: AccessPolicyType | undefined;
86
+ name?: string | undefined;
87
+ policyVersion?: string | undefined;
88
+ description?: string | undefined;
89
+ createdDate?: number | undefined;
90
+ lastModifiedDate?: number | undefined;
91
91
  }
92
92
  export interface ListAccessPoliciesResponse {
93
- accessPolicySummaries?: AccessPolicySummary[];
94
- nextToken?: string;
93
+ accessPolicySummaries?: AccessPolicySummary[] | undefined;
94
+ nextToken?: string | undefined;
95
95
  }
96
96
  export interface UpdateAccessPolicyRequest {
97
97
  type: AccessPolicyType | undefined;
98
98
  name: string | undefined;
99
99
  policyVersion: string | undefined;
100
- description?: string;
101
- policy?: string;
102
- clientToken?: string;
100
+ description?: string | undefined;
101
+ policy?: string | undefined;
102
+ clientToken?: string | undefined;
103
103
  }
104
104
  export interface UpdateAccessPolicyResponse {
105
- accessPolicyDetail?: AccessPolicyDetail;
105
+ accessPolicyDetail?: AccessPolicyDetail | undefined;
106
106
  }
107
107
  export interface AccessPolicyStats {
108
- DataPolicyCount?: number;
108
+ DataPolicyCount?: number | undefined;
109
109
  }
110
110
  export interface CapacityLimits {
111
- maxIndexingCapacityInOCU?: number;
112
- maxSearchCapacityInOCU?: number;
111
+ maxIndexingCapacityInOCU?: number | undefined;
112
+ maxSearchCapacityInOCU?: number | undefined;
113
113
  }
114
114
  export interface AccountSettingsDetail {
115
- capacityLimits?: CapacityLimits;
115
+ capacityLimits?: CapacityLimits | undefined;
116
116
  }
117
117
  export interface BatchGetCollectionRequest {
118
- ids?: string[];
119
- names?: string[];
118
+ ids?: string[] | undefined;
119
+ names?: string[] | undefined;
120
120
  }
121
121
  export declare const StandbyReplicas: {
122
122
  readonly DISABLED: "DISABLED";
@@ -140,30 +140,30 @@ export declare const CollectionType: {
140
140
  export type CollectionType =
141
141
  (typeof CollectionType)[keyof typeof CollectionType];
142
142
  export interface CollectionDetail {
143
- id?: string;
144
- name?: string;
145
- status?: CollectionStatus;
146
- type?: CollectionType;
147
- description?: string;
148
- arn?: string;
149
- kmsKeyArn?: string;
150
- standbyReplicas?: StandbyReplicas;
151
- createdDate?: number;
152
- lastModifiedDate?: number;
153
- collectionEndpoint?: string;
154
- dashboardEndpoint?: string;
155
- failureCode?: string;
156
- failureMessage?: string;
143
+ id?: string | undefined;
144
+ name?: string | undefined;
145
+ status?: CollectionStatus | undefined;
146
+ type?: CollectionType | undefined;
147
+ description?: string | undefined;
148
+ arn?: string | undefined;
149
+ kmsKeyArn?: string | undefined;
150
+ standbyReplicas?: StandbyReplicas | undefined;
151
+ createdDate?: number | undefined;
152
+ lastModifiedDate?: number | undefined;
153
+ collectionEndpoint?: string | undefined;
154
+ dashboardEndpoint?: string | undefined;
155
+ failureCode?: string | undefined;
156
+ failureMessage?: string | undefined;
157
157
  }
158
158
  export interface CollectionErrorDetail {
159
- id?: string;
160
- name?: string;
161
- errorMessage?: string;
162
- errorCode?: string;
159
+ id?: string | undefined;
160
+ name?: string | undefined;
161
+ errorMessage?: string | undefined;
162
+ errorCode?: string | undefined;
163
163
  }
164
164
  export interface BatchGetCollectionResponse {
165
- collectionDetails?: CollectionDetail[];
166
- collectionErrorDetails?: CollectionErrorDetail[];
165
+ collectionDetails?: CollectionDetail[] | undefined;
166
+ collectionErrorDetails?: CollectionErrorDetail[] | undefined;
167
167
  }
168
168
  export declare const LifecyclePolicyType: {
169
169
  readonly retention: "retention";
@@ -182,22 +182,26 @@ export declare const ResourceType: {
182
182
  };
183
183
  export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
184
184
  export interface EffectiveLifecyclePolicyDetail {
185
- type?: LifecyclePolicyType;
186
- resource?: string;
187
- policyName?: string;
188
- resourceType?: ResourceType;
189
- retentionPeriod?: string;
190
- noMinRetentionPeriod?: boolean;
185
+ type?: LifecyclePolicyType | undefined;
186
+ resource?: string | undefined;
187
+ policyName?: string | undefined;
188
+ resourceType?: ResourceType | undefined;
189
+ retentionPeriod?: string | undefined;
190
+ noMinRetentionPeriod?: boolean | undefined;
191
191
  }
192
192
  export interface EffectiveLifecyclePolicyErrorDetail {
193
- type?: LifecyclePolicyType;
194
- resource?: string;
195
- errorMessage?: string;
196
- errorCode?: string;
193
+ type?: LifecyclePolicyType | undefined;
194
+ resource?: string | undefined;
195
+ errorMessage?: string | undefined;
196
+ errorCode?: string | undefined;
197
197
  }
198
198
  export interface BatchGetEffectiveLifecyclePolicyResponse {
199
- effectiveLifecyclePolicyDetails?: EffectiveLifecyclePolicyDetail[];
200
- effectiveLifecyclePolicyErrorDetails?: EffectiveLifecyclePolicyErrorDetail[];
199
+ effectiveLifecyclePolicyDetails?:
200
+ | EffectiveLifecyclePolicyDetail[]
201
+ | undefined;
202
+ effectiveLifecyclePolicyErrorDetails?:
203
+ | EffectiveLifecyclePolicyErrorDetail[]
204
+ | undefined;
201
205
  }
202
206
  export interface LifecyclePolicyIdentifier {
203
207
  type: LifecyclePolicyType | undefined;
@@ -207,23 +211,23 @@ export interface BatchGetLifecyclePolicyRequest {
207
211
  identifiers: LifecyclePolicyIdentifier[] | undefined;
208
212
  }
209
213
  export interface LifecyclePolicyDetail {
210
- type?: LifecyclePolicyType;
211
- name?: string;
212
- policyVersion?: string;
213
- description?: string;
214
- policy?: __DocumentType;
215
- createdDate?: number;
216
- lastModifiedDate?: number;
214
+ type?: LifecyclePolicyType | undefined;
215
+ name?: string | undefined;
216
+ policyVersion?: string | undefined;
217
+ description?: string | undefined;
218
+ policy?: __DocumentType | undefined;
219
+ createdDate?: number | undefined;
220
+ lastModifiedDate?: number | undefined;
217
221
  }
218
222
  export interface LifecyclePolicyErrorDetail {
219
- type?: LifecyclePolicyType;
220
- name?: string;
221
- errorMessage?: string;
222
- errorCode?: string;
223
+ type?: LifecyclePolicyType | undefined;
224
+ name?: string | undefined;
225
+ errorMessage?: string | undefined;
226
+ errorCode?: string | undefined;
223
227
  }
224
228
  export interface BatchGetLifecyclePolicyResponse {
225
- lifecyclePolicyDetails?: LifecyclePolicyDetail[];
226
- lifecyclePolicyErrorDetails?: LifecyclePolicyErrorDetail[];
229
+ lifecyclePolicyDetails?: LifecyclePolicyDetail[] | undefined;
230
+ lifecyclePolicyErrorDetails?: LifecyclePolicyErrorDetail[] | undefined;
227
231
  }
228
232
  export interface BatchGetVpcEndpointRequest {
229
233
  ids: string[] | undefined;
@@ -237,24 +241,24 @@ export declare const VpcEndpointStatus: {
237
241
  export type VpcEndpointStatus =
238
242
  (typeof VpcEndpointStatus)[keyof typeof VpcEndpointStatus];
239
243
  export interface VpcEndpointDetail {
240
- id?: string;
241
- name?: string;
242
- vpcId?: string;
243
- subnetIds?: string[];
244
- securityGroupIds?: string[];
245
- status?: VpcEndpointStatus;
246
- createdDate?: number;
247
- failureCode?: string;
248
- failureMessage?: string;
244
+ id?: string | undefined;
245
+ name?: string | undefined;
246
+ vpcId?: string | undefined;
247
+ subnetIds?: string[] | undefined;
248
+ securityGroupIds?: string[] | undefined;
249
+ status?: VpcEndpointStatus | undefined;
250
+ createdDate?: number | undefined;
251
+ failureCode?: string | undefined;
252
+ failureMessage?: string | undefined;
249
253
  }
250
254
  export interface VpcEndpointErrorDetail {
251
- id?: string;
252
- errorMessage?: string;
253
- errorCode?: string;
255
+ id?: string | undefined;
256
+ errorMessage?: string | undefined;
257
+ errorCode?: string | undefined;
254
258
  }
255
259
  export interface BatchGetVpcEndpointResponse {
256
- vpcEndpointDetails?: VpcEndpointDetail[];
257
- vpcEndpointErrorDetails?: VpcEndpointErrorDetail[];
260
+ vpcEndpointDetails?: VpcEndpointDetail[] | undefined;
261
+ vpcEndpointErrorDetails?: VpcEndpointErrorDetail[] | undefined;
258
262
  }
259
263
  export interface Tag {
260
264
  key: string | undefined;
@@ -262,26 +266,26 @@ export interface Tag {
262
266
  }
263
267
  export interface CreateCollectionRequest {
264
268
  name: string | undefined;
265
- type?: CollectionType;
266
- description?: string;
267
- tags?: Tag[];
268
- standbyReplicas?: StandbyReplicas;
269
- clientToken?: string;
269
+ type?: CollectionType | undefined;
270
+ description?: string | undefined;
271
+ tags?: Tag[] | undefined;
272
+ standbyReplicas?: StandbyReplicas | undefined;
273
+ clientToken?: string | undefined;
270
274
  }
271
275
  export interface CreateCollectionDetail {
272
- id?: string;
273
- name?: string;
274
- status?: CollectionStatus;
275
- type?: CollectionType;
276
- description?: string;
277
- arn?: string;
278
- kmsKeyArn?: string;
279
- standbyReplicas?: StandbyReplicas;
280
- createdDate?: number;
281
- lastModifiedDate?: number;
276
+ id?: string | undefined;
277
+ name?: string | undefined;
278
+ status?: CollectionStatus | undefined;
279
+ type?: CollectionType | undefined;
280
+ description?: string | undefined;
281
+ arn?: string | undefined;
282
+ kmsKeyArn?: string | undefined;
283
+ standbyReplicas?: StandbyReplicas | undefined;
284
+ createdDate?: number | undefined;
285
+ lastModifiedDate?: number | undefined;
282
286
  }
283
287
  export interface CreateCollectionResponse {
284
- createCollectionDetail?: CreateCollectionDetail;
288
+ createCollectionDetail?: CreateCollectionDetail | undefined;
285
289
  }
286
290
  export declare class OcuLimitExceededException extends __BaseException {
287
291
  readonly name: "OcuLimitExceededException";
@@ -292,52 +296,52 @@ export declare class OcuLimitExceededException extends __BaseException {
292
296
  }
293
297
  export interface DeleteCollectionRequest {
294
298
  id: string | undefined;
295
- clientToken?: string;
299
+ clientToken?: string | undefined;
296
300
  }
297
301
  export interface DeleteCollectionDetail {
298
- id?: string;
299
- name?: string;
300
- status?: CollectionStatus;
302
+ id?: string | undefined;
303
+ name?: string | undefined;
304
+ status?: CollectionStatus | undefined;
301
305
  }
302
306
  export interface DeleteCollectionResponse {
303
- deleteCollectionDetail?: DeleteCollectionDetail;
307
+ deleteCollectionDetail?: DeleteCollectionDetail | undefined;
304
308
  }
305
309
  export interface CollectionFilters {
306
- name?: string;
307
- status?: CollectionStatus;
310
+ name?: string | undefined;
311
+ status?: CollectionStatus | undefined;
308
312
  }
309
313
  export interface ListCollectionsRequest {
310
- collectionFilters?: CollectionFilters;
311
- nextToken?: string;
312
- maxResults?: number;
314
+ collectionFilters?: CollectionFilters | undefined;
315
+ nextToken?: string | undefined;
316
+ maxResults?: number | undefined;
313
317
  }
314
318
  export interface CollectionSummary {
315
- id?: string;
316
- name?: string;
317
- status?: CollectionStatus;
318
- arn?: string;
319
+ id?: string | undefined;
320
+ name?: string | undefined;
321
+ status?: CollectionStatus | undefined;
322
+ arn?: string | undefined;
319
323
  }
320
324
  export interface ListCollectionsResponse {
321
- collectionSummaries?: CollectionSummary[];
322
- nextToken?: string;
325
+ collectionSummaries?: CollectionSummary[] | undefined;
326
+ nextToken?: string | undefined;
323
327
  }
324
328
  export interface UpdateCollectionRequest {
325
329
  id: string | undefined;
326
- description?: string;
327
- clientToken?: string;
330
+ description?: string | undefined;
331
+ clientToken?: string | undefined;
328
332
  }
329
333
  export interface UpdateCollectionDetail {
330
- id?: string;
331
- name?: string;
332
- status?: CollectionStatus;
333
- type?: CollectionType;
334
- description?: string;
335
- arn?: string;
336
- createdDate?: number;
337
- lastModifiedDate?: number;
334
+ id?: string | undefined;
335
+ name?: string | undefined;
336
+ status?: CollectionStatus | undefined;
337
+ type?: CollectionType | undefined;
338
+ description?: string | undefined;
339
+ arn?: string | undefined;
340
+ createdDate?: number | undefined;
341
+ lastModifiedDate?: number | undefined;
338
342
  }
339
343
  export interface UpdateCollectionResponse {
340
- updateCollectionDetail?: UpdateCollectionDetail;
344
+ updateCollectionDetail?: UpdateCollectionDetail | undefined;
341
345
  }
342
346
  export declare const IamIdentityCenterGroupAttribute: {
343
347
  readonly GroupId: "GroupId";
@@ -354,24 +358,24 @@ export type IamIdentityCenterUserAttribute =
354
358
  (typeof IamIdentityCenterUserAttribute)[keyof typeof IamIdentityCenterUserAttribute];
355
359
  export interface CreateIamIdentityCenterConfigOptions {
356
360
  instanceArn: string | undefined;
357
- userAttribute?: IamIdentityCenterUserAttribute;
358
- groupAttribute?: IamIdentityCenterGroupAttribute;
361
+ userAttribute?: IamIdentityCenterUserAttribute | undefined;
362
+ groupAttribute?: IamIdentityCenterGroupAttribute | undefined;
359
363
  }
360
364
  export interface CreateLifecyclePolicyRequest {
361
365
  type: LifecyclePolicyType | undefined;
362
366
  name: string | undefined;
363
- description?: string;
367
+ description?: string | undefined;
364
368
  policy: string | undefined;
365
- clientToken?: string;
369
+ clientToken?: string | undefined;
366
370
  }
367
371
  export interface CreateLifecyclePolicyResponse {
368
- lifecyclePolicyDetail?: LifecyclePolicyDetail;
372
+ lifecyclePolicyDetail?: LifecyclePolicyDetail | undefined;
369
373
  }
370
374
  export interface SamlConfigOptions {
371
375
  metadata: string | undefined;
372
- userAttribute?: string;
373
- groupAttribute?: string;
374
- sessionTimeout?: number;
376
+ userAttribute?: string | undefined;
377
+ groupAttribute?: string | undefined;
378
+ sessionTimeout?: number | undefined;
375
379
  }
376
380
  export declare const SecurityConfigType: {
377
381
  readonly iamidentitycenter: "iamidentitycenter";
@@ -382,31 +386,31 @@ export type SecurityConfigType =
382
386
  export interface CreateSecurityConfigRequest {
383
387
  type: SecurityConfigType | undefined;
384
388
  name: string | undefined;
385
- description?: string;
386
- samlOptions?: SamlConfigOptions;
387
- iamIdentityCenterOptions?: CreateIamIdentityCenterConfigOptions;
388
- clientToken?: string;
389
+ description?: string | undefined;
390
+ samlOptions?: SamlConfigOptions | undefined;
391
+ iamIdentityCenterOptions?: CreateIamIdentityCenterConfigOptions | undefined;
392
+ clientToken?: string | undefined;
389
393
  }
390
394
  export interface IamIdentityCenterConfigOptions {
391
- instanceArn?: string;
392
- applicationArn?: string;
393
- applicationName?: string;
394
- applicationDescription?: string;
395
- userAttribute?: IamIdentityCenterUserAttribute;
396
- groupAttribute?: IamIdentityCenterGroupAttribute;
395
+ instanceArn?: string | undefined;
396
+ applicationArn?: string | undefined;
397
+ applicationName?: string | undefined;
398
+ applicationDescription?: string | undefined;
399
+ userAttribute?: IamIdentityCenterUserAttribute | undefined;
400
+ groupAttribute?: IamIdentityCenterGroupAttribute | undefined;
397
401
  }
398
402
  export interface SecurityConfigDetail {
399
- id?: string;
400
- type?: SecurityConfigType;
401
- configVersion?: string;
402
- description?: string;
403
- samlOptions?: SamlConfigOptions;
404
- iamIdentityCenterOptions?: IamIdentityCenterConfigOptions;
405
- createdDate?: number;
406
- lastModifiedDate?: number;
403
+ id?: string | undefined;
404
+ type?: SecurityConfigType | undefined;
405
+ configVersion?: string | undefined;
406
+ description?: string | undefined;
407
+ samlOptions?: SamlConfigOptions | undefined;
408
+ iamIdentityCenterOptions?: IamIdentityCenterConfigOptions | undefined;
409
+ createdDate?: number | undefined;
410
+ lastModifiedDate?: number | undefined;
407
411
  }
408
412
  export interface CreateSecurityConfigResponse {
409
- securityConfigDetail?: SecurityConfigDetail;
413
+ securityConfigDetail?: SecurityConfigDetail | undefined;
410
414
  }
411
415
  export declare const SecurityPolicyType: {
412
416
  readonly encryption: "encryption";
@@ -417,213 +421,215 @@ export type SecurityPolicyType =
417
421
  export interface CreateSecurityPolicyRequest {
418
422
  type: SecurityPolicyType | undefined;
419
423
  name: string | undefined;
420
- description?: string;
424
+ description?: string | undefined;
421
425
  policy: string | undefined;
422
- clientToken?: string;
426
+ clientToken?: string | undefined;
423
427
  }
424
428
  export interface SecurityPolicyDetail {
425
- type?: SecurityPolicyType;
426
- name?: string;
427
- policyVersion?: string;
428
- description?: string;
429
- policy?: __DocumentType;
430
- createdDate?: number;
431
- lastModifiedDate?: number;
429
+ type?: SecurityPolicyType | undefined;
430
+ name?: string | undefined;
431
+ policyVersion?: string | undefined;
432
+ description?: string | undefined;
433
+ policy?: __DocumentType | undefined;
434
+ createdDate?: number | undefined;
435
+ lastModifiedDate?: number | undefined;
432
436
  }
433
437
  export interface CreateSecurityPolicyResponse {
434
- securityPolicyDetail?: SecurityPolicyDetail;
438
+ securityPolicyDetail?: SecurityPolicyDetail | undefined;
435
439
  }
436
440
  export interface CreateVpcEndpointRequest {
437
441
  name: string | undefined;
438
442
  vpcId: string | undefined;
439
443
  subnetIds: string[] | undefined;
440
- securityGroupIds?: string[];
441
- clientToken?: string;
444
+ securityGroupIds?: string[] | undefined;
445
+ clientToken?: string | undefined;
442
446
  }
443
447
  export interface CreateVpcEndpointDetail {
444
- id?: string;
445
- name?: string;
446
- status?: VpcEndpointStatus;
448
+ id?: string | undefined;
449
+ name?: string | undefined;
450
+ status?: VpcEndpointStatus | undefined;
447
451
  }
448
452
  export interface CreateVpcEndpointResponse {
449
- createVpcEndpointDetail?: CreateVpcEndpointDetail;
453
+ createVpcEndpointDetail?: CreateVpcEndpointDetail | undefined;
450
454
  }
451
455
  export interface DeleteLifecyclePolicyRequest {
452
456
  type: LifecyclePolicyType | undefined;
453
457
  name: string | undefined;
454
- clientToken?: string;
458
+ clientToken?: string | undefined;
455
459
  }
456
460
  export interface DeleteLifecyclePolicyResponse {}
457
461
  export interface DeleteSecurityConfigRequest {
458
462
  id: string | undefined;
459
- clientToken?: string;
463
+ clientToken?: string | undefined;
460
464
  }
461
465
  export interface DeleteSecurityConfigResponse {}
462
466
  export interface DeleteSecurityPolicyRequest {
463
467
  type: SecurityPolicyType | undefined;
464
468
  name: string | undefined;
465
- clientToken?: string;
469
+ clientToken?: string | undefined;
466
470
  }
467
471
  export interface DeleteSecurityPolicyResponse {}
468
472
  export interface DeleteVpcEndpointRequest {
469
473
  id: string | undefined;
470
- clientToken?: string;
474
+ clientToken?: string | undefined;
471
475
  }
472
476
  export interface DeleteVpcEndpointDetail {
473
- id?: string;
474
- name?: string;
475
- status?: VpcEndpointStatus;
477
+ id?: string | undefined;
478
+ name?: string | undefined;
479
+ status?: VpcEndpointStatus | undefined;
476
480
  }
477
481
  export interface DeleteVpcEndpointResponse {
478
- deleteVpcEndpointDetail?: DeleteVpcEndpointDetail;
482
+ deleteVpcEndpointDetail?: DeleteVpcEndpointDetail | undefined;
479
483
  }
480
484
  export interface GetAccountSettingsRequest {}
481
485
  export interface GetAccountSettingsResponse {
482
- accountSettingsDetail?: AccountSettingsDetail;
486
+ accountSettingsDetail?: AccountSettingsDetail | undefined;
483
487
  }
484
488
  export interface GetPoliciesStatsRequest {}
485
489
  export interface LifecyclePolicyStats {
486
- RetentionPolicyCount?: number;
490
+ RetentionPolicyCount?: number | undefined;
487
491
  }
488
492
  export interface SecurityConfigStats {
489
- SamlConfigCount?: number;
493
+ SamlConfigCount?: number | undefined;
490
494
  }
491
495
  export interface SecurityPolicyStats {
492
- EncryptionPolicyCount?: number;
493
- NetworkPolicyCount?: number;
496
+ EncryptionPolicyCount?: number | undefined;
497
+ NetworkPolicyCount?: number | undefined;
494
498
  }
495
499
  export interface GetPoliciesStatsResponse {
496
- AccessPolicyStats?: AccessPolicyStats;
497
- SecurityPolicyStats?: SecurityPolicyStats;
498
- SecurityConfigStats?: SecurityConfigStats;
499
- LifecyclePolicyStats?: LifecyclePolicyStats;
500
- TotalPolicyCount?: number;
500
+ AccessPolicyStats?: AccessPolicyStats | undefined;
501
+ SecurityPolicyStats?: SecurityPolicyStats | undefined;
502
+ SecurityConfigStats?: SecurityConfigStats | undefined;
503
+ LifecyclePolicyStats?: LifecyclePolicyStats | undefined;
504
+ TotalPolicyCount?: number | undefined;
501
505
  }
502
506
  export interface GetSecurityConfigRequest {
503
507
  id: string | undefined;
504
508
  }
505
509
  export interface GetSecurityConfigResponse {
506
- securityConfigDetail?: SecurityConfigDetail;
510
+ securityConfigDetail?: SecurityConfigDetail | undefined;
507
511
  }
508
512
  export interface GetSecurityPolicyRequest {
509
513
  type: SecurityPolicyType | undefined;
510
514
  name: string | undefined;
511
515
  }
512
516
  export interface GetSecurityPolicyResponse {
513
- securityPolicyDetail?: SecurityPolicyDetail;
517
+ securityPolicyDetail?: SecurityPolicyDetail | undefined;
514
518
  }
515
519
  export interface ListLifecyclePoliciesRequest {
516
520
  type: LifecyclePolicyType | undefined;
517
- resources?: string[];
518
- nextToken?: string;
519
- maxResults?: number;
521
+ resources?: string[] | undefined;
522
+ nextToken?: string | undefined;
523
+ maxResults?: number | undefined;
520
524
  }
521
525
  export interface LifecyclePolicySummary {
522
- type?: LifecyclePolicyType;
523
- name?: string;
524
- policyVersion?: string;
525
- description?: string;
526
- createdDate?: number;
527
- lastModifiedDate?: number;
526
+ type?: LifecyclePolicyType | undefined;
527
+ name?: string | undefined;
528
+ policyVersion?: string | undefined;
529
+ description?: string | undefined;
530
+ createdDate?: number | undefined;
531
+ lastModifiedDate?: number | undefined;
528
532
  }
529
533
  export interface ListLifecyclePoliciesResponse {
530
- lifecyclePolicySummaries?: LifecyclePolicySummary[];
531
- nextToken?: string;
534
+ lifecyclePolicySummaries?: LifecyclePolicySummary[] | undefined;
535
+ nextToken?: string | undefined;
532
536
  }
533
537
  export interface UpdateLifecyclePolicyRequest {
534
538
  type: LifecyclePolicyType | undefined;
535
539
  name: string | undefined;
536
540
  policyVersion: string | undefined;
537
- description?: string;
538
- policy?: string;
539
- clientToken?: string;
541
+ description?: string | undefined;
542
+ policy?: string | undefined;
543
+ clientToken?: string | undefined;
540
544
  }
541
545
  export interface UpdateLifecyclePolicyResponse {
542
- lifecyclePolicyDetail?: LifecyclePolicyDetail;
546
+ lifecyclePolicyDetail?: LifecyclePolicyDetail | undefined;
543
547
  }
544
548
  export interface ListSecurityConfigsRequest {
545
549
  type: SecurityConfigType | undefined;
546
- nextToken?: string;
547
- maxResults?: number;
550
+ nextToken?: string | undefined;
551
+ maxResults?: number | undefined;
548
552
  }
549
553
  export interface SecurityConfigSummary {
550
- id?: string;
551
- type?: SecurityConfigType;
552
- configVersion?: string;
553
- description?: string;
554
- createdDate?: number;
555
- lastModifiedDate?: number;
554
+ id?: string | undefined;
555
+ type?: SecurityConfigType | undefined;
556
+ configVersion?: string | undefined;
557
+ description?: string | undefined;
558
+ createdDate?: number | undefined;
559
+ lastModifiedDate?: number | undefined;
556
560
  }
557
561
  export interface ListSecurityConfigsResponse {
558
- securityConfigSummaries?: SecurityConfigSummary[];
559
- nextToken?: string;
562
+ securityConfigSummaries?: SecurityConfigSummary[] | undefined;
563
+ nextToken?: string | undefined;
560
564
  }
561
565
  export interface ListSecurityPoliciesRequest {
562
566
  type: SecurityPolicyType | undefined;
563
- resource?: string[];
564
- nextToken?: string;
565
- maxResults?: number;
567
+ resource?: string[] | undefined;
568
+ nextToken?: string | undefined;
569
+ maxResults?: number | undefined;
566
570
  }
567
571
  export interface SecurityPolicySummary {
568
- type?: SecurityPolicyType;
569
- name?: string;
570
- policyVersion?: string;
571
- description?: string;
572
- createdDate?: number;
573
- lastModifiedDate?: number;
572
+ type?: SecurityPolicyType | undefined;
573
+ name?: string | undefined;
574
+ policyVersion?: string | undefined;
575
+ description?: string | undefined;
576
+ createdDate?: number | undefined;
577
+ lastModifiedDate?: number | undefined;
574
578
  }
575
579
  export interface ListSecurityPoliciesResponse {
576
- securityPolicySummaries?: SecurityPolicySummary[];
577
- nextToken?: string;
580
+ securityPolicySummaries?: SecurityPolicySummary[] | undefined;
581
+ nextToken?: string | undefined;
578
582
  }
579
583
  export interface ListTagsForResourceRequest {
580
584
  resourceArn: string | undefined;
581
585
  }
582
586
  export interface ListTagsForResourceResponse {
583
- tags?: Tag[];
587
+ tags?: Tag[] | undefined;
584
588
  }
585
589
  export interface VpcEndpointFilters {
586
- status?: VpcEndpointStatus;
590
+ status?: VpcEndpointStatus | undefined;
587
591
  }
588
592
  export interface ListVpcEndpointsRequest {
589
- vpcEndpointFilters?: VpcEndpointFilters;
590
- nextToken?: string;
591
- maxResults?: number;
593
+ vpcEndpointFilters?: VpcEndpointFilters | undefined;
594
+ nextToken?: string | undefined;
595
+ maxResults?: number | undefined;
592
596
  }
593
597
  export interface VpcEndpointSummary {
594
- id?: string;
595
- name?: string;
596
- status?: VpcEndpointStatus;
598
+ id?: string | undefined;
599
+ name?: string | undefined;
600
+ status?: VpcEndpointStatus | undefined;
597
601
  }
598
602
  export interface ListVpcEndpointsResponse {
599
- vpcEndpointSummaries?: VpcEndpointSummary[];
600
- nextToken?: string;
603
+ vpcEndpointSummaries?: VpcEndpointSummary[] | undefined;
604
+ nextToken?: string | undefined;
601
605
  }
602
606
  export interface UpdateIamIdentityCenterConfigOptions {
603
- userAttribute?: IamIdentityCenterUserAttribute;
604
- groupAttribute?: IamIdentityCenterGroupAttribute;
607
+ userAttribute?: IamIdentityCenterUserAttribute | undefined;
608
+ groupAttribute?: IamIdentityCenterGroupAttribute | undefined;
605
609
  }
606
610
  export interface UpdateSecurityConfigRequest {
607
611
  id: string | undefined;
608
612
  configVersion: string | undefined;
609
- description?: string;
610
- samlOptions?: SamlConfigOptions;
611
- iamIdentityCenterOptionsUpdates?: UpdateIamIdentityCenterConfigOptions;
612
- clientToken?: string;
613
+ description?: string | undefined;
614
+ samlOptions?: SamlConfigOptions | undefined;
615
+ iamIdentityCenterOptionsUpdates?:
616
+ | UpdateIamIdentityCenterConfigOptions
617
+ | undefined;
618
+ clientToken?: string | undefined;
613
619
  }
614
620
  export interface UpdateSecurityConfigResponse {
615
- securityConfigDetail?: SecurityConfigDetail;
621
+ securityConfigDetail?: SecurityConfigDetail | undefined;
616
622
  }
617
623
  export interface UpdateSecurityPolicyRequest {
618
624
  type: SecurityPolicyType | undefined;
619
625
  name: string | undefined;
620
626
  policyVersion: string | undefined;
621
- description?: string;
622
- policy?: string;
623
- clientToken?: string;
627
+ description?: string | undefined;
628
+ policy?: string | undefined;
629
+ clientToken?: string | undefined;
624
630
  }
625
631
  export interface UpdateSecurityPolicyResponse {
626
- securityPolicyDetail?: SecurityPolicyDetail;
632
+ securityPolicyDetail?: SecurityPolicyDetail | undefined;
627
633
  }
628
634
  export interface TagResourceRequest {
629
635
  resourceArn: string | undefined;
@@ -636,27 +642,27 @@ export interface UntagResourceRequest {
636
642
  }
637
643
  export interface UntagResourceResponse {}
638
644
  export interface UpdateAccountSettingsRequest {
639
- capacityLimits?: CapacityLimits;
645
+ capacityLimits?: CapacityLimits | undefined;
640
646
  }
641
647
  export interface UpdateAccountSettingsResponse {
642
- accountSettingsDetail?: AccountSettingsDetail;
648
+ accountSettingsDetail?: AccountSettingsDetail | undefined;
643
649
  }
644
650
  export interface UpdateVpcEndpointRequest {
645
651
  id: string | undefined;
646
- addSubnetIds?: string[];
647
- removeSubnetIds?: string[];
648
- addSecurityGroupIds?: string[];
649
- removeSecurityGroupIds?: string[];
650
- clientToken?: string;
652
+ addSubnetIds?: string[] | undefined;
653
+ removeSubnetIds?: string[] | undefined;
654
+ addSecurityGroupIds?: string[] | undefined;
655
+ removeSecurityGroupIds?: string[] | undefined;
656
+ clientToken?: string | undefined;
651
657
  }
652
658
  export interface UpdateVpcEndpointDetail {
653
- id?: string;
654
- name?: string;
655
- status?: VpcEndpointStatus;
656
- subnetIds?: string[];
657
- securityGroupIds?: string[];
658
- lastModifiedDate?: number;
659
+ id?: string | undefined;
660
+ name?: string | undefined;
661
+ status?: VpcEndpointStatus | undefined;
662
+ subnetIds?: string[] | undefined;
663
+ securityGroupIds?: string[] | undefined;
664
+ lastModifiedDate?: number | undefined;
659
665
  }
660
666
  export interface UpdateVpcEndpointResponse {
661
- UpdateVpcEndpointDetail?: UpdateVpcEndpointDetail;
667
+ UpdateVpcEndpointDetail?: UpdateVpcEndpointDetail | undefined;
662
668
  }