@aws-sdk/client-resource-explorer-2 3.686.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.
Files changed (29) hide show
  1. package/README.md +16 -0
  2. package/dist-cjs/index.js +127 -0
  3. package/dist-es/ResourceExplorer2.js +4 -0
  4. package/dist-es/commands/GetManagedViewCommand.js +23 -0
  5. package/dist-es/commands/ListManagedViewsCommand.js +22 -0
  6. package/dist-es/commands/index.js +2 -0
  7. package/dist-es/models/models_0.js +8 -0
  8. package/dist-es/pagination/ListManagedViewsPaginator.js +4 -0
  9. package/dist-es/pagination/index.js +1 -0
  10. package/dist-es/protocols/Aws_restJson1.js +71 -0
  11. package/dist-types/ResourceExplorer2.d.ts +15 -0
  12. package/dist-types/ResourceExplorer2Client.d.ts +4 -2
  13. package/dist-types/commands/GetManagedViewCommand.d.ts +112 -0
  14. package/dist-types/commands/ListManagedViewsCommand.d.ts +98 -0
  15. package/dist-types/commands/index.d.ts +2 -0
  16. package/dist-types/models/models_0.d.ts +251 -108
  17. package/dist-types/pagination/ListManagedViewsPaginator.d.ts +7 -0
  18. package/dist-types/pagination/index.d.ts +1 -0
  19. package/dist-types/protocols/Aws_restJson1.d.ts +18 -0
  20. package/dist-types/ts3.4/ResourceExplorer2.d.ts +35 -0
  21. package/dist-types/ts3.4/ResourceExplorer2Client.d.ts +12 -0
  22. package/dist-types/ts3.4/commands/GetManagedViewCommand.d.ts +47 -0
  23. package/dist-types/ts3.4/commands/ListManagedViewsCommand.d.ts +50 -0
  24. package/dist-types/ts3.4/commands/index.d.ts +2 -0
  25. package/dist-types/ts3.4/models/models_0.d.ts +137 -106
  26. package/dist-types/ts3.4/pagination/ListManagedViewsPaginator.d.ts +11 -0
  27. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  28. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +24 -0
  29. 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,103 @@ 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
+ }
885
+ /**
886
+ * @public
887
+ */
888
+ export interface GetManagedViewInput {
889
+ /**
890
+ * <p>The Amazon resource name (ARN) of the managed view.</p>
891
+ * @public
892
+ */
893
+ ManagedViewArn: string | undefined;
894
+ }
895
+ /**
896
+ * <p>An Amazon Web Services-managed view is how other Amazon Web Services services can access
897
+ * resource information indexed by Resource Explorer for your Amazon Web Services account or organization
898
+ * with your consent. For more information, see <a href="https://docs.aws.amazon.com/resource-explorer/latest/userguide/aws-managed-views.html">Managed views</a>. </p>
899
+ * @public
900
+ */
901
+ export interface ManagedView {
902
+ /**
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
+ * @public
905
+ */
906
+ ManagedViewArn?: string | undefined;
907
+ /**
908
+ * <p>The name of the managed view. </p>
909
+ * @public
910
+ */
911
+ ManagedViewName?: string | undefined;
912
+ /**
913
+ * <p>The service principal of the Amazon Web Services service that created and manages the managed view. </p>
914
+ * @public
915
+ */
916
+ TrustedService?: string | undefined;
917
+ /**
918
+ * <p>The date and time when this managed view was last modified.</p>
919
+ * @public
920
+ */
921
+ LastUpdatedAt?: Date | undefined;
922
+ /**
923
+ * <p>The Amazon Web Services account that owns this managed view.</p>
924
+ * @public
925
+ */
926
+ Owner?: string | undefined;
927
+ /**
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
+ * includes resources from only the specified Amazon Web Services account or all accounts in the specified organization. </p>
930
+ * @public
931
+ */
932
+ Scope?: string | undefined;
933
+ /**
934
+ * <p>A structure that contains additional information about the managed view.</p>
935
+ * @public
936
+ */
937
+ IncludedProperties?: IncludedProperty[] | undefined;
938
+ /**
939
+ * <p>A search filter defines which resources can be part of a search query result
940
+ * set.</p>
941
+ * @public
942
+ */
943
+ Filters?: SearchFilter | undefined;
944
+ /**
945
+ * <p>The resource policy that defines access to the managed view. To learn more about this policy, review
946
+ * <a href="https://docs.aws.amazon.com/resource-explorer/latest/userguide/aws-managed-views.html">Managed views</a>.</p>
947
+ * @public
948
+ */
949
+ ResourcePolicy?: string | undefined;
950
+ /**
951
+ * <p>The version of the managed view. </p>
952
+ * @public
953
+ */
954
+ Version?: string | undefined;
955
+ }
956
+ /**
957
+ * @public
958
+ */
959
+ export interface GetManagedViewOutput {
960
+ /**
961
+ * <p>Details about the specified managed view. </p>
962
+ * @public
963
+ */
964
+ ManagedView?: ManagedView | undefined;
884
965
  }
