@aws-sdk/client-redshift-serverless 3.438.0 → 3.439.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 (54) hide show
  1. package/README.md +40 -0
  2. package/dist-cjs/RedshiftServerless.js +10 -0
  3. package/dist-cjs/commands/CreateCustomDomainAssociationCommand.js +51 -0
  4. package/dist-cjs/commands/DeleteCustomDomainAssociationCommand.js +51 -0
  5. package/dist-cjs/commands/GetCustomDomainAssociationCommand.js +51 -0
  6. package/dist-cjs/commands/ListCustomDomainAssociationsCommand.js +51 -0
  7. package/dist-cjs/commands/UpdateCustomDomainAssociationCommand.js +51 -0
  8. package/dist-cjs/commands/index.js +5 -0
  9. package/dist-cjs/models/models_0.js +16 -16
  10. package/dist-cjs/pagination/ListCustomDomainAssociationsPaginator.js +29 -0
  11. package/dist-cjs/pagination/index.js +1 -0
  12. package/dist-cjs/protocols/Aws_json1_1.js +323 -2
  13. package/dist-es/RedshiftServerless.js +10 -0
  14. package/dist-es/commands/CreateCustomDomainAssociationCommand.js +47 -0
  15. package/dist-es/commands/DeleteCustomDomainAssociationCommand.js +47 -0
  16. package/dist-es/commands/GetCustomDomainAssociationCommand.js +47 -0
  17. package/dist-es/commands/ListCustomDomainAssociationsCommand.js +47 -0
  18. package/dist-es/commands/UpdateCustomDomainAssociationCommand.js +47 -0
  19. package/dist-es/commands/index.js +5 -0
  20. package/dist-es/models/models_0.js +14 -14
  21. package/dist-es/pagination/ListCustomDomainAssociationsPaginator.js +25 -0
  22. package/dist-es/pagination/index.js +1 -0
  23. package/dist-es/protocols/Aws_json1_1.js +311 -0
  24. package/dist-types/RedshiftServerless.d.ts +35 -0
  25. package/dist-types/RedshiftServerlessClient.d.ts +7 -2
  26. package/dist-types/commands/CreateCustomDomainAssociationCommand.d.ts +96 -0
  27. package/dist-types/commands/CreateWorkgroupCommand.d.ts +3 -0
  28. package/dist-types/commands/DeleteCustomDomainAssociationCommand.d.ts +90 -0
  29. package/dist-types/commands/DeleteWorkgroupCommand.d.ts +3 -0
  30. package/dist-types/commands/GetCredentialsCommand.d.ts +2 -1
  31. package/dist-types/commands/GetCustomDomainAssociationCommand.d.ts +95 -0
  32. package/dist-types/commands/GetWorkgroupCommand.d.ts +3 -0
  33. package/dist-types/commands/ListCustomDomainAssociationsCommand.d.ts +99 -0
  34. package/dist-types/commands/ListWorkgroupsCommand.d.ts +3 -0
  35. package/dist-types/commands/UpdateCustomDomainAssociationCommand.d.ts +96 -0
  36. package/dist-types/commands/UpdateWorkgroupCommand.d.ts +3 -0
  37. package/dist-types/commands/index.d.ts +5 -0
  38. package/dist-types/models/models_0.d.ts +261 -20
  39. package/dist-types/pagination/ListCustomDomainAssociationsPaginator.d.ts +7 -0
  40. package/dist-types/pagination/index.d.ts +1 -0
  41. package/dist-types/protocols/Aws_json1_1.d.ts +45 -0
  42. package/dist-types/ts3.4/RedshiftServerless.d.ts +85 -0
  43. package/dist-types/ts3.4/RedshiftServerlessClient.d.ts +30 -0
  44. package/dist-types/ts3.4/commands/CreateCustomDomainAssociationCommand.d.ts +42 -0
  45. package/dist-types/ts3.4/commands/DeleteCustomDomainAssociationCommand.d.ts +42 -0
  46. package/dist-types/ts3.4/commands/GetCustomDomainAssociationCommand.d.ts +42 -0
  47. package/dist-types/ts3.4/commands/ListCustomDomainAssociationsCommand.d.ts +42 -0
  48. package/dist-types/ts3.4/commands/UpdateCustomDomainAssociationCommand.d.ts +42 -0
  49. package/dist-types/ts3.4/commands/index.d.ts +5 -0
  50. package/dist-types/ts3.4/models/models_0.d.ts +67 -10
  51. package/dist-types/ts3.4/pagination/ListCustomDomainAssociationsPaginator.d.ts +11 -0
  52. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  53. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +60 -0
  54. package/package.json +1 -1
