@aws-sdk/client-quicksight 3.121.0 → 3.128.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 (50) hide show
  1. package/CHANGELOG.md +27 -0
  2. package/dist-cjs/QuickSight.js +30 -0
  3. package/dist-cjs/commands/CreateAccountSubscriptionCommand.js +36 -0
  4. package/dist-cjs/commands/DescribeAccountSubscriptionCommand.js +36 -0
  5. package/dist-cjs/commands/DescribeThemeAliasCommand.js +3 -3
  6. package/dist-cjs/commands/DescribeThemeCommand.js +2 -1
  7. package/dist-cjs/commands/DescribeThemePermissionsCommand.js +3 -3
  8. package/dist-cjs/commands/index.js +2 -0
  9. package/dist-cjs/models/models_0.js +64 -63
  10. package/dist-cjs/models/models_1.js +46 -3
  11. package/dist-cjs/protocols/Aws_restJson1.js +732 -775
  12. package/dist-es/QuickSight.js +30 -0
  13. package/dist-es/commands/CreateAccountSubscriptionCommand.js +39 -0
  14. package/dist-es/commands/DescribeAccountSubscriptionCommand.js +39 -0
  15. package/dist-es/commands/DescribeThemeAliasCommand.js +1 -1
  16. package/dist-es/commands/DescribeThemeCommand.js +2 -1
  17. package/dist-es/commands/DescribeThemePermissionsCommand.js +1 -1
  18. package/dist-es/commands/index.js +2 -0
  19. package/dist-es/models/models_0.js +45 -42
  20. package/dist-es/models/models_1.js +28 -0
  21. package/dist-es/protocols/Aws_restJson1.js +601 -600
  22. package/dist-types/QuickSight.d.ts +62 -22
  23. package/dist-types/QuickSightClient.d.ts +4 -2
  24. package/dist-types/commands/CreateAccountCustomizationCommand.d.ts +4 -5
  25. package/dist-types/commands/CreateAccountSubscriptionCommand.d.ts +62 -0
  26. package/dist-types/commands/DescribeAccountSubscriptionCommand.d.ts +35 -0
  27. package/dist-types/commands/DescribeThemeAliasCommand.d.ts +1 -1
  28. package/dist-types/commands/DescribeThemeCommand.d.ts +2 -1
  29. package/dist-types/commands/DescribeThemePermissionsCommand.d.ts +1 -1
  30. package/dist-types/commands/GenerateEmbedUrlForAnonymousUserCommand.d.ts +2 -4
  31. package/dist-types/commands/GenerateEmbedUrlForRegisteredUserCommand.d.ts +2 -1
  32. package/dist-types/commands/GetDashboardEmbedUrlCommand.d.ts +3 -7
  33. package/dist-types/commands/UpdateAccountCustomizationCommand.d.ts +1 -2
  34. package/dist-types/commands/UpdatePublicSharingSettingsCommand.d.ts +9 -3
  35. package/dist-types/commands/index.d.ts +2 -0
  36. package/dist-types/models/models_0.d.ts +299 -213
  37. package/dist-types/models/models_1.d.ts +212 -18
  38. package/dist-types/protocols/Aws_restJson1.d.ts +6 -0
  39. package/dist-types/ts3.4/QuickSight.d.ts +10 -0
  40. package/dist-types/ts3.4/QuickSightClient.d.ts +4 -2
  41. package/dist-types/ts3.4/commands/CreateAccountSubscriptionCommand.d.ts +17 -0
  42. package/dist-types/ts3.4/commands/DescribeAccountSubscriptionCommand.d.ts +17 -0
  43. package/dist-types/ts3.4/commands/DescribeThemeAliasCommand.d.ts +1 -1
  44. package/dist-types/ts3.4/commands/DescribeThemeCommand.d.ts +2 -1
  45. package/dist-types/ts3.4/commands/DescribeThemePermissionsCommand.d.ts +1 -1
  46. package/dist-types/ts3.4/commands/index.d.ts +2 -0
  47. package/dist-types/ts3.4/models/models_0.d.ts +116 -116
  48. package/dist-types/ts3.4/models/models_1.d.ts +108 -1857
  49. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +6 -0
  50. package/package.json +26 -26
@@ -40,8 +40,61 @@ export declare namespace AccountCustomization {
40
40
  }