885
966
  /**
886
967
  * @public
@@ -906,7 +987,7 @@ export interface ListIndexesForMembersInput {
906
987
  * </note>
907
988
  * @public
908
989
  */
909
- MaxResults?: number;
990
+ MaxResults?: number | undefined;
910
991
  /**
911
992
  * <p>The parameter for receiving additional results if you receive a
912
993
  * <code>NextToken</code> response in a previous request. A <code>NextToken</code> response
@@ -915,7 +996,7 @@ export interface ListIndexesForMembersInput {
915
996
  * from. The pagination tokens expire after 24 hours.</p>
916
997
  * @public
917
998
  */
918
- NextToken?: string;
999
+ NextToken?: string | undefined;
919
1000
  }
920
1001
  /**
921
1002
  * <p>An index is the data store used by Amazon Web Services Resource Explorer to hold information about your Amazon Web Services
@@ -927,18 +1008,18 @@ export interface MemberIndex {
927
1008
  * <p>The account ID for the index.</p>
928
1009
  * @public
929
1010
  */
930
- AccountId?: string;
1011
+ AccountId?: string | undefined;
931
1012
  /**
932
1013
  * <p>The Amazon Web Services Region in which the index
933
1014
  * exists.</p>
934
1015
  * @public
935
1016
  */
936
- Region?: string;
1017
+ Region?: string | undefined;
937
1018
  /**
938
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>
939
1020
  * @public
940
1021
  */
941
- Arn?: string;
1022
+ Arn?: string | undefined;
942
1023
  /**
943
1024
  * <p>The type of index. It can be one of the following values: </p>
944
1025
  * <ul>
@@ -957,7 +1038,7 @@ export interface MemberIndex {
957
1038
  * </ul>
958
1039
  * @public
959
1040
  */
960
- Type?: IndexType;
1041
+ Type?: IndexType | undefined;
961
1042
  }
962
1043
  /**
963
1044
  * @public
@@ -968,7 +1049,7 @@ export interface ListIndexesForMembersOutput {
968
1049
  * index.</p>
969
1050
  * @public
970
1051
  */
971
- Indexes?: MemberIndex[];
1052
+ Indexes?: MemberIndex[] | undefined;
972
1053
  /**
973
1054
  * <p>If present, indicates that more output is available than is
974
1055
  * included in the current response. Use this value in the <code>NextToken</code> request parameter
@@ -977,7 +1058,61 @@ export interface ListIndexesForMembersOutput {
977
1058
  * The pagination tokens expire after 24 hours.</p>
978
1059
  * @public
979
1060
  */