@@ -0,0 +1,96 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
4
+ import { UpdateCustomDomainAssociationRequest, UpdateCustomDomainAssociationResponse } from "../models/models_0";
5
+ import { RedshiftServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftServerlessClient";
6
+ /**
7
+ * @public
8
+ */
9
+ export { __MetadataBearer, $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link UpdateCustomDomainAssociationCommand}.
14
+ */
15
+ export interface UpdateCustomDomainAssociationCommandInput extends UpdateCustomDomainAssociationRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link UpdateCustomDomainAssociationCommand}.
21
+ */
22
+ export interface UpdateCustomDomainAssociationCommandOutput extends UpdateCustomDomainAssociationResponse, __MetadataBearer {
23
+ }
24
+ /**
25
+ * @public
26
+ * <p>Updates an Amazon Redshift Serverless certificate associated with a custom domain.</p>
27
+ * @example
28
+ * Use a bare-bones client and the command you need to make an API call.
29
+ * ```javascript
30
+ * import { RedshiftServerlessClient, UpdateCustomDomainAssociationCommand } from "@aws-sdk/client-redshift-serverless"; // ES Modules import
31
+ * // const { RedshiftServerlessClient, UpdateCustomDomainAssociationCommand } = require("@aws-sdk/client-redshift-serverless"); // CommonJS import
32
+ * const client = new RedshiftServerlessClient(config);
33
+ * const input = { // UpdateCustomDomainAssociationRequest
34
+ * workgroupName: "STRING_VALUE", // required
35
+ * customDomainName: "STRING_VALUE", // required
36
+ * customDomainCertificateArn: "STRING_VALUE", // required
37
+ * };
38
+ * const command = new UpdateCustomDomainAssociationCommand(input);
39
+ * const response = await client.send(command);
40
+ * // { // UpdateCustomDomainAssociationResponse
41
+ * // customDomainName: "STRING_VALUE",
42
+ * // workgroupName: "STRING_VALUE",
43
+ * // customDomainCertificateArn: "STRING_VALUE",
44
+ * // customDomainCertificateExpiryTime: new Date("TIMESTAMP"),
45
+ * // };
46
+ *
47
+ * ```
48
+ *
49
+ * @param UpdateCustomDomainAssociationCommandInput - {@link UpdateCustomDomainAssociationCommandInput}
50
+ * @returns {@link UpdateCustomDomainAssociationCommandOutput}
51
+ * @see {@link UpdateCustomDomainAssociationCommandInput} for command's `input` shape.
52
+ * @see {@link UpdateCustomDomainAssociationCommandOutput} for command's `response` shape.
53
+ * @see {@link RedshiftServerlessClientResolvedConfig | config} for RedshiftServerlessClient's `config` shape.
54
+ *
55
+ * @throws {@link AccessDeniedException} (client fault)
56
+ * <p>You do not have sufficient access to perform this action.</p>
57
+ *
58
+ * @throws {@link ConflictException} (client fault)
59
+ * <p>The submitted action has conflicts.</p>
60
+ *
61
+ * @throws {@link InternalServerException} (server fault)
62
+ * <p>The request processing has failed because of an unknown error, exception or failure.</p>
63
+ *
64
+ * @throws {@link ResourceNotFoundException} (client fault)
65
+ * <p>The resource could not be found.</p>
66
+ *
67
+ * @throws {@link ThrottlingException} (client fault)
68
+ * <p>The request was denied due to request throttling.</p>
69
+ *
70
+ * @throws {@link ValidationException} (client fault)
71
+ * <p>The input failed to satisfy the constraints specified by an AWS service.</p>
72
+ *
73
+ * @throws {@link RedshiftServerlessServiceException}
74
+ * <p>Base exception class for all service exceptions from RedshiftServerless service.</p>
75
+ *
76
+ */
77
+ export declare class UpdateCustomDomainAssociationCommand extends $Command<UpdateCustomDomainAssociationCommandInput, UpdateCustomDomainAssociationCommandOutput, RedshiftServerlessClientResolvedConfig> {
78
+ readonly input: UpdateCustomDomainAssociationCommandInput;
79
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
80
+ /**
81
+ * @public
82
+ */
83
+ constructor(input: UpdateCustomDomainAssociationCommandInput);
84
+ /**
85
+ * @internal
86
+ */
87
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RedshiftServerlessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateCustomDomainAssociationCommandInput, UpdateCustomDomainAssociationCommandOutput>;
88
+ /**
89
+ * @internal
90
+ */
91
+ private serialize;
92
+ /**
93
+ * @internal
94
+ */
95
+ private deserialize;
96
+ }
@@ -94,6 +94,9 @@ export interface UpdateWorkgroupCommandOutput extends UpdateWorkgroupResponse, _
94
94
  * // publiclyAccessible: true || false,
95
95
  * // creationDate: new Date("TIMESTAMP"),