41
41
  export declare enum Edition {
42
42
  ENTERPRISE = "ENTERPRISE",
43
+ ENTERPRISE_AND_Q = "ENTERPRISE_AND_Q",
43
44
  STANDARD = "STANDARD"
44
45
  }
46
+ /**
47
+ * <p>A structure that contains the following account information
48
+ * elements:</p>
49
+ * <ul>
50
+ * <li>
51
+ * <p>Your Amazon QuickSight account name.</p>
52
+ * </li>
53
+ * <li>
54
+ * <p>The edition of Amazon QuickSight that your account is using.</p>
55
+ * </li>
56
+ * <li>
57
+ * <p>The notification email address that is associated with the Amazon QuickSight account.
58
+ * </p>
59
+ * </li>
60
+ * <li>
61
+ * <p>The authentication type of the Amazon QuickSight account.</p>
62
+ * </li>
63
+ * <li>
64
+ * <p>The status of the Amazon QuickSight account's subscription.</p>
65
+ * </li>
66
+ * </ul>
67
+ */
68
+ export interface AccountInfo {
69
+ /**
70
+ * <p>The account name that you provided for the Amazon QuickSight subscription in your
71
+ * Amazon Web Services account. You create this name when you sign up for Amazon QuickSight. It's unique over all of Amazon Web Services, and it appears only when
72
+ * users sign in.</p>
73
+ */
74
+ AccountName?: string;
75
+ /**
76
+ * <p>The edition of your Amazon QuickSight account.</p>
77
+ */
78
+ Edition?: Edition | string;
79
+ /**
80
+ * <p>The email address that will be used for Amazon QuickSight to send notifications regarding your Amazon Web Services account or Amazon QuickSight subscription.</p>
81
+ */
82
+ NotificationEmail?: string;
83
+ /**
84
+ * <p>The way that your Amazon QuickSight account is authenticated.</p>
85
+ */
86
+ AuthenticationType?: string;
87
+ /**
88
+ * <p>The status of your account subscription.</p>
89
+ */
90
+ AccountSubscriptionStatus?: string;
91
+ }
92
+ export declare namespace AccountInfo {
93
+ /**
94
+ * @internal
95
+ */
96
+ const filterSensitiveLog: (obj: AccountInfo) => any;
97
+ }
45
98
  /**
46
99
  * <p>The Amazon QuickSight settings associated with your Amazon Web Services account.</p>
47
100
  */
@@ -66,7 +119,7 @@ export interface AccountSettings {
66
119
  */
67
120
  NotificationEmail?: string;
68
121
  /**
69
- * <p>A boolean that indicates whether or not public sharing is enabled on an Amazon QuickSight account. For more information about enabling public sharing, see <a href="https://docs.aws.amazon.com/quicksight/latest/APIReference/API_UpdatePublicSharingSettings.html">UpdatePublicSharingSettings</a>.</p>
122
+ * <p>A Boolean value that indicates whether public sharing is turned on for an Amazon QuickSight account. For more information about turning on public sharing, see <a href="https://docs.aws.amazon.com/quicksight/latest/APIReference/API_UpdatePublicSharingSettings.html">UpdatePublicSharingSettings</a>.</p>
70
123
  */
71
124
  PublicSharingEnabled?: boolean;
72
125
  }
@@ -100,7 +153,7 @@ export declare enum DashboardBehavior {
100
153
  ENABLED = "ENABLED"
101
154
  }
102
155
  /**
103
- * <p>Ad hoc (one-time) filtering option.</p>
156
+ * <p>An ad hoc (one-time) filtering option.</p>
104
157
  */
105
158
  export interface AdHocFilteringOption {
106
159
  /**
@@ -478,6 +531,11 @@ export declare namespace AuroraPostgreSqlParameters {
478
531
  */
479
532
  const filterSensitiveLog: (obj: AuroraPostgreSqlParameters) => any;
480
533
  }
534
+ export declare enum AuthenticationMethodOption {
535
+ ACTIVE_DIRECTORY = "ACTIVE_DIRECTORY",
536
+ IAM_AND_QUICKSIGHT = "IAM_AND_QUICKSIGHT",
537
+ IAM_ONLY = "IAM_ONLY"
538
+ }
481
539
  /**
482
540
  * <p>The parameters for IoT Analytics.</p>
483
541
  */
