@aws-sdk/client-resource-explorer-2 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.
- package/dist-types/models/models_0.d.ts +122 -122
- package/dist-types/ts3.4/models/models_0.d.ts +122 -122
- package/package.json +7 -7
|
@@ -9,7 +9,7 @@ import { ResourceExplorer2ServiceException as __BaseException } from "./Resource
|
|
|
9
9
|
export declare class AccessDeniedException extends __BaseException {
|
|
10
10
|
readonly name: "AccessDeniedException";
|
|
11
11
|
readonly $fault: "client";
|
|
12
|
-
Message?: string;
|
|
12
|
+
Message?: string | undefined;
|
|
13
13
|
/**
|
|
14
14
|
* @internal
|
|
15
15
|
*/
|
|
@@ -36,7 +36,7 @@ export interface AssociateDefaultViewOutput {
|
|
|
36
36
|
* in the Amazon Web Services Region and Amazon Web Services account in which you called this operation.</p>
|
|
37
37
|
* @public
|
|
38
38
|
*/
|
|
39
|
-
ViewArn?: string;
|
|
39
|
+
ViewArn?: string | undefined;
|
|
40
40
|
}
|
|
41
41
|
/**
|
|
42
42
|
* <p>The request failed because of internal service error. Try your request again
|
|
@@ -46,7 +46,7 @@ export interface AssociateDefaultViewOutput {
|
|
|
46
46
|
export declare class InternalServerException extends __BaseException {
|
|
47
47
|
readonly name: "InternalServerException";
|
|
48
48
|
readonly $fault: "server";
|
|
49
|
-
Message?: string;
|
|
49
|
+
Message?: string | undefined;
|
|
50
50
|
/**
|
|
51
51
|
* @internal
|
|
52
52
|
*/
|
|
@@ -60,7 +60,7 @@ export declare class InternalServerException extends __BaseException {
|
|
|
60
60
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
61
61
|
readonly name: "ResourceNotFoundException";
|
|
62
62
|
readonly $fault: "client";
|
|
63
|
-
Message?: string;
|
|
63
|
+
Message?: string | undefined;
|
|
64
64
|
/**
|
|
65
65
|
* @internal
|
|
66
66
|
*/
|
|
@@ -75,7 +75,7 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
75
75
|
export declare class ThrottlingException extends __BaseException {
|
|
76
76
|
readonly name: "ThrottlingException";
|
|
77
77
|
readonly $fault: "client";
|
|
78
|
-
Message?: string;
|
|
78
|
+
Message?: string | undefined;
|
|
79
79
|
/**
|
|
80
80
|
* @internal
|
|
81
81
|
*/
|
|
@@ -110,7 +110,7 @@ export declare class ValidationException extends __BaseException {
|
|
|
110
110
|
* <p>An array of the request fields that had validation errors.</p>
|
|
111
111
|
* @public
|
|
112
112
|
*/
|
|
113
|
-
FieldList?: ValidationExceptionField[];
|
|
113
|
+
FieldList?: ValidationExceptionField[] | undefined;
|
|
114
114
|
/**
|
|
115
115
|
* @internal
|
|
116
116
|
*/
|
|
@@ -136,7 +136,7 @@ export interface BatchGetViewInput {
|
|
|
136
136
|
* <p>A list of <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon resource names (ARNs)</a> that identify the views you want details for.</p>
|
|
137
137
|
* @public
|
|
138
138
|
*/
|
|
139
|
-
ViewArns?: string[];
|
|
139
|
+
ViewArns?: string[] | undefined;
|
|
140
140
|
}
|
|
141
141
|
/**
|
|
142
142
|
* <p>A collection of error messages for any views that Amazon Web Services Resource Explorer couldn't retrieve
|
|
@@ -205,17 +205,17 @@ export interface View {
|
|
|
205
205
|
* <p>The <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon resource name (ARN)</a> of the view.</p>
|
|
206
206
|
* @public
|
|
207
207
|
*/
|
|
208
|
-
ViewArn?: string;
|
|
208
|
+
ViewArn?: string | undefined;
|
|
209
209
|
/**
|
|
210
210
|
* <p>The Amazon Web Services account that owns this view.</p>
|
|
211
211
|
* @public
|
|
212
212
|
*/
|
|
213
|
-
Owner?: string;
|
|
213
|
+
Owner?: string | undefined;
|
|
214
214
|
/**
|
|
215
215
|
* <p>The date and time when this view was last modified.</p>
|
|
216
216
|
* @public
|
|
217
217
|
*/
|
|
218
|
-
LastUpdatedAt?: Date;
|
|
218
|
+
LastUpdatedAt?: Date | undefined;
|
|
219
219
|
/**
|
|
220
220
|
* <p>An <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon resource name (ARN)</a> of an Amazon Web Services account, an organization, or an
|
|
221
221
|
* organizational unit (OU) that specifies whether this view includes resources from only
|
|
@@ -225,18 +225,18 @@ export interface View {
|
|
|
225
225
|
* operation.</p>
|
|
226
226
|
* @public
|
|
227
227
|
*/
|
|
228
|
-
Scope?: string;
|
|
228
|
+
Scope?: string | undefined;
|
|
229
229
|
/**
|
|
230
230
|
* <p>A structure that contains additional information about the view.</p>
|
|
231
231
|
* @public
|
|
232
232
|
*/
|
|
233
|
-
IncludedProperties?: IncludedProperty[];
|
|
233
|
+
IncludedProperties?: IncludedProperty[] | undefined;
|
|
234
234
|
/**
|
|
235
235
|
* <p>An array of <a>SearchFilter</a> objects that specify which resources can be
|
|
236
236
|
* included in the results of queries made using this view.</p>
|
|
237
237
|
* @public
|
|
238
238
|
*/
|
|
239
|
-
Filters?: SearchFilter;
|
|
239
|
+
Filters?: SearchFilter | undefined;
|
|
240
240
|
}
|
|
241
241
|
/**
|
|
242
242
|
* @public
|
|
@@ -247,13 +247,13 @@ export interface BatchGetViewOutput {
|
|
|
247
247
|
* views.</p>
|
|
248
248
|
* @public
|
|
249
249
|
*/
|
|
250
|
-
Views?: View[];
|
|
250
|
+
Views?: View[] | undefined;
|
|
251
251
|
/**
|
|
252
252
|
* <p>If any of the specified ARNs result in an error, then this structure describes the
|
|
253
253
|
* error.</p>
|
|
254
254
|
* @public
|
|
255
255
|
*/
|
|
256
|
-
Errors?: BatchGetViewError[];
|
|
256
|
+
Errors?: BatchGetViewError[] | undefined;
|
|
257
257
|
}
|
|
258
258
|
/**
|
|
259
259
|
* <p>The principal making the request isn't permitted to perform the operation.</p>
|
|
@@ -262,7 +262,7 @@ export interface BatchGetViewOutput {
|
|
|
262
262
|
export declare class UnauthorizedException extends __BaseException {
|
|
263
263
|
readonly name: "UnauthorizedException";
|
|
264
264
|
readonly $fault: "client";
|
|
265
|
-
Message?: string;
|
|
265
|
+
Message?: string | undefined;
|
|
266
266
|
/**
|
|
267
267
|
* @internal
|
|
268
268
|
*/
|
|
@@ -297,13 +297,13 @@ export interface CreateIndexInput {
|
|
|
297
297
|
* value</a> to ensure the uniqueness of your index.</p>
|
|
298
298
|
* @public
|
|
299
299
|
*/
|
|
300
|
-
ClientToken?: string;
|
|
300
|
+
ClientToken?: string | undefined;
|
|
301
301
|
/**
|
|
302
302
|
* <p>The specified tags are attached only to the index created in this Amazon Web Services Region. The
|
|
303
303
|
* tags aren't attached to any of the resources listed in the index.</p>
|
|
304
304
|
* @public
|
|
305
305
|
*/
|
|
306
|
-
Tags?: Record<string, string
|
|
306
|
+
Tags?: Record<string, string> | undefined;
|
|
307
307
|
}
|
|
308
308
|
/**
|
|
309
309
|
* @public
|
|
@@ -346,7 +346,7 @@ export interface CreateIndexOutput {
|
|
|
346
346
|
* </p>
|
|
347
347
|
* @public
|
|
348
348
|
*/
|
|
349
|
-
Arn?: string;
|
|
349
|
+
Arn?: string | undefined;
|
|
350
350
|
/**
|
|
351
351
|
* <p>Indicates the current state of the index. You can check for changes to the state for
|
|
352
352
|
* asynchronous operations by calling the <a>GetIndex</a> operation.</p>
|
|
@@ -357,12 +357,12 @@ export interface CreateIndexOutput {
|
|
|
357
357
|
* </note>
|
|
358
358
|
* @public
|
|
359
359
|
*/
|
|
360
|
-
State?: IndexState;
|
|
360
|
+
State?: IndexState | undefined;
|
|
361
361
|
/**
|
|
362
362
|
* <p>The date and timestamp when the index was created.</p>
|
|
363
363
|
* @public
|
|
364
364
|
*/
|
|
365
|
-
CreatedAt?: Date;
|
|
365
|
+
CreatedAt?: Date | undefined;
|
|
366
366
|
}
|
|
367
367
|
/**
|
|
368
368
|
* @public
|
|
@@ -386,17 +386,17 @@ export interface DeleteIndexOutput {
|
|
|
386
386
|
* </note>
|
|
387
387
|
* @public
|
|
388
388
|
*/
|
|
389
|
-
Arn?: string;
|
|
389
|
+
Arn?: string | undefined;
|
|
390
390
|
/**
|
|
391
391
|
* <p>Indicates the current state of the index. </p>
|
|
392
392
|
* @public
|
|
393
393
|
*/
|
|
394
|
-
State?: IndexState;
|
|
394
|
+
State?: IndexState | undefined;
|
|
395
395
|
/**
|
|
396
396
|
* <p>The date and time when you last updated this index.</p>
|
|
397
397
|
* @public
|
|
398
398
|
*/
|
|
399
|
-
LastUpdatedAt?: Date;
|
|
399
|
+
LastUpdatedAt?: Date | undefined;
|
|
400
400
|
}
|
|
401
401
|
/**
|
|
402
402
|
* @public
|
|
@@ -426,13 +426,13 @@ export interface ListIndexesInput {
|
|
|
426
426
|
* <p>Use this option to discover the aggregator index for your account.</p>
|
|
427
427
|
* @public
|
|
428
428
|
*/
|
|
429
|
-
Type?: IndexType;
|
|
429
|
+
Type?: IndexType | undefined;
|
|
430
430
|
/**
|
|
431
431
|
* <p>If specified, limits the response to only information about the index in the specified
|
|
432
432
|
* list of Amazon Web Services Regions.</p>
|
|
433
433
|
* @public
|
|
434
434
|
*/
|
|
435
|
-
Regions?: string[];
|
|
435
|
+
Regions?: string[] | undefined;
|
|
436
436
|
/**
|
|
437
437
|
* <p>The maximum number of results that you want included on each page of the
|
|
438
438
|
* response. If you do not include this parameter, it defaults to a value appropriate to the
|
|
@@ -447,7 +447,7 @@ export interface ListIndexesInput {
|
|
|
447
447
|
* </note>
|
|
448
448
|
* @public
|
|
449
449
|
*/
|
|
450
|
-
MaxResults?: number;
|
|
450
|
+
MaxResults?: number | undefined;
|
|
451
451
|
/**
|
|
452
452
|
* <p>The parameter for receiving additional results if you receive a
|
|
453
453
|
* <code>NextToken</code> response in a previous request. A <code>NextToken</code> response
|
|
@@ -456,7 +456,7 @@ export interface ListIndexesInput {
|
|
|
456
456
|
* from. The pagination tokens expire after 24 hours.</p>
|
|
457
457
|
* @public
|
|
458
458
|
*/
|
|
459
|
-
NextToken?: string;
|
|
459
|
+
NextToken?: string | undefined;
|
|
460
460
|
}
|
|
461
461
|
/**
|
|
462
462
|
* <p>An index is the data store used by Amazon Web Services Resource Explorer to hold information about your Amazon Web Services
|
|
@@ -475,12 +475,12 @@ export interface Index {
|
|
|
475
475
|
* <p>The Amazon Web Services Region in which the index exists.</p>
|
|
476
476
|
* @public
|
|
477
477
|
*/
|
|
478
|
-
Region?: string;
|
|
478
|
+
Region?: string | undefined;
|
|
479
479
|
/**
|
|
480
480
|
* <p>The <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon resource name (ARN)</a> of the index.</p>
|
|
481
481
|
* @public
|
|
482
482
|
*/
|
|
483
|
-
Arn?: string;
|
|
483
|
+
Arn?: string | undefined;
|
|
484
484
|
/**
|
|
485
485
|
* <p>The type of index. It can be one of the following values:</p>
|
|
486
486
|
* <ul>
|
|
@@ -499,7 +499,7 @@ export interface Index {
|
|
|
499
499
|
* </ul>
|
|
500
500
|
* @public
|
|
501
501
|
*/
|
|
502
|
-
Type?: IndexType;
|
|
502
|
+
Type?: IndexType | undefined;
|
|
503
503
|
}
|
|
504
504
|
/**
|
|
505
505
|
* @public
|
|
@@ -509,7 +509,7 @@ export interface ListIndexesOutput {
|
|
|
509
509
|
* <p>A structure that contains the details and status of each index.</p>
|
|
510
510
|
* @public
|
|
511
511
|
*/
|
|
512
|
-
Indexes?: Index[];
|
|
512
|
+
Indexes?: Index[] | undefined;
|
|
513
513
|
/**
|
|
514
514
|
* <p>If present, indicates that more output is available than is
|
|
515
515
|
* included in the current response. Use this value in the <code>NextToken</code> request parameter
|
|
@@ -518,7 +518,7 @@ export interface ListIndexesOutput {
|
|
|
518
518
|
* The pagination tokens expire after 24 hours.</p>
|
|
519
519
|
* @public
|
|
520
520
|
*/
|
|
521
|
-
NextToken?: string;
|
|
521
|
+
NextToken?: string | undefined;
|
|
522
522
|
}
|
|
523
523
|
/**
|
|
524
524
|
* <p>The request failed because it exceeds a service quota.</p>
|
|
@@ -568,23 +568,23 @@ export interface UpdateIndexTypeOutput {
|
|
|
568
568
|
* <p>The <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon resource name (ARN)</a> of the index that you updated.</p>
|
|
569
569
|
* @public
|
|
570
570
|
*/
|
|
571
|
-
Arn?: string;
|
|
571
|
+
Arn?: string | undefined;
|
|
572
572
|
/**
|
|
573
573
|
* <p>Specifies the type of the specified index after the operation completes.</p>
|
|
574
574
|
* @public
|
|
575
575
|
*/
|
|
576
|
-
Type?: IndexType;
|
|
576
|
+
Type?: IndexType | undefined;
|
|
577
577
|
/**
|
|
578
578
|
* <p>Indicates the state of the request to update the index. This operation is
|
|
579
579
|
* asynchronous. Call the <a>GetIndex</a> operation to check for changes.</p>
|
|
580
580
|
* @public
|
|
581
581
|
*/
|
|
582
|
-
State?: IndexState;
|
|
582
|
+
State?: IndexState | undefined;
|
|
583
583
|
/**
|
|
584
584
|
* <p>The date and timestamp when the index was last updated.</p>
|
|
585
585
|
* @public
|
|
586
586
|
*/
|
|
587
|
-
LastUpdatedAt?: Date;
|
|
587
|
+
LastUpdatedAt?: Date | undefined;
|
|
588
588
|
}
|
|
589
589
|
/**
|
|
590
590
|
* @public
|
|
@@ -596,7 +596,7 @@ export interface CreateViewInput {
|
|
|
596
596
|
* value</a> to ensure the uniqueness of your views.</p>
|
|
597
597
|
* @public
|
|
598
598
|
*/
|
|
599
|
-
ClientToken?: string;
|
|
599
|
+
ClientToken?: string | undefined;
|
|
600
600
|
/**
|
|
601
601
|
* <p>The name of the new view. This name appears in the list of views in Resource Explorer.</p>
|
|
602
602
|
* <p>The name must be no more than 64 characters long, and can include letters, digits, and
|
|
@@ -610,13 +610,13 @@ export interface CreateViewInput {
|
|
|
610
610
|
* <p>The default is an empty list, with no optional fields included in the results.</p>
|
|
611
611
|
* @public
|
|
612
612
|
*/
|
|
613
|
-
IncludedProperties?: IncludedProperty[];
|
|
613
|
+
IncludedProperties?: IncludedProperty[] | undefined;
|
|
614
614
|
/**
|
|
615
615
|
* <p>The root ARN of the account, an organizational unit (OU), or an organization ARN. If
|
|
616
616
|
* left empty, the default is account.</p>
|
|
617
617
|
* @public
|
|
618
618
|
*/
|
|
619
|
-
Scope?: string;
|
|
619
|
+
Scope?: string | undefined;
|
|
620
620
|
/**
|
|
621
621
|
* <p>An array of strings that specify which resources are included in the results of
|
|
622
622
|
* queries made using this view. When you use this view in a <a>Search</a>
|
|
@@ -634,12 +634,12 @@ export interface CreateViewInput {
|
|
|
634
634
|
* </important>
|
|
635
635
|
* @public
|
|
636
636
|
*/
|
|
637
|
-
Filters?: SearchFilter;
|
|
637
|
+
Filters?: SearchFilter | undefined;
|
|
638
638
|
/**
|
|
639
639
|
* <p>Tag key and value pairs that are attached to the view.</p>
|
|
640
640
|
* @public
|
|
641
641
|
*/
|
|
642
|
-
Tags?: Record<string, string
|
|
642
|
+
Tags?: Record<string, string> | undefined;
|
|
643
643
|
}
|
|
644
644
|
/**
|
|
645
645
|
* @public
|
|
@@ -649,7 +649,7 @@ export interface CreateViewOutput {
|
|
|
649
649
|
* <p>A structure that contains the details about the new view.</p>
|
|
650
650
|
* @public
|
|
651
651
|
*/
|
|
652
|
-
View?: View;
|
|
652
|
+
View?: View | undefined;
|
|
653
653
|
}
|
|
654
654
|
/**
|
|
655
655
|
* @public
|
|
@@ -669,7 +669,7 @@ export interface DeleteViewOutput {
|
|
|
669
669
|
* <p>The <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon resource name (ARN)</a> of the view that you successfully deleted.</p>
|
|
670
670
|
* @public
|
|
671
671
|
*/
|
|
672
|
-
ViewArn?: string;
|
|
672
|
+
ViewArn?: string | undefined;
|
|
673
673
|
}
|
|
674
674
|
/**
|
|
675
675
|
* @public
|
|
@@ -689,12 +689,12 @@ export interface GetViewOutput {
|
|
|
689
689
|
* <p>A structure that contains the details for the requested view.</p>
|
|
690
690
|
* @public
|
|
691
691
|
*/
|
|
692
|
-
View?: View;
|
|
692
|
+
View?: View | undefined;
|
|
693
693
|
/**
|
|
694
694
|
* <p>Tag key and value pairs that are attached to the view.</p>
|
|
695
695
|
* @public
|
|
696
696
|
*/
|
|
697
|
-
Tags?: Record<string, string
|
|
697
|
+
Tags?: Record<string, string> | undefined;
|
|
698
698
|
}
|
|
699
699
|
/**
|
|
700
700
|
* @public
|
|
@@ -708,7 +708,7 @@ export interface ListViewsInput {
|
|
|
708
708
|
* from. The pagination tokens expire after 24 hours.</p>
|
|
709
709
|
* @public
|
|
710
710
|
*/
|
|
711
|
-
NextToken?: string;
|
|
711
|
+
NextToken?: string | undefined;
|
|
712
712
|
/**
|
|
713
713
|
* <p>The maximum number of results that you want included on each page of the
|
|
714
714
|
* response. If you do not include this parameter, it defaults to a value appropriate to the
|
|
@@ -723,7 +723,7 @@ export interface ListViewsInput {
|
|
|
723
723
|
* </note>
|
|
724
724
|
* @public
|
|
725
725
|
*/
|
|
726
|
-
MaxResults?: number;
|
|
726
|
+
MaxResults?: number | undefined;
|
|
727
727
|
}
|
|
728
728
|
/**
|
|
729
729
|
* @public
|
|
@@ -734,7 +734,7 @@ export interface ListViewsOutput {
|
|
|
734
734
|
* operation.</p>
|
|
735
735
|
* @public
|
|
736
736
|
*/
|
|
737
|
-
Views?: string[];
|
|
737
|
+
Views?: string[] | undefined;
|
|
738
738
|
/**
|
|
739
739
|
* <p>If present, indicates that more output is available than is
|
|
740
740
|
* included in the current response. Use this value in the <code>NextToken</code> request parameter
|
|
@@ -743,7 +743,7 @@ export interface ListViewsOutput {
|
|
|
743
743
|
* The pagination tokens expire after 24 hours.</p>
|
|
744
744
|
* @public
|
|
745
745
|
*/
|
|
746
|
-
NextToken?: string;
|
|
746
|
+
NextToken?: string | undefined;
|
|
747
747
|
}
|
|
748
748
|
/**
|
|
749
749
|
* @public
|
|
@@ -760,7 +760,7 @@ export interface UpdateViewInput {
|
|
|
760
760
|
* <p>The default is an empty list, with no optional fields included in the results.</p>
|
|
761
761
|
* @public
|
|
762
762
|
*/
|
|
763
|
-
IncludedProperties?: IncludedProperty[];
|
|
763
|
+
IncludedProperties?: IncludedProperty[] | undefined;
|
|
764
764
|
/**
|
|
765
765
|
* <p>An array of strings that specify which resources are included in the results of
|
|
766
766
|
* queries made using this view. When you use this view in a <a>Search</a>
|
|
@@ -778,7 +778,7 @@ export interface UpdateViewInput {
|
|
|
778
778
|
* </important>
|
|
779
779
|
* @public
|
|
780
780
|
*/
|
|
781
|
-
Filters?: SearchFilter;
|
|
781
|
+
Filters?: SearchFilter | undefined;
|
|
782
782
|
}
|
|
783
783
|
/**
|
|
784
784
|
* @public
|
|
@@ -788,7 +788,7 @@ export interface UpdateViewOutput {
|
|
|
788
788
|
* <p>Details about the view that you changed with this operation.</p>
|
|
789
789
|
* @public
|
|
790
790
|
*/
|
|
791
|
-
View?: View;
|
|
791
|
+
View?: View | undefined;
|
|
792
792
|
}
|
|
793
793
|
/**
|
|
794
794
|
* <p>This is a structure that contains the status of Amazon Web Services service access, and whether you have a valid service-linked role to enable
|
|
@@ -805,7 +805,7 @@ export interface OrgConfiguration {
|
|
|
805
805
|
* <p>This value shows whether or not you have a valid a service-linked role required to start the multi-account search feature.</p>
|
|
806
806
|
* @public
|
|
807
807
|
*/
|
|
808
|
-
ServiceLinkedRole?: string;
|
|
808
|
+
ServiceLinkedRole?: string | undefined;
|
|
809
809
|
}
|
|
810
810
|
/**
|
|
811
811
|
* @public
|
|
@@ -816,7 +816,7 @@ export interface GetAccountLevelServiceConfigurationOutput {
|
|
|
816
816
|
* <code>DISABLED</code>.</p>
|
|
817
817
|
* @public
|
|
818
818
|
*/
|
|
819
|
-
OrgConfiguration?: OrgConfiguration;
|
|
819
|
+
OrgConfiguration?: OrgConfiguration | undefined;
|
|
820
820
|
}
|
|
821
821
|
/**
|
|
822
822
|
* @public
|
|
@@ -827,7 +827,7 @@ export interface GetDefaultViewOutput {
|
|
|
827
827
|
* which you called this operation.</p>
|
|
828
828
|
* @public
|
|
829
829
|
*/
|
|
830
|
-
ViewArn?: string;
|
|
830
|
+
ViewArn?: string | undefined;
|
|
831
831
|
}
|
|
832
832
|
/**
|
|
833
833
|
* @public
|
|
@@ -837,19 +837,19 @@ export interface GetIndexOutput {
|
|
|
837
837
|
* <p>The <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon resource name (ARN)</a> of the index.</p>
|
|
838
838
|
* @public
|
|
839
839
|
*/
|
|
840
|
-
Arn?: string;
|
|
840
|
+
Arn?: string | undefined;
|
|
841
841
|
/**
|
|
842
842
|
* <p>The type of the index in this Region. For information about the aggregator index and
|
|
843
843
|
* how it differs from a local index, see <a href="https://docs.aws.amazon.com/resource-explorer/latest/userguide/manage-aggregator-region.html">Turning on cross-Region search
|
|
844
844
|
* by creating an aggregator index</a>.</p>
|
|
845
845
|
* @public
|
|
846
846
|
*/
|
|
847
|
-
Type?: IndexType;
|
|
847
|
+
Type?: IndexType | undefined;
|
|
848
848
|
/**
|
|
849
849
|
* <p>The current state of the index in this Amazon Web Services Region.</p>
|
|
850
850
|
* @public
|
|
851
851
|
*/
|
|
852
|
-
State?: IndexState;
|
|
852
|
+
State?: IndexState | undefined;
|
|
853
853
|
/**
|
|
854
854
|
* <p>This response value is present only if this index is
|
|
855
855
|
* <code>Type=AGGREGATOR</code>.</p>
|
|
@@ -857,7 +857,7 @@ export interface GetIndexOutput {
|
|
|
857
857
|
* Region.</p>
|
|
858
858
|
* @public
|
|
859
859
|
*/
|
|
860
|
-
ReplicatingFrom?: string[];
|
|
860
|
+
ReplicatingFrom?: string[] | undefined;
|
|
861
861
|
/**
|
|
862
862
|
* <p>This response value is present only if this index is <code>Type=LOCAL</code>.</p>
|
|
863
863
|
* <p>The Amazon Web Services Region that contains the aggregator index, if one exists. If an aggregator index
|
|
@@ -865,22 +865,22 @@ export interface GetIndexOutput {
|
|
|
865
865
|
* information to the Region specified in this response value. </p>
|
|
866
866
|
* @public
|
|
867
867
|
*/
|
|
868
|
-
ReplicatingTo?: string[];
|
|
868
|
+
ReplicatingTo?: string[] | undefined;
|
|
869
869
|
/**
|
|
870
870
|
* <p>The date and time when the index was originally created.</p>
|
|
871
871
|
* @public
|
|
872
872
|
*/
|
|
873
|
-
CreatedAt?: Date;
|
|
873
|
+
CreatedAt?: Date | undefined;
|
|
874
874
|
/**
|
|
875
875
|
* <p>The date and time when the index was last updated.</p>
|
|
876
876
|
* @public
|
|
877
877
|
*/
|
|
878
|
-
LastUpdatedAt?: Date;
|
|
878
|
+
LastUpdatedAt?: Date | undefined;
|
|
879
879
|
/**
|
|
880
880
|
* <p>Tag key and value pairs that are attached to the index.</p>
|
|
881
881
|
* @public
|
|
882
882
|
*/
|
|
883
|
-
Tags?: Record<string, string
|
|
883
|
+
Tags?: Record<string, string> | undefined;
|
|
884
884
|
}
|
|
885
885
|
/**
|
|
886
886
|
* @public
|
|
@@ -903,55 +903,55 @@ export interface ManagedView {
|
|
|
903
903
|
* <p>The <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon resource name (ARN)</a> of the managed view.</p>
|
|
904
904
|
* @public
|
|
905
905
|
*/
|
|
906
|
-
ManagedViewArn?: string;
|
|
906
|
+
ManagedViewArn?: string | undefined;
|
|
907
907
|
/**
|
|
908
908
|
* <p>The name of the managed view. </p>
|
|
909
909
|
* @public
|
|
910
910
|
*/
|
|
911
|
-
ManagedViewName?: string;
|
|
911
|
+
ManagedViewName?: string | undefined;
|
|
912
912
|
/**
|
|
913
913
|
* <p>The service principal of the Amazon Web Services service that created and manages the managed view. </p>
|
|
914
914
|
* @public
|
|
915
915
|
*/
|
|
916
|
-
TrustedService?: string;
|
|
916
|
+
TrustedService?: string | undefined;
|
|
917
917
|
/**
|
|
918
918
|
* <p>The date and time when this managed view was last modified.</p>
|
|
919
919
|
* @public
|
|
920
920
|
*/
|
|
921
|
-
LastUpdatedAt?: Date;
|
|
921
|
+
LastUpdatedAt?: Date | undefined;
|
|
922
922
|
/**
|
|
923
923
|
* <p>The Amazon Web Services account that owns this managed view.</p>
|
|
924
924
|
* @public
|
|
925
925
|
*/
|
|
926
|
-
Owner?: string;
|
|
926
|
+
Owner?: string | undefined;
|
|
927
927
|
/**
|
|
928
928
|
* <p>An <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon resource name (ARN)</a> of an Amazon Web Services account or organization that specifies whether this managed view
|
|
929
929
|
* includes resources from only the specified Amazon Web Services account or all accounts in the specified organization. </p>
|
|
930
930
|
* @public
|
|
931
931
|
*/
|
|
932
|
-
Scope?: string;
|
|
932
|
+
Scope?: string | undefined;
|
|
933
933
|
/**
|
|
934
934
|
* <p>A structure that contains additional information about the managed view.</p>
|
|
935
935
|
* @public
|
|
936
936
|
*/
|
|
937
|
-
IncludedProperties?: IncludedProperty[];
|
|
937
|
+
IncludedProperties?: IncludedProperty[] | undefined;
|
|
938
938
|
/**
|
|
939
939
|
* <p>A search filter defines which resources can be part of a search query result
|
|
940
940
|
* set.</p>
|
|
941
941
|
* @public
|
|
942
942
|
*/
|
|
943
|
-
Filters?: SearchFilter;
|
|
943
|
+
Filters?: SearchFilter | undefined;
|
|
944
944
|
/**
|
|
945
945
|
* <p>The resource policy that defines access to the managed view. To learn more about this policy, review
|
|
946
946
|
* <a href="https://docs.aws.amazon.com/resource-explorer/latest/userguide/aws-managed-views.html">Managed views</a>.</p>
|
|
947
947
|
* @public
|
|
948
948
|
*/
|
|
949
|
-
ResourcePolicy?: string;
|
|
949
|
+
ResourcePolicy?: string | undefined;
|
|
950
950
|
/**
|
|
951
951
|
* <p>The version of the managed view. </p>
|
|
952
952
|
* @public
|
|
953
953
|
*/
|
|
954
|
-
Version?: string;
|
|
954
|
+
Version?: string | undefined;
|
|
955
955
|
}
|
|
956
956
|
/**
|
|
957
957
|
* @public
|
|
@@ -961,7 +961,7 @@ export interface GetManagedViewOutput {
|
|
|
961
961
|
* <p>Details about the specified managed view. </p>
|
|
962
962
|
* @public
|
|
963
963
|
*/
|
|
964
|
-
ManagedView?: ManagedView;
|
|
964
|
+
ManagedView?: ManagedView | undefined;
|
|
965
965
|
}
|
|
966
966
|
/**
|
|
967
967
|
* @public
|
|
@@ -987,7 +987,7 @@ export interface ListIndexesForMembersInput {
|
|
|
987
987
|
* </note>
|
|
988
988
|
* @public
|
|
989
989
|
*/
|
|
990
|
-
MaxResults?: number;
|
|
990
|
+
MaxResults?: number | undefined;
|
|
991
991
|
/**
|
|
992
992
|
* <p>The parameter for receiving additional results if you receive a
|
|
993
993
|
* <code>NextToken</code> response in a previous request. A <code>NextToken</code> response
|
|
@@ -996,7 +996,7 @@ export interface ListIndexesForMembersInput {
|
|
|
996
996
|
* from. The pagination tokens expire after 24 hours.</p>
|
|
997
997
|
* @public
|
|
998
998
|
*/
|
|
999
|
-
NextToken?: string;
|
|
999
|
+
NextToken?: string | undefined;
|
|
1000
1000
|
}
|
|
1001
1001
|
/**
|
|
1002
1002
|
* <p>An index is the data store used by Amazon Web Services Resource Explorer to hold information about your Amazon Web Services
|
|
@@ -1008,18 +1008,18 @@ export interface MemberIndex {
|
|
|
1008
1008
|
* <p>The account ID for the index.</p>
|
|
1009
1009
|
* @public
|
|
1010
1010
|
*/
|
|
1011
|
-
AccountId?: string;
|
|
1011
|
+
AccountId?: string | undefined;
|
|
1012
1012
|
/**
|
|
1013
1013
|
* <p>The Amazon Web Services Region in which the index
|
|
1014
1014
|
* exists.</p>
|
|
1015
1015
|
* @public
|
|
1016
1016
|
*/
|
|
1017
|
-
Region?: string;
|
|
1017
|
+
Region?: string | undefined;
|
|
1018
1018
|
/**
|
|
1019
1019
|
* <p>The <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon resource name (ARN)</a> of the index.</p>
|
|
1020
1020
|
* @public
|
|
1021
1021
|
*/
|
|
1022
|
-
Arn?: string;
|
|
1022
|
+
Arn?: string | undefined;
|
|
1023
1023
|
/**
|
|
1024
1024
|
* <p>The type of index. It can be one of the following values: </p>
|
|
1025
1025
|
* <ul>
|
|
@@ -1038,7 +1038,7 @@ export interface MemberIndex {
|
|
|
1038
1038
|
* </ul>
|
|
1039
1039
|
* @public
|
|
1040
1040
|
*/
|
|
1041
|
-
Type?: IndexType;
|
|
1041
|
+
Type?: IndexType | undefined;
|
|
1042
1042
|
}
|
|
1043
1043
|
/**
|
|
1044
1044
|
* @public
|
|
@@ -1049,7 +1049,7 @@ export interface ListIndexesForMembersOutput {
|
|
|
1049
1049
|
* index.</p>
|
|
1050
1050
|
* @public
|
|
1051
1051
|
*/
|
|
1052
|
-
Indexes?: MemberIndex[];
|
|
1052
|
+
Indexes?: MemberIndex[] | undefined;
|
|
1053
1053
|
/**
|
|
1054
1054
|
* <p>If present, indicates that more output is available than is
|
|
1055
1055
|
* included in the current response. Use this value in the <code>NextToken</code> request parameter
|
|
@@ -1058,7 +1058,7 @@ export interface ListIndexesForMembersOutput {
|
|
|
1058
1058
|
* The pagination tokens expire after 24 hours.</p>
|
|
1059
1059
|
* @public
|
|
1060
1060
|
*/
|
|
1061
|
-
NextToken?: string;
|
|
1061
|
+
NextToken?: string | undefined;
|
|
1062
1062
|
}
|
|
1063
1063
|
/**
|
|
1064
1064
|
* @public
|
|
@@ -1078,7 +1078,7 @@ export interface ListManagedViewsInput {
|
|
|
1078
1078
|
* </note>
|
|
1079
1079
|
* @public
|
|
1080
1080
|
*/
|
|
1081
|
-
MaxResults?: number;
|
|
1081
|
+
MaxResults?: number | undefined;
|
|
1082
1082
|
/**
|
|
1083
1083
|
* <p>The parameter for receiving additional results if you receive a
|
|
1084
1084
|
* <code>NextToken</code> response in a previous request. A <code>NextToken</code> response
|
|
@@ -1087,13 +1087,13 @@ export interface ListManagedViewsInput {
|
|
|
1087
1087
|
* from. The pagination tokens expire after 24 hours.</p>
|
|
1088
1088
|
* @public
|
|
1089
1089
|
*/
|
|
1090
|
-
NextToken?: string;
|
|
1090
|
+
NextToken?: string | undefined;
|
|
1091
1091
|
/**
|
|
1092
1092
|
* <p>Specifies a service principal name. If specified, then the
|
|
1093
1093
|
* operation only returns the managed views that are managed by the input service. </p>
|
|
1094
1094
|
* @public
|
|
1095
1095
|
*/
|
|
1096
|
-
ServicePrincipal?: string;
|
|
1096
|
+
ServicePrincipal?: string | undefined;
|
|
1097
1097
|
}
|
|
1098
1098
|
/**
|
|
1099
1099
|
* @public
|
|
@@ -1107,12 +1107,12 @@ export interface ListManagedViewsOutput {
|
|
|
1107
1107
|
* The pagination tokens expire after 24 hours.</p>
|
|
1108
1108
|
* @public
|
|
1109
1109
|
*/
|
|
1110
|
-
NextToken?: string;
|
|
1110
|
+
NextToken?: string | undefined;
|
|
1111
1111
|
/**
|
|
1112
1112
|
* <p>The list of managed views available in the Amazon Web Services Region in which you called this operation. </p>
|
|
1113
1113
|
* @public
|
|
1114
1114
|
*/
|
|
1115
|
-
ManagedViews?: string[];
|
|
1115
|
+
ManagedViews?: string[] | undefined;
|
|
1116
1116
|
}
|
|
1117
1117
|
/**
|
|
1118
1118
|
* @public
|
|
@@ -1123,7 +1123,7 @@ export interface ListResourcesInput {
|
|
|
1123
1123
|
* set.</p>
|
|
1124
1124
|
* @public
|
|
1125
1125
|
*/
|
|
1126
|
-
Filters?: SearchFilter;
|
|
1126
|
+
Filters?: SearchFilter | undefined;
|
|
1127
1127
|
/**
|
|
1128
1128
|
* <p>The maximum number of results that you want included on each page of the
|
|
1129
1129
|
* response. If you do not include this parameter, it defaults to a value appropriate to the
|
|
@@ -1138,7 +1138,7 @@ export interface ListResourcesInput {
|
|
|
1138
1138
|
* </note>
|
|
1139
1139
|
* @public
|
|
1140
1140
|
*/
|
|
1141
|
-
MaxResults?: number;
|
|
1141
|
+
MaxResults?: number | undefined;
|
|
1142
1142
|
/**
|
|
1143
1143
|
* <p>Specifies the Amazon resource name (ARN) of the view to use for the query. If you don't
|
|
1144
1144
|
* specify a value for this parameter, then the operation automatically uses the default view
|
|
@@ -1147,7 +1147,7 @@ export interface ListResourcesInput {
|
|
|
1147
1147
|
* fails with a 401 Unauthorized exception.</p>
|
|
1148
1148
|
* @public
|
|
1149
1149
|
*/
|
|
1150
|
-
ViewArn?: string;
|
|
1150
|
+
ViewArn?: string | undefined;
|
|
1151
1151
|
/**
|
|
1152
1152
|
* <p>The parameter for receiving additional results if you receive a
|
|
1153
1153
|
* <code>NextToken</code> response in a previous request. A <code>NextToken</code> response
|
|
@@ -1156,7 +1156,7 @@ export interface ListResourcesInput {
|
|
|
1156
1156
|
* from. The pagination tokens expire after 24 hours.</p>
|
|
1157
1157
|
* @public
|
|
1158
1158
|
*/
|
|
1159
|
-
NextToken?: string;
|
|
1159
|
+
NextToken?: string | undefined;
|
|
1160
1160
|
}
|
|
1161
1161
|
/**
|
|
1162
1162
|
* <p>A structure that describes a property of a resource.</p>
|
|
@@ -1167,19 +1167,19 @@ export interface ResourceProperty {
|
|
|
1167
1167
|
* <p>The name of this property of the resource.</p>
|
|
1168
1168
|
* @public
|
|
1169
1169
|
*/
|
|
1170
|
-
Name?: string;
|
|
1170
|
+
Name?: string | undefined;
|
|
1171
1171
|
/**
|
|
1172
1172
|
* <p>The date and time that the information about this resource property was last
|
|
1173
1173
|
* updated.</p>
|
|
1174
1174
|
* @public
|
|
1175
1175
|
*/
|
|
1176
|
-
LastReportedAt?: Date;
|
|
1176
|
+
LastReportedAt?: Date | undefined;
|
|
1177
1177
|
/**
|
|
1178
1178
|
* <p>Details about this property. The content of this field is a JSON object that varies
|
|
1179
1179
|
* based on the resource type.</p>
|
|
1180
1180
|
* @public
|
|
1181
1181
|
*/
|
|
1182
|
-
Data?: __DocumentType;
|
|
1182
|
+
Data?: __DocumentType | undefined;
|
|
1183
1183
|
}
|
|
1184
1184
|
/**
|
|
1185
1185
|
* <p>A resource in Amazon Web Services that Amazon Web Services Resource Explorer has discovered, and for which it has stored
|
|
@@ -1191,40 +1191,40 @@ export interface Resource {
|
|
|
1191
1191
|
* <p>The <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon resource name (ARN)</a> of the resource.</p>
|
|
1192
1192
|
* @public
|
|
1193
1193
|
*/
|
|
1194
|
-
Arn?: string;
|
|
1194
|
+
Arn?: string | undefined;
|
|
1195
1195
|
/**
|
|
1196
1196
|
* <p>The Amazon Web Services account that owns the resource.</p>
|
|
1197
1197
|
* @public
|
|
1198
1198
|
*/
|
|
1199
|
-
OwningAccountId?: string;
|
|
1199
|
+
OwningAccountId?: string | undefined;
|
|
1200
1200
|
/**
|
|
1201
1201
|
* <p>The Amazon Web Services Region in which the resource was created and exists.</p>
|
|
1202
1202
|
* @public
|
|
1203
1203
|
*/
|
|
1204
|
-
Region?: string;
|
|
1204
|
+
Region?: string | undefined;
|
|
1205
1205
|
/**
|
|
1206
1206
|
* <p>The type of the resource.</p>
|
|
1207
1207
|
* @public
|
|
1208
1208
|
*/
|
|
1209
|
-
ResourceType?: string;
|
|
1209
|
+
ResourceType?: string | undefined;
|
|
1210
1210
|
/**
|
|
1211
1211
|
* <p>The Amazon Web Services service that owns the resource and is responsible for creating and updating
|
|
1212
1212
|
* it.</p>
|
|
1213
1213
|
* @public
|
|
1214
1214
|
*/
|
|
1215
|
-
Service?: string;
|
|
1215
|
+
Service?: string | undefined;
|
|
1216
1216
|
/**
|
|
1217
1217
|
* <p>The date and time that Resource Explorer last queried this resource and updated the index with
|
|
1218
1218
|
* the latest information about the resource.</p>
|
|
1219
1219
|
* @public
|
|
1220
1220
|
*/
|
|
1221
|
-
LastReportedAt?: Date;
|
|
1221
|
+
LastReportedAt?: Date | undefined;
|
|
1222
1222
|
/**
|
|
1223
1223
|
* <p>A structure with additional type-specific details about the resource. These properties
|
|
1224
1224
|
* can be added by turning on integration between Resource Explorer and other Amazon Web Services services.</p>
|
|
1225
1225
|
* @public
|
|
1226
1226
|
*/
|
|
1227
|
-
Properties?: ResourceProperty[];
|
|
1227
|
+
Properties?: ResourceProperty[] | undefined;
|
|
1228
1228
|
}
|
|
1229
1229
|
/**
|
|
1230
1230
|
* @public
|
|
@@ -1234,7 +1234,7 @@ export interface ListResourcesOutput {
|
|
|
1234
1234
|
* <p>The list of structures that describe the resources that match the query. </p>
|
|
1235
1235
|
* @public
|
|
1236
1236
|
*/
|
|
1237
|
-
Resources?: Resource[];
|
|
1237
|
+
Resources?: Resource[] | undefined;
|
|
1238
1238
|
/**
|
|
1239
1239
|
* <p>If present, indicates that more output is available than is
|
|
1240
1240
|
* included in the current response. Use this value in the <code>NextToken</code> request parameter
|
|
@@ -1243,12 +1243,12 @@ export interface ListResourcesOutput {
|
|
|
1243
1243
|
* The pagination tokens expire after 24 hours.</p>
|
|
1244
1244
|
* @public
|
|
1245
1245
|
*/
|
|
1246
|
-
NextToken?: string;
|
|
1246
|
+
NextToken?: string | undefined;
|
|
1247
1247
|
/**
|
|
1248
1248
|
* <p>The Amazon resource name (ARN) of the view that this operation used to perform the search. </p>
|
|
1249
1249
|
* @public
|
|
1250
1250
|
*/
|
|
1251
|
-
ViewArn?: string;
|
|
1251
|
+
ViewArn?: string | undefined;
|
|
1252
1252
|
}
|
|
1253
1253
|
/**
|
|
1254
1254
|
* @public
|
|
@@ -1262,7 +1262,7 @@ export interface ListSupportedResourceTypesInput {
|
|
|
1262
1262
|
* from. The pagination tokens expire after 24 hours.</p>
|
|
1263
1263
|
* @public
|
|
1264
1264
|
*/
|
|
1265
|
-
NextToken?: string;
|
|
1265
|
+
NextToken?: string | undefined;
|
|
1266
1266
|
/**
|
|
1267
1267
|
* <p>The maximum number of results that you want included on each page of the
|
|
1268
1268
|
* response. If you do not include this parameter, it defaults to a value appropriate to the
|
|
@@ -1277,7 +1277,7 @@ export interface ListSupportedResourceTypesInput {
|
|
|
1277
1277
|
* </note>
|
|
1278
1278
|
* @public
|
|
1279
1279
|
*/
|
|
1280
|
-
MaxResults?: number;
|
|
1280
|
+
MaxResults?: number | undefined;
|
|
1281
1281
|
}
|
|
1282
1282
|
/**
|
|
1283
1283
|
* <p>A structure that describes a resource type supported by Amazon Web Services Resource Explorer.</p>
|
|
@@ -1289,12 +1289,12 @@ export interface SupportedResourceType {
|
|
|
1289
1289
|
* service that lets you create and interact with resources of this type.</p>
|
|
1290
1290
|
* @public
|
|
1291
1291
|
*/
|
|
1292
|
-
Service?: string;
|
|
1292
|
+
Service?: string | undefined;
|
|
1293
1293
|
/**
|
|
1294
1294
|
* <p>The unique identifier of the resource type.</p>
|
|
1295
1295
|
* @public
|
|
1296
1296
|
*/
|
|
1297
|
-
ResourceType?: string;
|
|
1297
|
+
ResourceType?: string | undefined;
|
|
1298
1298
|
}
|
|
1299
1299
|
/**
|
|
1300
1300
|
* @public
|
|
@@ -1304,7 +1304,7 @@ export interface ListSupportedResourceTypesOutput {
|
|
|
1304
1304
|
* <p>The list of resource types supported by Resource Explorer.</p>
|
|
1305
1305
|
* @public
|
|
1306
1306
|
*/
|
|
1307
|
-
ResourceTypes?: SupportedResourceType[];
|
|
1307
|
+
ResourceTypes?: SupportedResourceType[] | undefined;
|
|
1308
1308
|
/**
|
|
1309
1309
|
* <p>If present, indicates that more output is available than is
|
|
1310
1310
|
* included in the current response. Use this value in the <code>NextToken</code> request parameter
|
|
@@ -1313,7 +1313,7 @@ export interface ListSupportedResourceTypesOutput {
|
|
|
1313
1313
|
* The pagination tokens expire after 24 hours.</p>
|
|
1314
1314
|
* @public
|
|
1315
1315
|
*/
|
|
1316
|
-
NextToken?: string;
|
|
1316
|
+
NextToken?: string | undefined;
|
|
1317
1317
|
}
|
|
1318
1318
|
/**
|
|
1319
1319
|
* @public
|
|
@@ -1334,7 +1334,7 @@ export interface ListTagsForResourceOutput {
|
|
|
1334
1334
|
* index.</p>
|
|
1335
1335
|
* @public
|
|
1336
1336
|
*/
|
|
1337
|
-
Tags?: Record<string, string
|
|
1337
|
+
Tags?: Record<string, string> | undefined;
|
|
1338
1338
|
}
|
|
1339
1339
|
/**
|
|
1340
1340
|
* <p>Information about the number of results that match the query. At this time, Amazon Web Services Resource Explorer
|
|
@@ -1352,7 +1352,7 @@ export interface ResourceCount {
|
|
|
1352
1352
|
* number of results.</p>
|
|
1353
1353
|
* @public
|
|
1354
1354
|
*/
|
|
1355
|
-
TotalResources?: number;
|
|
1355
|
+
TotalResources?: number | undefined;
|
|
1356
1356
|
/**
|
|
1357
1357
|
* <p>Indicates whether the <code>TotalResources</code> value represents an exhaustive count
|
|
1358
1358
|
* of search results.</p>
|
|
@@ -1368,7 +1368,7 @@ export interface ResourceCount {
|
|
|
1368
1368
|
* </ul>
|
|
1369
1369
|
* @public
|
|
1370
1370
|
*/
|
|
1371
|
-
Complete?: boolean;
|
|
1371
|
+
Complete?: boolean | undefined;
|
|
1372
1372
|
}
|
|
1373
1373
|
/**
|
|
1374
1374
|
* @public
|
|
@@ -1403,7 +1403,7 @@ export interface SearchInput {
|
|
|
1403
1403
|
* </note>
|
|
1404
1404
|
* @public
|
|
1405
1405
|
*/
|
|
1406
|
-
MaxResults?: number;
|
|
1406
|
+
MaxResults?: number | undefined;
|
|
1407
1407
|
/**
|
|
1408
1408
|
* <p>Specifies the <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon resource name (ARN)</a> of the view to use for the query. If you don't specify a
|
|
1409
1409
|
* value for this parameter, then the operation automatically uses the default view for the
|
|
@@ -1412,7 +1412,7 @@ export interface SearchInput {
|
|
|
1412
1412
|
* fails with a <code>401 Unauthorized</code> exception.</p>
|
|
1413
1413
|
* @public
|
|
1414
1414
|
*/
|
|
1415
|
-
ViewArn?: string;
|
|
1415
|
+
ViewArn?: string | undefined;
|
|
1416
1416
|
/**
|
|
1417
1417
|
* <p>The parameter for receiving additional results if you receive a
|
|
1418
1418
|
* <code>NextToken</code> response in a previous request. A <code>NextToken</code> response
|
|
@@ -1421,7 +1421,7 @@ export interface SearchInput {
|
|
|
1421
1421
|
* from. The pagination tokens expire after 24 hours.</p>
|
|
1422
1422
|
* @public
|
|
1423
1423
|
*/
|
|
1424
|
-
NextToken?: string;
|
|
1424
|
+
NextToken?: string | undefined;
|
|
1425
1425
|
}
|
|
1426
1426
|
/**
|
|
1427
1427
|
* @public
|
|
@@ -1431,7 +1431,7 @@ export interface SearchOutput {
|
|
|
1431
1431
|
* <p>The list of structures that describe the resources that match the query.</p>
|
|
1432
1432
|
* @public
|
|
1433
1433
|
*/
|
|
1434
|
-
Resources?: Resource[];
|
|
1434
|
+
Resources?: Resource[] | undefined;
|
|
1435
1435
|
/**
|
|
1436
1436
|
* <p>If present, indicates that more output is available than is
|
|
1437
1437
|
* included in the current response. Use this value in the <code>NextToken</code> request parameter
|
|
@@ -1440,17 +1440,17 @@ export interface SearchOutput {
|
|
|
1440
1440
|
* The pagination tokens expire after 24 hours.</p>
|
|
1441
1441
|
* @public
|
|
1442
1442
|
*/
|
|
1443
|
-
NextToken?: string;
|
|
1443
|
+
NextToken?: string | undefined;
|
|
1444
1444
|
/**
|
|
1445
1445
|
* <p>The <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon resource name (ARN)</a> of the view that this operation used to perform the search.</p>
|
|
1446
1446
|
* @public
|
|
1447
1447
|
*/
|
|
1448
|
-
ViewArn?: string;
|
|
1448
|
+
ViewArn?: string | undefined;
|
|
1449
1449
|
/**
|
|
1450
1450
|
* <p>The number of resources that match the query.</p>
|
|
1451
1451
|
* @public
|
|
1452
1452
|
*/
|
|
1453
|
-
Count?: ResourceCount;
|
|
1453
|
+
Count?: ResourceCount | undefined;
|
|
1454
1454
|
}
|
|
1455
1455
|
/**
|
|
1456
1456
|
* @public
|
|
@@ -1467,7 +1467,7 @@ export interface TagResourceInput {
|
|
|
1467
1467
|
* index.</p>
|
|
1468
1468
|
* @public
|
|
1469
1469
|
*/
|
|
1470
|
-
Tags?: Record<string, string
|
|
1470
|
+
Tags?: Record<string, string> | undefined;
|
|
1471
1471
|
}
|
|
1472
1472
|
/**
|
|
1473
1473
|
* @public
|