96
96
  * // port: Number("int"),
97
+ * // customDomainName: "STRING_VALUE",
98
+ * // customDomainCertificateArn: "STRING_VALUE",
99
+ * // customDomainCertificateExpiryTime: new Date("TIMESTAMP"),
97
100
  * // workgroupVersion: "STRING_VALUE",
98
101
  * // patchVersion: "STRING_VALUE",
99
102
  * // },
@@ -1,9 +1,11 @@
1
1
  export * from "./ConvertRecoveryPointToSnapshotCommand";
2
+ export * from "./CreateCustomDomainAssociationCommand";
2
3
  export * from "./CreateEndpointAccessCommand";
3
4
  export * from "./CreateNamespaceCommand";
4
5
  export * from "./CreateSnapshotCommand";
5
6
  export * from "./CreateUsageLimitCommand";
6
7
  export * from "./CreateWorkgroupCommand";
8
+ export * from "./DeleteCustomDomainAssociationCommand";
7
9
  export * from "./DeleteEndpointAccessCommand";
8
10
  export * from "./DeleteNamespaceCommand";
9
11
  export * from "./DeleteResourcePolicyCommand";
@@ -11,6 +13,7 @@ export * from "./DeleteSnapshotCommand";
11
13
  export * from "./DeleteUsageLimitCommand";
12
14
  export * from "./DeleteWorkgroupCommand";
13
15
  export * from "./GetCredentialsCommand";
16
+ export * from "./GetCustomDomainAssociationCommand";
14
17
  export * from "./GetEndpointAccessCommand";
15
18
  export * from "./GetNamespaceCommand";
16
19
  export * from "./GetRecoveryPointCommand";
@@ -19,6 +22,7 @@ export * from "./GetSnapshotCommand";
19
22
  export * from "./GetTableRestoreStatusCommand";
20
23
  export * from "./GetUsageLimitCommand";
21
24
  export * from "./GetWorkgroupCommand";
25
+ export * from "./ListCustomDomainAssociationsCommand";
22
26
  export * from "./ListEndpointAccessCommand";
23
27
  export * from "./ListNamespacesCommand";
24
28
  export * from "./ListRecoveryPointsCommand";
@@ -33,6 +37,7 @@ export * from "./RestoreFromSnapshotCommand";
33
37
  export * from "./RestoreTableFromSnapshotCommand";
34
38
  export * from "./TagResourceCommand";
35
39
  export * from "./UntagResourceCommand";
40
+ export * from "./UpdateCustomDomainAssociationCommand";
36
41
  export * from "./UpdateEndpointAccessCommand";
37
42
  export * from "./UpdateNamespaceCommand";
38
43
  export * from "./UpdateSnapshotCommand";
@@ -13,6 +13,32 @@ export declare class AccessDeniedException extends __BaseException {
13
13
  */
14
14
  constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
15
15
  }
16
+ /**
17
+ * @public
18
+ * <p>An object that represents the custom domain name association.</p>
19
+ */
20
+ export interface Association {
21
+ /**
22
+ * @public
23
+ * <p>The custom domain name’s certificate Amazon resource name (ARN).</p>
24
+ */
25
+ customDomainCertificateArn?: string;
26
+ /**
27
+ * @public
28
+ * <p>The expiration time for the certificate.</p>
29
+ */
30
+ customDomainCertificateExpiryTime?: Date;
31
+ /**
32
+ * @public
33
+ * <p>The custom domain name associated with the workgroup.</p>
34
+ */
35
+ customDomainName?: string;
36
+ /**
37
+ * @public
38
+ * <p>The name of the workgroup associated with the database.</p>
39
+ */
40
+ workgroupName?: string;
41
+ }
16
42
  /**
17
43
  * @public
18
44
  * <p>An array of key-value pairs to set for advanced control over Amazon Redshift Serverless.</p>
@@ -301,6 +327,65 @@ export declare class ValidationException extends __BaseException {
301
327
  */
302
328
  constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
303
329
  }