@@ -1016,6 +1074,187 @@ export declare class ResourceUnavailableException extends __BaseException {
1016
1074
  */
1017
1075
  constructor(opts: __ExceptionOptionType<ResourceUnavailableException, __BaseException>);
1018
1076
  }
1077
+ export interface CreateAccountSubscriptionRequest {
1078
+ /**
1079
+ * <p>The edition of Amazon QuickSight that you want your account to have. Currently, you can
1080
+ * choose from <code>ENTERPRISE</code> or
1081
+ * <code>ENTERPRISE_AND_Q</code>.</p>
1082
+ * <p>If you choose <code>ENTERPRISE_AND_Q</code>, the following parameters are
1083
+ * required:</p>
1084
+ * <ul>
1085
+ * <li>
1086
+ * <p>
1087
+ * <code>FirstName</code>
1088
+ * </p>
1089
+ * </li>
1090
+ * <li>
1091
+ * <p>
1092
+ * <code>LastName</code>
1093
+ * </p>
1094
+ * </li>
1095
+ * <li>
1096
+ * <p>
1097
+ * <code>EmailAddress</code>
1098
+ * </p>
1099
+ * </li>
1100
+ * <li>
1101
+ * <p>
1102
+ * <code>ContactNumber</code>
1103
+ * </p>
1104
+ * </li>
1105
+ * </ul>
1106
+ */
1107
+ Edition: Edition | string | undefined;
1108
+ /**
1109
+ * <p>The method that you want to use to authenticate your Amazon QuickSight account. Currently, the valid values for this parameter are <code>IAM_AND_QUICKSIGHT</code>, <code>IAM_ONLY</code>, and <code>ACTIVE_DIRECTORY</code>.</p>
1110
+ * <p>If you choose <code>ACTIVE_DIRECTORY</code>, provide an <code>ActiveDirectoryName</code>
1111
+ * and an <code>AdminGroup</code> associated with your Active Directory.</p>
1112
+ */
1113
+ AuthenticationMethod: AuthenticationMethodOption | string | undefined;
1114
+ /**
1115
+ * <p>The Amazon Web Services account ID of the account that you're using to create your Amazon QuickSight account.</p>
1116
+ */
1117
+ AwsAccountId: string | undefined;
1118
+ /**
1119
+ * <p>The name of your Amazon QuickSight account. This name is unique over all of Amazon Web Services, and it appears only when users sign in. You can't change
1120
+ * <code>AccountName</code> value after the Amazon QuickSight account is
1121
+ * created.</p>
1122
+ */
1123
+ AccountName: string | undefined;
1124
+ /**
1125
+ * <p>The email address that you want Amazon QuickSight to send notifications to regarding your Amazon QuickSight account or Amazon QuickSight subscription.</p>
1126
+ */
1127
+ NotificationEmail: string | undefined;
1128
+ /**
1129
+ * <p>The name of your Active Directory. This field is required if <code>ACTIVE_DIRECTORY</code> is the selected authentication method of the new Amazon QuickSight account.</p>
1130
+ */
1131
+ ActiveDirectoryName?: string;
1132
+ /**
1133
+ * <p>The realm of the Active Directory that is associated with your Amazon QuickSight account. This field is required if <code>ACTIVE_DIRECTORY</code> is the selected authentication method of the new Amazon QuickSight account.</p>
1134
+ */
1135
+ Realm?: string;
1136
+ /**
1137
+ * <p>The ID of the Active Directory that is associated with your Amazon QuickSight account.</p>
1138
+ */
1139
+ DirectoryId?: string;
1140
+ /**
1141
+ * <p>The admin group associated with your Active Directory. This field is required if <code>ACTIVE_DIRECTORY</code> is the selected authentication method of the new Amazon QuickSight account. For more information about using
1142
+ * Active Directory in Amazon QuickSight, see <a href="https://docs.aws.amazon.com/quicksight/latest/user/aws-directory-service.html">Using Active Directory with
1143
+ * Amazon QuickSight Enterprise Edition</a> in the Amazon QuickSight
1144
+ * User Guide.</p>
1145
+ */
1146
+ AdminGroup?: string[];
1147
+ /**
1148
+ * <p>The author group associated with your Active Directory. For more information about using
1149
+ * Active Directory in Amazon QuickSight, see <a href="https://docs.aws.amazon.com/quicksight/latest/user/aws-directory-service.html">Using Active Directory with
1150
+ * Amazon QuickSight Enterprise Edition</a> in the Amazon QuickSight
1151
+ * User Guide.</p>
1152
+ */
1153
+ AuthorGroup?: string[];
1154
+ /**
1155
+ * <p>The reader group associated with your Active Direcrtory. For more information about
1156
+ * using Active Directory in Amazon QuickSight, see <a href="https://docs.aws.amazon.com/quicksight/latest/user/aws-directory-service.html">Using Active Directory with
1157
+ * Amazon QuickSight Enterprise Edition</a> in the <i>Amazon QuickSight
1158
+ * User Guide</i>.</p>
1159
+ */
1160
+ ReaderGroup?: string[];
1161
+ /**
1162
+ * <p>The first name of the author of the Amazon QuickSight account to use for future
1163
+ * communications. This field is required if <code>ENTERPPRISE_AND_Q</code> is the selected
1164
+ * edition of the new Amazon QuickSight account.</p>
1165
+ */
1166
+ FirstName?: string;
1167
+ /**
1168
+ * <p>The last name of the author of the Amazon QuickSight account to use for future
1169
+ * communications. This field is required if <code>ENTERPPRISE_AND_Q</code> is the selected
1170
+ * edition of the new Amazon QuickSight account.</p>
1171
+ */
1172
+ LastName?: string;
1173
+ /**
1174
+ * <p>The email address of the author of the Amazon QuickSight account to use for future
1175
+ * communications. This field is required if <code>ENTERPPRISE_AND_Q</code> is the selected
1176
+ * edition of the new Amazon QuickSight account.</p>
1177
+ */
1178
+ EmailAddress?: string;
1179
+ /**
1180
+ * <p>A 10-digit phone number for the author of the Amazon QuickSight account to use for
1181
+ * future communications. This field is required if <code>ENTERPPRISE_AND_Q</code> is the
1182
+ * selected edition of the new Amazon QuickSight account.</p>
1183
+ */
1184
+ ContactNumber?: string;
1185
+ }
1186
+ export declare namespace CreateAccountSubscriptionRequest {
1187
+ /**
1188
+ * @internal
1189
+ */
1190
+ const filterSensitiveLog: (obj: CreateAccountSubscriptionRequest) => any;
1191
+ }
1192
+ /**
1193
+ * <p>A <code>SignupResponse</code> object that contains a summary of a newly created account.</p>
1194
+ */
1195
+ export interface SignupResponse {
1196
+ /**
1197
+ * <p>A Boolean that is <code>TRUE</code> if the Amazon QuickSight uses IAM as an
1198
+ * authentication method.</p>
1199
+ */
1200
+ IAMUser?: boolean;
1201
+ /**
1202
+ * <p>The user login name for your Amazon QuickSight account.</p>
1203
+ */
1204
+ userLoginName?: string;
1205
+ /**
1206
+ * <p>The name of your Amazon QuickSight account.</p>
1207
+ */
1208
+ accountName?: string;
1209
+ /**
1210
+ * <p>The type of Active Directory that is being used to authenticate the Amazon QuickSight
1211
+ * account. Valid values are <code>SIMPLE_AD</code>, <code>AD_CONNECTOR</code>, and
1212
+ * <code>MICROSOFT_AD</code>.</p>
1213
+ */
1214
+ directoryType?: string;
1215
+ }
1216
+ export declare namespace SignupResponse {
1217
+ /**
1218
+ * @internal
1219
+ */
1220
+ const filterSensitiveLog: (obj: SignupResponse) => any;
1221
+ }
1222
+ export interface CreateAccountSubscriptionResponse {
1223
+ /**
1224
+ * <p>A <code>SignupResponse</code> object that returns information about a newly created Amazon QuickSight account.</p>
1225
+ */
1226
+ SignupResponse?: SignupResponse;
1227
+ /**
1228
+ * <p>The HTTP status of the request.</p>
1229
+ */
1230
+ Status?: number;
1231
+ /**
1232
+ * <p>The Amazon Web Services request ID for this operation.</p>
1233
+ */
1234
+ RequestId?: string;
1235
+ }
1236
+ export declare namespace CreateAccountSubscriptionResponse {
1237
+ /**
1238
+ * @internal
1239
+ */
1240
+ const filterSensitiveLog: (obj: CreateAccountSubscriptionResponse) => any;
1241
+ }
1242
+ /**
1243
+ * <p>One or more preconditions aren't met.</p>
1244
+ */
1245
+ export declare class PreconditionNotMetException extends __BaseException {
1246
+ readonly name: "PreconditionNotMetException";
1247
+ readonly $fault: "client";
1248
+ Message?: string;
1249
+ /**
1250
+ * <p>The Amazon Web Services request ID for this request.</p>
1251
+ */
1252
+ RequestId?: string;
1253
+ /**
1254
+ * @internal
1255
+ */
1256
+ constructor(opts: __ExceptionOptionType<PreconditionNotMetException, __BaseException>);
1257
+ }
1019
1258
  /**
1020
1259
  * <p>A date-time parameter.</p>
1021
1260
  */
