@aws-sdk/client-opensearchserverless 3.687.0 → 3.692.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-types/models/models_0.d.ts +272 -272
- package/dist-types/ts3.4/models/models_0.d.ts +278 -272
- package/package.json +35 -35
|
@@ -48,7 +48,7 @@ export interface CreateAccessPolicyRequest {
|
|
|
48
48
|
* defined in the policy.</p>
|
|
49
49
|
* @public
|
|
50
50
|
*/
|
|
51
|
-
description?: string;
|
|
51
|
+
description?: string | undefined;
|
|
52
52
|
/**
|
|
53
53
|
* <p>The JSON policy document to use as the content for the policy.</p>
|
|
54
54
|
* @public
|
|
@@ -58,7 +58,7 @@ export interface CreateAccessPolicyRequest {
|
|
|
58
58
|
* <p>Unique, case-sensitive identifier to ensure idempotency of the request.</p>
|
|
59
59
|
* @public
|
|
60
60
|
*/
|
|
61
|
-
clientToken?: string;
|
|
61
|
+
clientToken?: string | undefined;
|
|
62
62
|
}
|
|
63
63
|
/**
|
|
64
64
|
* <p>Details about an OpenSearch Serverless access policy.</p>
|
|
@@ -69,37 +69,37 @@ export interface AccessPolicyDetail {
|
|
|
69
69
|
* <p>The type of access policy.</p>
|
|
70
70
|
* @public
|
|
71
71
|
*/
|
|
72
|
-
type?: AccessPolicyType;
|
|
72
|
+
type?: AccessPolicyType | undefined;
|
|
73
73
|
/**
|
|
74
74
|
* <p>The name of the policy.</p>
|
|
75
75
|
* @public
|
|
76
76
|
*/
|
|
77
|
-
name?: string;
|
|
77
|
+
name?: string | undefined;
|
|
78
78
|
/**
|
|
79
79
|
* <p>The version of the policy.</p>
|
|
80
80
|
* @public
|
|
81
81
|
*/
|
|
82
|
-
policyVersion?: string;
|
|
82
|
+
policyVersion?: string | undefined;
|
|
83
83
|
/**
|
|
84
84
|
* <p>The description of the policy.</p>
|
|
85
85
|
* @public
|
|
86
86
|
*/
|
|
87
|
-
description?: string;
|
|
87
|
+
description?: string | undefined;
|
|
88
88
|
/**
|
|
89
89
|
* <p>The JSON policy document without any whitespaces.</p>
|
|
90
90
|
* @public
|
|
91
91
|
*/
|
|
92
|
-
policy?: __DocumentType;
|
|
92
|
+
policy?: __DocumentType | undefined;
|
|
93
93
|
/**
|
|
94
94
|
* <p>The date the policy was created.</p>
|
|
95
95
|
* @public
|
|
96
96
|
*/
|
|
97
|
-
createdDate?: number;
|
|
97
|
+
createdDate?: number | undefined;
|
|
98
98
|
/**
|
|
99
99
|
* <p>The timestamp of when the policy was last modified.</p>
|
|
100
100
|
* @public
|
|
101
101
|
*/
|
|
102
|
-
lastModifiedDate?: number;
|
|
102
|
+
lastModifiedDate?: number | undefined;
|
|
103
103
|
}
|
|
104
104
|
/**
|
|
105
105
|
* @public
|
|
@@ -109,7 +109,7 @@ export interface CreateAccessPolicyResponse {
|
|
|
109
109
|
* <p>Details about the created access policy.</p>
|
|
110
110
|
* @public
|
|
111
111
|
*/
|
|
112
|
-
accessPolicyDetail?: AccessPolicyDetail;
|
|
112
|
+
accessPolicyDetail?: AccessPolicyDetail | undefined;
|
|
113
113
|
}
|
|
114
114
|
/**
|
|
115
115
|
* <p>Thrown when an error internal to the service occurs while processing a request.</p>
|
|
@@ -134,12 +134,12 @@ export declare class ServiceQuotaExceededException extends __BaseException {
|
|
|
134
134
|
* Identifier of the resource affected.
|
|
135
135
|
* @public
|
|
136
136
|
*/
|
|
137
|
-
resourceId?: string;
|
|
137
|
+
resourceId?: string | undefined;
|
|
138
138
|
/**
|
|
139
139
|
* Type of the resource affected.
|
|
140
140
|
* @public
|
|
141
141
|
*/
|
|
142
|
-
resourceType?: string;
|
|
142
|
+
resourceType?: string | undefined;
|
|
143
143
|
/**
|
|
144
144
|
* Service Quotas requirement to identify originating service.
|
|
145
145
|
* @public
|
|
@@ -149,7 +149,7 @@ export declare class ServiceQuotaExceededException extends __BaseException {
|
|
|
149
149
|
* Service Quotas requirement to identify originating quota.
|
|
150
150
|
* @public
|
|
151
151
|
*/
|
|
152
|
-
quotaCode?: string;
|
|
152
|
+
quotaCode?: string | undefined;
|
|
153
153
|
/**
|
|
154
154
|
* @internal
|
|
155
155
|
*/
|
|
@@ -186,7 +186,7 @@ export interface DeleteAccessPolicyRequest {
|
|
|
186
186
|
* <p>Unique, case-sensitive identifier to ensure idempotency of the request.</p>
|
|
187
187
|
* @public
|
|
188
188
|
*/
|
|
189
|
-
clientToken?: string;
|
|
189
|
+
clientToken?: string | undefined;
|
|
190
190
|
}
|
|
191
191
|
/**
|
|
192
192
|
* @public
|
|
@@ -228,7 +228,7 @@ export interface GetAccessPolicyResponse {
|
|
|
228
228
|
* <p>Details about the requested access policy.</p>
|
|
229
229
|
* @public
|
|
230
230
|
*/
|
|
231
|
-
accessPolicyDetail?: AccessPolicyDetail;
|
|
231
|
+
accessPolicyDetail?: AccessPolicyDetail | undefined;
|
|
232
232
|
}
|
|
233
233
|
/**
|
|
234
234
|
* @public
|
|
@@ -243,7 +243,7 @@ export interface ListAccessPoliciesRequest {
|
|
|
243
243
|
* <p>Resource filters (can be collections or indexes) that policies can apply to.</p>
|
|
244
244
|
* @public
|
|
245
245
|
*/
|
|
246
|
-
resource?: string[];
|
|
246
|
+
resource?: string[] | undefined;
|
|
247
247
|
/**
|
|
248
248
|
* <p>If your initial <code>ListAccessPolicies</code> operation returns a
|
|
249
249
|
* <code>nextToken</code>, you can include the returned <code>nextToken</code> in
|
|
@@ -251,13 +251,13 @@ export interface ListAccessPoliciesRequest {
|
|
|
251
251
|
* page. </p>
|
|
252
252
|
* @public
|
|
253
253
|
*/
|
|
254
|
-
nextToken?: string;
|
|
254
|
+
nextToken?: string | undefined;
|
|
255
255
|
/**
|
|
256
256
|
* <p>An optional parameter that specifies the maximum number of results to return. You can
|
|
257
257
|
* use <code>nextToken</code> to get the next page of results. The default is 20.</p>
|
|
258
258
|
* @public
|
|
259
259
|
*/
|
|
260
|
-
maxResults?: number;
|
|
260
|
+
maxResults?: number | undefined;
|
|
261
261
|
}
|
|
262
262
|
/**
|
|
263
263
|
* <p>A summary of the data access policy.</p>
|
|
@@ -268,32 +268,32 @@ export interface AccessPolicySummary {
|
|
|
268
268
|
* <p>The type of access policy. Currently, the only available type is <code>data</code>.</p>
|
|
269
269
|
* @public
|
|
270
270
|
*/
|
|
271
|
-
type?: AccessPolicyType;
|
|
271
|
+
type?: AccessPolicyType | undefined;
|
|
272
272
|
/**
|
|
273
273
|
* <p>The name of the access policy.</p>
|
|
274
274
|
* @public
|
|
275
275
|
*/
|
|
276
|
-
name?: string;
|
|
276
|
+
name?: string | undefined;
|
|
277
277
|
/**
|
|
278
278
|
* <p>The version of the policy.</p>
|
|
279
279
|
* @public
|
|
280
280
|
*/
|
|
281
|
-
policyVersion?: string;
|
|
281
|
+
policyVersion?: string | undefined;
|
|
282
282
|
/**
|
|
283
283
|
* <p>The description of the access policy.</p>
|
|
284
284
|
* @public
|
|
285
285
|
*/
|
|
286
|
-
description?: string;
|
|
286
|
+
description?: string | undefined;
|
|
287
287
|
/**
|
|
288
288
|
* <p>The Epoch time when the access policy was created.</p>
|
|
289
289
|
* @public
|
|
290
290
|
*/
|
|
291
|
-
createdDate?: number;
|
|
291
|
+
createdDate?: number | undefined;
|
|
292
292
|
/**
|
|
293
293
|
* <p>The date and time when the collection was last modified.</p>
|
|
294
294
|
* @public
|
|
295
295
|
*/
|
|
296
|
-
lastModifiedDate?: number;
|
|
296
|
+
lastModifiedDate?: number | undefined;
|
|
297
297
|
}
|
|
298
298
|
/**
|
|
299
299
|
* @public
|
|
@@ -303,14 +303,14 @@ export interface ListAccessPoliciesResponse {
|
|
|
303
303
|
* <p>Details about the requested access policies.</p>
|
|
304
304
|
* @public
|
|
305
305
|
*/
|
|
306
|
-
accessPolicySummaries?: AccessPolicySummary[];
|
|
306
|
+
accessPolicySummaries?: AccessPolicySummary[] | undefined;
|
|
307
307
|
/**
|
|
308
308
|
* <p>When <code>nextToken</code> is returned, there are more results available. The value
|
|
309
309
|
* of <code>nextToken</code> is a unique pagination token for each page. Make the call
|
|
310
310
|
* again using the returned token to retrieve the next page.</p>
|
|
311
311
|
* @public
|
|
312
312
|
*/
|
|
313
|
-
nextToken?: string;
|
|
313
|
+
nextToken?: string | undefined;
|
|
314
314
|
}
|
|
315
315
|
/**
|
|
316
316
|
* @public
|
|
@@ -336,17 +336,17 @@ export interface UpdateAccessPolicyRequest {
|
|
|
336
336
|
* defined in the policy.</p>
|
|
337
337
|
* @public
|
|
338
338
|
*/
|
|
339
|
-
description?: string;
|
|
339
|
+
description?: string | undefined;
|
|
340
340
|
/**
|
|
341
341
|
* <p>The JSON policy document to use as the content for the policy.</p>
|
|
342
342
|
* @public
|
|
343
343
|
*/
|
|
344
|
-
policy?: string;
|
|
344
|
+
policy?: string | undefined;
|
|
345
345
|
/**
|
|
346
346
|
* <p>Unique, case-sensitive identifier to ensure idempotency of the request.</p>
|
|
347
347
|
* @public
|
|
348
348
|
*/
|
|
349
|
-
clientToken?: string;
|
|
349
|
+
clientToken?: string | undefined;
|
|
350
350
|
}
|
|
351
351
|
/**
|
|
352
352
|
* @public
|
|
@@ -356,7 +356,7 @@ export interface UpdateAccessPolicyResponse {
|
|
|
356
356
|
* <p>Details about the updated access policy.</p>
|
|
357
357
|
* @public
|
|
358
358
|
*/
|
|
359
|
-
accessPolicyDetail?: AccessPolicyDetail;
|
|
359
|
+
accessPolicyDetail?: AccessPolicyDetail | undefined;
|
|
360
360
|
}
|
|
361
361
|
/**
|
|
362
362
|
* <p>Statistics for an OpenSearch Serverless access policy.</p>
|
|
@@ -367,7 +367,7 @@ export interface AccessPolicyStats {
|
|
|
367
367
|
* <p>The number of data access policies in the current account.</p>
|
|
368
368
|
* @public
|
|
369
369
|
*/
|
|
370
|
-
DataPolicyCount?: number;
|
|
370
|
+
DataPolicyCount?: number | undefined;
|
|
371
371
|
}
|
|
372
372
|
/**
|
|
373
373
|
* <p>The maximum capacity limits for all OpenSearch Serverless collections, in OpenSearch Compute Units
|
|
@@ -381,12 +381,12 @@ export interface CapacityLimits {
|
|
|
381
381
|
* <p>The maximum indexing capacity for collections.</p>
|
|
382
382
|
* @public
|
|
383
383
|
*/
|
|
384
|
-
maxIndexingCapacityInOCU?: number;
|
|
384
|
+
maxIndexingCapacityInOCU?: number | undefined;
|
|
385
385
|
/**
|
|
386
386
|
* <p>The maximum search capacity for collections.</p>
|
|
387
387
|
* @public
|
|
388
388
|
*/
|
|
389
|
-
maxSearchCapacityInOCU?: number;
|
|
389
|
+
maxSearchCapacityInOCU?: number | undefined;
|
|
390
390
|
}
|
|
391
391
|
/**
|
|
392
392
|
* <p>OpenSearch Serverless-related information for the current account.</p>
|
|
@@ -400,7 +400,7 @@ export interface AccountSettingsDetail {
|
|
|
400
400
|
* capacity limits for Amazon OpenSearch Serverless</a>.</p>
|
|
401
401
|
* @public
|
|
402
402
|
*/
|
|
403
|
-
capacityLimits?: CapacityLimits;
|
|
403
|
+
capacityLimits?: CapacityLimits | undefined;
|
|
404
404
|
}
|
|
405
405
|
/**
|
|
406
406
|
* @public
|
|
@@ -411,12 +411,12 @@ export interface BatchGetCollectionRequest {
|
|
|
411
411
|
* is part of the collection endpoint. You can also retrieve it using the <a href="https://docs.aws.amazon.com/opensearch-service/latest/ServerlessAPIReference/API_ListCollections.html">ListCollections</a> API.</p>
|
|
412
412
|
* @public
|
|
413
413
|
*/
|
|
414
|
-
ids?: string[];
|
|
414
|
+
ids?: string[] | undefined;
|
|
415
415
|
/**
|
|
416
416
|
* <p>A list of collection names. You can't provide names and IDs in the same request.</p>
|
|
417
417
|
* @public
|
|
418
418
|
*/
|
|
419
|
-
names?: string[];
|
|
419
|
+
names?: string[] | undefined;
|
|
420
420
|
}
|
|
421
421
|
/**
|
|
422
422
|
* @public
|
|
@@ -494,73 +494,73 @@ export interface CollectionDetail {
|
|
|
494
494
|
* <p>A unique identifier for the collection.</p>
|
|
495
495
|
* @public
|
|
496
496
|
*/
|
|
497
|
-
id?: string;
|
|
497
|
+
id?: string | undefined;
|
|
498
498
|
/**
|
|
499
499
|
* <p>The name of the collection.</p>
|
|
500
500
|
* @public
|
|
501
501
|
*/
|
|
502
|
-
name?: string;
|
|
502
|
+
name?: string | undefined;
|
|
503
503
|
/**
|
|
504
504
|
* <p>The current status of the collection.</p>
|
|
505
505
|
* @public
|
|
506
506
|
*/
|
|
507
|
-
status?: CollectionStatus;
|
|
507
|
+
status?: CollectionStatus | undefined;
|
|
508
508
|
/**
|
|
509
509
|
* <p>The type of collection.</p>
|
|
510
510
|
* @public
|
|
511
511
|
*/
|
|
512
|
-
type?: CollectionType;
|
|
512
|
+
type?: CollectionType | undefined;
|
|
513
513
|
/**
|
|
514
514
|
* <p>A description of the collection.</p>
|
|
515
515
|
* @public
|
|
516
516
|
*/
|
|
517
|
-
description?: string;
|
|
517
|
+
description?: string | undefined;
|
|
518
518
|
/**
|
|
519
519
|
* <p>The Amazon Resource Name (ARN) of the collection.</p>
|
|
520
520
|
* @public
|
|
521
521
|
*/
|
|
522
|
-
arn?: string;
|
|
522
|
+
arn?: string | undefined;
|
|
523
523
|
/**
|
|
524
524
|
* <p>The ARN of the Amazon Web Services KMS key used to encrypt the collection.</p>
|
|
525
525
|
* @public
|
|
526
526
|
*/
|
|
527
|
-
kmsKeyArn?: string;
|
|
527
|
+
kmsKeyArn?: string | undefined;
|
|
528
528
|
/**
|
|
529
529
|
* <p>Details about an OpenSearch Serverless collection.</p>
|
|
530
530
|
* @public
|
|
531
531
|
*/
|
|
532
|
-
standbyReplicas?: StandbyReplicas;
|
|
532
|
+
standbyReplicas?: StandbyReplicas | undefined;
|
|
533
533
|
/**
|
|
534
534
|
* <p>The Epoch time when the collection was created.</p>
|
|
535
535
|
* @public
|
|
536
536
|
*/
|
|
537
|
-
createdDate?: number;
|
|
537
|
+
createdDate?: number | undefined;
|
|
538
538
|
/**
|
|
539
539
|
* <p>The date and time when the collection was last modified.</p>
|
|
540
540
|
* @public
|
|
541
541
|
*/
|
|
542
|
-
lastModifiedDate?: number;
|
|
542
|
+
lastModifiedDate?: number | undefined;
|
|
543
543
|
/**
|
|
544
544
|
* <p>Collection-specific endpoint used to submit index, search, and data upload requests to
|
|
545
545
|
* an OpenSearch Serverless collection.</p>
|
|
546
546
|
* @public
|
|
547
547
|
*/
|
|
548
|
-
collectionEndpoint?: string;
|
|
548
|
+
collectionEndpoint?: string | undefined;
|
|
549
549
|
/**
|
|
550
550
|
* <p>Collection-specific endpoint used to access OpenSearch Dashboards.</p>
|
|
551
551
|
* @public
|
|
552
552
|
*/
|
|
553
|
-
dashboardEndpoint?: string;
|
|
553
|
+
dashboardEndpoint?: string | undefined;
|
|
554
554
|
/**
|
|
555
555
|
* <p>A failure code associated with the request.</p>
|
|
556
556
|
* @public
|
|
557
557
|
*/
|
|
558
|
-
failureCode?: string;
|
|
558
|
+
failureCode?: string | undefined;
|
|
559
559
|
/**
|
|
560
560
|
* <p>A message associated with the failure code.</p>
|
|
561
561
|
* @public
|
|
562
562
|
*/
|
|
563
|
-
failureMessage?: string;
|
|
563
|
+
failureMessage?: string | undefined;
|
|
564
564
|
}
|
|
565
565
|
/**
|
|
566
566
|
* <p>Error information for an OpenSearch Serverless request.</p>
|
|
@@ -572,25 +572,25 @@ export interface CollectionErrorDetail {
|
|
|
572
572
|
* request.</p>
|
|
573
573
|
* @public
|
|
574
574
|
*/
|
|
575
|
-
id?: string;
|
|
575
|
+
id?: string | undefined;
|
|
576
576
|
/**
|
|
577
577
|
* <p>If the request contains collection names, the response includes the names provided in
|
|
578
578
|
* the request.</p>
|
|
579
579
|
* @public
|
|
580
580
|
*/
|
|
581
|
-
name?: string;
|
|
581
|
+
name?: string | undefined;
|
|
582
582
|
/**
|
|
583
583
|
* <p>A description of the error. For example, <code>The specified Collection is not
|
|
584
584
|
* found.</code>
|
|
585
585
|
* </p>
|
|
586
586
|
* @public
|
|
587
587
|
*/
|
|
588
|
-
errorMessage?: string;
|
|
588
|
+
errorMessage?: string | undefined;
|
|
589
589
|
/**
|
|
590
590
|
* <p>The error code for the request. For example, <code>NOT_FOUND</code>.</p>
|
|
591
591
|
* @public
|
|
592
592
|
*/
|
|
593
|
-
errorCode?: string;
|
|
593
|
+
errorCode?: string | undefined;
|
|
594
594
|
}
|
|
595
595
|
/**
|
|
596
596
|
* @public
|
|
@@ -600,12 +600,12 @@ export interface BatchGetCollectionResponse {
|
|
|
600
600
|
* <p>Details about each collection.</p>
|
|
601
601
|
* @public
|
|
602
602
|
*/
|
|
603
|
-
collectionDetails?: CollectionDetail[];
|
|
603
|
+
collectionDetails?: CollectionDetail[] | undefined;
|
|
604
604
|
/**
|
|
605
605
|
* <p>Error information for the request.</p>
|
|
606
606
|
* @public
|
|
607
607
|
*/
|
|
608
|
-
collectionErrorDetails?: CollectionErrorDetail[];
|
|
608
|
+
collectionErrorDetails?: CollectionErrorDetail[] | undefined;
|
|
609
609
|
}
|
|
610
610
|
/**
|
|
611
611
|
* @public
|
|
@@ -670,33 +670,33 @@ export interface EffectiveLifecyclePolicyDetail {
|
|
|
670
670
|
* <p>The type of lifecycle policy.</p>
|
|
671
671
|
* @public
|
|
672
672
|
*/
|
|
673
|
-
type?: LifecyclePolicyType;
|
|
673
|
+
type?: LifecyclePolicyType | undefined;
|
|
674
674
|
/**
|
|
675
675
|
* <p>The name of the OpenSearch Serverless index resource.</p>
|
|
676
676
|
* @public
|
|
677
677
|
*/
|
|
678
|
-
resource?: string;
|
|
678
|
+
resource?: string | undefined;
|
|
679
679
|
/**
|
|
680
680
|
* <p>The name of the lifecycle policy.</p>
|
|
681
681
|
* @public
|
|
682
682
|
*/
|
|
683
|
-
policyName?: string;
|
|
683
|
+
policyName?: string | undefined;
|
|
684
684
|
/**
|
|
685
685
|
* <p>The type of OpenSearch Serverless resource. Currently, the only supported resource is <code>index</code>.</p>
|
|
686
686
|
* @public
|
|
687
687
|
*/
|
|
688
|
-
resourceType?: ResourceType;
|
|
688
|
+
resourceType?: ResourceType | undefined;
|
|
689
689
|
/**
|
|
690
690
|
* <p>The minimum number of index retention in days or hours. This is an optional parameter that will return only if it’s set.</p>
|
|
691
691
|
* @public
|
|
692
692
|
*/
|
|
693
|
-
retentionPeriod?: string;
|
|
693
|
+
retentionPeriod?: string | undefined;
|
|
694
694
|
/**
|
|
695
695
|
* <p>The minimum number of index retention days set. That is an optional param that will return as <code>true</code> if the minimum number of days or
|
|
696
696
|
* hours is not set to a index resource.</p>
|
|
697
697
|
* @public
|
|
698
698
|
*/
|
|
699
|
-
noMinRetentionPeriod?: boolean;
|
|
699
|
+
noMinRetentionPeriod?: boolean | undefined;
|
|
700
700
|
}
|
|
701
701
|
/**
|
|
702
702
|
* <p>Error information for an OpenSearch Serverless request.</p>
|
|
@@ -707,22 +707,22 @@ export interface EffectiveLifecyclePolicyErrorDetail {
|
|
|
707
707
|
* <p>The type of lifecycle policy.</p>
|
|
708
708
|
* @public
|
|
709
709
|
*/
|
|
710
|
-
type?: LifecyclePolicyType;
|
|
710
|
+
type?: LifecyclePolicyType | undefined;
|
|
711
711
|
/**
|
|
712
712
|
* <p>The name of OpenSearch Serverless index resource.</p>
|
|
713
713
|
* @public
|
|
714
714
|
*/
|
|
715
|
-
resource?: string;
|
|
715
|
+
resource?: string | undefined;
|
|
716
716
|
/**
|
|
717
717
|
* <p>A description of the error. For example, <code>The specified Index resource is not found</code>.</p>
|
|
718
718
|
* @public
|
|
719
719
|
*/
|
|
720
|
-
errorMessage?: string;
|
|
720
|
+
errorMessage?: string | undefined;
|
|
721
721
|
/**
|
|
722
722
|
* <p>The error code for the request.</p>
|
|
723
723
|
* @public
|
|
724
724
|
*/
|
|
725
|
-
errorCode?: string;
|
|
725
|
+
errorCode?: string | undefined;
|
|
726
726
|
}
|
|
727
727
|
/**
|
|
728
728
|
* @public
|
|
@@ -732,12 +732,12 @@ export interface BatchGetEffectiveLifecyclePolicyResponse {
|
|
|
732
732
|
* <p>A list of lifecycle policies applied to the OpenSearch Serverless indexes.</p>
|
|
733
733
|
* @public
|
|
734
734
|
*/
|
|
735
|
-
effectiveLifecyclePolicyDetails?: EffectiveLifecyclePolicyDetail[];
|
|
735
|
+
effectiveLifecyclePolicyDetails?: EffectiveLifecyclePolicyDetail[] | undefined;
|
|
736
736
|
/**
|
|
737
737
|
* <p>A list of resources for which retrieval failed.</p>
|
|
738
738
|
* @public
|
|
739
739
|
*/
|
|
740
|
-
effectiveLifecyclePolicyErrorDetails?: EffectiveLifecyclePolicyErrorDetail[];
|
|
740
|
+
effectiveLifecyclePolicyErrorDetails?: EffectiveLifecyclePolicyErrorDetail[] | undefined;
|
|
741
741
|
}
|
|
742
742
|
/**
|
|
743
743
|
* <p>The unique identifiers of policy types and policy names.</p>
|
|
@@ -774,37 +774,37 @@ export interface LifecyclePolicyDetail {
|
|
|
774
774
|
* <p>The type of lifecycle policy.</p>
|
|
775
775
|
* @public
|
|
776
776
|
*/
|
|
777
|
-
type?: LifecyclePolicyType;
|
|
777
|
+
type?: LifecyclePolicyType | undefined;
|
|
778
778
|
/**
|
|
779
779
|
* <p>The name of the lifecycle policy.</p>
|
|
780
780
|
* @public
|
|
781
781
|
*/
|
|
782
|
-
name?: string;
|
|
782
|
+
name?: string | undefined;
|
|
783
783
|
/**
|
|
784
784
|
* <p>The version of the lifecycle policy.</p>
|
|
785
785
|
* @public
|
|
786
786
|
*/
|
|
787
|
-
policyVersion?: string;
|
|
787
|
+
policyVersion?: string | undefined;
|
|
788
788
|
/**
|
|
789
789
|
* <p>The description of the lifecycle policy.</p>
|
|
790
790
|
* @public
|
|
791
791
|
*/
|
|
792
|
-
description?: string;
|
|
792
|
+
description?: string | undefined;
|
|
793
793
|
/**
|
|
794
794
|
* <p>The JSON policy document without any whitespaces.</p>
|
|
795
795
|
* @public
|
|
796
796
|
*/
|
|
797
|
-
policy?: __DocumentType;
|
|
797
|
+
policy?: __DocumentType | undefined;
|
|
798
798
|
/**
|
|
799
799
|
* <p>The date the lifecycle policy was created.</p>
|
|
800
800
|
* @public
|
|
801
801
|
*/
|
|
802
|
-
createdDate?: number;
|
|
802
|
+
createdDate?: number | undefined;
|
|
803
803
|
/**
|
|
804
804
|
* <p>The timestamp of when the lifecycle policy was last modified.</p>
|
|
805
805
|
* @public
|
|
806
806
|
*/
|
|
807
|
-
lastModifiedDate?: number;
|
|
807
|
+
lastModifiedDate?: number | undefined;
|
|
808
808
|
}
|
|
809
809
|
/**
|
|
810
810
|
* <p>Error information for an OpenSearch Serverless request.</p>
|
|
@@ -815,22 +815,22 @@ export interface LifecyclePolicyErrorDetail {
|
|
|
815
815
|
* <p>The type of lifecycle policy.</p>
|
|
816
816
|
* @public
|
|
817
817
|
*/
|
|
818
|
-
type?: LifecyclePolicyType;
|
|
818
|
+
type?: LifecyclePolicyType | undefined;
|
|
819
819
|
/**
|
|
820
820
|
* <p>The name of the lifecycle policy.</p>
|
|
821
821
|
* @public
|
|
822
822
|
*/
|
|
823
|
-
name?: string;
|
|
823
|
+
name?: string | undefined;
|
|
824
824
|
/**
|
|
825
825
|
* <p>A description of the error. For example, <code>The specified Lifecycle Policy is not found</code>.</p>
|
|
826
826
|
* @public
|
|
827
827
|
*/
|
|
828
|
-
errorMessage?: string;
|
|
828
|
+
errorMessage?: string | undefined;
|
|
829
829
|
/**
|
|
830
830
|
* <p>The error code for the request. For example, <code>NOT_FOUND</code>.</p>
|
|
831
831
|
* @public
|
|
832
832
|
*/
|
|
833
|
-
errorCode?: string;
|
|
833
|
+
errorCode?: string | undefined;
|
|
834
834
|
}
|
|
835
835
|
/**
|
|
836
836
|
* @public
|
|
@@ -840,12 +840,12 @@ export interface BatchGetLifecyclePolicyResponse {
|
|
|
840
840
|
* <p>A list of lifecycle policies matched to the input policy name and policy type.</p>
|
|
841
841
|
* @public
|
|
842
842
|
*/
|
|
843
|
-
lifecyclePolicyDetails?: LifecyclePolicyDetail[];
|
|
843
|
+
lifecyclePolicyDetails?: LifecyclePolicyDetail[] | undefined;
|
|
844
844
|
/**
|
|
845
845
|
* <p>A list of lifecycle policy names and policy types for which retrieval failed.</p>
|
|
846
846
|
* @public
|
|
847
847
|
*/
|
|
848
|
-
lifecyclePolicyErrorDetails?: LifecyclePolicyErrorDetail[];
|
|
848
|
+
lifecyclePolicyErrorDetails?: LifecyclePolicyErrorDetail[] | undefined;
|
|
849
849
|
}
|
|
850
850
|
/**
|
|
851
851
|
* @public
|
|
@@ -892,48 +892,48 @@ export interface VpcEndpointDetail {
|
|
|
892
892
|
* <p>The unique identifier of the endpoint.</p>
|
|
893
893
|
* @public
|
|
894
894
|
*/
|
|
895
|
-
id?: string;
|
|
895
|
+
id?: string | undefined;
|
|
896
896
|
/**
|
|
897
897
|
* <p>The name of the endpoint.</p>
|
|
898
898
|
* @public
|
|
899
899
|
*/
|
|
900
|
-
name?: string;
|
|
900
|
+
name?: string | undefined;
|
|
901
901
|
/**
|
|
902
902
|
* <p>The ID of the VPC from which you access OpenSearch Serverless.</p>
|
|
903
903
|
* @public
|
|
904
904
|
*/
|
|
905
|
-
vpcId?: string;
|
|
905
|
+
vpcId?: string | undefined;
|
|
906
906
|
/**
|
|
907
907
|
* <p>The ID of the subnets from which you access OpenSearch Serverless.</p>
|
|
908
908
|
* @public
|
|
909
909
|
*/
|
|
910
|
-
subnetIds?: string[];
|
|
910
|
+
subnetIds?: string[] | undefined;
|
|
911
911
|
/**
|
|
912
912
|
* <p>The unique identifiers of the security groups that define the ports, protocols, and
|
|
913
913
|
* sources for inbound traffic that you are authorizing into your endpoint.</p>
|
|
914
914
|
* @public
|
|
915
915
|
*/
|
|
916
|
-
securityGroupIds?: string[];
|
|
916
|
+
securityGroupIds?: string[] | undefined;
|
|
917
917
|
/**
|
|
918
918
|
* <p>The current status of the endpoint.</p>
|
|
919
919
|
* @public
|
|
920
920
|
*/
|
|
921
|
-
status?: VpcEndpointStatus;
|
|
921
|
+
status?: VpcEndpointStatus | undefined;
|
|
922
922
|
/**
|
|
923
923
|
* <p>The date the endpoint was created.</p>
|
|
924
924
|
* @public
|
|
925
925
|
*/
|
|
926
|
-
createdDate?: number;
|
|
926
|
+
createdDate?: number | undefined;
|
|
927
927
|
/**
|
|
928
928
|
* <p>A failure code associated with the request.</p>
|
|
929
929
|
* @public
|
|
930
930
|
*/
|
|
931
|
-
failureCode?: string;
|
|
931
|
+
failureCode?: string | undefined;
|
|
932
932
|
/**
|
|
933
933
|
* <p>A message associated with the failure code.</p>
|
|
934
934
|
* @public
|
|
935
935
|
*/
|
|
936
|
-
failureMessage?: string;
|
|
936
|
+
failureMessage?: string | undefined;
|
|
937
937
|
}
|
|
938
938
|
/**
|
|
939
939
|
* <p>Error information for a failed <code>BatchGetVpcEndpoint</code> request.</p>
|
|
@@ -944,17 +944,17 @@ export interface VpcEndpointErrorDetail {
|
|
|
944
944
|
* <p>The unique identifier of the VPC endpoint.</p>
|
|
945
945
|
* @public
|
|
946
946
|
*/
|
|
947
|
-
id?: string;
|
|
947
|
+
id?: string | undefined;
|
|
948
948
|
/**
|
|
949
949
|
* <p>An error message describing the reason for the failure.</p>
|
|
950
950
|
* @public
|
|
951
951
|
*/
|
|
952
|
-
errorMessage?: string;
|
|
952
|
+
errorMessage?: string | undefined;
|
|
953
953
|
/**
|
|
954
954
|
* <p>The error code for the failed request.</p>
|
|
955
955
|
* @public
|
|
956
956
|
*/
|
|
957
|
-
errorCode?: string;
|
|
957
|
+
errorCode?: string | undefined;
|
|
958
958
|
}
|
|
959
959
|
/**
|
|
960
960
|
* @public
|
|
@@ -964,12 +964,12 @@ export interface BatchGetVpcEndpointResponse {
|
|
|
964
964
|
* <p>Details about the specified VPC endpoint.</p>
|
|
965
965
|
* @public
|
|
966
966
|
*/
|
|
967
|
-
vpcEndpointDetails?: VpcEndpointDetail[];
|
|
967
|
+
vpcEndpointDetails?: VpcEndpointDetail[] | undefined;
|
|
968
968
|
/**
|
|
969
969
|
* <p>Error information for a failed request.</p>
|
|
970
970
|
* @public
|
|
971
971
|
*/
|
|
972
|
-
vpcEndpointErrorDetails?: VpcEndpointErrorDetail[];
|
|
972
|
+
vpcEndpointErrorDetails?: VpcEndpointErrorDetail[] | undefined;
|
|
973
973
|
}
|
|
974
974
|
/**
|
|
975
975
|
* <p>A map of key-value pairs associated to an OpenSearch Serverless resource.</p>
|
|
@@ -1000,27 +1000,27 @@ export interface CreateCollectionRequest {
|
|
|
1000
1000
|
* <p>The type of collection.</p>
|
|
1001
1001
|
* @public
|
|
1002
1002
|
*/
|
|
1003
|
-
type?: CollectionType;
|
|
1003
|
+
type?: CollectionType | undefined;
|
|
1004
1004
|
/**
|
|
1005
1005
|
* <p>Description of the collection.</p>
|
|
1006
1006
|
* @public
|
|
1007
1007
|
*/
|
|
1008
|
-
description?: string;
|
|
1008
|
+
description?: string | undefined;
|
|
1009
1009
|
/**
|
|
1010
1010
|
* <p>An arbitrary set of tags (key–value pairs) to associate with the OpenSearch Serverless collection.</p>
|
|
1011
1011
|
* @public
|
|
1012
1012
|
*/
|
|
1013
|
-
tags?: Tag[];
|
|
1013
|
+
tags?: Tag[] | undefined;
|
|
1014
1014
|
/**
|
|
1015
1015
|
* <p>Indicates whether standby replicas should be used for a collection.</p>
|
|
1016
1016
|
* @public
|
|
1017
1017
|
*/
|
|
1018
|
-
standbyReplicas?: StandbyReplicas;
|
|
1018
|
+
standbyReplicas?: StandbyReplicas | undefined;
|
|
1019
1019
|
/**
|
|
1020
1020
|
* <p>Unique, case-sensitive identifier to ensure idempotency of the request.</p>
|
|
1021
1021
|
* @public
|
|
1022
1022
|
*/
|
|
1023
|
-
clientToken?: string;
|
|
1023
|
+
clientToken?: string | undefined;
|
|
1024
1024
|
}
|
|
1025
1025
|
/**
|
|
1026
1026
|
* <p>Details about the created OpenSearch Serverless collection.</p>
|
|
@@ -1031,52 +1031,52 @@ export interface CreateCollectionDetail {
|
|
|
1031
1031
|
* <p>The unique identifier of the collection.</p>
|
|
1032
1032
|
* @public
|
|
1033
1033
|
*/
|
|
1034
|
-
id?: string;
|
|
1034
|
+
id?: string | undefined;
|
|
1035
1035
|
/**
|
|
1036
1036
|
* <p>The name of the collection.</p>
|
|
1037
1037
|
* @public
|
|
1038
1038
|
*/
|
|
1039
|
-
name?: string;
|
|
1039
|
+
name?: string | undefined;
|
|
1040
1040
|
/**
|
|
1041
1041
|
* <p>The current status of the collection.</p>
|
|
1042
1042
|
* @public
|
|
1043
1043
|
*/
|
|
1044
|
-
status?: CollectionStatus;
|
|
1044
|
+
status?: CollectionStatus | undefined;
|
|
1045
1045
|
/**
|
|
1046
1046
|
* <p>The type of collection.</p>
|
|
1047
1047
|
* @public
|
|
1048
1048
|
*/
|
|
1049
|
-
type?: CollectionType;
|
|
1049
|
+
type?: CollectionType | undefined;
|
|
1050
1050
|
/**
|
|
1051
1051
|
* <p>A description of the collection.</p>
|
|
1052
1052
|
* @public
|
|
1053
1053
|
*/
|
|
1054
|
-
description?: string;
|
|
1054
|
+
description?: string | undefined;
|
|
1055
1055
|
/**
|
|
1056
1056
|
* <p>The Amazon Resource Name (ARN) of the collection.</p>
|
|
1057
1057
|
* @public
|
|
1058
1058
|
*/
|
|
1059
|
-
arn?: string;
|
|
1059
|
+
arn?: string | undefined;
|
|
1060
1060
|
/**
|
|
1061
1061
|
* <p>The Amazon Resource Name (ARN) of the KMS key with which to encrypt the collection.</p>
|
|
1062
1062
|
* @public
|
|
1063
1063
|
*/
|
|
1064
|
-
kmsKeyArn?: string;
|
|
1064
|
+
kmsKeyArn?: string | undefined;
|
|
1065
1065
|
/**
|
|
1066
1066
|
* <p>Creates details about an OpenSearch Serverless collection.</p>
|
|
1067
1067
|
* @public
|
|
1068
1068
|
*/
|
|
1069
|
-
standbyReplicas?: StandbyReplicas;
|
|
1069
|
+
standbyReplicas?: StandbyReplicas | undefined;
|
|
1070
1070
|
/**
|
|
1071
1071
|
* <p>The Epoch time when the collection was created.</p>
|
|
1072
1072
|
* @public
|
|
1073
1073
|
*/
|
|
1074
|
-
createdDate?: number;
|
|
1074
|
+
createdDate?: number | undefined;
|
|
1075
1075
|
/**
|
|
1076
1076
|
* <p>The date and time when the collection was last modified.</p>
|
|
1077
1077
|
* @public
|
|
1078
1078
|
*/
|
|
1079
|
-
lastModifiedDate?: number;
|
|
1079
|
+
lastModifiedDate?: number | undefined;
|
|
1080
1080
|
}
|
|
1081
1081
|
/**
|
|
1082
1082
|
* @public
|
|
@@ -1086,7 +1086,7 @@ export interface CreateCollectionResponse {
|
|
|
1086
1086
|
* <p>Details about the collection.</p>
|
|
1087
1087
|
* @public
|
|
1088
1088
|
*/
|
|
1089
|
-
createCollectionDetail?: CreateCollectionDetail;
|
|
1089
|
+
createCollectionDetail?: CreateCollectionDetail | undefined;
|
|
1090
1090
|
}
|
|
1091
1091
|
/**
|
|
1092
1092
|
* <p>Thrown when the collection you're attempting to create results in a number of search or indexing OCUs that exceeds the account limit. </p>
|
|
@@ -1114,7 +1114,7 @@ export interface DeleteCollectionRequest {
|
|
|
1114
1114
|
* <p>A unique, case-sensitive identifier to ensure idempotency of the request.</p>
|
|
1115
1115
|
* @public
|
|
1116
1116
|
*/
|
|
1117
|
-
clientToken?: string;
|
|
1117
|
+
clientToken?: string | undefined;
|
|
1118
1118
|
}
|
|
1119
1119
|
/**
|
|
1120
1120
|
* <p>Details about a deleted OpenSearch Serverless collection.</p>
|
|
@@ -1125,17 +1125,17 @@ export interface DeleteCollectionDetail {
|
|
|
1125
1125
|
* <p>The unique identifier of the collection.</p>
|
|
1126
1126
|
* @public
|
|
1127
1127
|
*/
|
|
1128
|
-
id?: string;
|
|
1128
|
+
id?: string | undefined;
|
|
1129
1129
|
/**
|
|
1130
1130
|
* <p>The name of the collection.</p>
|
|
1131
1131
|
* @public
|
|
1132
1132
|
*/
|
|
1133
|
-
name?: string;
|
|
1133
|
+
name?: string | undefined;
|
|
1134
1134
|
/**
|
|
1135
1135
|
* <p>The current status of the collection.</p>
|
|
1136
1136
|
* @public
|
|
1137
1137
|
*/
|
|
1138
|
-
status?: CollectionStatus;
|
|
1138
|
+
status?: CollectionStatus | undefined;
|
|
1139
1139
|
}
|
|
1140
1140
|
/**
|
|
1141
1141
|
* @public
|
|
@@ -1145,7 +1145,7 @@ export interface DeleteCollectionResponse {
|
|
|
1145
1145
|
* <p>Details of the deleted collection.</p>
|
|
1146
1146
|
* @public
|
|
1147
1147
|
*/
|
|
1148
|
-
deleteCollectionDetail?: DeleteCollectionDetail;
|
|
1148
|
+
deleteCollectionDetail?: DeleteCollectionDetail | undefined;
|
|
1149
1149
|
}
|
|
1150
1150
|
/**
|
|
1151
1151
|
* <p>A list of filter keys that you can use for LIST, UPDATE, and DELETE requests to OpenSearch Serverless
|
|
@@ -1157,12 +1157,12 @@ export interface CollectionFilters {
|
|
|
1157
1157
|
* <p>The name of the collection.</p>
|
|
1158
1158
|
* @public
|
|
1159
1159
|
*/
|
|
1160
|
-
name?: string;
|
|
1160
|
+
name?: string | undefined;
|
|
1161
1161
|
/**
|
|
1162
1162
|
* <p>The current status of the collection.</p>
|
|
1163
1163
|
* @public
|
|
1164
1164
|
*/
|
|
1165
|
-
status?: CollectionStatus;
|
|
1165
|
+
status?: CollectionStatus | undefined;
|
|
1166
1166
|
}
|
|
1167
1167
|
/**
|
|
1168
1168
|
* @public
|
|
@@ -1172,20 +1172,20 @@ export interface ListCollectionsRequest {
|
|
|
1172
1172
|
* <p> A list of filter names and values that you can use for requests.</p>
|
|
1173
1173
|
* @public
|
|
1174
1174
|
*/
|
|
1175
|
-
collectionFilters?: CollectionFilters;
|
|
1175
|
+
collectionFilters?: CollectionFilters | undefined;
|
|
1176
1176
|
/**
|
|
1177
1177
|
* <p>If your initial <code>ListCollections</code> operation returns a <code>nextToken</code>,
|
|
1178
1178
|
* you can include the returned <code>nextToken</code> in subsequent <code>ListCollections</code> operations,
|
|
1179
1179
|
* which returns results in the next page.</p>
|
|
1180
1180
|
* @public
|
|
1181
1181
|
*/
|
|
1182
|
-
nextToken?: string;
|
|
1182
|
+
nextToken?: string | undefined;
|
|
1183
1183
|
/**
|
|
1184
1184
|
* <p>The maximum number of results to return. Default is 20. You can use
|
|
1185
1185
|
* <code>nextToken</code> to get the next page of results.</p>
|
|
1186
1186
|
* @public
|
|
1187
1187
|
*/
|
|
1188
|
-
maxResults?: number;
|
|
1188
|
+
maxResults?: number | undefined;
|
|
1189
1189
|
}
|
|
1190
1190
|
/**
|
|
1191
1191
|
* <p>Details about each OpenSearch Serverless collection.</p>
|
|
@@ -1196,22 +1196,22 @@ export interface CollectionSummary {
|
|
|
1196
1196
|
* <p>The unique identifier of the collection.</p>
|
|
1197
1197
|
* @public
|
|
1198
1198
|
*/
|
|
1199
|
-
id?: string;
|
|
1199
|
+
id?: string | undefined;
|
|
1200
1200
|
/**
|
|
1201
1201
|
* <p>The name of the collection.</p>
|
|
1202
1202
|
* @public
|
|
1203
1203
|
*/
|
|
1204
|
-
name?: string;
|
|
1204
|
+
name?: string | undefined;
|
|
1205
1205
|
/**
|
|
1206
1206
|
* <p>The current status of the collection.</p>
|
|
1207
1207
|
* @public
|
|
1208
1208
|
*/
|
|
1209
|
-
status?: CollectionStatus;
|
|
1209
|
+
status?: CollectionStatus | undefined;
|
|
1210
1210
|
/**
|
|
1211
1211
|
* <p>The Amazon Resource Name (ARN) of the collection.</p>
|
|
1212
1212
|
* @public
|
|
1213
1213
|
*/
|
|
1214
|
-
arn?: string;
|
|
1214
|
+
arn?: string | undefined;
|
|
1215
1215
|
}
|
|
1216
1216
|
/**
|
|
1217
1217
|
* @public
|
|
@@ -1221,14 +1221,14 @@ export interface ListCollectionsResponse {
|
|
|
1221
1221
|
* <p>Details about each collection.</p>
|
|
1222
1222
|
* @public
|
|
1223
1223
|
*/
|
|
1224
|
-
collectionSummaries?: CollectionSummary[];
|
|
1224
|
+
collectionSummaries?: CollectionSummary[] | undefined;
|
|
1225
1225
|
/**
|
|
1226
1226
|
* <p>When <code>nextToken</code> is returned, there are more results available.
|
|
1227
1227
|
* The value of <code>nextToken</code> is a unique pagination token for each page.
|
|
1228
1228
|
* Make the call again using the returned token to retrieve the next page.</p>
|
|
1229
1229
|
* @public
|
|
1230
1230
|
*/
|
|
1231
|
-
nextToken?: string;
|
|
1231
|
+
nextToken?: string | undefined;
|
|
1232
1232
|
}
|
|
1233
1233
|
/**
|
|
1234
1234
|
* @public
|
|
@@ -1243,12 +1243,12 @@ export interface UpdateCollectionRequest {
|
|
|
1243
1243
|
* <p>A description of the collection.</p>
|
|
1244
1244
|
* @public
|
|
1245
1245
|
*/
|
|
1246
|
-
description?: string;
|
|
1246
|
+
description?: string | undefined;
|
|
1247
1247
|
/**
|
|
1248
1248
|
* <p>Unique, case-sensitive identifier to ensure idempotency of the request.</p>
|
|
1249
1249
|
* @public
|
|
1250
1250
|
*/
|
|
1251
|
-
clientToken?: string;
|
|
1251
|
+
clientToken?: string | undefined;
|
|
1252
1252
|
}
|
|
1253
1253
|
/**
|
|
1254
1254
|
* <p>Details about an updated OpenSearch Serverless collection.</p>
|
|
@@ -1259,42 +1259,42 @@ export interface UpdateCollectionDetail {
|
|
|
1259
1259
|
* <p>The unique identifier of the collection.</p>
|
|
1260
1260
|
* @public
|
|
1261
1261
|
*/
|
|
1262
|
-
id?: string;
|
|
1262
|
+
id?: string | undefined;
|
|
1263
1263
|
/**
|
|
1264
1264
|
* <p>The name of the collection.</p>
|
|
1265
1265
|
* @public
|
|
1266
1266
|
*/
|
|
1267
|
-
name?: string;
|
|
1267
|
+
name?: string | undefined;
|
|
1268
1268
|
/**
|
|
1269
1269
|
* <p>The current status of the collection.</p>
|
|
1270
1270
|
* @public
|
|
1271
1271
|
*/
|
|
1272
|
-
status?: CollectionStatus;
|
|
1272
|
+
status?: CollectionStatus | undefined;
|
|
1273
1273
|
/**
|
|
1274
1274
|
* <p>The collection type.</p>
|
|
1275
1275
|
* @public
|
|
1276
1276
|
*/
|
|
1277
|
-
type?: CollectionType;
|
|
1277
|
+
type?: CollectionType | undefined;
|
|
1278
1278
|
/**
|
|
1279
1279
|
* <p>The description of the collection.</p>
|
|
1280
1280
|
* @public
|
|
1281
1281
|
*/
|
|
1282
|
-
description?: string;
|
|
1282
|
+
description?: string | undefined;
|
|
1283
1283
|
/**
|
|
1284
1284
|
* <p>The Amazon Resource Name (ARN) of the collection.</p>
|
|
1285
1285
|
* @public
|
|
1286
1286
|
*/
|
|
1287
|
-
arn?: string;
|
|
1287
|
+
arn?: string | undefined;
|
|
1288
1288
|
/**
|
|
1289
1289
|
* <p>The date and time when the collection was created.</p>
|
|
1290
1290
|
* @public
|
|
1291
1291
|
*/
|
|
1292
|
-
createdDate?: number;
|
|
1292
|
+
createdDate?: number | undefined;
|
|
1293
1293
|
/**
|
|
1294
1294
|
* <p>The date and time when the collection was last modified.</p>
|
|
1295
1295
|
* @public
|
|
1296
1296
|
*/
|
|
1297
|
-
lastModifiedDate?: number;
|
|
1297
|
+
lastModifiedDate?: number | undefined;
|
|
1298
1298
|
}
|
|
1299
1299
|
/**
|
|
1300
1300
|
* @public
|
|
@@ -1304,7 +1304,7 @@ export interface UpdateCollectionResponse {
|
|
|
1304
1304
|
* <p>Details about the updated collection.</p>
|
|
1305
1305
|
* @public
|
|
1306
1306
|
*/
|
|
1307
|
-
updateCollectionDetail?: UpdateCollectionDetail;
|
|
1307
|
+
updateCollectionDetail?: UpdateCollectionDetail | undefined;
|
|
1308
1308
|
}
|
|
1309
1309
|
/**
|
|
1310
1310
|
* @public
|
|
@@ -1360,12 +1360,12 @@ export interface CreateIamIdentityCenterConfigOptions {
|
|
|
1360
1360
|
* <p>The user attribute for this IAM Identity Center integration. Defaults to <code>UserId</code>.</p>
|
|
1361
1361
|
* @public
|
|
1362
1362
|
*/
|
|
1363
|
-
userAttribute?: IamIdentityCenterUserAttribute;
|
|
1363
|
+
userAttribute?: IamIdentityCenterUserAttribute | undefined;
|
|
1364
1364
|
/**
|
|
1365
1365
|
* <p>The group attribute for this IAM Identity Center integration. Defaults to <code>GroupId</code>.</p>
|
|
1366
1366
|
* @public
|
|
1367
1367
|
*/
|
|
1368
|
-
groupAttribute?: IamIdentityCenterGroupAttribute;
|
|
1368
|
+
groupAttribute?: IamIdentityCenterGroupAttribute | undefined;
|
|
1369
1369
|
}
|
|
1370
1370
|
/**
|
|
1371
1371
|
* @public
|
|
@@ -1385,7 +1385,7 @@ export interface CreateLifecyclePolicyRequest {
|
|
|
1385
1385
|
* <p>A description of the lifecycle policy.</p>
|
|
1386
1386
|
* @public
|
|
1387
1387
|
*/
|
|
1388
|
-
description?: string;
|
|
1388
|
+
description?: string | undefined;
|
|
1389
1389
|
/**
|
|
1390
1390
|
* <p>The JSON policy document to use as the content for the lifecycle policy.</p>
|
|
1391
1391
|
* @public
|
|
@@ -1395,7 +1395,7 @@ export interface CreateLifecyclePolicyRequest {
|
|
|
1395
1395
|
* <p>A unique, case-sensitive identifier to ensure idempotency of the request.</p>
|
|
1396
1396
|
* @public
|
|
1397
1397
|
*/
|
|
1398
|
-
clientToken?: string;
|
|
1398
|
+
clientToken?: string | undefined;
|
|
1399
1399
|
}
|
|
1400
1400
|
/**
|
|
1401
1401
|
* @public
|
|
@@ -1405,7 +1405,7 @@ export interface CreateLifecyclePolicyResponse {
|
|
|
1405
1405
|
* <p>Details about the created lifecycle policy.</p>
|
|
1406
1406
|
* @public
|
|
1407
1407
|
*/
|
|
1408
|
-
lifecyclePolicyDetail?: LifecyclePolicyDetail;
|
|
1408
|
+
lifecyclePolicyDetail?: LifecyclePolicyDetail | undefined;
|
|
1409
1409
|
}
|
|
1410
1410
|
/**
|
|
1411
1411
|
* <p>Describes SAML options for an OpenSearch Serverless security configuration in the form of a key-value
|
|
@@ -1422,17 +1422,17 @@ export interface SamlConfigOptions {
|
|
|
1422
1422
|
* <p>A user attribute for this SAML integration.</p>
|
|
1423
1423
|
* @public
|
|
1424
1424
|
*/
|
|
1425
|
-
userAttribute?: string;
|
|
1425
|
+
userAttribute?: string | undefined;
|
|
1426
1426
|
/**
|
|
1427
1427
|
* <p>The group attribute for this SAML integration.</p>
|
|
1428
1428
|
* @public
|
|
1429
1429
|
*/
|
|
1430
|
-
groupAttribute?: string;
|
|
1430
|
+
groupAttribute?: string | undefined;
|
|
1431
1431
|
/**
|
|
1432
1432
|
* <p>The session timeout, in minutes. Default is 60 minutes (12 hours).</p>
|
|
1433
1433
|
* @public
|
|
1434
1434
|
*/
|
|
1435
|
-
sessionTimeout?: number;
|
|
1435
|
+
sessionTimeout?: number | undefined;
|
|
1436
1436
|
}
|
|
1437
1437
|
/**
|
|
1438
1438
|
* @public
|
|
@@ -1470,23 +1470,23 @@ export interface CreateSecurityConfigRequest {
|
|
|
1470
1470
|
* <p>A description of the security configuration.</p>
|
|
1471
1471
|
* @public
|
|
1472
1472
|
*/
|
|
1473
|
-
description?: string;
|
|
1473
|
+
description?: string | undefined;
|
|
1474
1474
|
/**
|
|
1475
1475
|
* <p>Describes SAML options in in the form of a key-value map. This field is required if
|
|
1476
1476
|
* you specify <code>saml</code> for the <code>type</code> parameter.</p>
|
|
1477
1477
|
* @public
|
|
1478
1478
|
*/
|
|
1479
|
-
samlOptions?: SamlConfigOptions;
|
|
1479
|
+
samlOptions?: SamlConfigOptions | undefined;
|
|
1480
1480
|
/**
|
|
1481
1481
|
* <p>Describes IAM Identity Center options in the form of a key-value map. This field is required if you specify iamidentitycenter for the type parameter.</p>
|
|
1482
1482
|
* @public
|
|
1483
1483
|
*/
|
|
1484
|
-
iamIdentityCenterOptions?: CreateIamIdentityCenterConfigOptions;
|
|
1484
|
+
iamIdentityCenterOptions?: CreateIamIdentityCenterConfigOptions | undefined;
|
|
1485
1485
|
/**
|
|
1486
1486
|
* <p>Unique, case-sensitive identifier to ensure idempotency of the request.</p>
|
|
1487
1487
|
* @public
|
|
1488
1488
|
*/
|
|
1489
|
-
clientToken?: string;
|
|
1489
|
+
clientToken?: string | undefined;
|
|
1490
1490
|
}
|
|
1491
1491
|
/**
|
|
1492
1492
|
* <p>Describes IAM Identity Center options for an OpenSearch Serverless security configuration in the form of a key-value map.</p>
|
|
@@ -1497,33 +1497,33 @@ export interface IamIdentityCenterConfigOptions {
|
|
|
1497
1497
|
* <p>The ARN of the IAM Identity Center instance used to integrate with OpenSearch Serverless.</p>
|
|
1498
1498
|
* @public
|
|
1499
1499
|
*/
|
|
1500
|
-
instanceArn?: string;
|
|
1500
|
+
instanceArn?: string | undefined;
|
|
1501
1501
|
/**
|
|
1502
1502
|
* <p>The ARN of the IAM Identity Center application used to integrate with OpenSearch Serverless.</p>
|
|
1503
1503
|
* @public
|
|
1504
1504
|
*/
|
|
1505
|
-
applicationArn?: string;
|
|
1505
|
+
applicationArn?: string | undefined;
|
|
1506
1506
|
/**
|
|
1507
1507
|
* <p>The name of the IAM Identity Center application used to integrate with OpenSearch Serverless.</p>
|
|
1508
1508
|
* @public
|
|
1509
1509
|
*/
|
|
1510
|
-
applicationName?: string;
|
|
1510
|
+
applicationName?: string | undefined;
|
|
1511
1511
|
/**
|
|
1512
1512
|
* <p>The description of the IAM Identity Center application used to integrate with OpenSearch Serverless.</p>
|
|
1513
1513
|
* @public
|
|
1514
1514
|
*/
|
|
1515
|
-
applicationDescription?: string;
|
|
1515
|
+
applicationDescription?: string | undefined;
|
|
1516
1516
|
/**
|
|
1517
1517
|
* <p>The user attribute for this IAM Identity Center integration. Defaults to <code>UserId</code>
|
|
1518
1518
|
* </p>
|
|
1519
1519
|
* @public
|
|
1520
1520
|
*/
|
|
1521
|
-
userAttribute?: IamIdentityCenterUserAttribute;
|
|
1521
|
+
userAttribute?: IamIdentityCenterUserAttribute | undefined;
|
|
1522
1522
|
/**
|
|
1523
1523
|
* <p>The group attribute for this IAM Identity Center integration. Defaults to <code>GroupId</code>.</p>
|
|
1524
1524
|
* @public
|
|
1525
1525
|
*/
|
|
1526
|
-
groupAttribute?: IamIdentityCenterGroupAttribute;
|
|
1526
|
+
groupAttribute?: IamIdentityCenterGroupAttribute | undefined;
|
|
1527
1527
|
}
|
|
1528
1528
|
/**
|
|
1529
1529
|
* <p>Details about a security configuration for OpenSearch Serverless. </p>
|
|
@@ -1534,42 +1534,42 @@ export interface SecurityConfigDetail {
|
|
|
1534
1534
|
* <p>The unique identifier of the security configuration.</p>
|
|
1535
1535
|
* @public
|
|
1536
1536
|
*/
|
|
1537
|
-
id?: string;
|
|
1537
|
+
id?: string | undefined;
|
|
1538
1538
|
/**
|
|
1539
1539
|
* <p>The type of security configuration.</p>
|
|
1540
1540
|
* @public
|
|
1541
1541
|
*/
|
|
1542
|
-
type?: SecurityConfigType;
|
|
1542
|
+
type?: SecurityConfigType | undefined;
|
|
1543
1543
|
/**
|
|
1544
1544
|
* <p>The version of the security configuration.</p>
|
|
1545
1545
|
* @public
|
|
1546
1546
|
*/
|
|
1547
|
-
configVersion?: string;
|
|
1547
|
+
configVersion?: string | undefined;
|
|
1548
1548
|
/**
|
|
1549
1549
|
* <p>The description of the security configuration.</p>
|
|
1550
1550
|
* @public
|
|
1551
1551
|
*/
|
|
1552
|
-
description?: string;
|
|
1552
|
+
description?: string | undefined;
|
|
1553
1553
|
/**
|
|
1554
1554
|
* <p>SAML options for the security configuration in the form of a key-value map.</p>
|
|
1555
1555
|
* @public
|
|
1556
1556
|
*/
|
|
1557
|
-
samlOptions?: SamlConfigOptions;
|
|
1557
|
+
samlOptions?: SamlConfigOptions | undefined;
|
|
1558
1558
|
/**
|
|
1559
1559
|
* <p>Describes IAM Identity Center options in the form of a key-value map.</p>
|
|
1560
1560
|
* @public
|
|
1561
1561
|
*/
|
|
1562
|
-
iamIdentityCenterOptions?: IamIdentityCenterConfigOptions;
|
|
1562
|
+
iamIdentityCenterOptions?: IamIdentityCenterConfigOptions | undefined;
|
|
1563
1563
|
/**
|
|
1564
1564
|
* <p>The date the configuration was created.</p>
|
|
1565
1565
|
* @public
|
|
1566
1566
|
*/
|
|
1567
|
-
createdDate?: number;
|
|
1567
|
+
createdDate?: number | undefined;
|
|
1568
1568
|
/**
|
|
1569
1569
|
* <p>The timestamp of when the configuration was last modified.</p>
|
|
1570
1570
|
* @public
|
|
1571
1571
|
*/
|
|
1572
|
-
lastModifiedDate?: number;
|
|
1572
|
+
lastModifiedDate?: number | undefined;
|
|
1573
1573
|
}
|
|
1574
1574
|
/**
|
|
1575
1575
|
* @public
|
|
@@ -1579,7 +1579,7 @@ export interface CreateSecurityConfigResponse {
|
|
|
1579
1579
|
* <p>Details about the created security configuration. </p>
|
|
1580
1580
|
* @public
|
|
1581
1581
|
*/
|
|
1582
|
-
securityConfigDetail?: SecurityConfigDetail;
|
|
1582
|
+
securityConfigDetail?: SecurityConfigDetail | undefined;
|
|
1583
1583
|
}
|
|
1584
1584
|
/**
|
|
1585
1585
|
* @public
|
|
@@ -1618,7 +1618,7 @@ export interface CreateSecurityPolicyRequest {
|
|
|
1618
1618
|
* defined in the policy.</p>
|
|
1619
1619
|
* @public
|
|
1620
1620
|
*/
|
|
1621
|
-
description?: string;
|
|
1621
|
+
description?: string | undefined;
|
|
1622
1622
|
/**
|
|
1623
1623
|
* <p>The JSON policy document to use as the content for the new policy.</p>
|
|
1624
1624
|
* @public
|
|
@@ -1628,7 +1628,7 @@ export interface CreateSecurityPolicyRequest {
|
|
|
1628
1628
|
* <p>Unique, case-sensitive identifier to ensure idempotency of the request.</p>
|
|
1629
1629
|
* @public
|
|
1630
1630
|
*/
|
|
1631
|
-
clientToken?: string;
|
|
1631
|
+
clientToken?: string | undefined;
|
|
1632
1632
|
}
|
|
1633
1633
|
/**
|
|
1634
1634
|
* <p>Details about an OpenSearch Serverless security policy.</p>
|
|
@@ -1639,37 +1639,37 @@ export interface SecurityPolicyDetail {
|
|
|
1639
1639
|
* <p>The type of security policy.</p>
|
|
1640
1640
|
* @public
|
|
1641
1641
|
*/
|
|
1642
|
-
type?: SecurityPolicyType;
|
|
1642
|
+
type?: SecurityPolicyType | undefined;
|
|
1643
1643
|
/**
|
|
1644
1644
|
* <p>The name of the policy.</p>
|
|
1645
1645
|
* @public
|
|
1646
1646
|
*/
|
|
1647
|
-
name?: string;
|
|
1647
|
+
name?: string | undefined;
|
|
1648
1648
|
/**
|
|
1649
1649
|
* <p>The version of the policy.</p>
|
|
1650
1650
|
* @public
|
|
1651
1651
|
*/
|
|
1652
|
-
policyVersion?: string;
|
|
1652
|
+
policyVersion?: string | undefined;
|
|
1653
1653
|
/**
|
|
1654
1654
|
* <p>The description of the security policy.</p>
|
|
1655
1655
|
* @public
|
|
1656
1656
|
*/
|
|
1657
|
-
description?: string;
|
|
1657
|
+
description?: string | undefined;
|
|
1658
1658
|
/**
|
|
1659
1659
|
* <p>The JSON policy document without any whitespaces.</p>
|
|
1660
1660
|
* @public
|
|
1661
1661
|
*/
|
|
1662
|
-
policy?: __DocumentType;
|
|
1662
|
+
policy?: __DocumentType | undefined;
|
|
1663
1663
|
/**
|
|
1664
1664
|
* <p>The date the policy was created.</p>
|
|
1665
1665
|
* @public
|
|
1666
1666
|
*/
|
|
1667
|
-
createdDate?: number;
|
|
1667
|
+
createdDate?: number | undefined;
|
|
1668
1668
|
/**
|
|
1669
1669
|
* <p>The timestamp of when the policy was last modified.</p>
|
|
1670
1670
|
* @public
|
|
1671
1671
|
*/
|
|
1672
|
-
lastModifiedDate?: number;
|
|
1672
|
+
lastModifiedDate?: number | undefined;
|
|
1673
1673
|
}
|
|
1674
1674
|
/**
|
|
1675
1675
|
* @public
|
|
@@ -1679,7 +1679,7 @@ export interface CreateSecurityPolicyResponse {
|
|
|
1679
1679
|
* <p>Details about the created security policy.</p>
|
|
1680
1680
|
* @public
|
|
1681
1681
|
*/
|
|
1682
|
-
securityPolicyDetail?: SecurityPolicyDetail;
|
|
1682
|
+
securityPolicyDetail?: SecurityPolicyDetail | undefined;
|
|
1683
1683
|
}
|
|
1684
1684
|
/**
|
|
1685
1685
|
* @public
|
|
@@ -1705,12 +1705,12 @@ export interface CreateVpcEndpointRequest {
|
|
|
1705
1705
|
* sources for inbound traffic that you are authorizing into your endpoint.</p>
|
|
1706
1706
|
* @public
|
|
1707
1707
|
*/
|
|
1708
|
-
securityGroupIds?: string[];
|
|
1708
|
+
securityGroupIds?: string[] | undefined;
|
|
1709
1709
|
/**
|
|
1710
1710
|
* <p>Unique, case-sensitive identifier to ensure idempotency of the request.</p>
|
|
1711
1711
|
* @public
|
|
1712
1712
|
*/
|
|
1713
|
-
clientToken?: string;
|
|
1713
|
+
clientToken?: string | undefined;
|
|
1714
1714
|
}
|
|
1715
1715
|
/**
|
|
1716
1716
|
* <p>Creation details for an OpenSearch Serverless-managed interface endpoint. For more information, see
|
|
@@ -1722,17 +1722,17 @@ export interface CreateVpcEndpointDetail {
|
|
|
1722
1722
|
* <p>The unique identifier of the endpoint.</p>
|
|
1723
1723
|
* @public
|
|
1724
1724
|
*/
|
|
1725
|
-
id?: string;
|
|
1725
|
+
id?: string | undefined;
|
|
1726
1726
|
/**
|
|
1727
1727
|
* <p>The name of the endpoint.</p>
|
|
1728
1728
|
* @public
|
|
1729
1729
|
*/
|
|
1730
|
-
name?: string;
|
|
1730
|
+
name?: string | undefined;
|
|
1731
1731
|
/**
|
|
1732
1732
|
* <p>The current status in the endpoint creation process.</p>
|
|
1733
1733
|
* @public
|
|
1734
1734
|
*/
|
|
1735
|
-
status?: VpcEndpointStatus;
|
|
1735
|
+
status?: VpcEndpointStatus | undefined;
|
|
1736
1736
|
}
|
|
1737
1737
|
/**
|
|
1738
1738
|
* @public
|
|
@@ -1742,7 +1742,7 @@ export interface CreateVpcEndpointResponse {
|
|
|
1742
1742
|
* <p>Details about the created interface VPC endpoint.</p>
|
|
1743
1743
|
* @public
|
|
1744
1744
|
*/
|
|
1745
|
-
createVpcEndpointDetail?: CreateVpcEndpointDetail;
|
|
1745
|
+
createVpcEndpointDetail?: CreateVpcEndpointDetail | undefined;
|
|
1746
1746
|
}
|
|
1747
1747
|
/**
|
|
1748
1748
|
* @public
|
|
@@ -1762,7 +1762,7 @@ export interface DeleteLifecyclePolicyRequest {
|
|
|
1762
1762
|
* <p>Unique, case-sensitive identifier to ensure idempotency of the request.</p>
|
|
1763
1763
|
* @public
|
|
1764
1764
|
*/
|
|
1765
|
-
clientToken?: string;
|
|
1765
|
+
clientToken?: string | undefined;
|
|
1766
1766
|
}
|
|
1767
1767
|
/**
|
|
1768
1768
|
* @public
|
|
@@ -1784,7 +1784,7 @@ export interface DeleteSecurityConfigRequest {
|
|
|
1784
1784
|
* <p>Unique, case-sensitive identifier to ensure idempotency of the request.</p>
|
|
1785
1785
|
* @public
|
|
1786
1786
|
*/
|
|
1787
|
-
clientToken?: string;
|
|
1787
|
+
clientToken?: string | undefined;
|
|
1788
1788
|
}
|
|
1789
1789
|
/**
|
|
1790
1790
|
* @public
|
|
@@ -1809,7 +1809,7 @@ export interface DeleteSecurityPolicyRequest {
|
|
|
1809
1809
|
* <p>Unique, case-sensitive identifier to ensure idempotency of the request.</p>
|
|
1810
1810
|
* @public
|
|
1811
1811
|
*/
|
|
1812
|
-
clientToken?: string;
|
|
1812
|
+
clientToken?: string | undefined;
|
|
1813
1813
|
}
|
|
1814
1814
|
/**
|
|
1815
1815
|
* @public
|
|
@@ -1829,7 +1829,7 @@ export interface DeleteVpcEndpointRequest {
|
|
|
1829
1829
|
* <p>Unique, case-sensitive identifier to ensure idempotency of the request.</p>
|
|
1830
1830
|
* @public
|
|
1831
1831
|
*/
|
|
1832
|
-
clientToken?: string;
|
|
1832
|
+
clientToken?: string | undefined;
|
|
1833
1833
|
}
|
|
1834
1834
|
/**
|
|
1835
1835
|
* <p>Deletion details for an OpenSearch Serverless-managed interface endpoint.</p>
|
|
@@ -1840,17 +1840,17 @@ export interface DeleteVpcEndpointDetail {
|
|
|
1840
1840
|
* <p>The unique identifier of the endpoint.</p>
|
|
1841
1841
|
* @public
|
|
1842
1842
|
*/
|
|
1843
|
-
id?: string;
|
|
1843
|
+
id?: string | undefined;
|
|
1844
1844
|
/**
|
|
1845
1845
|
* <p>The name of the endpoint.</p>
|
|
1846
1846
|
* @public
|
|
1847
1847
|
*/
|
|
1848
|
-
name?: string;
|
|
1848
|
+
name?: string | undefined;
|
|
1849
1849
|
/**
|
|
1850
1850
|
* <p>The current status of the endpoint deletion process.</p>
|
|
1851
1851
|
* @public
|
|
1852
1852
|
*/
|
|
1853
|
-
status?: VpcEndpointStatus;
|
|
1853
|
+
status?: VpcEndpointStatus | undefined;
|
|
1854
1854
|
}
|
|
1855
1855
|
/**
|
|
1856
1856
|
* @public
|
|
@@ -1860,7 +1860,7 @@ export interface DeleteVpcEndpointResponse {
|
|
|
1860
1860
|
* <p>Details about the deleted endpoint.</p>
|
|
1861
1861
|
* @public
|
|
1862
1862
|
*/
|
|
1863
|
-
deleteVpcEndpointDetail?: DeleteVpcEndpointDetail;
|
|
1863
|
+
deleteVpcEndpointDetail?: DeleteVpcEndpointDetail | undefined;
|
|
1864
1864
|
}
|
|
1865
1865
|
/**
|
|
1866
1866
|
* @public
|
|
@@ -1875,7 +1875,7 @@ export interface GetAccountSettingsResponse {
|
|
|
1875
1875
|
* <p>OpenSearch Serverless-related details for the current account.</p>
|
|
1876
1876
|
* @public
|
|
1877
1877
|
*/
|
|
1878
|
-
accountSettingsDetail?: AccountSettingsDetail;
|
|
1878
|
+
accountSettingsDetail?: AccountSettingsDetail | undefined;
|
|
1879
1879
|
}
|
|
1880
1880
|
/**
|
|
1881
1881
|
* @public
|
|
@@ -1891,7 +1891,7 @@ export interface LifecyclePolicyStats {
|
|
|
1891
1891
|
* <p>The number of retention lifecycle policies in the current account.</p>
|
|
1892
1892
|
* @public
|
|
1893
1893
|
*/
|
|
1894
|
-
RetentionPolicyCount?: number;
|
|
1894
|
+
RetentionPolicyCount?: number | undefined;
|
|
1895
1895
|
}
|
|
1896
1896
|
/**
|
|
1897
1897
|
* <p>Statistics for an OpenSearch Serverless security configuration.</p>
|
|
@@ -1902,7 +1902,7 @@ export interface SecurityConfigStats {
|
|
|
1902
1902
|
* <p>The number of security configurations in the current account.</p>
|
|
1903
1903
|
* @public
|
|
1904
1904
|
*/
|
|
1905
|
-
SamlConfigCount?: number;
|
|
1905
|
+
SamlConfigCount?: number | undefined;
|
|
1906
1906
|
}
|
|
1907
1907
|
/**
|
|
1908
1908
|
* <p>Statistics for an OpenSearch Serverless security policy.</p>
|
|
@@ -1913,12 +1913,12 @@ export interface SecurityPolicyStats {
|
|
|
1913
1913
|
* <p>The number of encryption policies in the current account.</p>
|
|
1914
1914
|
* @public
|
|
1915
1915
|
*/
|
|
1916
|
-
EncryptionPolicyCount?: number;
|
|
1916
|
+
EncryptionPolicyCount?: number | undefined;
|
|
1917
1917
|
/**
|
|
1918
1918
|
* <p>The number of network policies in the current account.</p>
|
|
1919
1919
|
* @public
|
|
1920
1920
|
*/
|
|
1921
|
-
NetworkPolicyCount?: number;
|
|
1921
|
+
NetworkPolicyCount?: number | undefined;
|
|
1922
1922
|
}
|
|
1923
1923
|
/**
|
|
1924
1924
|
* @public
|
|
@@ -1928,28 +1928,28 @@ export interface GetPoliciesStatsResponse {
|
|
|
1928
1928
|
* <p>Information about the data access policies in your account.</p>
|
|
1929
1929
|
* @public
|
|
1930
1930
|
*/
|
|
1931
|
-
AccessPolicyStats?: AccessPolicyStats;
|
|
1931
|
+
AccessPolicyStats?: AccessPolicyStats | undefined;
|
|
1932
1932
|
/**
|
|
1933
1933
|
* <p>Information about the security policies in your account.</p>
|
|
1934
1934
|
* @public
|
|
1935
1935
|
*/
|
|
1936
|
-
SecurityPolicyStats?: SecurityPolicyStats;
|
|
1936
|
+
SecurityPolicyStats?: SecurityPolicyStats | undefined;
|
|
1937
1937
|
/**
|
|
1938
1938
|
* <p>Information about the security configurations in your account.</p>
|
|
1939
1939
|
* @public
|
|
1940
1940
|
*/
|
|
1941
|
-
SecurityConfigStats?: SecurityConfigStats;
|
|
1941
|
+
SecurityConfigStats?: SecurityConfigStats | undefined;
|
|
1942
1942
|
/**
|
|
1943
1943
|
* <p>Information about the lifecycle policies in your account.</p>
|
|
1944
1944
|
* @public
|
|
1945
1945
|
*/
|
|
1946
|
-
LifecyclePolicyStats?: LifecyclePolicyStats;
|
|
1946
|
+
LifecyclePolicyStats?: LifecyclePolicyStats | undefined;
|
|
1947
1947
|
/**
|
|
1948
1948
|
* <p>The total number of OpenSearch Serverless security policies and configurations in your
|
|
1949
1949
|
* account.</p>
|
|
1950
1950
|
* @public
|
|
1951
1951
|
*/
|
|
1952
|
-
TotalPolicyCount?: number;
|
|
1952
|
+
TotalPolicyCount?: number | undefined;
|
|
1953
1953
|
}
|
|
1954
1954
|
/**
|
|
1955
1955
|
* @public
|
|
@@ -1969,7 +1969,7 @@ export interface GetSecurityConfigResponse {
|
|
|
1969
1969
|
* <p>Details of the requested security configuration.</p>
|
|
1970
1970
|
* @public
|
|
1971
1971
|
*/
|
|
1972
|
-
securityConfigDetail?: SecurityConfigDetail;
|
|
1972
|
+
securityConfigDetail?: SecurityConfigDetail | undefined;
|
|
1973
1973
|
}
|
|
1974
1974
|
/**
|
|
1975
1975
|
* @public
|
|
@@ -1994,7 +1994,7 @@ export interface GetSecurityPolicyResponse {
|
|
|
1994
1994
|
* <p>Details about the requested security policy.</p>
|
|
1995
1995
|
* @public
|
|
1996
1996
|
*/
|
|
1997
|
-
securityPolicyDetail?: SecurityPolicyDetail;
|
|
1997
|
+
securityPolicyDetail?: SecurityPolicyDetail | undefined;
|
|
1998
1998
|
}
|
|
1999
1999
|
/**
|
|
2000
2000
|
* @public
|
|
@@ -2009,17 +2009,17 @@ export interface ListLifecyclePoliciesRequest {
|
|
|
2009
2009
|
* <p>Resource filters that policies can apply to. Currently, the only supported resource type is <code>index</code>.</p>
|
|
2010
2010
|
* @public
|
|
2011
2011
|
*/
|
|
2012
|
-
resources?: string[];
|
|
2012
|
+
resources?: string[] | undefined;
|
|
2013
2013
|
/**
|
|
2014
2014
|
* <p>If your initial <code>ListLifecyclePolicies</code> operation returns a <code>nextToken</code>, you can include the returned <code>nextToken</code> in subsequent <code>ListLifecyclePolicies</code> operations, which returns results in the next page.</p>
|
|
2015
2015
|
* @public
|
|
2016
2016
|
*/
|
|
2017
|
-
nextToken?: string;
|
|
2017
|
+
nextToken?: string | undefined;
|
|
2018
2018
|
/**
|
|
2019
2019
|
* <p>An optional parameter that specifies the maximum number of results to return. You can use use <code>nextToken</code> to get the next page of results. The default is 10.</p>
|
|
2020
2020
|
* @public
|
|
2021
2021
|
*/
|
|
2022
|
-
maxResults?: number;
|
|
2022
|
+
maxResults?: number | undefined;
|
|
2023
2023
|
}
|
|
2024
2024
|
/**
|
|
2025
2025
|
* <p>A summary of the lifecycle policy.</p>
|
|
@@ -2030,32 +2030,32 @@ export interface LifecyclePolicySummary {
|
|
|
2030
2030
|
* <p>The type of lifecycle policy.</p>
|
|
2031
2031
|
* @public
|
|
2032
2032
|
*/
|
|
2033
|
-
type?: LifecyclePolicyType;
|
|
2033
|
+
type?: LifecyclePolicyType | undefined;
|
|
2034
2034
|
/**
|
|
2035
2035
|
* <p>The name of the lifecycle policy.</p>
|
|
2036
2036
|
* @public
|
|
2037
2037
|
*/
|
|
2038
|
-
name?: string;
|
|
2038
|
+
name?: string | undefined;
|
|
2039
2039
|
/**
|
|
2040
2040
|
* <p>The version of the lifecycle policy.</p>
|
|
2041
2041
|
* @public
|
|
2042
2042
|
*/
|
|
2043
|
-
policyVersion?: string;
|
|
2043
|
+
policyVersion?: string | undefined;
|
|
2044
2044
|
/**
|
|
2045
2045
|
* <p>The description of the lifecycle policy.</p>
|
|
2046
2046
|
* @public
|
|
2047
2047
|
*/
|
|
2048
|
-
description?: string;
|
|
2048
|
+
description?: string | undefined;
|
|
2049
2049
|
/**
|
|
2050
2050
|
* <p>The Epoch time when the lifecycle policy was created.</p>
|
|
2051
2051
|
* @public
|
|
2052
2052
|
*/
|
|
2053
|
-
createdDate?: number;
|
|
2053
|
+
createdDate?: number | undefined;
|
|
2054
2054
|
/**
|
|
2055
2055
|
* <p>The date and time when the lifecycle policy was last modified.</p>
|
|
2056
2056
|
* @public
|
|
2057
2057
|
*/
|
|
2058
|
-
lastModifiedDate?: number;
|
|
2058
|
+
lastModifiedDate?: number | undefined;
|
|
2059
2059
|
}
|
|
2060
2060
|
/**
|
|
2061
2061
|
* @public
|
|
@@ -2065,12 +2065,12 @@ export interface ListLifecyclePoliciesResponse {
|
|
|
2065
2065
|
* <p>Details about the requested lifecycle policies.</p>
|
|
2066
2066
|
* @public
|
|
2067
2067
|
*/
|
|
2068
|
-
lifecyclePolicySummaries?: LifecyclePolicySummary[];
|
|
2068
|
+
lifecyclePolicySummaries?: LifecyclePolicySummary[] | undefined;
|
|
2069
2069
|
/**
|
|
2070
2070
|
* <p>When <code>nextToken</code> is returned, there are more results available. The value of <code>nextToken</code> is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page.</p>
|
|
2071
2071
|
* @public
|
|
2072
2072
|
*/
|
|
2073
|
-
nextToken?: string;
|
|
2073
|
+
nextToken?: string | undefined;
|
|
2074
2074
|
}
|
|
2075
2075
|
/**
|
|
2076
2076
|
* @public
|
|
@@ -2095,17 +2095,17 @@ export interface UpdateLifecyclePolicyRequest {
|
|
|
2095
2095
|
* <p>A description of the lifecycle policy.</p>
|
|
2096
2096
|
* @public
|
|
2097
2097
|
*/
|
|
2098
|
-
description?: string;
|
|
2098
|
+
description?: string | undefined;
|
|
2099
2099
|
/**
|
|
2100
2100
|
* <p>The JSON policy document to use as the content for the lifecycle policy.</p>
|
|
2101
2101
|
* @public
|
|
2102
2102
|
*/
|
|
2103
|
-
policy?: string;
|
|
2103
|
+
policy?: string | undefined;
|
|
2104
2104
|
/**
|
|
2105
2105
|
* <p>A unique, case-sensitive identifier to ensure idempotency of the request.</p>
|
|
2106
2106
|
* @public
|
|
2107
2107
|
*/
|
|
2108
|
-
clientToken?: string;
|
|
2108
|
+
clientToken?: string | undefined;
|
|
2109
2109
|
}
|
|
2110
2110
|
/**
|
|
2111
2111
|
* @public
|
|
@@ -2115,7 +2115,7 @@ export interface UpdateLifecyclePolicyResponse {
|
|
|
2115
2115
|
* <p>Details about the updated lifecycle policy.</p>
|
|
2116
2116
|
* @public
|
|
2117
2117
|
*/
|
|
2118
|
-
lifecyclePolicyDetail?: LifecyclePolicyDetail;
|
|
2118
|
+
lifecyclePolicyDetail?: LifecyclePolicyDetail | undefined;
|
|
2119
2119
|
}
|
|
2120
2120
|
/**
|
|
2121
2121
|
* @public
|
|
@@ -2133,13 +2133,13 @@ export interface ListSecurityConfigsRequest {
|
|
|
2133
2133
|
* next page. </p>
|
|
2134
2134
|
* @public
|
|
2135
2135
|
*/
|
|
2136
|
-
nextToken?: string;
|
|
2136
|
+
nextToken?: string | undefined;
|
|
2137
2137
|
/**
|
|
2138
2138
|
* <p>An optional parameter that specifies the maximum number of results to return. You can
|
|
2139
2139
|
* use <code>nextToken</code> to get the next page of results. The default is 20.</p>
|
|
2140
2140
|
* @public
|
|
2141
2141
|
*/
|
|
2142
|
-
maxResults?: number;
|
|
2142
|
+
maxResults?: number | undefined;
|
|
2143
2143
|
}
|
|
2144
2144
|
/**
|
|
2145
2145
|
* <p>A summary of a security configuration for OpenSearch Serverless.</p>
|
|
@@ -2150,32 +2150,32 @@ export interface SecurityConfigSummary {
|
|
|
2150
2150
|
* <p>The unique identifier of the security configuration.</p>
|
|
2151
2151
|
* @public
|
|
2152
2152
|
*/
|
|
2153
|
-
id?: string;
|
|
2153
|
+
id?: string | undefined;
|
|
2154
2154
|
/**
|
|
2155
2155
|
* <p>The type of security configuration.</p>
|
|
2156
2156
|
* @public
|
|
2157
2157
|
*/
|
|
2158
|
-
type?: SecurityConfigType;
|
|
2158
|
+
type?: SecurityConfigType | undefined;
|
|
2159
2159
|
/**
|
|
2160
2160
|
* <p>The version of the security configuration.</p>
|
|
2161
2161
|
* @public
|
|
2162
2162
|
*/
|
|
2163
|
-
configVersion?: string;
|
|
2163
|
+
configVersion?: string | undefined;
|
|
2164
2164
|
/**
|
|
2165
2165
|
* <p>The description of the security configuration.</p>
|
|
2166
2166
|
* @public
|
|
2167
2167
|
*/
|
|
2168
|
-
description?: string;
|
|
2168
|
+
description?: string | undefined;
|
|
2169
2169
|
/**
|
|
2170
2170
|
* <p>The Epoch time when the security configuration was created.</p>
|
|
2171
2171
|
* @public
|
|
2172
2172
|
*/
|
|
2173
|
-
createdDate?: number;
|
|
2173
|
+
createdDate?: number | undefined;
|
|
2174
2174
|
/**
|
|
2175
2175
|
* <p>The timestamp of when the configuration was last modified.</p>
|
|
2176
2176
|
* @public
|
|
2177
2177
|
*/
|
|
2178
|
-
lastModifiedDate?: number;
|
|
2178
|
+
lastModifiedDate?: number | undefined;
|
|
2179
2179
|
}
|
|
2180
2180
|
/**
|
|
2181
2181
|
* @public
|
|
@@ -2185,14 +2185,14 @@ export interface ListSecurityConfigsResponse {
|
|
|
2185
2185
|
* <p>Details about the security configurations in your account.</p>
|
|
2186
2186
|
* @public
|
|
2187
2187
|
*/
|
|
2188
|
-
securityConfigSummaries?: SecurityConfigSummary[];
|
|
2188
|
+
securityConfigSummaries?: SecurityConfigSummary[] | undefined;
|
|
2189
2189
|
/**
|
|
2190
2190
|
* <p>When <code>nextToken</code> is returned, there are more results available. The value
|
|
2191
2191
|
* of <code>nextToken</code> is a unique pagination token for each page. Make the call
|
|
2192
2192
|
* again using the returned token to retrieve the next page.</p>
|
|
2193
2193
|
* @public
|
|
2194
2194
|
*/
|
|
2195
|
-
nextToken?: string;
|
|
2195
|
+
nextToken?: string | undefined;
|
|
2196
2196
|
}
|
|
2197
2197
|
/**
|
|
2198
2198
|
* @public
|
|
@@ -2207,7 +2207,7 @@ export interface ListSecurityPoliciesRequest {
|
|
|
2207
2207
|
* <p>Resource filters (can be collection or indexes) that policies can apply to. </p>
|
|
2208
2208
|
* @public
|
|
2209
2209
|
*/
|
|
2210
|
-
resource?: string[];
|
|
2210
|
+
resource?: string[] | undefined;
|
|
2211
2211
|
/**
|
|
2212
2212
|
* <p>If your initial <code>ListSecurityPolicies</code> operation returns a
|
|
2213
2213
|
* <code>nextToken</code>, you can include the returned <code>nextToken</code> in
|
|
@@ -2215,13 +2215,13 @@ export interface ListSecurityPoliciesRequest {
|
|
|
2215
2215
|
* next page. </p>
|
|
2216
2216
|
* @public
|
|
2217
2217
|
*/
|
|
2218
|
-
nextToken?: string;
|
|
2218
|
+
nextToken?: string | undefined;
|
|
2219
2219
|
/**
|
|
2220
2220
|
* <p>An optional parameter that specifies the maximum number of results to return. You can
|
|
2221
2221
|
* use <code>nextToken</code> to get the next page of results. The default is 20.</p>
|
|
2222
2222
|
* @public
|
|
2223
2223
|
*/
|
|
2224
|
-
maxResults?: number;
|
|
2224
|
+
maxResults?: number | undefined;
|
|
2225
2225
|
}
|
|
2226
2226
|
/**
|
|
2227
2227
|
* <p>A summary of a security policy for OpenSearch Serverless.</p>
|
|
@@ -2232,32 +2232,32 @@ export interface SecurityPolicySummary {
|
|
|
2232
2232
|
* <p>The type of security policy.</p>
|
|
2233
2233
|
* @public
|
|
2234
2234
|
*/
|
|
2235
|
-
type?: SecurityPolicyType;
|
|
2235
|
+
type?: SecurityPolicyType | undefined;
|
|
2236
2236
|
/**
|
|
2237
2237
|
* <p>The name of the policy.</p>
|
|
2238
2238
|
* @public
|
|
2239
2239
|
*/
|
|
2240
|
-
name?: string;
|
|
2240
|
+
name?: string | undefined;
|
|
2241
2241
|
/**
|
|
2242
2242
|
* <p>The version of the policy.</p>
|
|
2243
2243
|
* @public
|
|
2244
2244
|
*/
|
|
2245
|
-
policyVersion?: string;
|
|
2245
|
+
policyVersion?: string | undefined;
|
|
2246
2246
|
/**
|
|
2247
2247
|
* <p>The description of the security policy.</p>
|
|
2248
2248
|
* @public
|
|
2249
2249
|
*/
|
|
2250
|
-
description?: string;
|
|
2250
|
+
description?: string | undefined;
|
|
2251
2251
|
/**
|
|
2252
2252
|
* <p>The date the policy was created.</p>
|
|
2253
2253
|
* @public
|
|
2254
2254
|
*/
|
|
2255
|
-
createdDate?: number;
|
|
2255
|
+
createdDate?: number | undefined;
|
|
2256
2256
|
/**
|
|
2257
2257
|
* <p>The timestamp of when the policy was last modified.</p>
|
|
2258
2258
|
* @public
|
|
2259
2259
|
*/
|
|
2260
|
-
lastModifiedDate?: number;
|
|
2260
|
+
lastModifiedDate?: number | undefined;
|
|
2261
2261
|
}
|
|
2262
2262
|
/**
|
|
2263
2263
|
* @public
|
|
@@ -2267,14 +2267,14 @@ export interface ListSecurityPoliciesResponse {
|
|
|
2267
2267
|
* <p>Details about the security policies in your account.</p>
|
|
2268
2268
|
* @public
|
|
2269
2269
|
*/
|
|
2270
|
-
securityPolicySummaries?: SecurityPolicySummary[];
|
|
2270
|
+
securityPolicySummaries?: SecurityPolicySummary[] | undefined;
|
|
2271
2271
|
/**
|
|
2272
2272
|
* <p>When <code>nextToken</code> is returned, there are more results available. The value
|
|
2273
2273
|
* of <code>nextToken</code> is a unique pagination token for each page. Make the call
|
|
2274
2274
|
* again using the returned token to retrieve the next page.</p>
|
|
2275
2275
|
* @public
|
|
2276
2276
|
*/
|
|
2277
|
-
nextToken?: string;
|
|
2277
|
+
nextToken?: string | undefined;
|
|
2278
2278
|
}
|
|
2279
2279
|
/**
|
|
2280
2280
|
* @public
|
|
@@ -2296,7 +2296,7 @@ export interface ListTagsForResourceResponse {
|
|
|
2296
2296
|
* <p>The tags associated with the resource.</p>
|
|
2297
2297
|
* @public
|
|
2298
2298
|
*/
|
|
2299
|
-
tags?: Tag[];
|
|
2299
|
+
tags?: Tag[] | undefined;
|
|
2300
2300
|
}
|
|
2301
2301
|
/**
|
|
2302
2302
|
* <p>Filter the results of a <code>ListVpcEndpoints</code> request.</p>
|
|
@@ -2307,7 +2307,7 @@ export interface VpcEndpointFilters {
|
|
|
2307
2307
|
* <p>The current status of the endpoint.</p>
|
|
2308
2308
|
* @public
|
|
2309
2309
|
*/
|
|
2310
|
-
status?: VpcEndpointStatus;
|
|
2310
|
+
status?: VpcEndpointStatus | undefined;
|
|
2311
2311
|
}
|
|
2312
2312
|
/**
|
|
2313
2313
|
* @public
|
|
@@ -2319,7 +2319,7 @@ export interface ListVpcEndpointsRequest {
|
|
|
2319
2319
|
* <code>ACTIVE</code>, and <code>FAILED</code>.</p>
|
|
2320
2320
|
* @public
|
|
2321
2321
|
*/
|
|
2322
|
-
vpcEndpointFilters?: VpcEndpointFilters;
|
|
2322
|
+
vpcEndpointFilters?: VpcEndpointFilters | undefined;
|
|
2323
2323
|
/**
|
|
2324
2324
|
* <p>If your initial <code>ListVpcEndpoints</code> operation returns a
|
|
2325
2325
|
* <code>nextToken</code>, you can include the returned <code>nextToken</code> in
|
|
@@ -2327,13 +2327,13 @@ export interface ListVpcEndpointsRequest {
|
|
|
2327
2327
|
* page. </p>
|
|
2328
2328
|
* @public
|
|
2329
2329
|
*/
|
|
2330
|
-
nextToken?: string;
|
|
2330
|
+
nextToken?: string | undefined;
|
|
2331
2331
|
/**
|
|
2332
2332
|
* <p>An optional parameter that specifies the maximum number of results to return. You can
|
|
2333
2333
|
* use <code>nextToken</code> to get the next page of results. The default is 20.</p>
|
|
2334
2334
|
* @public
|
|
2335
2335
|
*/
|
|
2336
|
-
maxResults?: number;
|
|
2336
|
+
maxResults?: number | undefined;
|
|
2337
2337
|
}
|
|
2338
2338
|
/**
|
|
2339
2339
|
* <p>The VPC endpoint object.</p>
|
|
@@ -2344,17 +2344,17 @@ export interface VpcEndpointSummary {
|
|
|
2344
2344
|
* <p>The unique identifier of the endpoint.</p>
|
|
2345
2345
|
* @public
|
|
2346
2346
|
*/
|
|
2347
|
-
id?: string;
|
|
2347
|
+
id?: string | undefined;
|
|
2348
2348
|
/**
|
|
2349
2349
|
* <p>The name of the endpoint.</p>
|
|
2350
2350
|
* @public
|
|
2351
2351
|
*/
|
|
2352
|
-
name?: string;
|
|
2352
|
+
name?: string | undefined;
|
|
2353
2353
|
/**
|
|
2354
2354
|
* <p>The current status of the endpoint.</p>
|
|
2355
2355
|
* @public
|
|
2356
2356
|
*/
|
|
2357
|
-
status?: VpcEndpointStatus;
|
|
2357
|
+
status?: VpcEndpointStatus | undefined;
|
|
2358
2358
|
}
|
|
2359
2359
|
/**
|
|
2360
2360
|
* @public
|
|
@@ -2364,14 +2364,14 @@ export interface ListVpcEndpointsResponse {
|
|
|
2364
2364
|
* <p>Details about each VPC endpoint, including the name and current status.</p>
|
|
2365
2365
|
* @public
|
|
2366
2366
|
*/
|
|
2367
|
-
vpcEndpointSummaries?: VpcEndpointSummary[];
|
|
2367
|
+
vpcEndpointSummaries?: VpcEndpointSummary[] | undefined;
|
|
2368
2368
|
/**
|
|
2369
2369
|
* <p>When <code>nextToken</code> is returned, there are more results available. The value
|
|
2370
2370
|
* of <code>nextToken</code> is a unique pagination token for each page. Make the call
|
|
2371
2371
|
* again using the returned token to retrieve the next page.</p>
|
|
2372
2372
|
* @public
|
|
2373
2373
|
*/
|
|
2374
|
-
nextToken?: string;
|
|
2374
|
+
nextToken?: string | undefined;
|
|
2375
2375
|
}
|
|
2376
2376
|
/**
|
|
2377
2377
|
* <p>Describes IAM Identity Center options for updating an OpenSearch Serverless security configuration in the form of a key-value map.</p>
|
|
@@ -2382,12 +2382,12 @@ export interface UpdateIamIdentityCenterConfigOptions {
|
|
|
2382
2382
|
* <p>The user attribute for this IAM Identity Center integration. Defaults to <code>UserId</code>.</p>
|
|
2383
2383
|
* @public
|
|
2384
2384
|
*/
|
|
2385
|
-
userAttribute?: IamIdentityCenterUserAttribute;
|
|
2385
|
+
userAttribute?: IamIdentityCenterUserAttribute | undefined;
|
|
2386
2386
|
/**
|
|
2387
2387
|
* <p>The group attribute for this IAM Identity Center integration. Defaults to <code>GroupId</code>.</p>
|
|
2388
2388
|
* @public
|
|
2389
2389
|
*/
|
|
2390
|
-
groupAttribute?: IamIdentityCenterGroupAttribute;
|
|
2390
|
+
groupAttribute?: IamIdentityCenterGroupAttribute | undefined;
|
|
2391
2391
|
}
|
|
2392
2392
|
/**
|
|
2393
2393
|
* @public
|
|
@@ -2411,22 +2411,22 @@ export interface UpdateSecurityConfigRequest {
|
|
|
2411
2411
|
* <p>A description of the security configuration.</p>
|
|
2412
2412
|
* @public
|
|
2413
2413
|
*/
|
|
2414
|
-
description?: string;
|
|
2414
|
+
description?: string | undefined;
|
|
2415
2415
|
/**
|
|
2416
2416
|
* <p>SAML options in in the form of a key-value map.</p>
|
|
2417
2417
|
* @public
|
|
2418
2418
|
*/
|
|
2419
|
-
samlOptions?: SamlConfigOptions;
|
|
2419
|
+
samlOptions?: SamlConfigOptions | undefined;
|
|
2420
2420
|
/**
|
|
2421
2421
|
* <p>Describes IAM Identity Center options in the form of a key-value map.</p>
|
|
2422
2422
|
* @public
|
|
2423
2423
|
*/
|
|
2424
|
-
iamIdentityCenterOptionsUpdates?: UpdateIamIdentityCenterConfigOptions;
|
|
2424
|
+
iamIdentityCenterOptionsUpdates?: UpdateIamIdentityCenterConfigOptions | undefined;
|
|
2425
2425
|
/**
|
|
2426
2426
|
* <p>Unique, case-sensitive identifier to ensure idempotency of the request.</p>
|
|
2427
2427
|
* @public
|
|
2428
2428
|
*/
|
|
2429
|
-
clientToken?: string;
|
|
2429
|
+
clientToken?: string | undefined;
|
|
2430
2430
|
}
|
|
2431
2431
|
/**
|
|
2432
2432
|
* @public
|
|
@@ -2436,7 +2436,7 @@ export interface UpdateSecurityConfigResponse {
|
|
|
2436
2436
|
* <p>Details about the updated security configuration. </p>
|
|
2437
2437
|
* @public
|
|
2438
2438
|
*/
|
|
2439
|
-
securityConfigDetail?: SecurityConfigDetail;
|
|
2439
|
+
securityConfigDetail?: SecurityConfigDetail | undefined;
|
|
2440
2440
|
}
|
|
2441
2441
|
/**
|
|
2442
2442
|
* @public
|
|
@@ -2462,17 +2462,17 @@ export interface UpdateSecurityPolicyRequest {
|
|
|
2462
2462
|
* defined in the policy.</p>
|
|
2463
2463
|
* @public
|
|
2464
2464
|
*/
|
|
2465
|
-
description?: string;
|
|
2465
|
+
description?: string | undefined;
|
|
2466
2466
|
/**
|
|
2467
2467
|
* <p>The JSON policy document to use as the content for the new policy.</p>
|
|
2468
2468
|
* @public
|
|
2469
2469
|
*/
|
|
2470
|
-
policy?: string;
|
|
2470
|
+
policy?: string | undefined;
|
|
2471
2471
|
/**
|
|
2472
2472
|
* <p>Unique, case-sensitive identifier to ensure idempotency of the request.</p>
|
|
2473
2473
|
* @public
|
|
2474
2474
|
*/
|
|
2475
|
-
clientToken?: string;
|
|
2475
|
+
clientToken?: string | undefined;
|
|
2476
2476
|
}
|
|
2477
2477
|
/**
|
|
2478
2478
|
* @public
|
|
@@ -2482,7 +2482,7 @@ export interface UpdateSecurityPolicyResponse {
|
|
|
2482
2482
|
* <p>Details about the updated security policy.</p>
|
|
2483
2483
|
* @public
|
|
2484
2484
|
*/
|
|
2485
|
-
securityPolicyDetail?: SecurityPolicyDetail;
|
|
2485
|
+
securityPolicyDetail?: SecurityPolicyDetail | undefined;
|
|
2486
2486
|
}
|
|
2487
2487
|
/**
|
|
2488
2488
|
* @public
|
|
@@ -2541,7 +2541,7 @@ export interface UpdateAccountSettingsRequest {
|
|
|
2541
2541
|
* capacity limits for Amazon OpenSearch Serverless</a>.</p>
|
|
2542
2542
|
* @public
|
|
2543
2543
|
*/
|
|
2544
|
-
capacityLimits?: CapacityLimits;
|
|
2544
|
+
capacityLimits?: CapacityLimits | undefined;
|
|
2545
2545
|
}
|
|
2546
2546
|
/**
|
|
2547
2547
|
* @public
|
|
@@ -2551,7 +2551,7 @@ export interface UpdateAccountSettingsResponse {
|
|
|
2551
2551
|
* <p>OpenSearch Serverless-related settings for the current Amazon Web Services account. </p>
|
|
2552
2552
|
* @public
|
|
2553
2553
|
*/
|
|
2554
|
-
accountSettingsDetail?: AccountSettingsDetail;
|
|
2554
|
+
accountSettingsDetail?: AccountSettingsDetail | undefined;
|
|
2555
2555
|
}
|
|
2556
2556
|
/**
|
|
2557
2557
|
* @public
|
|
@@ -2566,29 +2566,29 @@ export interface UpdateVpcEndpointRequest {
|
|
|
2566
2566
|
* <p>The ID of one or more subnets to add to the endpoint.</p>
|
|
2567
2567
|
* @public
|
|
2568
2568
|
*/
|
|
2569
|
-
addSubnetIds?: string[];
|
|
2569
|
+
addSubnetIds?: string[] | undefined;
|
|
2570
2570
|
/**
|
|
2571
2571
|
* <p>The unique identifiers of the subnets to remove from the endpoint.</p>
|
|
2572
2572
|
* @public
|
|
2573
2573
|
*/
|
|
2574
|
-
removeSubnetIds?: string[];
|
|
2574
|
+
removeSubnetIds?: string[] | undefined;
|
|
2575
2575
|
/**
|
|
2576
2576
|
* <p>The unique identifiers of the security groups to add to the endpoint. Security groups
|
|
2577
2577
|
* define the ports, protocols, and sources for inbound traffic that you are authorizing
|
|
2578
2578
|
* into your endpoint.</p>
|
|
2579
2579
|
* @public
|
|
2580
2580
|
*/
|
|
2581
|
-
addSecurityGroupIds?: string[];
|
|
2581
|
+
addSecurityGroupIds?: string[] | undefined;
|
|
2582
2582
|
/**
|
|
2583
2583
|
* <p>The unique identifiers of the security groups to remove from the endpoint.</p>
|
|
2584
2584
|
* @public
|
|
2585
2585
|
*/
|
|
2586
|
-
removeSecurityGroupIds?: string[];
|
|
2586
|
+
removeSecurityGroupIds?: string[] | undefined;
|
|
2587
2587
|
/**
|
|
2588
2588
|
* <p>Unique, case-sensitive identifier to ensure idempotency of the request.</p>
|
|
2589
2589
|
* @public
|
|
2590
2590
|
*/
|
|
2591
|
-
clientToken?: string;
|
|
2591
|
+
clientToken?: string | undefined;
|
|
2592
2592
|
}
|
|
2593
2593
|
/**
|
|
2594
2594
|
* <p>Update details for an OpenSearch Serverless-managed interface endpoint.</p>
|
|
@@ -2599,33 +2599,33 @@ export interface UpdateVpcEndpointDetail {
|
|
|
2599
2599
|
* <p>The unique identifier of the endpoint.</p>
|
|
2600
2600
|
* @public
|
|
2601
2601
|
*/
|
|
2602
|
-
id?: string;
|
|
2602
|
+
id?: string | undefined;
|
|
2603
2603
|
/**
|
|
2604
2604
|
* <p>The name of the endpoint.</p>
|
|
2605
2605
|
* @public
|
|
2606
2606
|
*/
|
|
2607
|
-
name?: string;
|
|
2607
|
+
name?: string | undefined;
|
|
2608
2608
|
/**
|
|
2609
2609
|
* <p>The current status of the endpoint update process.</p>
|
|
2610
2610
|
* @public
|
|
2611
2611
|
*/
|
|
2612
|
-
status?: VpcEndpointStatus;
|
|
2612
|
+
status?: VpcEndpointStatus | undefined;
|
|
2613
2613
|
/**
|
|
2614
2614
|
* <p>The ID of the subnets from which you access OpenSearch Serverless.</p>
|
|
2615
2615
|
* @public
|
|
2616
2616
|
*/
|
|
2617
|
-
subnetIds?: string[];
|
|
2617
|
+
subnetIds?: string[] | undefined;
|
|
2618
2618
|
/**
|
|
2619
2619
|
* <p>The unique identifiers of the security groups that define the ports, protocols, and
|
|
2620
2620
|
* sources for inbound traffic that you are authorizing into your endpoint.</p>
|
|
2621
2621
|
* @public
|
|
2622
2622
|
*/
|
|
2623
|
-
securityGroupIds?: string[];
|
|
2623
|
+
securityGroupIds?: string[] | undefined;
|
|
2624
2624
|
/**
|
|
2625
2625
|
* <p>The timestamp of when the endpoint was last modified.</p>
|
|
2626
2626
|
* @public
|
|
2627
2627
|
*/
|
|
2628
|
-
lastModifiedDate?: number;
|
|
2628
|
+
lastModifiedDate?: number | undefined;
|
|
2629
2629
|
}
|
|
2630
2630
|
/**
|
|
2631
2631
|
* @public
|
|
@@ -2635,5 +2635,5 @@ export interface UpdateVpcEndpointResponse {
|
|
|
2635
2635
|
* <p>Details about the updated VPC endpoint.</p>
|
|
2636
2636
|
* @public
|
|
2637
2637
|
*/
|
|
2638
|
-
UpdateVpcEndpointDetail?: UpdateVpcEndpointDetail;
|
|
2638
|
+
UpdateVpcEndpointDetail?: UpdateVpcEndpointDetail | undefined;
|
|
2639
2639
|
}
|