330
+ /**
331
+ * @public
332
+ */
333
+ export interface CreateCustomDomainAssociationRequest {
334
+ /**
335
+ * @public
336
+ * <p>The name of the workgroup associated with the database.</p>
337
+ */
338
+ workgroupName: string | undefined;
339
+ /**
340
+ * @public
341
+ * <p>The custom domain name to associate with the workgroup.</p>
342
+ */
343
+ customDomainName: string | undefined;
344
+ /**
345
+ * @public
346
+ * <p>The custom domain name’s certificate Amazon resource name (ARN).</p>
347
+ */
348
+ customDomainCertificateArn: string | undefined;
349
+ }
350
+ /**
351
+ * @public
352
+ */
353
+ export interface CreateCustomDomainAssociationResponse {
354
+ /**
355
+ * @public
356
+ * <p>The custom domain name to associate with the workgroup.</p>
357
+ */
358
+ customDomainName?: string;
359
+ /**
360
+ * @public
361
+ * <p>The name of the workgroup associated with the database.</p>
362
+ */
363
+ workgroupName?: string;
364
+ /**
365
+ * @public
366
+ * <p>The custom domain name’s certificate Amazon resource name (ARN).</p>
367
+ */
368
+ customDomainCertificateArn?: string;
369
+ /**
370
+ * @public
371
+ * <p>The expiration time for the certificate.</p>
372
+ */
373
+ customDomainCertificateExpiryTime?: Date;
374
+ }
375
+ /**
376
+ * @public
377
+ * <p>The request was denied due to request throttling.</p>
378
+ */
379
+ export declare class ThrottlingException extends __BaseException {
380
+ readonly name: "ThrottlingException";
381
+ readonly $fault: "client";
382
+ $retryable: {};
383
+ code?: string;
384
+ /**
385
+ * @internal
386
+ */
387
+ constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
388
+ }
304
389
  /**
305
390
  * @public
306
391
  */
@@ -969,6 +1054,21 @@ export interface Workgroup {
969
1054
  * <p>The custom port to use when connecting to a workgroup. Valid port ranges are 5431-5455 and 8191-8215. The default is 5439.</p>
970
1055
  */
971
1056
  port?: number;
1057
+ /**
1058
+ * @public
1059
+ * <p>The custom domain name associated with the workgroup.</p>
1060
+ */
1061
+ customDomainName?: string;
1062
+ /**
1063
+ * @public
1064
+ * <p>The custom domain name’s certificate Amazon resource name (ARN).</p>
1065
+ */
1066
+ customDomainCertificateArn?: string;
1067
+ /**
1068
+ * @public
1069
+ * <p>The expiration time for the certificate.</p>
1070
+ */
1071
+ customDomainCertificateExpiryTime?: Date;
972
1072
  /**
973
1073
  * @public
974
1074
  * <p>The Amazon Redshift Serverless version of your workgroup. For more information about Amazon Redshift Serverless versions, see<a href="https://docs.aws.amazon.com/redshift/latest/mgmt/cluster-versions.html">Cluster versions for Amazon Redshift</a>.</p>
@@ -1114,6 +1214,26 @@ export interface UpdateEndpointAccessResponse {
1114
1214
  */
1115
1215
  endpoint?: EndpointAccess;
1116
1216
  }
1217
+ /**
1218
+ * @public
1219
+ */
1220
+ export interface DeleteCustomDomainAssociationRequest {
1221
+ /**
1222
+ * @public
1223
+ * <p>The name of the workgroup associated with the database.</p>
1224
+ */
1225
+ workgroupName: string | undefined;
1226
+ /**
1227
+ * @public
1228
+ * <p>The custom domain name associated with the workgroup.</p>
1229
+ */
1230
+ customDomainName: string | undefined;
1231
+ }
1232
+ /**
1233
+ * @public
1234
+ */
1235
+ export interface DeleteCustomDomainAssociationResponse {
1236
+ }
1117
1237
  /**
1118
1238
  * @public
1119
1239
  */
@@ -1223,11 +1343,6 @@ export interface DeleteWorkgroupResponse {
1223
1343
  * @public
1224
1344
  */
1225
1345
  export interface GetCredentialsRequest {
1226
- /**
1227
- * @public
1228
- * <p>The name of the workgroup associated with the database.</p>
1229
- */
1230
- workgroupName: string | undefined;
1231
1346
  /**
1232
1347
  * @public
1233
1348
  * <p>The name of the database to get temporary authorization to log on to.</p>
@@ -1259,6 +1374,16 @@ export interface GetCredentialsRequest {
1259
1374
  * The minimum is 900 seconds, and the maximum is 3600 seconds.</p>
1260
1375
  */
1261
1376
  durationSeconds?: number;
1377
+ /**
1378
+ * @public
1379
+ * <p>The name of the workgroup associated with the database.</p>
1380
+ */
1381
+ workgroupName?: string;
1382
+ /**
1383
+ * @public
1384
+ * <p>The custom domain name associated with the workgroup. The custom domain name or the workgroup name must be included in the request.</p>
1385
+ */
1386
+ customDomainName?: string;
1262
1387
  }
1263
1388
  /**
1264
1389
  * @public
@@ -1290,6 +1415,46 @@ export interface GetCredentialsResponse {
1290
1415
  */
1291
1416
  nextRefreshTime?: Date;
1292
1417
  }
