@aws-sdk/client-quicksight 3.577.0 → 3.582.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 (37) hide show
  1. package/README.md +16 -0
  2. package/dist-cjs/index.js +103 -0
  3. package/dist-es/QuickSight.js +4 -0
  4. package/dist-es/commands/DescribeKeyRegistrationCommand.js +24 -0
  5. package/dist-es/commands/UpdateKeyRegistrationCommand.js +24 -0
  6. package/dist-es/commands/index.js +2 -0
  7. package/dist-es/protocols/Aws_restJson1.js +61 -0
  8. package/dist-types/QuickSight.d.ts +14 -0
  9. package/dist-types/QuickSightClient.d.ts +4 -2
  10. package/dist-types/commands/CreateDataSourceCommand.d.ts +2 -2
  11. package/dist-types/commands/DescribeAssetBundleImportJobCommand.d.ts +1 -1
  12. package/dist-types/commands/DescribeDataSourceCommand.d.ts +2 -2
  13. package/dist-types/commands/DescribeKeyRegistrationCommand.d.ts +83 -0
  14. package/dist-types/commands/ListDataSourcesCommand.d.ts +4 -3
  15. package/dist-types/commands/ListFolderMembersCommand.d.ts +1 -1
  16. package/dist-types/commands/ListFoldersCommand.d.ts +1 -2
  17. package/dist-types/commands/StartAssetBundleImportJobCommand.d.ts +1 -1
  18. package/dist-types/commands/UpdateDataSourceCommand.d.ts +2 -2
  19. package/dist-types/commands/UpdateKeyRegistrationCommand.d.ts +94 -0
  20. package/dist-types/commands/index.d.ts +2 -0
  21. package/dist-types/models/models_2.d.ts +1 -1
  22. package/dist-types/models/models_3.d.ts +94 -96
  23. package/dist-types/models/models_4.d.ts +160 -2
  24. package/dist-types/protocols/Aws_restJson1.d.ts +18 -0
  25. package/dist-types/ts3.4/QuickSight.d.ts +34 -0
  26. package/dist-types/ts3.4/QuickSightClient.d.ts +12 -0
  27. package/dist-types/ts3.4/commands/DescribeKeyRegistrationCommand.d.ts +39 -0
  28. package/dist-types/ts3.4/commands/ListDataSourcesCommand.d.ts +2 -4
  29. package/dist-types/ts3.4/commands/ListFolderMembersCommand.d.ts +1 -1
  30. package/dist-types/ts3.4/commands/ListFoldersCommand.d.ts +1 -2
  31. package/dist-types/ts3.4/commands/UpdateKeyRegistrationCommand.d.ts +39 -0
  32. package/dist-types/ts3.4/commands/index.d.ts +2 -0
  33. package/dist-types/ts3.4/models/models_2.d.ts +1 -1
  34. package/dist-types/ts3.4/models/models_3.d.ts +20 -23
  35. package/dist-types/ts3.4/models/models_4.d.ts +40 -0
  36. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +24 -0
  37. package/package.json +11 -11