980
- NextToken?: string;
1061
+ NextToken?: string | undefined;
1062
+ }
1063
+ /**
1064
+ * @public
1065
+ */
1066
+ export interface ListManagedViewsInput {
1067
+ /**
1068
+ * <p>The maximum number of results that you want included on each page of the
1069
+ * response. If you do not include this parameter, it defaults to a value appropriate to the
1070
+ * operation. If additional items exist beyond those included in the current response, the
1071
+ * <code>NextToken</code> response element is present and has a value (is not null). Include that
1072
+ * value as the <code>NextToken</code> request parameter in the next call to the operation to get
1073
+ * the next part of the results.</p>
1074
+ * <note>
1075
+ * <p>An API operation can return fewer results than the maximum even when there are
1076
+ * more results available. You should check <code>NextToken</code> after every operation to ensure
1077
+ * that you receive all of the results.</p>
1078
+ * </note>
1079
+ * @public
1080
+ */
1081
+ MaxResults?: number | undefined;
1082
+ /**
1083
+ * <p>The parameter for receiving additional results if you receive a
1084
+ * <code>NextToken</code> response in a previous request. A <code>NextToken</code> response
1085
+ * indicates that more output is available. Set this parameter to the value of the previous
1086
+ * call's <code>NextToken</code> response to indicate where the output should continue
1087
+ * from. The pagination tokens expire after 24 hours.</p>
1088
+ * @public
1089
+ */
1090
+ NextToken?: string | undefined;
1091
+ /**
1092
+ * <p>Specifies a service principal name. If specified, then the
1093
+ * operation only returns the managed views that are managed by the input service. </p>
1094
+ * @public
1095
+ */
1096
+ ServicePrincipal?: string | undefined;
1097
+ }
1098
+ /**
1099
+ * @public
1100
+ */
1101
+ export interface ListManagedViewsOutput {
1102
+ /**
1103
+ * <p>If present, indicates that more output is available than is
1104
+ * included in the current response. Use this value in the <code>NextToken</code> request parameter
1105
+ * in a subsequent call to the operation to get the next part of the output. You should repeat this
1106
+ * until the <code>NextToken</code> response element comes back as <code>null</code>.
1107
+ * The pagination tokens expire after 24 hours.</p>
1108
+ * @public
1109
+ */
1110
+ NextToken?: string | undefined;
1111
+ /**
1112
+ * <p>The list of managed views available in the Amazon Web Services Region in which you called this operation. </p>
1113
+ * @public
1114
+ */
1115
+ ManagedViews?: string[] | undefined;
981
1116
  }
982
1117
  /**
983
1118
  * @public
@@ -988,7 +1123,7 @@ export interface ListResourcesInput {
988
1123
  * set.</p>
989
1124
  * @public
990
1125
  */
991
- Filters?: SearchFilter;
1126
+ Filters?: SearchFilter | undefined;
992
1127
  /**
993
1128
  * <p>The maximum number of results that you want included on each page of the
994
1129
  * response. If you do not include this parameter, it defaults to a value appropriate to the
@@ -1003,7 +1138,7 @@ export interface ListResourcesInput {
1003
1138
  * </note>
1004
1139
  * @public
1005
1140
  */
1006
- MaxResults?: number;
1141
+ MaxResults?: number | undefined;
1007
1142
  /**
1008
1143
  * <p>Specifies the Amazon resource name (ARN) of the view to use for the query. If you don't
1009
1144
  * specify a value for this parameter, then the operation automatically uses the default view
@@ -1012,7 +1147,7 @@ export interface ListResourcesInput {
1012
1147
  * fails with a 401 Unauthorized exception.</p>
1013
1148
  * @public
1014
1149
  */
1015
- ViewArn?: string;
1150
+ ViewArn?: string | undefined;
1016
1151
  /**
1017
1152
  * <p>The parameter for receiving additional results if you receive a
1018
1153
  * <code>NextToken</code> response in a previous request. A <code>NextToken</code> response
@@ -1021,7 +1156,7 @@ export interface ListResourcesInput {
1021
1156
  * from. The pagination tokens expire after 24 hours.</p>
1022
1157
  * @public
1023
1158
  */