1418
+ /**
1419
+ * @public
1420
+ */
1421
+ export interface GetCustomDomainAssociationRequest {
1422
+ /**
1423
+ * @public
1424
+ * <p>The custom domain name associated with the workgroup.</p>
1425
+ */
1426
+ customDomainName: string | undefined;
1427
+ /**
1428
+ * @public
1429
+ * <p>The name of the workgroup associated with the database.</p>
1430
+ */
1431
+ workgroupName: string | undefined;
1432
+ }
1433
+ /**
1434
+ * @public
1435
+ */
1436
+ export interface GetCustomDomainAssociationResponse {
1437
+ /**
1438
+ * @public
1439
+ * <p>The custom domain name associated with the workgroup.</p>
1440
+ */
1441
+ customDomainName?: string;
1442
+ /**
1443
+ * @public
1444
+ * <p>The name of the workgroup associated with the database.</p>
1445
+ */
1446
+ workgroupName?: string;
1447
+ /**
1448
+ * @public
1449
+ * <p>The custom domain name’s certificate Amazon resource name (ARN).</p>
1450
+ */
1451
+ customDomainCertificateArn?: string;
1452
+ /**
1453
+ * @public
1454
+ * <p>The expiration time for the certificate.</p>
1455
+ */
1456
+ customDomainCertificateExpiryTime?: Date;
1457
+ }
1293
1458
  /**
1294
1459
  * @public
1295
1460
  */
@@ -1590,6 +1755,51 @@ export declare class InvalidPaginationException extends __BaseException {
1590
1755
  */
1591
1756
  constructor(opts: __ExceptionOptionType<InvalidPaginationException, __BaseException>);
1592
1757
  }
1758
+ /**
1759
+ * @public
1760
+ */
1761
+ export interface ListCustomDomainAssociationsRequest {
1762
+ /**
1763
+ * @public
1764
+ * <p>When <code>nextToken</code> is returned, there are more results available.
1765
+ * The value of <code>nextToken</code> is a unique pagination token for each page.
1766
+ * Make the call again using the returned token to retrieve the next page.</p>
1767
+ */
1768
+ nextToken?: string;
1769
+ /**
1770
+ * @public
1771
+ * <p>An optional parameter that specifies the maximum number of results to return.
1772
+ * You can use <code>nextToken</code> to display the next page of results.</p>
1773
+ */
1774
+ maxResults?: number;
1775
+ /**
1776
+ * @public
1777
+ * <p>The custom domain name associated with the workgroup.</p>
1778
+ */
1779
+ customDomainName?: string;
1780
+ /**
1781
+ * @public
1782
+ * <p>The custom domain name’s certificate Amazon resource name (ARN).</p>
1783
+ */
1784
+ customDomainCertificateArn?: string;
1785
+ }
1786
+ /**
1787
+ * @public
1788
+ */
1789
+ export interface ListCustomDomainAssociationsResponse {
1790
+ /**
1791
+ * @public
1792
+ * <p>When <code>nextToken</code> is returned, there are more results available.
1793
+ * The value of <code>nextToken</code> is a unique pagination token for each page.
1794
+ * Make the call again using the returned token to retrieve the next page.</p>
1795
+ */
1796
+ nextToken?: string;
1797
+ /**
1798
+ * @public
1799
+ * <p>A list of Association objects.</p>
1800
+ */
1801
+ associations?: Association[];
1802
+ }
1593
1803
  /**
1594
1804
  * @public
1595
1805
  */
@@ -1805,20 +2015,6 @@ export interface ListTagsForResourceResponse {
1805
2015
  */
1806
2016
  tags?: Tag[];
1807
2017
  }
1808
- /**
1809
- * @public
1810
- * <p>The request was denied due to request throttling.</p>
1811
- */
1812
- export declare class ThrottlingException extends __BaseException {
1813
- readonly name: "ThrottlingException";
1814
- readonly $fault: "client";
1815
- $retryable: {};
1816
- code?: string;
1817
- /**
1818
- * @internal
1819
- */
1820
- constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
1821
- }
1822
2018
  /**
1823
2019
  * @public
1824
2020
  */