@@ -3715,22 +3954,6 @@ export declare namespace CreateGroupResponse {
3715
3954
  */
3716
3955
  const filterSensitiveLog: (obj: CreateGroupResponse) => any;
3717
3956
  }
3718
- /**
3719
- * <p>One or more preconditions aren't met.</p>
3720
- */
3721
- export declare class PreconditionNotMetException extends __BaseException {
3722
- readonly name: "PreconditionNotMetException";
3723
- readonly $fault: "client";
3724
- Message?: string;
3725
- /**
3726
- * <p>The Amazon Web Services request ID for this request.</p>
3727
- */
3728
- RequestId?: string;
3729
- /**
3730
- * @internal
3731
- */
3732
- constructor(opts: __ExceptionOptionType<PreconditionNotMetException, __BaseException>);
3733
- }
3734
3957
  export interface CreateGroupMembershipRequest {
3735
3958
  /**
3736
3959
  * <p>The name of the user that you want to add to the group membership.</p>
@@ -5922,12 +6145,13 @@ export declare namespace DescribeAccountSettingsRequest {
5922
6145
  }
5923
6146
  export interface DescribeAccountSettingsResponse {
5924
6147
  /**
5925
- * <p>The Amazon QuickSight settings for this Amazon Web Services account. This information includes the edition of Amazon
5926
- * Amazon QuickSight that you subscribed to (Standard or Enterprise) and the notification email for the
5927
- * Amazon QuickSight subscription. In the QuickSight console, the Amazon QuickSight subscription is sometimes
5928
- * referred to as a QuickSight "account" even though it's technically not an account
5929
- * by itself. Instead, it's a subscription to the Amazon QuickSight service for your Amazon Web Services account. The
5930
- * edition that you subscribe to applies to Amazon QuickSight in every Amazon Web Services Region where you use it.</p>
6148
+ * <p>The Amazon QuickSight settings for this Amazon Web Services account. This information
6149
+ * includes the edition of Amazon Amazon QuickSight that you subscribed to (Standard or
6150
+ * Enterprise) and the notification email for the Amazon QuickSight subscription. </p>
6151
+ * <p>In the QuickSight console, the Amazon QuickSight subscription is sometimes referred to
6152
+ * as a QuickSight "account" even though it's technically not an account by
6153
+ * itself. Instead, it's a subscription to the Amazon QuickSight service for your
6154
+ * Amazon Web Services account. The edition that you subscribe to applies to Amazon QuickSight in every Amazon Web Services Region where you use it.</p>
5931
6155
  */
5932
6156
  AccountSettings?: AccountSettings;
5933
6157
  /**
@@ -5945,6 +6169,57 @@ export declare namespace DescribeAccountSettingsResponse {
5945
6169
  */
5946
6170
  const filterSensitiveLog: (obj: DescribeAccountSettingsResponse) => any;
5947
6171
  }