@@ -0,0 +1,83 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { DescribeKeyRegistrationRequest, DescribeKeyRegistrationResponse } from "../models/models_3";
4
+ import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient";
5
+ /**
6
+ * @public
7
+ */
8
+ export { __MetadataBearer, $Command };
9
+ /**
10
+ * @public
11
+ *
12
+ * The input for {@link DescribeKeyRegistrationCommand}.
13
+ */
14
+ export interface DescribeKeyRegistrationCommandInput extends DescribeKeyRegistrationRequest {
15
+ }
16
+ /**
17
+ * @public
18
+ *
19
+ * The output of {@link DescribeKeyRegistrationCommand}.
20
+ */
21
+ export interface DescribeKeyRegistrationCommandOutput extends DescribeKeyRegistrationResponse, __MetadataBearer {
22
+ }
23
+ declare const DescribeKeyRegistrationCommand_base: {
24
+ new (input: DescribeKeyRegistrationCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeKeyRegistrationCommandInput, DescribeKeyRegistrationCommandOutput, QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: DescribeKeyRegistrationCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeKeyRegistrationCommandInput, DescribeKeyRegistrationCommandOutput, QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
27
+ };
28
+ /**
29
+ * <p>Describes all customer managed key registrations in a Amazon QuickSight account.</p>
30
+ * @example
31
+ * Use a bare-bones client and the command you need to make an API call.
32
+ * ```javascript
33
+ * import { QuickSightClient, DescribeKeyRegistrationCommand } from "@aws-sdk/client-quicksight"; // ES Modules import
34
+ * // const { QuickSightClient, DescribeKeyRegistrationCommand } = require("@aws-sdk/client-quicksight"); // CommonJS import
35
+ * const client = new QuickSightClient(config);
36
+ * const input = { // DescribeKeyRegistrationRequest
37
+ * AwsAccountId: "STRING_VALUE", // required
38
+ * DefaultKeyOnly: true || false,
39
+ * };
40
+ * const command = new DescribeKeyRegistrationCommand(input);
41
+ * const response = await client.send(command);
42
+ * // { // DescribeKeyRegistrationResponse
43
+ * // AwsAccountId: "STRING_VALUE",
44
+ * // KeyRegistration: [ // KeyRegistration
45
+ * // { // RegisteredCustomerManagedKey
46
+ * // KeyArn: "STRING_VALUE",
47
+ * // DefaultKey: true || false,
48
+ * // },
49
+ * // ],
50
+ * // RequestId: "STRING_VALUE",
51
+ * // Status: Number("int"),
52
+ * // };
53
+ *
54
+ * ```
55
+ *
56
+ * @param DescribeKeyRegistrationCommandInput - {@link DescribeKeyRegistrationCommandInput}
57
+ * @returns {@link DescribeKeyRegistrationCommandOutput}
58
+ * @see {@link DescribeKeyRegistrationCommandInput} for command's `input` shape.
59
+ * @see {@link DescribeKeyRegistrationCommandOutput} for command's `response` shape.
60
+ * @see {@link QuickSightClientResolvedConfig | config} for QuickSightClient's `config` shape.
61
+ *
62
+ * @throws {@link AccessDeniedException} (client fault)
63
+ * <p>You don't have access to this item. The provided credentials couldn't be
64
+ * validated. You might not be authorized to carry out the request. Make sure that your
65
+ * account is authorized to use the Amazon QuickSight service, that your policies have the
66
+ * correct permissions, and that you are using the correct credentials.</p>
67
+ *
68
+ * @throws {@link InternalFailureException} (server fault)
69
+ * <p>An internal failure occurred.</p>
70
+ *
71
+ * @throws {@link InvalidParameterValueException} (client fault)
72
+ * <p>One or more parameters has a value that isn't valid.</p>
73
+ *
74
+ * @throws {@link ThrottlingException} (client fault)
75
+ * <p>Access is throttled.</p>
76
+ *
77
+ * @throws {@link QuickSightServiceException}
78
+ * <p>Base exception class for all service exceptions from QuickSight service.</p>
79
+ *
80
+ * @public
81
+ */
82
+ export declare class DescribeKeyRegistrationCommand extends DescribeKeyRegistrationCommand_base {
83
+ }
@@ -1,6 +1,7 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import { ListDataSourcesRequest, ListDataSourcesResponse } from "../models/models_3";
3
+ import { ListDataSourcesRequest } from "../models/models_3";
4
+ import { ListDataSourcesResponse } from "../models/models_4";
4
5
  import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient";
5
6
  /**
6
7
  * @public
@@ -110,7 +111,7 @@ declare const ListDataSourcesCommand_base: {
110
111
  * // ClusterId: "STRING_VALUE",
111
112
  * // IAMParameters: { // RedshiftIAMParameters
112
113
  * // RoleArn: "STRING_VALUE", // required
113
- * // DatabaseUser: "STRING_VALUE", // required
114
+ * // DatabaseUser: "STRING_VALUE",
114
115
  * // DatabaseGroups: [ // DatabaseGroupList
115
116
  * // "STRING_VALUE",
116
117
  * // ],
@@ -242,7 +243,7 @@ declare const ListDataSourcesCommand_base: {
242
243
  * // ClusterId: "STRING_VALUE",
243
244
  * // IAMParameters: {
244
245
  * // RoleArn: "STRING_VALUE", // required
245
- * // DatabaseUser: "STRING_VALUE", // required
246
+ * // DatabaseUser: "STRING_VALUE",
246
247
  * // DatabaseGroups: [
247
248
  * // "STRING_VALUE",
248
249
  * // ],
@@ -1,6 +1,6 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import { ListFolderMembersRequest, ListFolderMembersResponse } from "../models/models_3";
3
+ import { ListFolderMembersRequest, ListFolderMembersResponse } from "../models/models_4";
4
4
  import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient";
5
5
  /**
6
6
  * @public
@@ -1,7 +1,6 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import { ListFoldersRequest } from "../models/models_3";
4
- import { ListFoldersResponse } from "../models/models_4";
3
+ import { ListFoldersRequest, ListFoldersResponse } from "../models/models_4";
5
4
  import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient";
6
5
  /**
7
6
  * @public
@@ -133,7 +133,7 @@ declare const StartAssetBundleImportJobCommand_base: {
133
133
  * ClusterId: "STRING_VALUE",
134
134
  * IAMParameters: { // RedshiftIAMParameters
135
135
  * RoleArn: "STRING_VALUE", // required
136
- * DatabaseUser: "STRING_VALUE", // required
136
+ * DatabaseUser: "STRING_VALUE",
137
137
  * DatabaseGroups: [ // DatabaseGroupList
138
138
  * "STRING_VALUE",
139
139
  * ],
@@ -97,7 +97,7 @@ declare const UpdateDataSourceCommand_base: {
97
97
  * ClusterId: "STRING_VALUE",
98
98
  * IAMParameters: { // RedshiftIAMParameters
99
99
  * RoleArn: "STRING_VALUE", // required
100
- * DatabaseUser: "STRING_VALUE", // required
100
+ * DatabaseUser: "STRING_VALUE",
101
101
  * DatabaseGroups: [ // DatabaseGroupList
102
102
  * "STRING_VALUE",
103
103
  * ],
@@ -233,7 +233,7 @@ declare const UpdateDataSourceCommand_base: {
233
233
  * ClusterId: "STRING_VALUE",
234
234
  * IAMParameters: {
235
235
  * RoleArn: "STRING_VALUE", // required
236
- * DatabaseUser: "STRING_VALUE", // required
236
+ * DatabaseUser: "STRING_VALUE",
237
237
  * DatabaseGroups: [
238
238
  * "STRING_VALUE",
239
239
  * ],
@@ -0,0 +1,94 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { UpdateKeyRegistrationRequest, UpdateKeyRegistrationResponse } from "../models/models_4";
4
+ import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient";
5
+ /**
6
+ * @public
7
+ */
8
+ export { __MetadataBearer, $Command };
9
+ /**
10
+ * @public
11
+ *
12
+ * The input for {@link UpdateKeyRegistrationCommand}.
13
+ */
14
+ export interface UpdateKeyRegistrationCommandInput extends UpdateKeyRegistrationRequest {
15
+ }
16
+ /**
17
+ * @public
18
+ *
19
+ * The output of {@link UpdateKeyRegistrationCommand}.
20
+ */
21
+ export interface UpdateKeyRegistrationCommandOutput extends UpdateKeyRegistrationResponse, __MetadataBearer {
22
+ }
23
+ declare const UpdateKeyRegistrationCommand_base: {
24
+ new (input: UpdateKeyRegistrationCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateKeyRegistrationCommandInput, UpdateKeyRegistrationCommandOutput, QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: UpdateKeyRegistrationCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateKeyRegistrationCommandInput, UpdateKeyRegistrationCommandOutput, QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
27
+ };
28
+ /**
29
+ * <p>Updates a customer managed key in a Amazon QuickSight account.</p>
30
+ * @example
31
+ * Use a bare-bones client and the command you need to make an API call.
32
+ * ```javascript
33
+ * import { QuickSightClient, UpdateKeyRegistrationCommand } from "@aws-sdk/client-quicksight"; // ES Modules import
34
+ * // const { QuickSightClient, UpdateKeyRegistrationCommand } = require("@aws-sdk/client-quicksight"); // CommonJS import
35
+ * const client = new QuickSightClient(config);
36
+ * const input = { // UpdateKeyRegistrationRequest
37
+ * AwsAccountId: "STRING_VALUE", // required
38
+ * KeyRegistration: [ // KeyRegistration // required
39
+ * { // RegisteredCustomerManagedKey
40
+ * KeyArn: "STRING_VALUE",
41
+ * DefaultKey: true || false,
42
+ * },
43
+ * ],
44
+ * };
45
+ * const command = new UpdateKeyRegistrationCommand(input);
46
+ * const response = await client.send(command);
47
+ * // { // UpdateKeyRegistrationResponse
48
+ * // FailedKeyRegistration: [ // FailedKeyRegistrationEntries
49
+ * // { // FailedKeyRegistrationEntry
50
+ * // KeyArn: "STRING_VALUE",
51
+ * // Message: "STRING_VALUE", // required
52
+ * // StatusCode: Number("int"), // required
53
+ * // SenderFault: true || false, // required
54
+ * // },
55
+ * // ],
56
+ * // SuccessfulKeyRegistration: [ // SuccessfulKeyRegistrationEntries
57
+ * // { // SuccessfulKeyRegistrationEntry
58
+ * // KeyArn: "STRING_VALUE", // required
59
+ * // StatusCode: Number("int"), // required
60
+ * // },
61
+ * // ],
62
+ * // RequestId: "STRING_VALUE",
63
+ * // };
64
+ *
65
+ * ```
66
+ *
67
+ * @param UpdateKeyRegistrationCommandInput - {@link UpdateKeyRegistrationCommandInput}
68
+ * @returns {@link UpdateKeyRegistrationCommandOutput}
69
+ * @see {@link UpdateKeyRegistrationCommandInput} for command's `input` shape.
70
+ * @see {@link UpdateKeyRegistrationCommandOutput} for command's `response` shape.
71
+ * @see {@link QuickSightClientResolvedConfig | config} for QuickSightClient's `config` shape.
72
+ *
73
+ * @throws {@link AccessDeniedException} (client fault)
74
+ * <p>You don't have access to this item. The provided credentials couldn't be
75
+ * validated. You might not be authorized to carry out the request. Make sure that your
76
+ * account is authorized to use the Amazon QuickSight service, that your policies have the
77
+ * correct permissions, and that you are using the correct credentials.</p>
78
+ *
79
+ * @throws {@link InternalFailureException} (server fault)
80
+ * <p>An internal failure occurred.</p>
81
+ *
82
+ * @throws {@link InvalidParameterValueException} (client fault)
83
+ * <p>One or more parameters has a value that isn't valid.</p>
84
+ *
85
+ * @throws {@link ThrottlingException} (client fault)
86
+ * <p>Access is throttled.</p>
87
+ *
88
+ * @throws {@link QuickSightServiceException}
89
+ * <p>Base exception class for all service exceptions from QuickSight service.</p>
90
+ *
91
+ * @public
92
+ */
93
+ export declare class UpdateKeyRegistrationCommand extends UpdateKeyRegistrationCommand_base {
94
+ }
@@ -73,6 +73,7 @@ export * from "./DescribeGroupMembershipCommand";
73
73
  export * from "./DescribeIAMPolicyAssignmentCommand";
74
74
  export * from "./DescribeIngestionCommand";
75
75
  export * from "./DescribeIpRestrictionCommand";
76
+ export * from "./DescribeKeyRegistrationCommand";
76
77
  export * from "./DescribeNamespaceCommand";
77
78
  export * from "./DescribeRefreshScheduleCommand";
78
79
  export * from "./DescribeRoleCustomPermissionCommand";
@@ -155,6 +156,7 @@ export * from "./UpdateGroupCommand";
155
156
  export * from "./UpdateIAMPolicyAssignmentCommand";
156
157
  export * from "./UpdateIdentityPropagationConfigCommand";
157
158
  export * from "./UpdateIpRestrictionCommand";
159
+ export * from "./UpdateKeyRegistrationCommand";
158
160
  export * from "./UpdatePublicSharingSettingsCommand";
159
161
  export * from "./UpdateRefreshScheduleCommand";
160
162
  export * from "./UpdateRoleCustomPermissionCommand";
@@ -1751,7 +1751,7 @@ export interface RedshiftIAMParameters {
1751
1751
  * <p>The user whose permissions and group memberships will be used by Amazon QuickSight to access the cluster. If this user already exists in your database, Amazon QuickSight is granted the same permissions that the user has. If the user doesn't exist, set the value of <code>AutoCreateDatabaseUser</code> to <code>True</code> to create a new user with PUBLIC permissions.</p>
1752
1752
  * @public
1753
1753
  */
1754
- DatabaseUser: string | undefined;
1754
+ DatabaseUser?: string;
1755
1755
  /**
1756
1756
  * <p>A list of groups whose permissions will be granted to Amazon QuickSight to access the cluster. These permissions are combined with the permissions granted to Amazon QuickSight by the <code>DatabaseUser</code>. If you choose to include this parameter, the <code>RoleArn</code> must grant access to <code>redshift:JoinGroup</code>.</p>
1757
1757
  * @public
@@ -5420,6 +5420,72 @@ export interface DescribeIpRestrictionResponse {
5420
5420
  */
5421
5421
  Status?: number;
5422
5422
  }
5423
+ /**
5424
+ * @public
5425
+ */
5426
+ export interface DescribeKeyRegistrationRequest {
5427
+ /**
5428
+ * <p>The ID of the Amazon Web Services account that contains the customer managed key registration that you want to describe.</p>
5429
+ * @public
5430
+ */
5431
+ AwsAccountId: string | undefined;
5432
+ /**
5433
+ * <p>Determines whether the request returns the default key only.</p>
5434
+ * @public
5435
+ */
5436
+ DefaultKeyOnly?: boolean;
5437
+ }
5438
+ /**
5439
+ * <p>A customer managed key structure that contains the information listed below: </p>
5440
+ * <ul>
5441
+ * <li>
5442
+ * <p>
5443
+ * <code>KeyArn</code> - The ARN of a KMS key that is registered to a Amazon QuickSight account for encryption and decryption use.</p>
5444
+ * </li>
5445
+ * <li>
5446
+ * <p>
5447
+ * <code>DefaultKey</code> - Indicates whether the current key is set as the default key for encryption and decryption use.</p>
5448
+ * </li>
5449
+ * </ul>
5450
+ * @public
5451
+ */
5452
+ export interface RegisteredCustomerManagedKey {
5453
+ /**
5454
+ * <p>The ARN of the KMS key that is registered to a Amazon QuickSight account for encryption and decryption use.</p>
5455
+ * @public
5456
+ */
5457
+ KeyArn?: string;
5458
+ /**
5459
+ * <p>Indicates whether a <code>RegisteredCustomerManagedKey</code> is set as the default key for encryption and decryption use.</p>
5460
+ * @public
5461
+ */
5462
+ DefaultKey?: boolean;
5463
+ }
5464
+ /**
5465
+ * @public
5466
+ */
5467
+ export interface DescribeKeyRegistrationResponse {
5468
+ /**
5469
+ * <p>The ID of the Amazon Web Services account that contains the customer managed key registration specified in the request.</p>
5470
+ * @public
5471
+ */
5472
+ AwsAccountId?: string;
5473
+ /**
5474
+ * <p>A list of <code>RegisteredCustomerManagedKey</code> objects in a Amazon QuickSight account.</p>
5475
+ * @public
5476
+ */
5477
+ KeyRegistration?: RegisteredCustomerManagedKey[];
5478
+ /**
5479
+ * <p>The Amazon Web Services request ID for this operation.</p>
5480
+ * @public
5481
+ */
5482
+ RequestId?: string;
5483
+ /**
5484
+ * <p>The HTTP status of the request.</p>
5485
+ * @public
5486
+ */
5487
+ Status?: number;
5488
+ }
5423
5489
  /**
5424
5490
  * @public
5425
5491
  */
@@ -6609,7 +6675,7 @@ export interface User {
6609
6675
  * </li>
6610
6676
  * <li>
6611
6677
  * <p>
6612
- * <code>READER_PRO</code>: Reader Pro adds Generative BI capabilities to the Reader role. Reader Pros have access to Amazon Q Business, can build stories with Amazon Q, and can generate executive summaries from dashboards.</p>
6678
+ * <code>READER_PRO</code>: Reader Pro adds Generative BI capabilities to the Reader role. Reader Pros have access to Amazon Q in Amazon QuickSight, can build stories with Amazon Q, and can generate executive summaries from dashboards.</p>
6613
6679
  * </li>
6614
6680
  * <li>
6615
6681
  * <p>
@@ -6890,6 +6956,33 @@ export declare const EmbeddingIdentityType: {
6890
6956
  * @public
6891
6957
  */
6892
6958
  export type EmbeddingIdentityType = (typeof EmbeddingIdentityType)[keyof typeof EmbeddingIdentityType];
6959
+ /**
6960
+ * <p>An entry that appears when a <code>KeyRegistration</code> update to Amazon QuickSight fails.</p>
6961
+ * @public
6962
+ */
6963
+ export interface FailedKeyRegistrationEntry {
6964
+ /**
6965
+ * <p>The ARN of the KMS key that failed to update.</p>
6966
+ * @public
6967
+ */
6968
+ KeyArn?: string;
6969
+ /**
6970
+ * <p>A message that provides information about why a <code>FailedKeyRegistrationEntry</code> error occurred.</p>
6971
+ * @public
6972
+ */
6973
+ Message: string | undefined;
6974
+ /**
6975
+ * <p>The HTTP status of a <code>FailedKeyRegistrationEntry</code> error.</p>
6976
+ * @public
6977
+ */
6978
+ StatusCode: number | undefined;
6979
+ /**
6980
+ * <p>A boolean that indicates whether a <code>FailedKeyRegistrationEntry</code> resulted from user error. If the value of this property is <code>True</code>, the error was caused by user error. If the value of this property is <code>False</code>, the error occurred on the backend. If your job continues fail and with a <code>False</code>
6981
+ * <code>SenderFault</code> value, contact Amazon Web Services Support.</p>
6982
+ * @public
6983
+ */
6984
+ SenderFault: boolean | undefined;
6985
+ }
6893
6986
  /**
6894
6987
  * @public
6895
6988
  * @enum
@@ -8045,101 +8138,6 @@ export interface ListDataSourcesRequest {
8045
8138
  */
8046
8139
  MaxResults?: number;
8047
8140
  }
8048
- /**
8049
- * @public
8050
- */
8051
- export interface ListDataSourcesResponse {
8052
- /**
8053
- * <p>A list of data sources.</p>
8054
- * @public
8055
- */
8056
- DataSources?: DataSource[];
8057
- /**
8058
- * <p>The token for the next set of results, or null if there are no more results.</p>
8059
- * @public
8060
- */
8061
- NextToken?: string;
8062
- /**
8063
- * <p>The Amazon Web Services request ID for this operation.</p>
8064
- * @public
8065
- */
8066
- RequestId?: string;
8067
- /**
8068
- * <p>The HTTP status of the request.</p>
8069
- * @public
8070
- */
8071
- Status?: number;
8072
- }
8073
- /**
8074
- * @public
8075
- */
8076
- export interface ListFolderMembersRequest {
8077
- /**
8078
- * <p>The ID for the Amazon Web Services account that contains the folder.</p>
8079
- * @public
8080
- */
8081
- AwsAccountId: string | undefined;
8082
- /**
8083
- * <p>The ID of the folder.</p>
8084
- * @public
8085
- */
8086
- FolderId: string | undefined;
8087
- /**
8088
- * <p>The token for the next set of results, or null if there are no more results.</p>
8089
- * @public
8090
- */
8091
- NextToken?: string;
8092
- /**
8093
- * <p>The maximum number of results to be returned per request.</p>
8094
- * @public
8095
- */
8096
- MaxResults?: number;
8097
- }
8098
- /**
8099
- * @public
8100
- */
8101
- export interface ListFolderMembersResponse {
8102
- /**
8103
- * <p>The HTTP status of the request.</p>
8104
- * @public
8105
- */
8106
- Status?: number;
8107
- /**
8108
- * <p>A structure that contains all of the folder members (dashboards, analyses, and datasets) in the folder.</p>
8109
- * @public
8110
- */
8111
- FolderMemberList?: MemberIdArnPair[];
8112
- /**
8113
- * <p>The token for the next set of results, or null if there are no more results.</p>
8114
- * @public
8115
- */
8116
- NextToken?: string;
8117
- /**
8118
- * <p>The Amazon Web Services request ID for this operation.</p>
8119
- * @public
8120
- */
8121
- RequestId?: string;
8122
- }
8123
- /**
8124
- * @public
8125
- */
8126
- export interface ListFoldersRequest {
8127
- /**
8128
- * <p>The ID for the Amazon Web Services account that contains the folder.</p>
8129
- * @public
8130
- */
8131
- AwsAccountId: string | undefined;
8132
- /**
8133
- * <p>The token for the next set of results, or null if there are no more results.</p>
8134
- * @public
8135
- */
8136
- NextToken?: string;
8137
- /**
8138
- * <p>The maximum number of results to be returned per request.</p>
8139
- * @public
8140
- */
8141
- MaxResults?: number;
8142
- }
8143
8141
  /**
8144
8142
  * @internal
8145
8143
  */