@@ -1914,7 +2110,7 @@ export interface UpdateNamespaceRequest {
1914
2110
  * @public
1915
2111
  * <p>The password of the administrator for the first database created in the namespace. This parameter must be updated together
1916
2112
  * with <code>adminUsername</code>.</p>
1917
- * <p>You can't use <code>adminUserPassword</code> if <code>manageAdminPassword</code> is true.</p>
2113
+ * <p>You can't use <code>adminUserPassword</code> if <code>manageAdminPassword</code> is true. </p>
1918
2114
  */
1919
2115
  adminUserPassword?: string;
1920
2116
  /**
@@ -2233,6 +2429,51 @@ export interface UntagResourceRequest {
2233
2429
  */
2234
2430
  export interface UntagResourceResponse {
2235
2431
  }
2432
+ /**
2433
+ * @public
2434
+ */
2435
+ export interface UpdateCustomDomainAssociationRequest {
2436
+ /**
2437
+ * @public
2438
+ * <p>The name of the workgroup associated with the database.</p>
2439
+ */
2440
+ workgroupName: string | undefined;
2441
+ /**
2442
+ * @public
2443
+ * <p>The custom domain name associated with the workgroup.</p>
2444
+ */
2445
+ customDomainName: string | undefined;
2446
+ /**
2447
+ * @public
2448
+ * <p>The custom domain name’s certificate Amazon resource name (ARN). This is optional.</p>
2449
+ */
2450
+ customDomainCertificateArn: string | undefined;
2451
+ }
2452
+ /**
2453
+ * @public
2454
+ */
2455
+ export interface UpdateCustomDomainAssociationResponse {
2456
+ /**
2457
+ * @public
2458
+ * <p>The custom domain name associated with the workgroup.</p>
2459
+ */
2460
+ customDomainName?: string;
2461
+ /**
2462
+ * @public
2463
+ * <p>The name of the workgroup associated with the database.</p>
2464
+ */
2465
+ workgroupName?: string;
2466
+ /**
2467
+ * @public
2468
+ * <p>The custom domain name’s certificate Amazon resource name (ARN).</p>
2469
+ */
2470
+ customDomainCertificateArn?: string;
2471
+ /**
2472
+ * @public
2473
+ * <p>The expiration time for the certificate.</p>
2474
+ */
2475
+ customDomainCertificateExpiryTime?: Date;
2476
+ }
2236
2477
  /**
2237
2478
  * @public
2238
2479
  */
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListCustomDomainAssociationsCommandInput, ListCustomDomainAssociationsCommandOutput } from "../commands/ListCustomDomainAssociationsCommand";
3
+ import { RedshiftServerlessPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare function paginateListCustomDomainAssociations(config: RedshiftServerlessPaginationConfiguration, input: ListCustomDomainAssociationsCommandInput, ...additionalArguments: any): Paginator<ListCustomDomainAssociationsCommandOutput>;
@@ -1,4 +1,5 @@
1
1
  export * from "./Interfaces";
2
+ export * from "./ListCustomDomainAssociationsPaginator";
2
3
  export * from "./ListEndpointAccessPaginator";
3
4
  export * from "./ListNamespacesPaginator";
4
5
  export * from "./ListRecoveryPointsPaginator";
@@ -1,11 +1,13 @@
1
1
  import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
2
2
  import { SerdeContext as __SerdeContext } from "@smithy/types";
3
3
  import { ConvertRecoveryPointToSnapshotCommandInput, ConvertRecoveryPointToSnapshotCommandOutput } from "../commands/ConvertRecoveryPointToSnapshotCommand";
4
+ import { CreateCustomDomainAssociationCommandInput, CreateCustomDomainAssociationCommandOutput } from "../commands/CreateCustomDomainAssociationCommand";
4
5
  import { CreateEndpointAccessCommandInput, CreateEndpointAccessCommandOutput } from "../commands/CreateEndpointAccessCommand";
5
6
  import { CreateNamespaceCommandInput, CreateNamespaceCommandOutput } from "../commands/CreateNamespaceCommand";
6
7
  import { CreateSnapshotCommandInput, CreateSnapshotCommandOutput } from "../commands/CreateSnapshotCommand";
7
8
  import { CreateUsageLimitCommandInput, CreateUsageLimitCommandOutput } from "../commands/CreateUsageLimitCommand";
8
9
  import { CreateWorkgroupCommandInput, CreateWorkgroupCommandOutput } from "../commands/CreateWorkgroupCommand";
10
+ import { DeleteCustomDomainAssociationCommandInput, DeleteCustomDomainAssociationCommandOutput } from "../commands/DeleteCustomDomainAssociationCommand";
9
11
  import { DeleteEndpointAccessCommandInput, DeleteEndpointAccessCommandOutput } from "../commands/DeleteEndpointAccessCommand";
10
12
  import { DeleteNamespaceCommandInput, DeleteNamespaceCommandOutput } from "../commands/DeleteNamespaceCommand";
11
13
  import { DeleteResourcePolicyCommandInput, DeleteResourcePolicyCommandOutput } from "../commands/DeleteResourcePolicyCommand";
@@ -13,6 +15,7 @@ import { DeleteSnapshotCommandInput, DeleteSnapshotCommandOutput } from "../comm
13
15
  import { DeleteUsageLimitCommandInput, DeleteUsageLimitCommandOutput } from "../commands/DeleteUsageLimitCommand";
14
16
  import { DeleteWorkgroupCommandInput, DeleteWorkgroupCommandOutput } from "../commands/DeleteWorkgroupCommand";
15
17
  import { GetCredentialsCommandInput, GetCredentialsCommandOutput } from "../commands/GetCredentialsCommand";
18
+ import { GetCustomDomainAssociationCommandInput, GetCustomDomainAssociationCommandOutput } from "../commands/GetCustomDomainAssociationCommand";
16
19
  import { GetEndpointAccessCommandInput, GetEndpointAccessCommandOutput } from "../commands/GetEndpointAccessCommand";
17
20
  import { GetNamespaceCommandInput, GetNamespaceCommandOutput } from "../commands/GetNamespaceCommand";
18
21
  import { GetRecoveryPointCommandInput, GetRecoveryPointCommandOutput } from "../commands/GetRecoveryPointCommand";
@@ -21,6 +24,7 @@ import { GetSnapshotCommandInput, GetSnapshotCommandOutput } from "../commands/G
21
24
  import { GetTableRestoreStatusCommandInput, GetTableRestoreStatusCommandOutput } from "../commands/GetTableRestoreStatusCommand";
22
25
  import { GetUsageLimitCommandInput, GetUsageLimitCommandOutput } from "../commands/GetUsageLimitCommand";
23
26
  import { GetWorkgroupCommandInput, GetWorkgroupCommandOutput } from "../commands/GetWorkgroupCommand";
27
+ import { ListCustomDomainAssociationsCommandInput, ListCustomDomainAssociationsCommandOutput } from "../commands/ListCustomDomainAssociationsCommand";
24
28
  import { ListEndpointAccessCommandInput, ListEndpointAccessCommandOutput } from "../commands/ListEndpointAccessCommand";
25
29
  import { ListNamespacesCommandInput, ListNamespacesCommandOutput } from "../commands/ListNamespacesCommand";
26
30
  import { ListRecoveryPointsCommandInput, ListRecoveryPointsCommandOutput } from "../commands/ListRecoveryPointsCommand";
@@ -35,6 +39,7 @@ import { RestoreFromSnapshotCommandInput, RestoreFromSnapshotCommandOutput } fro
35
39
  import { RestoreTableFromSnapshotCommandInput, RestoreTableFromSnapshotCommandOutput } from "../commands/RestoreTableFromSnapshotCommand";
36
40
  import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
37
41
  import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
42
+ import { UpdateCustomDomainAssociationCommandInput, UpdateCustomDomainAssociationCommandOutput } from "../commands/UpdateCustomDomainAssociationCommand";
38
43
  import { UpdateEndpointAccessCommandInput, UpdateEndpointAccessCommandOutput } from "../commands/UpdateEndpointAccessCommand";
39
44
  import { UpdateNamespaceCommandInput, UpdateNamespaceCommandOutput } from "../commands/UpdateNamespaceCommand";
40
45
  import { UpdateSnapshotCommandInput, UpdateSnapshotCommandOutput } from "../commands/UpdateSnapshotCommand";
@@ -44,6 +49,10 @@ import { UpdateWorkgroupCommandInput, UpdateWorkgroupCommandOutput } from "../co
44
49
  * serializeAws_json1_1ConvertRecoveryPointToSnapshotCommand
45
50
  */
46
51
  export declare const se_ConvertRecoveryPointToSnapshotCommand: (input: ConvertRecoveryPointToSnapshotCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
52
+ /**
53
+ * serializeAws_json1_1CreateCustomDomainAssociationCommand
54
+ */
55
+ export declare const se_CreateCustomDomainAssociationCommand: (input: CreateCustomDomainAssociationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
47
56
  /**
48
57
  * serializeAws_json1_1CreateEndpointAccessCommand
49
58
  */
@@ -64,6 +73,10 @@ export declare const se_CreateUsageLimitCommand: (input: CreateUsageLimitCommand
64
73
  * serializeAws_json1_1CreateWorkgroupCommand
65
74
  */
66
75
  export declare const se_CreateWorkgroupCommand: (input: CreateWorkgroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
76
+ /**
77
+ * serializeAws_json1_1DeleteCustomDomainAssociationCommand
78
+ */
79
+ export declare const se_DeleteCustomDomainAssociationCommand: (input: DeleteCustomDomainAssociationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
67
80
  /**
68
81
  * serializeAws_json1_1DeleteEndpointAccessCommand
69
82
  */
@@ -92,6 +105,10 @@ export declare const se_DeleteWorkgroupCommand: (input: DeleteWorkgroupCommandIn
92
105
  * serializeAws_json1_1GetCredentialsCommand
93
106
  */
94
107
  export declare const se_GetCredentialsCommand: (input: GetCredentialsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
108
+ /**
109
+ * serializeAws_json1_1GetCustomDomainAssociationCommand
110
+ */
111
+ export declare const se_GetCustomDomainAssociationCommand: (input: GetCustomDomainAssociationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
95
112
  /**
96
113
  * serializeAws_json1_1GetEndpointAccessCommand
97
114
  */
@@ -124,6 +141,10 @@ export declare const se_GetUsageLimitCommand: (input: GetUsageLimitCommandInput,
124
141
  * serializeAws_json1_1GetWorkgroupCommand
125
142
  */
126
143
  export declare const se_GetWorkgroupCommand: (input: GetWorkgroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
144
+ /**
145
+ * serializeAws_json1_1ListCustomDomainAssociationsCommand
146
+ */
147
+ export declare const se_ListCustomDomainAssociationsCommand: (input: ListCustomDomainAssociationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
127
148
  /**
128
149
  * serializeAws_json1_1ListEndpointAccessCommand
129
150
  */
@@ -180,6 +201,10 @@ export declare const se_TagResourceCommand: (input: TagResourceCommandInput, con
180
201
  * serializeAws_json1_1UntagResourceCommand
181
202
  */
182
203
  export declare const se_UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
204
+ /**
205
+ * serializeAws_json1_1UpdateCustomDomainAssociationCommand
206
+ */
207
+ export declare const se_UpdateCustomDomainAssociationCommand: (input: UpdateCustomDomainAssociationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
183
208
  /**
184
209
  * serializeAws_json1_1UpdateEndpointAccessCommand
185
210
  */
@@ -204,6 +229,10 @@ export declare const se_UpdateWorkgroupCommand: (input: UpdateWorkgroupCommandIn
204
229
  * deserializeAws_json1_1ConvertRecoveryPointToSnapshotCommand
205
230
  */
206
231
  export declare const de_ConvertRecoveryPointToSnapshotCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ConvertRecoveryPointToSnapshotCommandOutput>;
232
+ /**
233
+ * deserializeAws_json1_1CreateCustomDomainAssociationCommand
234
+ */
235
+ export declare const de_CreateCustomDomainAssociationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateCustomDomainAssociationCommandOutput>;
207
236
  /**
208
237
  * deserializeAws_json1_1CreateEndpointAccessCommand
209
238
  */
@@ -224,6 +253,10 @@ export declare const de_CreateUsageLimitCommand: (output: __HttpResponse, contex
224
253
  * deserializeAws_json1_1CreateWorkgroupCommand
225
254
  */
226
255
  export declare const de_CreateWorkgroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateWorkgroupCommandOutput>;
256
+ /**
257
+ * deserializeAws_json1_1DeleteCustomDomainAssociationCommand
258
+ */
259
+ export declare const de_DeleteCustomDomainAssociationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteCustomDomainAssociationCommandOutput>;
227
260
  /**
228
261
  * deserializeAws_json1_1DeleteEndpointAccessCommand
229
262
  */
@@ -252,6 +285,10 @@ export declare const de_DeleteWorkgroupCommand: (output: __HttpResponse, context
252
285
  * deserializeAws_json1_1GetCredentialsCommand
253
286
  */
254
287
  export declare const de_GetCredentialsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetCredentialsCommandOutput>;
288
+ /**
289
+ * deserializeAws_json1_1GetCustomDomainAssociationCommand
290
+ */
291
+ export declare const de_GetCustomDomainAssociationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetCustomDomainAssociationCommandOutput>;
255
292
  /**
256
293
  * deserializeAws_json1_1GetEndpointAccessCommand
257
294
  */
@@ -284,6 +321,10 @@ export declare const de_GetUsageLimitCommand: (output: __HttpResponse, context:
284
321
  * deserializeAws_json1_1GetWorkgroupCommand
285
322
  */
286
323
  export declare const de_GetWorkgroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetWorkgroupCommandOutput>;
324
+ /**
325
+ * deserializeAws_json1_1ListCustomDomainAssociationsCommand
326
+ */
327
+ export declare const de_ListCustomDomainAssociationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListCustomDomainAssociationsCommandOutput>;
287
328
  /**
288
329
  * deserializeAws_json1_1ListEndpointAccessCommand
289
330
  */
@@ -340,6 +381,10 @@ export declare const de_TagResourceCommand: (output: __HttpResponse, context: __
340
381
  * deserializeAws_json1_1UntagResourceCommand
341
382
  */
342
383
  export declare const de_UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
384
+ /**
385
+ * deserializeAws_json1_1UpdateCustomDomainAssociationCommand
386
+ */
387
+ export declare const de_UpdateCustomDomainAssociationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateCustomDomainAssociationCommandOutput>;
343
388
  /**
344
389
  * deserializeAws_json1_1UpdateEndpointAccessCommand
345
390
  */