1024
- NextToken?: string;
1159
+ NextToken?: string | undefined;
1025
1160
  }
1026
1161
  /**
1027
1162
  * <p>A structure that describes a property of a resource.</p>
@@ -1032,19 +1167,19 @@ export interface ResourceProperty {
1032
1167
  * <p>The name of this property of the resource.</p>
1033
1168
  * @public
1034
1169
  */
1035
- Name?: string;
1170
+ Name?: string | undefined;
1036
1171
  /**
1037
1172
  * <p>The date and time that the information about this resource property was last
1038
1173
  * updated.</p>
1039
1174
  * @public
1040
1175
  */
1041
- LastReportedAt?: Date;
1176
+ LastReportedAt?: Date | undefined;
1042
1177
  /**
1043
1178
  * <p>Details about this property. The content of this field is a JSON object that varies
1044
1179
  * based on the resource type.</p>
1045
1180
  * @public
1046
1181
  */
1047
- Data?: __DocumentType;
1182
+ Data?: __DocumentType | undefined;
1048
1183
  }
1049
1184
  /**
1050
1185
  * <p>A resource in Amazon Web Services that Amazon Web Services Resource Explorer has discovered, and for which it has stored
@@ -1056,40 +1191,40 @@ export interface Resource {
1056
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>
1057
1192
  * @public
1058
1193
  */
1059
- Arn?: string;
1194
+ Arn?: string | undefined;
1060
1195
  /**
1061
1196
  * <p>The Amazon Web Services account that owns the resource.</p>
1062
1197
  * @public
1063
1198
  */
1064
- OwningAccountId?: string;
1199
+ OwningAccountId?: string | undefined;
1065
1200
  /**
1066
1201
  * <p>The Amazon Web Services Region in which the resource was created and exists.</p>
1067
1202
  * @public
1068
1203
  */
1069
- Region?: string;
1204
+ Region?: string | undefined;
1070
1205
  /**
1071
1206
  * <p>The type of the resource.</p>
1072
1207
  * @public
1073
1208
  */
1074
- ResourceType?: string;
1209
+ ResourceType?: string | undefined;
1075
1210
  /**
1076
- * <p>The Amazon Web Servicesservice that owns the resource and is responsible for creating and updating
1211
+ * <p>The Amazon Web Services service that owns the resource and is responsible for creating and updating
1077
1212
  * it.</p>
1078
1213
  * @public
1079
1214
  */
1080
- Service?: string;
1215
+ Service?: string | undefined;
1081
1216
  /**
1082
1217
  * <p>The date and time that Resource Explorer last queried this resource and updated the index with
1083
1218
  * the latest information about the resource.</p>
1084
1219
  * @public
1085
1220
  */
1086
- LastReportedAt?: Date;
1221
+ LastReportedAt?: Date | undefined;
1087
1222
  /**
1088
1223
  * <p>A structure with additional type-specific details about the resource. These properties
1089
1224
  * can be added by turning on integration between Resource Explorer and other Amazon Web Services services.</p>
1090
1225
  * @public
1091
1226
  */
1092
- Properties?: ResourceProperty[];
1227
+ Properties?: ResourceProperty[] | undefined;
1093
1228
  }
1094
1229
  /**
1095
1230
  * @public
@@ -1099,7 +1234,7 @@ export interface ListResourcesOutput {
1099
1234
  * <p>The list of structures that describe the resources that match the query. </p>
1100
1235
  * @public
1101
1236
  */
1102
- Resources?: Resource[];
1237
+ Resources?: Resource[] | undefined;
1103
1238
  /**
1104
1239
  * <p>If present, indicates that more output is available than is
1105
1240
  * included in the current response. Use this value in the <code>NextToken</code> request parameter
@@ -1108,12 +1243,12 @@ export interface ListResourcesOutput {
1108
1243
  * The pagination tokens expire after 24 hours.</p>
1109
1244
  * @public
1110
1245
  */