6172
+ export interface DescribeAccountSubscriptionRequest {
6173
+ /**
6174
+ * <p>The Amazon Web Services account ID associated with your Amazon QuickSight account.</p>
6175
+ */
6176
+ AwsAccountId: string | undefined;
6177
+ }
6178
+ export declare namespace DescribeAccountSubscriptionRequest {
6179
+ /**
6180
+ * @internal
6181
+ */
6182
+ const filterSensitiveLog: (obj: DescribeAccountSubscriptionRequest) => any;
6183
+ }
6184
+ export interface DescribeAccountSubscriptionResponse {
6185
+ /**
6186
+ * <p>A structure that contains the following elements:</p>
6187
+ * <ul>
6188
+ * <li>
6189
+ * <p>Your Amazon QuickSight account name.</p>
6190
+ * </li>
6191
+ * <li>
6192
+ * <p>The edition of Amazon QuickSight that your account is using.</p>
6193
+ * </li>
6194
+ * <li>
6195
+ * <p>The notification email address that is associated with the Amazon QuickSight
6196
+ * account.
6197
+ * </p>
6198
+ * </li>
6199
+ * <li>
6200
+ * <p>The authentication type of the Amazon QuickSight account.</p>
6201
+ * </li>
6202
+ * <li>
6203
+ * <p>The status of the Amazon QuickSight account's subscription.</p>
6204
+ * </li>
6205
+ * </ul>
6206
+ */
6207
+ AccountInfo?: AccountInfo;
6208
+ /**
6209
+ * <p>The HTTP status of the request.</p>
6210
+ */
6211
+ Status?: number;
6212
+ /**
6213
+ * <p>The Amazon Web Services request ID for this operation.</p>
6214
+ */
6215
+ RequestId?: string;
6216
+ }
6217
+ export declare namespace DescribeAccountSubscriptionResponse {
6218
+ /**
6219
+ * @internal
6220
+ */
6221
+ const filterSensitiveLog: (obj: DescribeAccountSubscriptionResponse) => any;
6222
+ }
5948
6223
  export interface DescribeAnalysisRequest {
5949
6224
  /**
5950
6225
  * <p>The ID of the Amazon Web Services account that contains the analysis. You must be using the
@@ -7304,192 +7579,3 @@ export declare namespace ThemeError {
7304
7579
  */
7305
7580
  const filterSensitiveLog: (obj: ThemeError) => any;
7306
7581
  }
