@aws-sdk/client-redshift-serverless 3.438.0 → 3.441.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +40 -0
- package/dist-cjs/RedshiftServerless.js +10 -0
- package/dist-cjs/commands/CreateCustomDomainAssociationCommand.js +51 -0
- package/dist-cjs/commands/DeleteCustomDomainAssociationCommand.js +51 -0
- package/dist-cjs/commands/GetCustomDomainAssociationCommand.js +51 -0
- package/dist-cjs/commands/ListCustomDomainAssociationsCommand.js +51 -0
- package/dist-cjs/commands/UpdateCustomDomainAssociationCommand.js +51 -0
- package/dist-cjs/commands/index.js +5 -0
- package/dist-cjs/models/models_0.js +16 -16
- package/dist-cjs/pagination/ListCustomDomainAssociationsPaginator.js +29 -0
- package/dist-cjs/pagination/index.js +1 -0
- package/dist-cjs/protocols/Aws_json1_1.js +323 -2
- package/dist-es/RedshiftServerless.js +10 -0
- package/dist-es/commands/CreateCustomDomainAssociationCommand.js +47 -0
- package/dist-es/commands/DeleteCustomDomainAssociationCommand.js +47 -0
- package/dist-es/commands/GetCustomDomainAssociationCommand.js +47 -0
- package/dist-es/commands/ListCustomDomainAssociationsCommand.js +47 -0
- package/dist-es/commands/UpdateCustomDomainAssociationCommand.js +47 -0
- package/dist-es/commands/index.js +5 -0
- package/dist-es/models/models_0.js +14 -14
- package/dist-es/pagination/ListCustomDomainAssociationsPaginator.js +25 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_json1_1.js +311 -0
- package/dist-types/RedshiftServerless.d.ts +35 -0
- package/dist-types/RedshiftServerlessClient.d.ts +7 -2
- package/dist-types/commands/CreateCustomDomainAssociationCommand.d.ts +96 -0
- package/dist-types/commands/CreateWorkgroupCommand.d.ts +3 -0
- package/dist-types/commands/DeleteCustomDomainAssociationCommand.d.ts +90 -0
- package/dist-types/commands/DeleteWorkgroupCommand.d.ts +3 -0
- package/dist-types/commands/GetCredentialsCommand.d.ts +2 -1
- package/dist-types/commands/GetCustomDomainAssociationCommand.d.ts +95 -0
- package/dist-types/commands/GetWorkgroupCommand.d.ts +3 -0
- package/dist-types/commands/ListCustomDomainAssociationsCommand.d.ts +99 -0
- package/dist-types/commands/ListWorkgroupsCommand.d.ts +3 -0
- package/dist-types/commands/UpdateCustomDomainAssociationCommand.d.ts +96 -0
- package/dist-types/commands/UpdateWorkgroupCommand.d.ts +3 -0
- package/dist-types/commands/index.d.ts +5 -0
- package/dist-types/models/models_0.d.ts +261 -20
- package/dist-types/pagination/ListCustomDomainAssociationsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_json1_1.d.ts +45 -0
- package/dist-types/ts3.4/RedshiftServerless.d.ts +85 -0
- package/dist-types/ts3.4/RedshiftServerlessClient.d.ts +30 -0
- package/dist-types/ts3.4/commands/CreateCustomDomainAssociationCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/DeleteCustomDomainAssociationCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/GetCustomDomainAssociationCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ListCustomDomainAssociationsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/UpdateCustomDomainAssociationCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/index.d.ts +5 -0
- package/dist-types/ts3.4/models/models_0.d.ts +67 -10
- package/dist-types/ts3.4/pagination/ListCustomDomainAssociationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +60 -0
- package/package.json +4 -4
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
|
|
2
2
|
import { ConvertRecoveryPointToSnapshotCommandInput, ConvertRecoveryPointToSnapshotCommandOutput } from "./commands/ConvertRecoveryPointToSnapshotCommand";
|
|
3
|
+
import { CreateCustomDomainAssociationCommandInput, CreateCustomDomainAssociationCommandOutput } from "./commands/CreateCustomDomainAssociationCommand";
|
|
3
4
|
import { CreateEndpointAccessCommandInput, CreateEndpointAccessCommandOutput } from "./commands/CreateEndpointAccessCommand";
|
|
4
5
|
import { CreateNamespaceCommandInput, CreateNamespaceCommandOutput } from "./commands/CreateNamespaceCommand";
|
|
5
6
|
import { CreateSnapshotCommandInput, CreateSnapshotCommandOutput } from "./commands/CreateSnapshotCommand";
|
|
6
7
|
import { CreateUsageLimitCommandInput, CreateUsageLimitCommandOutput } from "./commands/CreateUsageLimitCommand";
|
|
7
8
|
import { CreateWorkgroupCommandInput, CreateWorkgroupCommandOutput } from "./commands/CreateWorkgroupCommand";
|
|
9
|
+
import { DeleteCustomDomainAssociationCommandInput, DeleteCustomDomainAssociationCommandOutput } from "./commands/DeleteCustomDomainAssociationCommand";
|
|
8
10
|
import { DeleteEndpointAccessCommandInput, DeleteEndpointAccessCommandOutput } from "./commands/DeleteEndpointAccessCommand";
|
|
9
11
|
import { DeleteNamespaceCommandInput, DeleteNamespaceCommandOutput } from "./commands/DeleteNamespaceCommand";
|
|
10
12
|
import { DeleteResourcePolicyCommandInput, DeleteResourcePolicyCommandOutput } from "./commands/DeleteResourcePolicyCommand";
|
|
@@ -12,6 +14,7 @@ import { DeleteSnapshotCommandInput, DeleteSnapshotCommandOutput } from "./comma
|
|
|
12
14
|
import { DeleteUsageLimitCommandInput, DeleteUsageLimitCommandOutput } from "./commands/DeleteUsageLimitCommand";
|
|
13
15
|
import { DeleteWorkgroupCommandInput, DeleteWorkgroupCommandOutput } from "./commands/DeleteWorkgroupCommand";
|
|
14
16
|
import { GetCredentialsCommandInput, GetCredentialsCommandOutput } from "./commands/GetCredentialsCommand";
|
|
17
|
+
import { GetCustomDomainAssociationCommandInput, GetCustomDomainAssociationCommandOutput } from "./commands/GetCustomDomainAssociationCommand";
|
|
15
18
|
import { GetEndpointAccessCommandInput, GetEndpointAccessCommandOutput } from "./commands/GetEndpointAccessCommand";
|
|
16
19
|
import { GetNamespaceCommandInput, GetNamespaceCommandOutput } from "./commands/GetNamespaceCommand";
|
|
17
20
|
import { GetRecoveryPointCommandInput, GetRecoveryPointCommandOutput } from "./commands/GetRecoveryPointCommand";
|
|
@@ -20,6 +23,7 @@ import { GetSnapshotCommandInput, GetSnapshotCommandOutput } from "./commands/Ge
|
|
|
20
23
|
import { GetTableRestoreStatusCommandInput, GetTableRestoreStatusCommandOutput } from "./commands/GetTableRestoreStatusCommand";
|
|
21
24
|
import { GetUsageLimitCommandInput, GetUsageLimitCommandOutput } from "./commands/GetUsageLimitCommand";
|
|
22
25
|
import { GetWorkgroupCommandInput, GetWorkgroupCommandOutput } from "./commands/GetWorkgroupCommand";
|
|
26
|
+
import { ListCustomDomainAssociationsCommandInput, ListCustomDomainAssociationsCommandOutput } from "./commands/ListCustomDomainAssociationsCommand";
|
|
23
27
|
import { ListEndpointAccessCommandInput, ListEndpointAccessCommandOutput } from "./commands/ListEndpointAccessCommand";
|
|
24
28
|
import { ListNamespacesCommandInput, ListNamespacesCommandOutput } from "./commands/ListNamespacesCommand";
|
|
25
29
|
import { ListRecoveryPointsCommandInput, ListRecoveryPointsCommandOutput } from "./commands/ListRecoveryPointsCommand";
|
|
@@ -34,6 +38,7 @@ import { RestoreFromSnapshotCommandInput, RestoreFromSnapshotCommandOutput } fro
|
|
|
34
38
|
import { RestoreTableFromSnapshotCommandInput, RestoreTableFromSnapshotCommandOutput } from "./commands/RestoreTableFromSnapshotCommand";
|
|
35
39
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
36
40
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
41
|
+
import { UpdateCustomDomainAssociationCommandInput, UpdateCustomDomainAssociationCommandOutput } from "./commands/UpdateCustomDomainAssociationCommand";
|
|
37
42
|
import { UpdateEndpointAccessCommandInput, UpdateEndpointAccessCommandOutput } from "./commands/UpdateEndpointAccessCommand";
|
|
38
43
|
import { UpdateNamespaceCommandInput, UpdateNamespaceCommandOutput } from "./commands/UpdateNamespaceCommand";
|
|
39
44
|
import { UpdateSnapshotCommandInput, UpdateSnapshotCommandOutput } from "./commands/UpdateSnapshotCommand";
|
|
@@ -47,6 +52,12 @@ export interface RedshiftServerless {
|
|
|
47
52
|
convertRecoveryPointToSnapshot(args: ConvertRecoveryPointToSnapshotCommandInput, options?: __HttpHandlerOptions): Promise<ConvertRecoveryPointToSnapshotCommandOutput>;
|
|
48
53
|
convertRecoveryPointToSnapshot(args: ConvertRecoveryPointToSnapshotCommandInput, cb: (err: any, data?: ConvertRecoveryPointToSnapshotCommandOutput) => void): void;
|
|
49
54
|
convertRecoveryPointToSnapshot(args: ConvertRecoveryPointToSnapshotCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ConvertRecoveryPointToSnapshotCommandOutput) => void): void;
|
|
55
|
+
/**
|
|
56
|
+
* @see {@link CreateCustomDomainAssociationCommand}
|
|
57
|
+
*/
|
|
58
|
+
createCustomDomainAssociation(args: CreateCustomDomainAssociationCommandInput, options?: __HttpHandlerOptions): Promise<CreateCustomDomainAssociationCommandOutput>;
|
|
59
|
+
createCustomDomainAssociation(args: CreateCustomDomainAssociationCommandInput, cb: (err: any, data?: CreateCustomDomainAssociationCommandOutput) => void): void;
|
|
60
|
+
createCustomDomainAssociation(args: CreateCustomDomainAssociationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateCustomDomainAssociationCommandOutput) => void): void;
|
|
50
61
|
/**
|
|
51
62
|
* @see {@link CreateEndpointAccessCommand}
|
|
52
63
|
*/
|
|
@@ -77,6 +88,12 @@ export interface RedshiftServerless {
|
|
|
77
88
|
createWorkgroup(args: CreateWorkgroupCommandInput, options?: __HttpHandlerOptions): Promise<CreateWorkgroupCommandOutput>;
|
|
78
89
|
createWorkgroup(args: CreateWorkgroupCommandInput, cb: (err: any, data?: CreateWorkgroupCommandOutput) => void): void;
|
|
79
90
|
createWorkgroup(args: CreateWorkgroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateWorkgroupCommandOutput) => void): void;
|
|
91
|
+
/**
|
|
92
|
+
* @see {@link DeleteCustomDomainAssociationCommand}
|
|
93
|
+
*/
|
|
94
|
+
deleteCustomDomainAssociation(args: DeleteCustomDomainAssociationCommandInput, options?: __HttpHandlerOptions): Promise<DeleteCustomDomainAssociationCommandOutput>;
|
|
95
|
+
deleteCustomDomainAssociation(args: DeleteCustomDomainAssociationCommandInput, cb: (err: any, data?: DeleteCustomDomainAssociationCommandOutput) => void): void;
|
|
96
|
+
deleteCustomDomainAssociation(args: DeleteCustomDomainAssociationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteCustomDomainAssociationCommandOutput) => void): void;
|
|
80
97
|
/**
|
|
81
98
|
* @see {@link DeleteEndpointAccessCommand}
|
|
82
99
|
*/
|
|
@@ -119,6 +136,12 @@ export interface RedshiftServerless {
|
|
|
119
136
|
getCredentials(args: GetCredentialsCommandInput, options?: __HttpHandlerOptions): Promise<GetCredentialsCommandOutput>;
|
|
120
137
|
getCredentials(args: GetCredentialsCommandInput, cb: (err: any, data?: GetCredentialsCommandOutput) => void): void;
|
|
121
138
|
getCredentials(args: GetCredentialsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetCredentialsCommandOutput) => void): void;
|
|
139
|
+
/**
|
|
140
|
+
* @see {@link GetCustomDomainAssociationCommand}
|
|
141
|
+
*/
|
|
142
|
+
getCustomDomainAssociation(args: GetCustomDomainAssociationCommandInput, options?: __HttpHandlerOptions): Promise<GetCustomDomainAssociationCommandOutput>;
|
|
143
|
+
getCustomDomainAssociation(args: GetCustomDomainAssociationCommandInput, cb: (err: any, data?: GetCustomDomainAssociationCommandOutput) => void): void;
|
|
144
|
+
getCustomDomainAssociation(args: GetCustomDomainAssociationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetCustomDomainAssociationCommandOutput) => void): void;
|
|
122
145
|
/**
|
|
123
146
|
* @see {@link GetEndpointAccessCommand}
|
|
124
147
|
*/
|
|
@@ -167,6 +190,12 @@ export interface RedshiftServerless {
|
|
|
167
190
|
getWorkgroup(args: GetWorkgroupCommandInput, options?: __HttpHandlerOptions): Promise<GetWorkgroupCommandOutput>;
|
|
168
191
|
getWorkgroup(args: GetWorkgroupCommandInput, cb: (err: any, data?: GetWorkgroupCommandOutput) => void): void;
|
|
169
192
|
getWorkgroup(args: GetWorkgroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetWorkgroupCommandOutput) => void): void;
|
|
193
|
+
/**
|
|
194
|
+
* @see {@link ListCustomDomainAssociationsCommand}
|
|
195
|
+
*/
|
|
196
|
+
listCustomDomainAssociations(args: ListCustomDomainAssociationsCommandInput, options?: __HttpHandlerOptions): Promise<ListCustomDomainAssociationsCommandOutput>;
|
|
197
|
+
listCustomDomainAssociations(args: ListCustomDomainAssociationsCommandInput, cb: (err: any, data?: ListCustomDomainAssociationsCommandOutput) => void): void;
|
|
198
|
+
listCustomDomainAssociations(args: ListCustomDomainAssociationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListCustomDomainAssociationsCommandOutput) => void): void;
|
|
170
199
|
/**
|
|
171
200
|
* @see {@link ListEndpointAccessCommand}
|
|
172
201
|
*/
|
|
@@ -251,6 +280,12 @@ export interface RedshiftServerless {
|
|
|
251
280
|
untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
|
|
252
281
|
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
253
282
|
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
283
|
+
/**
|
|
284
|
+
* @see {@link UpdateCustomDomainAssociationCommand}
|
|
285
|
+
*/
|
|
286
|
+
updateCustomDomainAssociation(args: UpdateCustomDomainAssociationCommandInput, options?: __HttpHandlerOptions): Promise<UpdateCustomDomainAssociationCommandOutput>;
|
|
287
|
+
updateCustomDomainAssociation(args: UpdateCustomDomainAssociationCommandInput, cb: (err: any, data?: UpdateCustomDomainAssociationCommandOutput) => void): void;
|
|
288
|
+
updateCustomDomainAssociation(args: UpdateCustomDomainAssociationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateCustomDomainAssociationCommandOutput) => void): void;
|
|
254
289
|
/**
|
|
255
290
|
* @see {@link UpdateEndpointAccessCommand}
|
|
256
291
|
*/
|
|
@@ -9,11 +9,13 @@ import { HttpHandler as __HttpHandler } from "@smithy/protocol-http";
|
|
|
9
9
|
import { Client as __Client, DefaultsMode as __DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@smithy/smithy-client";
|
|
10
10
|
import { BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
|
|
11
11
|
import { ConvertRecoveryPointToSnapshotCommandInput, ConvertRecoveryPointToSnapshotCommandOutput } from "./commands/ConvertRecoveryPointToSnapshotCommand";
|
|
12
|
+
import { CreateCustomDomainAssociationCommandInput, CreateCustomDomainAssociationCommandOutput } from "./commands/CreateCustomDomainAssociationCommand";
|
|
12
13
|
import { CreateEndpointAccessCommandInput, CreateEndpointAccessCommandOutput } from "./commands/CreateEndpointAccessCommand";
|
|
13
14
|
import { CreateNamespaceCommandInput, CreateNamespaceCommandOutput } from "./commands/CreateNamespaceCommand";
|
|
14
15
|
import { CreateSnapshotCommandInput, CreateSnapshotCommandOutput } from "./commands/CreateSnapshotCommand";
|
|
15
16
|
import { CreateUsageLimitCommandInput, CreateUsageLimitCommandOutput } from "./commands/CreateUsageLimitCommand";
|
|
16
17
|
import { CreateWorkgroupCommandInput, CreateWorkgroupCommandOutput } from "./commands/CreateWorkgroupCommand";
|
|
18
|
+
import { DeleteCustomDomainAssociationCommandInput, DeleteCustomDomainAssociationCommandOutput } from "./commands/DeleteCustomDomainAssociationCommand";
|
|
17
19
|
import { DeleteEndpointAccessCommandInput, DeleteEndpointAccessCommandOutput } from "./commands/DeleteEndpointAccessCommand";
|
|
18
20
|
import { DeleteNamespaceCommandInput, DeleteNamespaceCommandOutput } from "./commands/DeleteNamespaceCommand";
|
|
19
21
|
import { DeleteResourcePolicyCommandInput, DeleteResourcePolicyCommandOutput } from "./commands/DeleteResourcePolicyCommand";
|
|
@@ -21,6 +23,7 @@ import { DeleteSnapshotCommandInput, DeleteSnapshotCommandOutput } from "./comma
|
|
|
21
23
|
import { DeleteUsageLimitCommandInput, DeleteUsageLimitCommandOutput } from "./commands/DeleteUsageLimitCommand";
|
|
22
24
|
import { DeleteWorkgroupCommandInput, DeleteWorkgroupCommandOutput } from "./commands/DeleteWorkgroupCommand";
|
|
23
25
|
import { GetCredentialsCommandInput, GetCredentialsCommandOutput } from "./commands/GetCredentialsCommand";
|
|
26
|
+
import { GetCustomDomainAssociationCommandInput, GetCustomDomainAssociationCommandOutput } from "./commands/GetCustomDomainAssociationCommand";
|
|
24
27
|
import { GetEndpointAccessCommandInput, GetEndpointAccessCommandOutput } from "./commands/GetEndpointAccessCommand";
|
|
25
28
|
import { GetNamespaceCommandInput, GetNamespaceCommandOutput } from "./commands/GetNamespaceCommand";
|
|
26
29
|
import { GetRecoveryPointCommandInput, GetRecoveryPointCommandOutput } from "./commands/GetRecoveryPointCommand";
|
|
@@ -29,6 +32,7 @@ import { GetSnapshotCommandInput, GetSnapshotCommandOutput } from "./commands/Ge
|
|
|
29
32
|
import { GetTableRestoreStatusCommandInput, GetTableRestoreStatusCommandOutput } from "./commands/GetTableRestoreStatusCommand";
|
|
30
33
|
import { GetUsageLimitCommandInput, GetUsageLimitCommandOutput } from "./commands/GetUsageLimitCommand";
|
|
31
34
|
import { GetWorkgroupCommandInput, GetWorkgroupCommandOutput } from "./commands/GetWorkgroupCommand";
|
|
35
|
+
import { ListCustomDomainAssociationsCommandInput, ListCustomDomainAssociationsCommandOutput } from "./commands/ListCustomDomainAssociationsCommand";
|
|
32
36
|
import { ListEndpointAccessCommandInput, ListEndpointAccessCommandOutput } from "./commands/ListEndpointAccessCommand";
|
|
33
37
|
import { ListNamespacesCommandInput, ListNamespacesCommandOutput } from "./commands/ListNamespacesCommand";
|
|
34
38
|
import { ListRecoveryPointsCommandInput, ListRecoveryPointsCommandOutput } from "./commands/ListRecoveryPointsCommand";
|
|
@@ -43,6 +47,7 @@ import { RestoreFromSnapshotCommandInput, RestoreFromSnapshotCommandOutput } fro
|
|
|
43
47
|
import { RestoreTableFromSnapshotCommandInput, RestoreTableFromSnapshotCommandOutput } from "./commands/RestoreTableFromSnapshotCommand";
|
|
44
48
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
45
49
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
50
|
+
import { UpdateCustomDomainAssociationCommandInput, UpdateCustomDomainAssociationCommandOutput } from "./commands/UpdateCustomDomainAssociationCommand";
|
|
46
51
|
import { UpdateEndpointAccessCommandInput, UpdateEndpointAccessCommandOutput } from "./commands/UpdateEndpointAccessCommand";
|
|
47
52
|
import { UpdateNamespaceCommandInput, UpdateNamespaceCommandOutput } from "./commands/UpdateNamespaceCommand";
|
|
48
53
|
import { UpdateSnapshotCommandInput, UpdateSnapshotCommandOutput } from "./commands/UpdateSnapshotCommand";
|
|
@@ -54,11 +59,11 @@ export { __Client };
|
|
|
54
59
|
/**
|
|
55
60
|
* @public
|
|
56
61
|
*/
|
|
57
|
-
export type ServiceInputTypes = ConvertRecoveryPointToSnapshotCommandInput | CreateEndpointAccessCommandInput | CreateNamespaceCommandInput | CreateSnapshotCommandInput | CreateUsageLimitCommandInput | CreateWorkgroupCommandInput | DeleteEndpointAccessCommandInput | DeleteNamespaceCommandInput | DeleteResourcePolicyCommandInput | DeleteSnapshotCommandInput | DeleteUsageLimitCommandInput | DeleteWorkgroupCommandInput | GetCredentialsCommandInput | GetEndpointAccessCommandInput | GetNamespaceCommandInput | GetRecoveryPointCommandInput | GetResourcePolicyCommandInput | GetSnapshotCommandInput | GetTableRestoreStatusCommandInput | GetUsageLimitCommandInput | GetWorkgroupCommandInput | ListEndpointAccessCommandInput | ListNamespacesCommandInput | ListRecoveryPointsCommandInput | ListSnapshotsCommandInput | ListTableRestoreStatusCommandInput | ListTagsForResourceCommandInput | ListUsageLimitsCommandInput | ListWorkgroupsCommandInput | PutResourcePolicyCommandInput | RestoreFromRecoveryPointCommandInput | RestoreFromSnapshotCommandInput | RestoreTableFromSnapshotCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateEndpointAccessCommandInput | UpdateNamespaceCommandInput | UpdateSnapshotCommandInput | UpdateUsageLimitCommandInput | UpdateWorkgroupCommandInput;
|
|
62
|
+
export type ServiceInputTypes = ConvertRecoveryPointToSnapshotCommandInput | CreateCustomDomainAssociationCommandInput | CreateEndpointAccessCommandInput | CreateNamespaceCommandInput | CreateSnapshotCommandInput | CreateUsageLimitCommandInput | CreateWorkgroupCommandInput | DeleteCustomDomainAssociationCommandInput | DeleteEndpointAccessCommandInput | DeleteNamespaceCommandInput | DeleteResourcePolicyCommandInput | DeleteSnapshotCommandInput | DeleteUsageLimitCommandInput | DeleteWorkgroupCommandInput | GetCredentialsCommandInput | GetCustomDomainAssociationCommandInput | GetEndpointAccessCommandInput | GetNamespaceCommandInput | GetRecoveryPointCommandInput | GetResourcePolicyCommandInput | GetSnapshotCommandInput | GetTableRestoreStatusCommandInput | GetUsageLimitCommandInput | GetWorkgroupCommandInput | ListCustomDomainAssociationsCommandInput | ListEndpointAccessCommandInput | ListNamespacesCommandInput | ListRecoveryPointsCommandInput | ListSnapshotsCommandInput | ListTableRestoreStatusCommandInput | ListTagsForResourceCommandInput | ListUsageLimitsCommandInput | ListWorkgroupsCommandInput | PutResourcePolicyCommandInput | RestoreFromRecoveryPointCommandInput | RestoreFromSnapshotCommandInput | RestoreTableFromSnapshotCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateCustomDomainAssociationCommandInput | UpdateEndpointAccessCommandInput | UpdateNamespaceCommandInput | UpdateSnapshotCommandInput | UpdateUsageLimitCommandInput | UpdateWorkgroupCommandInput;
|
|
58
63
|
/**
|
|
59
64
|
* @public
|
|
60
65
|
*/
|
|
61
|
-
export type ServiceOutputTypes = ConvertRecoveryPointToSnapshotCommandOutput | CreateEndpointAccessCommandOutput | CreateNamespaceCommandOutput | CreateSnapshotCommandOutput | CreateUsageLimitCommandOutput | CreateWorkgroupCommandOutput | DeleteEndpointAccessCommandOutput | DeleteNamespaceCommandOutput | DeleteResourcePolicyCommandOutput | DeleteSnapshotCommandOutput | DeleteUsageLimitCommandOutput | DeleteWorkgroupCommandOutput | GetCredentialsCommandOutput | GetEndpointAccessCommandOutput | GetNamespaceCommandOutput | GetRecoveryPointCommandOutput | GetResourcePolicyCommandOutput | GetSnapshotCommandOutput | GetTableRestoreStatusCommandOutput | GetUsageLimitCommandOutput | GetWorkgroupCommandOutput | ListEndpointAccessCommandOutput | ListNamespacesCommandOutput | ListRecoveryPointsCommandOutput | ListSnapshotsCommandOutput | ListTableRestoreStatusCommandOutput | ListTagsForResourceCommandOutput | ListUsageLimitsCommandOutput | ListWorkgroupsCommandOutput | PutResourcePolicyCommandOutput | RestoreFromRecoveryPointCommandOutput | RestoreFromSnapshotCommandOutput | RestoreTableFromSnapshotCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateEndpointAccessCommandOutput | UpdateNamespaceCommandOutput | UpdateSnapshotCommandOutput | UpdateUsageLimitCommandOutput | UpdateWorkgroupCommandOutput;
|
|
66
|
+
export type ServiceOutputTypes = ConvertRecoveryPointToSnapshotCommandOutput | CreateCustomDomainAssociationCommandOutput | CreateEndpointAccessCommandOutput | CreateNamespaceCommandOutput | CreateSnapshotCommandOutput | CreateUsageLimitCommandOutput | CreateWorkgroupCommandOutput | DeleteCustomDomainAssociationCommandOutput | DeleteEndpointAccessCommandOutput | DeleteNamespaceCommandOutput | DeleteResourcePolicyCommandOutput | DeleteSnapshotCommandOutput | DeleteUsageLimitCommandOutput | DeleteWorkgroupCommandOutput | GetCredentialsCommandOutput | GetCustomDomainAssociationCommandOutput | GetEndpointAccessCommandOutput | GetNamespaceCommandOutput | GetRecoveryPointCommandOutput | GetResourcePolicyCommandOutput | GetSnapshotCommandOutput | GetTableRestoreStatusCommandOutput | GetUsageLimitCommandOutput | GetWorkgroupCommandOutput | ListCustomDomainAssociationsCommandOutput | ListEndpointAccessCommandOutput | ListNamespacesCommandOutput | ListRecoveryPointsCommandOutput | ListSnapshotsCommandOutput | ListTableRestoreStatusCommandOutput | ListTagsForResourceCommandOutput | ListUsageLimitsCommandOutput | ListWorkgroupsCommandOutput | PutResourcePolicyCommandOutput | RestoreFromRecoveryPointCommandOutput | RestoreFromSnapshotCommandOutput | RestoreTableFromSnapshotCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateCustomDomainAssociationCommandOutput | UpdateEndpointAccessCommandOutput | UpdateNamespaceCommandOutput | UpdateSnapshotCommandOutput | UpdateUsageLimitCommandOutput | UpdateWorkgroupCommandOutput;
|
|
62
67
|
/**
|
|
63
68
|
* @public
|
|
64
69
|
*/
|
|
@@ -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 { CreateCustomDomainAssociationRequest, CreateCustomDomainAssociationResponse } 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 CreateCustomDomainAssociationCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface CreateCustomDomainAssociationCommandInput extends CreateCustomDomainAssociationRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link CreateCustomDomainAssociationCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface CreateCustomDomainAssociationCommandOutput extends CreateCustomDomainAssociationResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* @public
|
|
26
|
+
* <p>Creates a custom domain association for Amazon Redshift Serverless.</p>
|
|
27
|
+
* @example
|
|
28
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
29
|
+
* ```javascript
|
|
30
|
+
* import { RedshiftServerlessClient, CreateCustomDomainAssociationCommand } from "@aws-sdk/client-redshift-serverless"; // ES Modules import
|
|
31
|
+
* // const { RedshiftServerlessClient, CreateCustomDomainAssociationCommand } = require("@aws-sdk/client-redshift-serverless"); // CommonJS import
|
|
32
|
+
* const client = new RedshiftServerlessClient(config);
|
|
33
|
+
* const input = { // CreateCustomDomainAssociationRequest
|
|
34
|
+
* workgroupName: "STRING_VALUE", // required
|
|
35
|
+
* customDomainName: "STRING_VALUE", // required
|
|
36
|
+
* customDomainCertificateArn: "STRING_VALUE", // required
|
|
37
|
+
* };
|
|
38
|
+
* const command = new CreateCustomDomainAssociationCommand(input);
|
|
39
|
+
* const response = await client.send(command);
|
|
40
|
+
* // { // CreateCustomDomainAssociationResponse
|
|
41
|
+
* // customDomainName: "STRING_VALUE",
|
|
42
|
+
* // workgroupName: "STRING_VALUE",
|
|
43
|
+
* // customDomainCertificateArn: "STRING_VALUE",
|
|
44
|
+
* // customDomainCertificateExpiryTime: new Date("TIMESTAMP"),
|
|
45
|
+
* // };
|
|
46
|
+
*
|
|
47
|
+
* ```
|
|
48
|
+
*
|
|
49
|
+
* @param CreateCustomDomainAssociationCommandInput - {@link CreateCustomDomainAssociationCommandInput}
|
|
50
|
+
* @returns {@link CreateCustomDomainAssociationCommandOutput}
|
|
51
|
+
* @see {@link CreateCustomDomainAssociationCommandInput} for command's `input` shape.
|
|
52
|
+
* @see {@link CreateCustomDomainAssociationCommandOutput} 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 CreateCustomDomainAssociationCommand extends $Command<CreateCustomDomainAssociationCommandInput, CreateCustomDomainAssociationCommandOutput, RedshiftServerlessClientResolvedConfig> {
|
|
78
|
+
readonly input: CreateCustomDomainAssociationCommandInput;
|
|
79
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
80
|
+
/**
|
|
81
|
+
* @public
|
|
82
|
+
*/
|
|
83
|
+
constructor(input: CreateCustomDomainAssociationCommandInput);
|
|
84
|
+
/**
|
|
85
|
+
* @internal
|
|
86
|
+
*/
|
|
87
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RedshiftServerlessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateCustomDomainAssociationCommandInput, CreateCustomDomainAssociationCommandOutput>;
|
|
88
|
+
/**
|
|
89
|
+
* @internal
|
|
90
|
+
*/
|
|
91
|
+
private serialize;
|
|
92
|
+
/**
|
|
93
|
+
* @internal
|
|
94
|
+
*/
|
|
95
|
+
private deserialize;
|
|
96
|
+
}
|
|
@@ -100,6 +100,9 @@ export interface CreateWorkgroupCommandOutput extends CreateWorkgroupResponse, _
|
|
|
100
100
|
* // publiclyAccessible: true || false,
|
|
101
101
|
* // creationDate: new Date("TIMESTAMP"),
|
|
102
102
|
* // port: Number("int"),
|
|
103
|
+
* // customDomainName: "STRING_VALUE",
|
|
104
|
+
* // customDomainCertificateArn: "STRING_VALUE",
|
|
105
|
+
* // customDomainCertificateExpiryTime: new Date("TIMESTAMP"),
|
|
103
106
|
* // workgroupVersion: "STRING_VALUE",
|
|
104
107
|
* // patchVersion: "STRING_VALUE",
|
|
105
108
|
* // },
|
|
@@ -0,0 +1,90 @@
|
|
|
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 { DeleteCustomDomainAssociationRequest, DeleteCustomDomainAssociationResponse } 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 DeleteCustomDomainAssociationCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface DeleteCustomDomainAssociationCommandInput extends DeleteCustomDomainAssociationRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link DeleteCustomDomainAssociationCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface DeleteCustomDomainAssociationCommandOutput extends DeleteCustomDomainAssociationResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* @public
|
|
26
|
+
* <p>Deletes a custom domain association for Amazon Redshift Serverless.</p>
|
|
27
|
+
* @example
|
|
28
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
29
|
+
* ```javascript
|
|
30
|
+
* import { RedshiftServerlessClient, DeleteCustomDomainAssociationCommand } from "@aws-sdk/client-redshift-serverless"; // ES Modules import
|
|
31
|
+
* // const { RedshiftServerlessClient, DeleteCustomDomainAssociationCommand } = require("@aws-sdk/client-redshift-serverless"); // CommonJS import
|
|
32
|
+
* const client = new RedshiftServerlessClient(config);
|
|
33
|
+
* const input = { // DeleteCustomDomainAssociationRequest
|
|
34
|
+
* workgroupName: "STRING_VALUE", // required
|
|
35
|
+
* customDomainName: "STRING_VALUE", // required
|
|
36
|
+
* };
|
|
37
|
+
* const command = new DeleteCustomDomainAssociationCommand(input);
|
|
38
|
+
* const response = await client.send(command);
|
|
39
|
+
* // {};
|
|
40
|
+
*
|
|
41
|
+
* ```
|
|
42
|
+
*
|
|
43
|
+
* @param DeleteCustomDomainAssociationCommandInput - {@link DeleteCustomDomainAssociationCommandInput}
|
|
44
|
+
* @returns {@link DeleteCustomDomainAssociationCommandOutput}
|
|
45
|
+
* @see {@link DeleteCustomDomainAssociationCommandInput} for command's `input` shape.
|
|
46
|
+
* @see {@link DeleteCustomDomainAssociationCommandOutput} for command's `response` shape.
|
|
47
|
+
* @see {@link RedshiftServerlessClientResolvedConfig | config} for RedshiftServerlessClient's `config` shape.
|
|
48
|
+
*
|
|
49
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
50
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
51
|
+
*
|
|
52
|
+
* @throws {@link ConflictException} (client fault)
|
|
53
|
+
* <p>The submitted action has conflicts.</p>
|
|
54
|
+
*
|
|
55
|
+
* @throws {@link InternalServerException} (server fault)
|
|
56
|
+
* <p>The request processing has failed because of an unknown error, exception or failure.</p>
|
|
57
|
+
*
|
|
58
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
59
|
+
* <p>The resource could not be found.</p>
|
|
60
|
+
*
|
|
61
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
62
|
+
* <p>The request was denied due to request throttling.</p>
|
|
63
|
+
*
|
|
64
|
+
* @throws {@link ValidationException} (client fault)
|
|
65
|
+
* <p>The input failed to satisfy the constraints specified by an AWS service.</p>
|
|
66
|
+
*
|
|
67
|
+
* @throws {@link RedshiftServerlessServiceException}
|
|
68
|
+
* <p>Base exception class for all service exceptions from RedshiftServerless service.</p>
|
|
69
|
+
*
|
|
70
|
+
*/
|
|
71
|
+
export declare class DeleteCustomDomainAssociationCommand extends $Command<DeleteCustomDomainAssociationCommandInput, DeleteCustomDomainAssociationCommandOutput, RedshiftServerlessClientResolvedConfig> {
|
|
72
|
+
readonly input: DeleteCustomDomainAssociationCommandInput;
|
|
73
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
74
|
+
/**
|
|
75
|
+
* @public
|
|
76
|
+
*/
|
|
77
|
+
constructor(input: DeleteCustomDomainAssociationCommandInput);
|
|
78
|
+
/**
|
|
79
|
+
* @internal
|
|
80
|
+
*/
|
|
81
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RedshiftServerlessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteCustomDomainAssociationCommandInput, DeleteCustomDomainAssociationCommandOutput>;
|
|
82
|
+
/**
|
|
83
|
+
* @internal
|
|
84
|
+
*/
|
|
85
|
+
private serialize;
|
|
86
|
+
/**
|
|
87
|
+
* @internal
|
|
88
|
+
*/
|
|
89
|
+
private deserialize;
|
|
90
|
+
}
|
|
@@ -77,6 +77,9 @@ export interface DeleteWorkgroupCommandOutput extends DeleteWorkgroupResponse, _
|
|
|
77
77
|
* // publiclyAccessible: true || false,
|
|
78
78
|
* // creationDate: new Date("TIMESTAMP"),
|
|
79
79
|
* // port: Number("int"),
|
|
80
|
+
* // customDomainName: "STRING_VALUE",
|
|
81
|
+
* // customDomainCertificateArn: "STRING_VALUE",
|
|
82
|
+
* // customDomainCertificateExpiryTime: new Date("TIMESTAMP"),
|
|
80
83
|
* // workgroupVersion: "STRING_VALUE",
|
|
81
84
|
* // patchVersion: "STRING_VALUE",
|
|
82
85
|
* // },
|
|
@@ -41,9 +41,10 @@ export interface GetCredentialsCommandOutput extends GetCredentialsResponse, __M
|
|
|
41
41
|
* // const { RedshiftServerlessClient, GetCredentialsCommand } = require("@aws-sdk/client-redshift-serverless"); // CommonJS import
|
|
42
42
|
* const client = new RedshiftServerlessClient(config);
|
|
43
43
|
* const input = { // GetCredentialsRequest
|
|
44
|
-
* workgroupName: "STRING_VALUE", // required
|
|
45
44
|
* dbName: "STRING_VALUE",
|
|
46
45
|
* durationSeconds: Number("int"),
|
|
46
|
+
* workgroupName: "STRING_VALUE",
|
|
47
|
+
* customDomainName: "STRING_VALUE",
|
|
47
48
|
* };
|
|
48
49
|
* const command = new GetCredentialsCommand(input);
|
|
49
50
|
* const response = await client.send(command);
|
|
@@ -0,0 +1,95 @@
|
|
|
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 { GetCustomDomainAssociationRequest, GetCustomDomainAssociationResponse } 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 GetCustomDomainAssociationCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface GetCustomDomainAssociationCommandInput extends GetCustomDomainAssociationRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link GetCustomDomainAssociationCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface GetCustomDomainAssociationCommandOutput extends GetCustomDomainAssociationResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* @public
|
|
26
|
+
* <p>Gets information about a specific custom domain association.</p>
|
|
27
|
+
* @example
|
|
28
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
29
|
+
* ```javascript
|
|
30
|
+
* import { RedshiftServerlessClient, GetCustomDomainAssociationCommand } from "@aws-sdk/client-redshift-serverless"; // ES Modules import
|
|
31
|
+
* // const { RedshiftServerlessClient, GetCustomDomainAssociationCommand } = require("@aws-sdk/client-redshift-serverless"); // CommonJS import
|
|
32
|
+
* const client = new RedshiftServerlessClient(config);
|
|
33
|
+
* const input = { // GetCustomDomainAssociationRequest
|
|
34
|
+
* customDomainName: "STRING_VALUE", // required
|
|
35
|
+
* workgroupName: "STRING_VALUE", // required
|
|
36
|
+
* };
|
|
37
|
+
* const command = new GetCustomDomainAssociationCommand(input);
|
|
38
|
+
* const response = await client.send(command);
|
|
39
|
+
* // { // GetCustomDomainAssociationResponse
|
|
40
|
+
* // customDomainName: "STRING_VALUE",
|
|
41
|
+
* // workgroupName: "STRING_VALUE",
|
|
42
|
+
* // customDomainCertificateArn: "STRING_VALUE",
|
|
43
|
+
* // customDomainCertificateExpiryTime: new Date("TIMESTAMP"),
|
|
44
|
+
* // };
|
|
45
|
+
*
|
|
46
|
+
* ```
|
|
47
|
+
*
|
|
48
|
+
* @param GetCustomDomainAssociationCommandInput - {@link GetCustomDomainAssociationCommandInput}
|
|
49
|
+
* @returns {@link GetCustomDomainAssociationCommandOutput}
|
|
50
|
+
* @see {@link GetCustomDomainAssociationCommandInput} for command's `input` shape.
|
|
51
|
+
* @see {@link GetCustomDomainAssociationCommandOutput} for command's `response` shape.
|
|
52
|
+
* @see {@link RedshiftServerlessClientResolvedConfig | config} for RedshiftServerlessClient's `config` shape.
|
|
53
|
+
*
|
|
54
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
55
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
56
|
+
*
|
|
57
|
+
* @throws {@link ConflictException} (client fault)
|
|
58
|
+
* <p>The submitted action has conflicts.</p>
|
|
59
|
+
*
|
|
60
|
+
* @throws {@link InternalServerException} (server fault)
|
|
61
|
+
* <p>The request processing has failed because of an unknown error, exception or failure.</p>
|
|
62
|
+
*
|
|
63
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
64
|
+
* <p>The resource could not be found.</p>
|
|
65
|
+
*
|
|
66
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
67
|
+
* <p>The request was denied due to request throttling.</p>
|
|
68
|
+
*
|
|
69
|
+
* @throws {@link ValidationException} (client fault)
|
|
70
|
+
* <p>The input failed to satisfy the constraints specified by an AWS service.</p>
|
|
71
|
+
*
|
|
72
|
+
* @throws {@link RedshiftServerlessServiceException}
|
|
73
|
+
* <p>Base exception class for all service exceptions from RedshiftServerless service.</p>
|
|
74
|
+
*
|
|
75
|
+
*/
|
|
76
|
+
export declare class GetCustomDomainAssociationCommand extends $Command<GetCustomDomainAssociationCommandInput, GetCustomDomainAssociationCommandOutput, RedshiftServerlessClientResolvedConfig> {
|
|
77
|
+
readonly input: GetCustomDomainAssociationCommandInput;
|
|
78
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
79
|
+
/**
|
|
80
|
+
* @public
|
|
81
|
+
*/
|
|
82
|
+
constructor(input: GetCustomDomainAssociationCommandInput);
|
|
83
|
+
/**
|
|
84
|
+
* @internal
|
|
85
|
+
*/
|
|
86
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RedshiftServerlessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetCustomDomainAssociationCommandInput, GetCustomDomainAssociationCommandOutput>;
|
|
87
|
+
/**
|
|
88
|
+
* @internal
|
|
89
|
+
*/
|
|
90
|
+
private serialize;
|
|
91
|
+
/**
|
|
92
|
+
* @internal
|
|
93
|
+
*/
|
|
94
|
+
private deserialize;
|
|
95
|
+
}
|
|
@@ -77,6 +77,9 @@ export interface GetWorkgroupCommandOutput extends GetWorkgroupResponse, __Metad
|
|
|
77
77
|
* // publiclyAccessible: true || false,
|
|
78
78
|
* // creationDate: new Date("TIMESTAMP"),
|
|
79
79
|
* // port: Number("int"),
|
|
80
|
+
* // customDomainName: "STRING_VALUE",
|
|
81
|
+
* // customDomainCertificateArn: "STRING_VALUE",
|
|
82
|
+
* // customDomainCertificateExpiryTime: new Date("TIMESTAMP"),
|
|
80
83
|
* // workgroupVersion: "STRING_VALUE",
|
|
81
84
|
* // patchVersion: "STRING_VALUE",
|
|
82
85
|
* // },
|
|
@@ -0,0 +1,99 @@
|
|
|
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 { ListCustomDomainAssociationsRequest, ListCustomDomainAssociationsResponse } 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 ListCustomDomainAssociationsCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface ListCustomDomainAssociationsCommandInput extends ListCustomDomainAssociationsRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link ListCustomDomainAssociationsCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface ListCustomDomainAssociationsCommandOutput extends ListCustomDomainAssociationsResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* @public
|
|
26
|
+
* <p> Lists custom domain associations for Amazon Redshift Serverless.</p>
|
|
27
|
+
* @example
|
|
28
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
29
|
+
* ```javascript
|
|
30
|
+
* import { RedshiftServerlessClient, ListCustomDomainAssociationsCommand } from "@aws-sdk/client-redshift-serverless"; // ES Modules import
|
|
31
|
+
* // const { RedshiftServerlessClient, ListCustomDomainAssociationsCommand } = require("@aws-sdk/client-redshift-serverless"); // CommonJS import
|
|
32
|
+
* const client = new RedshiftServerlessClient(config);
|
|
33
|
+
* const input = { // ListCustomDomainAssociationsRequest
|
|
34
|
+
* nextToken: "STRING_VALUE",
|
|
35
|
+
* maxResults: Number("int"),
|
|
36
|
+
* customDomainName: "STRING_VALUE",
|
|
37
|
+
* customDomainCertificateArn: "STRING_VALUE",
|
|
38
|
+
* };
|
|
39
|
+
* const command = new ListCustomDomainAssociationsCommand(input);
|
|
40
|
+
* const response = await client.send(command);
|
|
41
|
+
* // { // ListCustomDomainAssociationsResponse
|
|
42
|
+
* // nextToken: "STRING_VALUE",
|
|
43
|
+
* // associations: [ // AssociationList
|
|
44
|
+
* // { // Association
|
|
45
|
+
* // customDomainCertificateArn: "STRING_VALUE",
|
|
46
|
+
* // customDomainCertificateExpiryTime: new Date("TIMESTAMP"),
|
|
47
|
+
* // customDomainName: "STRING_VALUE",
|
|
48
|
+
* // workgroupName: "STRING_VALUE",
|
|
49
|
+
* // },
|
|
50
|
+
* // ],
|
|
51
|
+
* // };
|
|
52
|
+
*
|
|
53
|
+
* ```
|
|
54
|
+
*
|
|
55
|
+
* @param ListCustomDomainAssociationsCommandInput - {@link ListCustomDomainAssociationsCommandInput}
|
|
56
|
+
* @returns {@link ListCustomDomainAssociationsCommandOutput}
|
|
57
|
+
* @see {@link ListCustomDomainAssociationsCommandInput} for command's `input` shape.
|
|
58
|
+
* @see {@link ListCustomDomainAssociationsCommandOutput} for command's `response` shape.
|
|
59
|
+
* @see {@link RedshiftServerlessClientResolvedConfig | config} for RedshiftServerlessClient's `config` shape.
|
|
60
|
+
*
|
|
61
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
62
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
63
|
+
*
|
|
64
|
+
* @throws {@link InternalServerException} (server fault)
|
|
65
|
+
* <p>The request processing has failed because of an unknown error, exception or failure.</p>
|
|
66
|
+
*
|
|
67
|
+
* @throws {@link InvalidPaginationException} (client fault)
|
|
68
|
+
* <p>The provided pagination token is invalid.</p>
|
|
69
|
+
*
|
|
70
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
71
|
+
* <p>The request was denied due to request throttling.</p>
|
|
72
|
+
*
|
|
73
|
+
* @throws {@link ValidationException} (client fault)
|
|
74
|
+
* <p>The input failed to satisfy the constraints specified by an AWS service.</p>
|
|
75
|
+
*
|
|
76
|
+
* @throws {@link RedshiftServerlessServiceException}
|
|
77
|
+
* <p>Base exception class for all service exceptions from RedshiftServerless service.</p>
|
|
78
|
+
*
|
|
79
|
+
*/
|
|
80
|
+
export declare class ListCustomDomainAssociationsCommand extends $Command<ListCustomDomainAssociationsCommandInput, ListCustomDomainAssociationsCommandOutput, RedshiftServerlessClientResolvedConfig> {
|
|
81
|
+
readonly input: ListCustomDomainAssociationsCommandInput;
|
|
82
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
83
|
+
/**
|
|
84
|
+
* @public
|
|
85
|
+
*/
|
|
86
|
+
constructor(input: ListCustomDomainAssociationsCommandInput);
|
|
87
|
+
/**
|
|
88
|
+
* @internal
|
|
89
|
+
*/
|
|
90
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RedshiftServerlessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListCustomDomainAssociationsCommandInput, ListCustomDomainAssociationsCommandOutput>;
|
|
91
|
+
/**
|
|
92
|
+
* @internal
|
|
93
|
+
*/
|
|
94
|
+
private serialize;
|
|
95
|
+
/**
|
|
96
|
+
* @internal
|
|
97
|
+
*/
|
|
98
|
+
private deserialize;
|
|
99
|
+
}
|
|
@@ -80,6 +80,9 @@ export interface ListWorkgroupsCommandOutput extends ListWorkgroupsResponse, __M
|
|
|
80
80
|
* // publiclyAccessible: true || false,
|
|
81
81
|
* // creationDate: new Date("TIMESTAMP"),
|
|
82
82
|
* // port: Number("int"),
|
|
83
|
+
* // customDomainName: "STRING_VALUE",
|
|
84
|
+
* // customDomainCertificateArn: "STRING_VALUE",
|
|
85
|
+
* // customDomainCertificateExpiryTime: new Date("TIMESTAMP"),
|
|
83
86
|
* // workgroupVersion: "STRING_VALUE",
|
|
84
87
|
* // patchVersion: "STRING_VALUE",
|
|
85
88
|
* // },
|