1111
- NextToken?: string;
1246
+ NextToken?: string | undefined;
1112
1247
  /**
1113
1248
  * <p>The Amazon resource name (ARN) of the view that this operation used to perform the search. </p>
1114
1249
  * @public
1115
1250
  */
1116
- ViewArn?: string;
1251
+ ViewArn?: string | undefined;
1117
1252
  }
1118
1253
  /**
1119
1254
  * @public
@@ -1127,7 +1262,7 @@ export interface ListSupportedResourceTypesInput {
1127
1262
  * from. The pagination tokens expire after 24 hours.</p>
1128
1263
  * @public
1129
1264
  */
1130
- NextToken?: string;
1265
+ NextToken?: string | undefined;
1131
1266
  /**
1132
1267
  * <p>The maximum number of results that you want included on each page of the
1133
1268
  * response. If you do not include this parameter, it defaults to a value appropriate to the
@@ -1142,7 +1277,7 @@ export interface ListSupportedResourceTypesInput {
1142
1277
  * </note>
1143
1278
  * @public
1144
1279
  */
1145
- MaxResults?: number;
1280
+ MaxResults?: number | undefined;
1146
1281
  }
1147
1282
  /**
1148
1283
  * <p>A structure that describes a resource type supported by Amazon Web Services Resource Explorer.</p>
@@ -1150,16 +1285,16 @@ export interface ListSupportedResourceTypesInput {
1150
1285
  */
1151
1286
  export interface SupportedResourceType {
1152
1287
  /**
1153
- * <p>The Amazon Web Servicesservice that is associated with the resource type. This is the primary
1288
+ * <p>The Amazon Web Services service that is associated with the resource type. This is the primary
1154
1289
  * service that lets you create and interact with resources of this type.</p>
1155
1290
  * @public
1156
1291
  */
1157
- Service?: string;
1292
+ Service?: string | undefined;
1158
1293
  /**
1159
1294
  * <p>The unique identifier of the resource type.</p>
1160
1295
  * @public
1161
1296
  */
1162
- ResourceType?: string;
1297
+ ResourceType?: string | undefined;
1163
1298
  }
1164
1299
  /**
1165
1300
  * @public
@@ -1169,7 +1304,7 @@ export interface ListSupportedResourceTypesOutput {
1169
1304
  * <p>The list of resource types supported by Resource Explorer.</p>
1170
1305
  * @public
1171
1306
  */
1172
- ResourceTypes?: SupportedResourceType[];
1307
+ ResourceTypes?: SupportedResourceType[] | undefined;
1173
1308
  /**
1174
1309
  * <p>If present, indicates that more output is available than is
1175
1310
  * included in the current response. Use this value in the <code>NextToken</code> request parameter
@@ -1178,7 +1313,7 @@ export interface ListSupportedResourceTypesOutput {
1178
1313
  * The pagination tokens expire after 24 hours.</p>
1179
1314
  * @public
1180
1315
  */
1181
- NextToken?: string;
1316
+ NextToken?: string | undefined;
1182
1317
  }
1183
1318
  /**
1184
1319
  * @public
@@ -1199,7 +1334,7 @@ export interface ListTagsForResourceOutput {
1199
1334
  * index.</p>
1200
1335
  * @public
1201
1336
  */
1202
- Tags?: Record<string, string>;
1337
+ Tags?: Record<string, string> | undefined;
1203
1338
  }
1204
1339
  /**
1205
1340
  * <p>Information about the number of results that match the query. At this time, Amazon Web Services Resource Explorer
@@ -1217,7 +1352,7 @@ export interface ResourceCount {
1217
1352
  * number of results.</p>
1218
1353
  * @public
1219
1354
  */
