@aws-sdk/client-redshift-serverless 3.295.0 → 3.297.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/dist-types/RedshiftServerless.d.ts +41 -0
- package/dist-types/RedshiftServerlessClient.d.ts +24 -4
- package/dist-types/commands/ConvertRecoveryPointToSnapshotCommand.d.ts +16 -0
- package/dist-types/commands/CreateEndpointAccessCommand.d.ts +16 -0
- package/dist-types/commands/CreateNamespaceCommand.d.ts +16 -0
- package/dist-types/commands/CreateSnapshotCommand.d.ts +16 -0
- package/dist-types/commands/CreateUsageLimitCommand.d.ts +16 -0
- package/dist-types/commands/CreateWorkgroupCommand.d.ts +16 -0
- package/dist-types/commands/DeleteEndpointAccessCommand.d.ts +16 -0
- package/dist-types/commands/DeleteNamespaceCommand.d.ts +16 -0
- package/dist-types/commands/DeleteResourcePolicyCommand.d.ts +16 -0
- package/dist-types/commands/DeleteSnapshotCommand.d.ts +16 -0
- package/dist-types/commands/DeleteUsageLimitCommand.d.ts +16 -0
- package/dist-types/commands/DeleteWorkgroupCommand.d.ts +16 -0
- package/dist-types/commands/GetCredentialsCommand.d.ts +16 -0
- package/dist-types/commands/GetEndpointAccessCommand.d.ts +16 -0
- package/dist-types/commands/GetNamespaceCommand.d.ts +16 -0
- package/dist-types/commands/GetRecoveryPointCommand.d.ts +16 -0
- package/dist-types/commands/GetResourcePolicyCommand.d.ts +16 -0
- package/dist-types/commands/GetSnapshotCommand.d.ts +16 -0
- package/dist-types/commands/GetTableRestoreStatusCommand.d.ts +16 -0
- package/dist-types/commands/GetUsageLimitCommand.d.ts +16 -0
- package/dist-types/commands/GetWorkgroupCommand.d.ts +16 -0
- package/dist-types/commands/ListEndpointAccessCommand.d.ts +16 -0
- package/dist-types/commands/ListNamespacesCommand.d.ts +16 -0
- package/dist-types/commands/ListRecoveryPointsCommand.d.ts +16 -0
- package/dist-types/commands/ListSnapshotsCommand.d.ts +16 -0
- package/dist-types/commands/ListTableRestoreStatusCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/ListUsageLimitsCommand.d.ts +16 -0
- package/dist-types/commands/ListWorkgroupsCommand.d.ts +16 -0
- package/dist-types/commands/PutResourcePolicyCommand.d.ts +16 -0
- package/dist-types/commands/RestoreFromRecoveryPointCommand.d.ts +16 -0
- package/dist-types/commands/RestoreFromSnapshotCommand.d.ts +16 -0
- package/dist-types/commands/RestoreTableFromSnapshotCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateEndpointAccessCommand.d.ts +16 -0
- package/dist-types/commands/UpdateNamespaceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateSnapshotCommand.d.ts +16 -0
- package/dist-types/commands/UpdateUsageLimitCommand.d.ts +16 -0
- package/dist-types/commands/UpdateWorkgroupCommand.d.ts +16 -0
- package/dist-types/models/RedshiftServerlessServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +289 -4
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListEndpointAccessPaginator.d.ts +3 -0
- package/dist-types/pagination/ListNamespacesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListRecoveryPointsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListSnapshotsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListTableRestoreStatusPaginator.d.ts +3 -0
- package/dist-types/pagination/ListUsageLimitsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListWorkgroupsPaginator.d.ts +3 -0
- package/package.json +29 -29
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CreateWorkgroupRequest, CreateWorkgroupResponse } from "../models/models_0";
|
|
5
5
|
import { RedshiftServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftServerlessClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateWorkgroupCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateWorkgroupCommandInput extends CreateWorkgroupRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateWorkgroupCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateWorkgroupCommandOutput extends CreateWorkgroupResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates an workgroup in Amazon Redshift Serverless.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface CreateWorkgroupCommandOutput extends CreateWorkgroupResponse, _
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param CreateWorkgroupCommandInput - {@link CreateWorkgroupCommandInput}
|
|
34
|
+
* @returns {@link CreateWorkgroupCommandOutput}
|
|
28
35
|
* @see {@link CreateWorkgroupCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link CreateWorkgroupCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link RedshiftServerlessClientResolvedConfig | config} for RedshiftServerlessClient's `config` shape.
|
|
@@ -52,11 +59,20 @@ export interface CreateWorkgroupCommandOutput extends CreateWorkgroupResponse, _
|
|
|
52
59
|
export declare class CreateWorkgroupCommand extends $Command<CreateWorkgroupCommandInput, CreateWorkgroupCommandOutput, RedshiftServerlessClientResolvedConfig> {
|
|
53
60
|
readonly input: CreateWorkgroupCommandInput;
|
|
54
61
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
62
|
+
/**
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
55
65
|
constructor(input: CreateWorkgroupCommandInput);
|
|
56
66
|
/**
|
|
57
67
|
* @internal
|
|
58
68
|
*/
|
|
59
69
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RedshiftServerlessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateWorkgroupCommandInput, CreateWorkgroupCommandOutput>;
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
60
73
|
private serialize;
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
61
77
|
private deserialize;
|
|
62
78
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DeleteEndpointAccessRequest, DeleteEndpointAccessResponse } from "../models/models_0";
|
|
5
5
|
import { RedshiftServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftServerlessClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteEndpointAccessCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteEndpointAccessCommandInput extends DeleteEndpointAccessRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteEndpointAccessCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteEndpointAccessCommandOutput extends DeleteEndpointAccessResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes an Amazon Redshift Serverless managed VPC endpoint.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DeleteEndpointAccessCommandOutput extends DeleteEndpointAccessR
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DeleteEndpointAccessCommandInput - {@link DeleteEndpointAccessCommandInput}
|
|
34
|
+
* @returns {@link DeleteEndpointAccessCommandOutput}
|
|
28
35
|
* @see {@link DeleteEndpointAccessCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DeleteEndpointAccessCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link RedshiftServerlessClientResolvedConfig | config} for RedshiftServerlessClient's `config` shape.
|
|
@@ -46,11 +53,20 @@ export interface DeleteEndpointAccessCommandOutput extends DeleteEndpointAccessR
|
|
|
46
53
|
export declare class DeleteEndpointAccessCommand extends $Command<DeleteEndpointAccessCommandInput, DeleteEndpointAccessCommandOutput, RedshiftServerlessClientResolvedConfig> {
|
|
47
54
|
readonly input: DeleteEndpointAccessCommandInput;
|
|
48
55
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
49
59
|
constructor(input: DeleteEndpointAccessCommandInput);
|
|
50
60
|
/**
|
|
51
61
|
* @internal
|
|
52
62
|
*/
|
|
53
63
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RedshiftServerlessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteEndpointAccessCommandInput, DeleteEndpointAccessCommandOutput>;
|
|
64
|
+
/**
|
|
65
|
+
* @internal
|
|
66
|
+
*/
|
|
54
67
|
private serialize;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
55
71
|
private deserialize;
|
|
56
72
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DeleteNamespaceRequest, DeleteNamespaceResponse } from "../models/models_0";
|
|
5
5
|
import { RedshiftServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftServerlessClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteNamespaceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteNamespaceCommandInput extends DeleteNamespaceRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteNamespaceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteNamespaceCommandOutput extends DeleteNamespaceResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes a namespace from Amazon Redshift Serverless.
|
|
18
23
|
* Before you delete the namespace, you can create a final snapshot that has all of the data within the namespace.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface DeleteNamespaceCommandOutput extends DeleteNamespaceResponse, _
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param DeleteNamespaceCommandInput - {@link DeleteNamespaceCommandInput}
|
|
35
|
+
* @returns {@link DeleteNamespaceCommandOutput}
|
|
29
36
|
* @see {@link DeleteNamespaceCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link DeleteNamespaceCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link RedshiftServerlessClientResolvedConfig | config} for RedshiftServerlessClient's `config` shape.
|
|
@@ -47,11 +54,20 @@ export interface DeleteNamespaceCommandOutput extends DeleteNamespaceResponse, _
|
|
|
47
54
|
export declare class DeleteNamespaceCommand extends $Command<DeleteNamespaceCommandInput, DeleteNamespaceCommandOutput, RedshiftServerlessClientResolvedConfig> {
|
|
48
55
|
readonly input: DeleteNamespaceCommandInput;
|
|
49
56
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
57
|
+
/**
|
|
58
|
+
* @public
|
|
59
|
+
*/
|
|
50
60
|
constructor(input: DeleteNamespaceCommandInput);
|
|
51
61
|
/**
|
|
52
62
|
* @internal
|
|
53
63
|
*/
|
|
54
64
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RedshiftServerlessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteNamespaceCommandInput, DeleteNamespaceCommandOutput>;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
55
68
|
private serialize;
|
|
69
|
+
/**
|
|
70
|
+
* @internal
|
|
71
|
+
*/
|
|
56
72
|
private deserialize;
|
|
57
73
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DeleteResourcePolicyRequest, DeleteResourcePolicyResponse } from "../models/models_0";
|
|
5
5
|
import { RedshiftServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftServerlessClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteResourcePolicyCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteResourcePolicyCommandInput extends DeleteResourcePolicyRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteResourcePolicyCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteResourcePolicyCommandOutput extends DeleteResourcePolicyResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes the specified resource policy.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DeleteResourcePolicyCommandOutput extends DeleteResourcePolicyR
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DeleteResourcePolicyCommandInput - {@link DeleteResourcePolicyCommandInput}
|
|
34
|
+
* @returns {@link DeleteResourcePolicyCommandOutput}
|
|
28
35
|
* @see {@link DeleteResourcePolicyCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DeleteResourcePolicyCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link RedshiftServerlessClientResolvedConfig | config} for RedshiftServerlessClient's `config` shape.
|
|
@@ -43,11 +50,20 @@ export interface DeleteResourcePolicyCommandOutput extends DeleteResourcePolicyR
|
|
|
43
50
|
export declare class DeleteResourcePolicyCommand extends $Command<DeleteResourcePolicyCommandInput, DeleteResourcePolicyCommandOutput, RedshiftServerlessClientResolvedConfig> {
|
|
44
51
|
readonly input: DeleteResourcePolicyCommandInput;
|
|
45
52
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
53
|
+
/**
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
46
56
|
constructor(input: DeleteResourcePolicyCommandInput);
|
|
47
57
|
/**
|
|
48
58
|
* @internal
|
|
49
59
|
*/
|
|
50
60
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RedshiftServerlessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteResourcePolicyCommandInput, DeleteResourcePolicyCommandOutput>;
|
|
61
|
+
/**
|
|
62
|
+
* @internal
|
|
63
|
+
*/
|
|
51
64
|
private serialize;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
52
68
|
private deserialize;
|
|
53
69
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DeleteSnapshotRequest, DeleteSnapshotResponse } from "../models/models_0";
|
|
5
5
|
import { RedshiftServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftServerlessClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteSnapshotCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteSnapshotCommandInput extends DeleteSnapshotRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteSnapshotCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteSnapshotCommandOutput extends DeleteSnapshotResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes a snapshot from Amazon Redshift Serverless.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DeleteSnapshotCommandOutput extends DeleteSnapshotResponse, __M
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DeleteSnapshotCommandInput - {@link DeleteSnapshotCommandInput}
|
|
34
|
+
* @returns {@link DeleteSnapshotCommandOutput}
|
|
28
35
|
* @see {@link DeleteSnapshotCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DeleteSnapshotCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link RedshiftServerlessClientResolvedConfig | config} for RedshiftServerlessClient's `config` shape.
|
|
@@ -46,11 +53,20 @@ export interface DeleteSnapshotCommandOutput extends DeleteSnapshotResponse, __M
|
|
|
46
53
|
export declare class DeleteSnapshotCommand extends $Command<DeleteSnapshotCommandInput, DeleteSnapshotCommandOutput, RedshiftServerlessClientResolvedConfig> {
|
|
47
54
|
readonly input: DeleteSnapshotCommandInput;
|
|
48
55
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
49
59
|
constructor(input: DeleteSnapshotCommandInput);
|
|
50
60
|
/**
|
|
51
61
|
* @internal
|
|
52
62
|
*/
|
|
53
63
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RedshiftServerlessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteSnapshotCommandInput, DeleteSnapshotCommandOutput>;
|
|
64
|
+
/**
|
|
65
|
+
* @internal
|
|
66
|
+
*/
|
|
54
67
|
private serialize;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
55
71
|
private deserialize;
|
|
56
72
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DeleteUsageLimitRequest, DeleteUsageLimitResponse } from "../models/models_0";
|
|
5
5
|
import { RedshiftServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftServerlessClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteUsageLimitCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteUsageLimitCommandInput extends DeleteUsageLimitRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteUsageLimitCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteUsageLimitCommandOutput extends DeleteUsageLimitResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes a usage limit from Amazon Redshift Serverless.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DeleteUsageLimitCommandOutput extends DeleteUsageLimitResponse,
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DeleteUsageLimitCommandInput - {@link DeleteUsageLimitCommandInput}
|
|
34
|
+
* @returns {@link DeleteUsageLimitCommandOutput}
|
|
28
35
|
* @see {@link DeleteUsageLimitCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DeleteUsageLimitCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link RedshiftServerlessClientResolvedConfig | config} for RedshiftServerlessClient's `config` shape.
|
|
@@ -46,11 +53,20 @@ export interface DeleteUsageLimitCommandOutput extends DeleteUsageLimitResponse,
|
|
|
46
53
|
export declare class DeleteUsageLimitCommand extends $Command<DeleteUsageLimitCommandInput, DeleteUsageLimitCommandOutput, RedshiftServerlessClientResolvedConfig> {
|
|
47
54
|
readonly input: DeleteUsageLimitCommandInput;
|
|
48
55
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
49
59
|
constructor(input: DeleteUsageLimitCommandInput);
|
|
50
60
|
/**
|
|
51
61
|
* @internal
|
|
52
62
|
*/
|
|
53
63
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RedshiftServerlessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteUsageLimitCommandInput, DeleteUsageLimitCommandOutput>;
|
|
64
|
+
/**
|
|
65
|
+
* @internal
|
|
66
|
+
*/
|
|
54
67
|
private serialize;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
55
71
|
private deserialize;
|
|
56
72
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DeleteWorkgroupRequest, DeleteWorkgroupResponse } from "../models/models_0";
|
|
5
5
|
import { RedshiftServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftServerlessClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteWorkgroupCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteWorkgroupCommandInput extends DeleteWorkgroupRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteWorkgroupCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteWorkgroupCommandOutput extends DeleteWorkgroupResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes a workgroup.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DeleteWorkgroupCommandOutput extends DeleteWorkgroupResponse, _
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DeleteWorkgroupCommandInput - {@link DeleteWorkgroupCommandInput}
|
|
34
|
+
* @returns {@link DeleteWorkgroupCommandOutput}
|
|
28
35
|
* @see {@link DeleteWorkgroupCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DeleteWorkgroupCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link RedshiftServerlessClientResolvedConfig | config} for RedshiftServerlessClient's `config` shape.
|
|
@@ -46,11 +53,20 @@ export interface DeleteWorkgroupCommandOutput extends DeleteWorkgroupResponse, _
|
|
|
46
53
|
export declare class DeleteWorkgroupCommand extends $Command<DeleteWorkgroupCommandInput, DeleteWorkgroupCommandOutput, RedshiftServerlessClientResolvedConfig> {
|
|
47
54
|
readonly input: DeleteWorkgroupCommandInput;
|
|
48
55
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
49
59
|
constructor(input: DeleteWorkgroupCommandInput);
|
|
50
60
|
/**
|
|
51
61
|
* @internal
|
|
52
62
|
*/
|
|
53
63
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RedshiftServerlessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteWorkgroupCommandInput, DeleteWorkgroupCommandOutput>;
|
|
64
|
+
/**
|
|
65
|
+
* @internal
|
|
66
|
+
*/
|
|
54
67
|
private serialize;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
55
71
|
private deserialize;
|
|
56
72
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GetCredentialsRequest, GetCredentialsResponse } from "../models/models_0";
|
|
5
5
|
import { RedshiftServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftServerlessClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetCredentialsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetCredentialsCommandInput extends GetCredentialsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetCredentialsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetCredentialsCommandOutput extends GetCredentialsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns a database user name and temporary password with
|
|
18
23
|
* temporary authorization to log in to Amazon Redshift Serverless.</p>
|
|
19
24
|
* <p>By default, the temporary credentials expire in 900 seconds.
|
|
@@ -35,6 +40,8 @@ export interface GetCredentialsCommandOutput extends GetCredentialsResponse, __M
|
|
|
35
40
|
* const response = await client.send(command);
|
|
36
41
|
* ```
|
|
37
42
|
*
|
|
43
|
+
* @param GetCredentialsCommandInput - {@link GetCredentialsCommandInput}
|
|
44
|
+
* @returns {@link GetCredentialsCommandOutput}
|
|
38
45
|
* @see {@link GetCredentialsCommandInput} for command's `input` shape.
|
|
39
46
|
* @see {@link GetCredentialsCommandOutput} for command's `response` shape.
|
|
40
47
|
* @see {@link RedshiftServerlessClientResolvedConfig | config} for RedshiftServerlessClient's `config` shape.
|
|
@@ -53,11 +60,20 @@ export interface GetCredentialsCommandOutput extends GetCredentialsResponse, __M
|
|
|
53
60
|
export declare class GetCredentialsCommand extends $Command<GetCredentialsCommandInput, GetCredentialsCommandOutput, RedshiftServerlessClientResolvedConfig> {
|
|
54
61
|
readonly input: GetCredentialsCommandInput;
|
|
55
62
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
63
|
+
/**
|
|
64
|
+
* @public
|
|
65
|
+
*/
|
|
56
66
|
constructor(input: GetCredentialsCommandInput);
|
|
57
67
|
/**
|
|
58
68
|
* @internal
|
|
59
69
|
*/
|
|
60
70
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RedshiftServerlessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetCredentialsCommandInput, GetCredentialsCommandOutput>;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
61
74
|
private serialize;
|
|
75
|
+
/**
|
|
76
|
+
* @internal
|
|
77
|
+
*/
|
|
62
78
|
private deserialize;
|
|
63
79
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GetEndpointAccessRequest, GetEndpointAccessResponse } from "../models/models_0";
|
|
5
5
|
import { RedshiftServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftServerlessClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetEndpointAccessCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetEndpointAccessCommandInput extends GetEndpointAccessRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetEndpointAccessCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetEndpointAccessCommandOutput extends GetEndpointAccessResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns information, such as the name, about a VPC endpoint.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface GetEndpointAccessCommandOutput extends GetEndpointAccessRespons
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetEndpointAccessCommandInput - {@link GetEndpointAccessCommandInput}
|
|
34
|
+
* @returns {@link GetEndpointAccessCommandOutput}
|
|
28
35
|
* @see {@link GetEndpointAccessCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetEndpointAccessCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link RedshiftServerlessClientResolvedConfig | config} for RedshiftServerlessClient's `config` shape.
|
|
@@ -46,11 +53,20 @@ export interface GetEndpointAccessCommandOutput extends GetEndpointAccessRespons
|
|
|
46
53
|
export declare class GetEndpointAccessCommand extends $Command<GetEndpointAccessCommandInput, GetEndpointAccessCommandOutput, RedshiftServerlessClientResolvedConfig> {
|
|
47
54
|
readonly input: GetEndpointAccessCommandInput;
|
|
48
55
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
49
59
|
constructor(input: GetEndpointAccessCommandInput);
|
|
50
60
|
/**
|
|
51
61
|
* @internal
|
|
52
62
|
*/
|
|
53
63
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RedshiftServerlessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetEndpointAccessCommandInput, GetEndpointAccessCommandOutput>;
|
|
64
|
+
/**
|
|
65
|
+
* @internal
|
|
66
|
+
*/
|
|
54
67
|
private serialize;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
55
71
|
private deserialize;
|
|
56
72
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GetNamespaceRequest, GetNamespaceResponse } from "../models/models_0";
|
|
5
5
|
import { RedshiftServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftServerlessClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetNamespaceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetNamespaceCommandInput extends GetNamespaceRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetNamespaceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetNamespaceCommandOutput extends GetNamespaceResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns information about a namespace in Amazon Redshift Serverless.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface GetNamespaceCommandOutput extends GetNamespaceResponse, __Metad
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetNamespaceCommandInput - {@link GetNamespaceCommandInput}
|
|
34
|
+
* @returns {@link GetNamespaceCommandOutput}
|
|
28
35
|
* @see {@link GetNamespaceCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetNamespaceCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link RedshiftServerlessClientResolvedConfig | config} for RedshiftServerlessClient's `config` shape.
|
|
@@ -43,11 +50,20 @@ export interface GetNamespaceCommandOutput extends GetNamespaceResponse, __Metad
|
|
|
43
50
|
export declare class GetNamespaceCommand extends $Command<GetNamespaceCommandInput, GetNamespaceCommandOutput, RedshiftServerlessClientResolvedConfig> {
|
|
44
51
|
readonly input: GetNamespaceCommandInput;
|
|
45
52
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
53
|
+
/**
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
46
56
|
constructor(input: GetNamespaceCommandInput);
|
|
47
57
|
/**
|
|
48
58
|
* @internal
|
|
49
59
|
*/
|
|
50
60
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RedshiftServerlessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetNamespaceCommandInput, GetNamespaceCommandOutput>;
|
|
61
|
+
/**
|
|
62
|
+
* @internal
|
|
63
|
+
*/
|
|
51
64
|
private serialize;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
52
68
|
private deserialize;
|
|
53
69
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GetRecoveryPointRequest, GetRecoveryPointResponse } from "../models/models_0";
|
|
5
5
|
import { RedshiftServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftServerlessClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetRecoveryPointCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetRecoveryPointCommandInput extends GetRecoveryPointRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetRecoveryPointCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetRecoveryPointCommandOutput extends GetRecoveryPointResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns information about a recovery point.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface GetRecoveryPointCommandOutput extends GetRecoveryPointResponse,
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetRecoveryPointCommandInput - {@link GetRecoveryPointCommandInput}
|
|
34
|
+
* @returns {@link GetRecoveryPointCommandOutput}
|
|
28
35
|
* @see {@link GetRecoveryPointCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetRecoveryPointCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link RedshiftServerlessClientResolvedConfig | config} for RedshiftServerlessClient's `config` shape.
|
|
@@ -46,11 +53,20 @@ export interface GetRecoveryPointCommandOutput extends GetRecoveryPointResponse,
|
|
|
46
53
|
export declare class GetRecoveryPointCommand extends $Command<GetRecoveryPointCommandInput, GetRecoveryPointCommandOutput, RedshiftServerlessClientResolvedConfig> {
|
|
47
54
|
readonly input: GetRecoveryPointCommandInput;
|
|
48
55
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
49
59
|
constructor(input: GetRecoveryPointCommandInput);
|
|
50
60
|
/**
|
|
51
61
|
* @internal
|
|
52
62
|
*/
|
|
53
63
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RedshiftServerlessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetRecoveryPointCommandInput, GetRecoveryPointCommandOutput>;
|
|
64
|
+
/**
|
|
65
|
+
* @internal
|
|
66
|
+
*/
|
|
54
67
|
private serialize;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
55
71
|
private deserialize;
|
|
56
72
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GetResourcePolicyRequest, GetResourcePolicyResponse } from "../models/models_0";
|
|
5
5
|
import { RedshiftServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftServerlessClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetResourcePolicyCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetResourcePolicyCommandInput extends GetResourcePolicyRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetResourcePolicyCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetResourcePolicyCommandOutput extends GetResourcePolicyResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns a resource policy.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface GetResourcePolicyCommandOutput extends GetResourcePolicyRespons
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetResourcePolicyCommandInput - {@link GetResourcePolicyCommandInput}
|
|
34
|
+
* @returns {@link GetResourcePolicyCommandOutput}
|
|
28
35
|
* @see {@link GetResourcePolicyCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetResourcePolicyCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link RedshiftServerlessClientResolvedConfig | config} for RedshiftServerlessClient's `config` shape.
|
|
@@ -43,11 +50,20 @@ export interface GetResourcePolicyCommandOutput extends GetResourcePolicyRespons
|
|
|
43
50
|
export declare class GetResourcePolicyCommand extends $Command<GetResourcePolicyCommandInput, GetResourcePolicyCommandOutput, RedshiftServerlessClientResolvedConfig> {
|
|
44
51
|
readonly input: GetResourcePolicyCommandInput;
|
|
45
52
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
53
|
+
/**
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
46
56
|
constructor(input: GetResourcePolicyCommandInput);
|
|
47
57
|
/**
|
|
48
58
|
* @internal
|
|
49
59
|
*/
|
|
50
60
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RedshiftServerlessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetResourcePolicyCommandInput, GetResourcePolicyCommandOutput>;
|
|
61
|
+
/**
|
|
62
|
+
* @internal
|
|
63
|
+
*/
|
|
51
64
|
private serialize;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
52
68
|
private deserialize;
|
|
53
69
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GetSnapshotRequest, GetSnapshotResponse } from "../models/models_0";
|
|
5
5
|
import { RedshiftServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftServerlessClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetSnapshotCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetSnapshotCommandInput extends GetSnapshotRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetSnapshotCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetSnapshotCommandOutput extends GetSnapshotResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns information about a specific snapshot.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface GetSnapshotCommandOutput extends GetSnapshotResponse, __Metadat
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetSnapshotCommandInput - {@link GetSnapshotCommandInput}
|
|
34
|
+
* @returns {@link GetSnapshotCommandOutput}
|
|
28
35
|
* @see {@link GetSnapshotCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetSnapshotCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link RedshiftServerlessClientResolvedConfig | config} for RedshiftServerlessClient's `config` shape.
|
|
@@ -43,11 +50,20 @@ export interface GetSnapshotCommandOutput extends GetSnapshotResponse, __Metadat
|
|
|
43
50
|
export declare class GetSnapshotCommand extends $Command<GetSnapshotCommandInput, GetSnapshotCommandOutput, RedshiftServerlessClientResolvedConfig> {
|
|
44
51
|
readonly input: GetSnapshotCommandInput;
|
|
45
52
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
53
|
+
/**
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
46
56
|
constructor(input: GetSnapshotCommandInput);
|
|
47
57
|
/**
|
|
48
58
|
* @internal
|
|
49
59
|
*/
|
|
50
60
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RedshiftServerlessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetSnapshotCommandInput, GetSnapshotCommandOutput>;
|
|
61
|
+
/**
|
|
62
|
+
* @internal
|
|
63
|
+
*/
|
|
51
64
|
private serialize;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
52
68
|
private deserialize;
|
|
53
69
|
}
|