7307
- /**
7308
- * <p>A version of a theme.</p>
7309
- */
7310
- export interface ThemeVersion {
7311
- /**
7312
- * <p>The version number of the theme.</p>
7313
- */
7314
- VersionNumber?: number;
7315
- /**
7316
- * <p>The Amazon Resource Name (ARN) of the resource.</p>
7317
- */
7318
- Arn?: string;
7319
- /**
7320
- * <p>The description of the theme.</p>
7321
- */
7322
- Description?: string;
7323
- /**
7324
- * <p>The Amazon QuickSight-defined ID of the theme that a custom theme inherits from. All
7325
- * themes initially inherit from a default Amazon QuickSight theme.</p>
7326
- */
7327
- BaseThemeId?: string;
7328
- /**
7329
- * <p>The date and time that this theme version was created.</p>
7330
- */
7331
- CreatedTime?: Date;
7332
- /**
7333
- * <p>The theme configuration, which contains all the theme display properties.</p>
7334
- */
7335
- Configuration?: ThemeConfiguration;
7336
- /**
7337
- * <p>Errors associated with the theme.</p>
7338
- */
7339
- Errors?: ThemeError[];
7340
- /**
7341
- * <p>The status of the theme version.</p>
7342
- */
7343
- Status?: ResourceStatus | string;
7344
- }
7345
- export declare namespace ThemeVersion {
7346
- /**
7347
- * @internal
7348
- */
7349
- const filterSensitiveLog: (obj: ThemeVersion) => any;
7350
- }
7351
- /**
7352
- * <p>Summary information about a theme.</p>
7353
- */
7354
- export interface Theme {
7355
- /**
7356
- * <p>The Amazon Resource Name (ARN) of the theme.</p>
7357
- */
7358
- Arn?: string;
7359
- /**
7360
- * <p>The name that the user gives to the theme.</p>
7361
- */
7362
- Name?: string;
7363
- /**
7364
- * <p>The identifier that the user gives to the theme.</p>
7365
- */
7366
- ThemeId?: string;
7367
- /**
7368
- * <p>A version of a theme.</p>
7369
- */
7370
- Version?: ThemeVersion;
7371
- /**
7372
- * <p>The date and time that the theme was created.</p>
7373
- */
7374
- CreatedTime?: Date;
7375
- /**
7376
- * <p>The date and time that the theme was last updated.</p>
7377
- */
7378
- LastUpdatedTime?: Date;
7379
- /**
7380
- * <p>The type of theme, based on how it was created. Valid values include:
7381
- * <code>QUICKSIGHT</code> and <code>CUSTOM</code>.</p>
7382
- */
7383
- Type?: ThemeType | string;
7384
- }
7385
- export declare namespace Theme {
7386
- /**
7387
- * @internal
7388
- */
7389
- const filterSensitiveLog: (obj: Theme) => any;
7390
- }
7391
- export interface DescribeThemeResponse {
7392
- /**
7393
- * <p>The information about the theme that you are describing.</p>
7394
- */
7395
- Theme?: Theme;
7396
- /**
7397
- * <p>The HTTP status of the request.</p>
7398
- */
7399
- Status?: number;
7400
- /**
7401
- * <p>The Amazon Web Services request ID for this operation.</p>
7402
- */
7403
- RequestId?: string;
7404
- }
7405
- export declare namespace DescribeThemeResponse {
7406
- /**
7407
- * @internal
7408
- */
7409
- const filterSensitiveLog: (obj: DescribeThemeResponse) => any;
7410
- }
7411
- export interface DescribeThemeAliasRequest {
7412
- /**
7413
- * <p>The ID of the Amazon Web Services account that contains the theme alias that you're
7414
- * describing.</p>
7415
- */
7416
- AwsAccountId: string | undefined;
7417
- /**
7418
- * <p>The ID for the theme.</p>
7419
- */
7420
- ThemeId: string | undefined;
7421
- /**
7422
- * <p>The name of the theme alias that you want to describe.</p>
7423
- */
7424
- AliasName: string | undefined;
7425
- }
7426
- export declare namespace DescribeThemeAliasRequest {
7427
- /**
7428
- * @internal
7429
- */
7430
- const filterSensitiveLog: (obj: DescribeThemeAliasRequest) => any;
7431
- }
7432
- export interface DescribeThemeAliasResponse {
7433
- /**
7434
- * <p>Information about the theme alias.</p>
7435
- */
7436
- ThemeAlias?: ThemeAlias;
7437
- /**
7438
- * <p>The HTTP status of the request.</p>
7439
- */
7440
- Status?: number;
7441
- /**
7442
- * <p>The Amazon Web Services request ID for this operation.</p>
7443
- */
7444
- RequestId?: string;
7445
- }
7446
- export declare namespace DescribeThemeAliasResponse {
7447
- /**
7448
- * @internal
7449
- */
7450
- const filterSensitiveLog: (obj: DescribeThemeAliasResponse) => any;
7451
- }
7452
- export interface DescribeThemePermissionsRequest {
7453
- /**
7454
- * <p>The ID of the Amazon Web Services account that contains the theme that you're describing.</p>
7455
- */
7456
- AwsAccountId: string | undefined;
7457
- /**
7458
- * <p>The ID for the theme that you want to describe permissions for.</p>
7459
- */
7460
- ThemeId: string | undefined;
7461
- }
7462
- export declare namespace DescribeThemePermissionsRequest {
7463
- /**
7464
- * @internal
7465
- */
7466
- const filterSensitiveLog: (obj: DescribeThemePermissionsRequest) => any;
7467
- }
7468
- export interface DescribeThemePermissionsResponse {
7469
- /**
7470
- * <p>The ID for the theme.</p>
7471
- */
7472
- ThemeId?: string;
7473
- /**
7474
- * <p>The Amazon Resource Name (ARN) of the theme.</p>
7475
- */
7476
- ThemeArn?: string;
7477
- /**
7478
- * <p>A list of resource permissions set on the theme. </p>
7479
- */
7480
- Permissions?: ResourcePermission[];
7481
- /**
7482
- * <p>The Amazon Web Services request ID for this operation.</p>
7483
- */
7484
- RequestId?: string;
7485
- /**
7486
- * <p>The HTTP status of the request.</p>
7487
- */
7488
- Status?: number;
7489
- }
7490
- export declare namespace DescribeThemePermissionsResponse {
7491
- /**
7492
- * @internal
7493
- */
7494
- const filterSensitiveLog: (obj: DescribeThemePermissionsResponse) => any;
7495
- }