1220
- TotalResources?: number;
1355
+ TotalResources?: number | undefined;
1221
1356
  /**
1222
1357
  * <p>Indicates whether the <code>TotalResources</code> value represents an exhaustive count
1223
1358
  * of search results.</p>
@@ -1233,7 +1368,7 @@ export interface ResourceCount {
1233
1368
  * </ul>
1234
1369
  * @public
1235
1370
  */
1236
- Complete?: boolean;
1371
+ Complete?: boolean | undefined;
1237
1372
  }
1238
1373
  /**
1239
1374
  * @public
@@ -1268,7 +1403,7 @@ export interface SearchInput {
1268
1403
  * </note>
1269
1404
  * @public
1270
1405
  */
1271
- MaxResults?: number;
1406
+ MaxResults?: number | undefined;
1272
1407
  /**
1273
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
1274
1409
  * value for this parameter, then the operation automatically uses the default view for the
@@ -1277,7 +1412,7 @@ export interface SearchInput {
1277
1412
  * fails with a <code>401 Unauthorized</code> exception.</p>
1278
1413
  * @public
1279
1414
  */
1280
- ViewArn?: string;
1415
+ ViewArn?: string | undefined;
1281
1416
  /**
1282
1417
  * <p>The parameter for receiving additional results if you receive a
1283
1418
  * <code>NextToken</code> response in a previous request. A <code>NextToken</code> response
@@ -1286,7 +1421,7 @@ export interface SearchInput {
1286
1421
  * from. The pagination tokens expire after 24 hours.</p>
1287
1422
  * @public
1288
1423
  */
1289
- NextToken?: string;
1424
+ NextToken?: string | undefined;
1290
1425
  }
1291
1426
  /**
1292
1427
  * @public
@@ -1296,7 +1431,7 @@ export interface SearchOutput {
1296
1431
  * <p>The list of structures that describe the resources that match the query.</p>
1297
1432
  * @public
1298
1433
  */
1299
- Resources?: Resource[];
1434
+ Resources?: Resource[] | undefined;
1300
1435
  /**
1301
1436
  * <p>If present, indicates that more output is available than is
1302
1437
  * included in the current response. Use this value in the <code>NextToken</code> request parameter
@@ -1305,17 +1440,17 @@ export interface SearchOutput {
1305
1440
  * The pagination tokens expire after 24 hours.</p>
1306
1441
  * @public
1307
1442
  */
1308
- NextToken?: string;
1443
+ NextToken?: string | undefined;
1309
1444
  /**
1310
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>
1311
1446
  * @public
1312
1447
  */
1313
- ViewArn?: string;
1448
+ ViewArn?: string | undefined;
1314
1449
  /**
1315
1450
  * <p>The number of resources that match the query.</p>
1316
1451
  * @public
1317
1452
  */
1318
- Count?: ResourceCount;
1453
+ Count?: ResourceCount | undefined;
1319
1454
  }
1320
1455
  /**
1321
1456
  * @public
@@ -1332,7 +1467,7 @@ export interface TagResourceInput {
1332
1467
  * index.</p>
1333
1468
  * @public
1334
1469
  */
1335
- Tags?: Record<string, string>;
1470
+ Tags?: Record<string, string> | undefined;
1336
1471
  }
1337
1472
  /**
1338
1473
  * @public
@@ -1401,6 +1536,14 @@ export declare const UpdateViewOutputFilterSensitiveLog: (obj: UpdateViewOutput)
1401
1536
  * @internal
1402
1537
  */
1403
1538
  export declare const GetIndexOutputFilterSensitiveLog: (obj: GetIndexOutput) => any;
1539
+ /**
1540
+ * @internal
1541
+ */
1542
+ export declare const ManagedViewFilterSensitiveLog: (obj: ManagedView) => any;
1543
+ /**
1544
+ * @internal
1545
+ */
1546
+ export declare const GetManagedViewOutputFilterSensitiveLog: (obj: GetManagedViewOutput) => any;
1404
1547
  /**
1405
1548
  * @internal
1406
1549
  */