@aws-sdk/client-redshift-serverless 3.325.0 → 3.326.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/commands/ConvertRecoveryPointToSnapshotCommand.d.ts +31 -0
- package/dist-types/commands/CreateEndpointAccessCommand.d.ts +35 -0
- package/dist-types/commands/CreateNamespaceCommand.d.ts +22 -0
- package/dist-types/commands/CreateSnapshotCommand.d.ts +31 -0
- package/dist-types/commands/CreateUsageLimitCommand.d.ts +14 -0
- package/dist-types/commands/CreateWorkgroupCommand.d.ts +47 -0
- package/dist-types/commands/DeleteEndpointAccessCommand.d.ts +35 -0
- package/dist-types/commands/DeleteNamespaceCommand.d.ts +22 -0
- package/dist-types/commands/DeleteResourcePolicyCommand.d.ts +4 -0
- package/dist-types/commands/DeleteSnapshotCommand.d.ts +31 -0
- package/dist-types/commands/DeleteUsageLimitCommand.d.ts +14 -0
- package/dist-types/commands/DeleteWorkgroupCommand.d.ts +47 -0
- package/dist-types/commands/GetCredentialsCommand.d.ts +9 -0
- package/dist-types/commands/GetEndpointAccessCommand.d.ts +35 -0
- package/dist-types/commands/GetNamespaceCommand.d.ts +22 -0
- package/dist-types/commands/GetRecoveryPointCommand.d.ts +13 -0
- package/dist-types/commands/GetResourcePolicyCommand.d.ts +9 -0
- package/dist-types/commands/GetSnapshotCommand.d.ts +31 -0
- package/dist-types/commands/GetTableRestoreStatusCommand.d.ts +22 -0
- package/dist-types/commands/GetUsageLimitCommand.d.ts +14 -0
- package/dist-types/commands/GetWorkgroupCommand.d.ts +47 -0
- package/dist-types/commands/ListEndpointAccessCommand.d.ts +38 -0
- package/dist-types/commands/ListNamespacesCommand.d.ts +25 -0
- package/dist-types/commands/ListRecoveryPointsCommand.d.ts +16 -0
- package/dist-types/commands/ListSnapshotsCommand.d.ts +34 -0
- package/dist-types/commands/ListTableRestoreStatusCommand.d.ts +25 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +11 -0
- package/dist-types/commands/ListUsageLimitsCommand.d.ts +17 -0
- package/dist-types/commands/ListWorkgroupsCommand.d.ts +50 -0
- package/dist-types/commands/PutResourcePolicyCommand.d.ts +9 -0
- package/dist-types/commands/RestoreFromRecoveryPointCommand.d.ts +23 -0
- package/dist-types/commands/RestoreFromSnapshotCommand.d.ts +24 -0
- package/dist-types/commands/RestoreTableFromSnapshotCommand.d.ts +22 -0
- package/dist-types/commands/TagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UpdateEndpointAccessCommand.d.ts +35 -0
- package/dist-types/commands/UpdateNamespaceCommand.d.ts +22 -0
- package/dist-types/commands/UpdateSnapshotCommand.d.ts +31 -0
- package/dist-types/commands/UpdateUsageLimitCommand.d.ts +14 -0
- package/dist-types/commands/UpdateWorkgroupCommand.d.ts +47 -0
- package/package.json +3 -3
|
@@ -40,6 +40,35 @@ export interface ConvertRecoveryPointToSnapshotCommandOutput extends ConvertReco
|
|
|
40
40
|
* };
|
|
41
41
|
* const command = new ConvertRecoveryPointToSnapshotCommand(input);
|
|
42
42
|
* const response = await client.send(command);
|
|
43
|
+
* // { // ConvertRecoveryPointToSnapshotResponse
|
|
44
|
+
* // snapshot: { // Snapshot
|
|
45
|
+
* // namespaceName: "STRING_VALUE",
|
|
46
|
+
* // namespaceArn: "STRING_VALUE",
|
|
47
|
+
* // snapshotName: "STRING_VALUE",
|
|
48
|
+
* // snapshotCreateTime: new Date("TIMESTAMP"),
|
|
49
|
+
* // adminUsername: "STRING_VALUE",
|
|
50
|
+
* // status: "STRING_VALUE",
|
|
51
|
+
* // kmsKeyId: "STRING_VALUE",
|
|
52
|
+
* // ownerAccount: "STRING_VALUE",
|
|
53
|
+
* // totalBackupSizeInMegaBytes: Number("double"),
|
|
54
|
+
* // actualIncrementalBackupSizeInMegaBytes: Number("double"),
|
|
55
|
+
* // backupProgressInMegaBytes: Number("double"),
|
|
56
|
+
* // currentBackupRateInMegaBytesPerSecond: Number("double"),
|
|
57
|
+
* // estimatedSecondsToCompletion: Number("long"),
|
|
58
|
+
* // elapsedTimeInSeconds: Number("long"),
|
|
59
|
+
* // snapshotRetentionPeriod: Number("int"),
|
|
60
|
+
* // snapshotRemainingDays: Number("int"),
|
|
61
|
+
* // snapshotRetentionStartTime: new Date("TIMESTAMP"),
|
|
62
|
+
* // snapshotArn: "STRING_VALUE",
|
|
63
|
+
* // accountsWithRestoreAccess: [ // AccountIdList
|
|
64
|
+
* // "STRING_VALUE",
|
|
65
|
+
* // ],
|
|
66
|
+
* // accountsWithProvisionedRestoreAccess: [
|
|
67
|
+
* // "STRING_VALUE",
|
|
68
|
+
* // ],
|
|
69
|
+
* // },
|
|
70
|
+
* // };
|
|
71
|
+
*
|
|
43
72
|
* ```
|
|
44
73
|
*
|
|
45
74
|
* @param ConvertRecoveryPointToSnapshotCommandInput - {@link ConvertRecoveryPointToSnapshotCommandInput}
|
|
@@ -66,6 +95,8 @@ export interface ConvertRecoveryPointToSnapshotCommandOutput extends ConvertReco
|
|
|
66
95
|
* @throws {@link ValidationException} (client fault)
|
|
67
96
|
* <p>The input failed to satisfy the constraints specified by an AWS service.</p>
|
|
68
97
|
*
|
|
98
|
+
* @throws {@link RedshiftServerlessServiceException}
|
|
99
|
+
* <p>Base exception class for all service exceptions from RedshiftServerless service.</p>
|
|
69
100
|
*
|
|
70
101
|
*/
|
|
71
102
|
export declare class ConvertRecoveryPointToSnapshotCommand extends $Command<ConvertRecoveryPointToSnapshotCommandInput, ConvertRecoveryPointToSnapshotCommandOutput, RedshiftServerlessClientResolvedConfig> {
|
|
@@ -38,6 +38,39 @@ export interface CreateEndpointAccessCommandOutput extends CreateEndpointAccessR
|
|
|
38
38
|
* };
|
|
39
39
|
* const command = new CreateEndpointAccessCommand(input);
|
|
40
40
|
* const response = await client.send(command);
|
|
41
|
+
* // { // CreateEndpointAccessResponse
|
|
42
|
+
* // endpoint: { // EndpointAccess
|
|
43
|
+
* // endpointName: "STRING_VALUE",
|
|
44
|
+
* // endpointStatus: "STRING_VALUE",
|
|
45
|
+
* // workgroupName: "STRING_VALUE",
|
|
46
|
+
* // endpointCreateTime: new Date("TIMESTAMP"),
|
|
47
|
+
* // port: Number("int"),
|
|
48
|
+
* // address: "STRING_VALUE",
|
|
49
|
+
* // subnetIds: [ // SubnetIdList
|
|
50
|
+
* // "STRING_VALUE",
|
|
51
|
+
* // ],
|
|
52
|
+
* // vpcSecurityGroups: [ // VpcSecurityGroupMembershipList
|
|
53
|
+
* // { // VpcSecurityGroupMembership
|
|
54
|
+
* // vpcSecurityGroupId: "STRING_VALUE",
|
|
55
|
+
* // status: "STRING_VALUE",
|
|
56
|
+
* // },
|
|
57
|
+
* // ],
|
|
58
|
+
* // vpcEndpoint: { // VpcEndpoint
|
|
59
|
+
* // vpcEndpointId: "STRING_VALUE",
|
|
60
|
+
* // vpcId: "STRING_VALUE",
|
|
61
|
+
* // networkInterfaces: [ // NetworkInterfaceList
|
|
62
|
+
* // { // NetworkInterface
|
|
63
|
+
* // networkInterfaceId: "STRING_VALUE",
|
|
64
|
+
* // subnetId: "STRING_VALUE",
|
|
65
|
+
* // privateIpAddress: "STRING_VALUE",
|
|
66
|
+
* // availabilityZone: "STRING_VALUE",
|
|
67
|
+
* // },
|
|
68
|
+
* // ],
|
|
69
|
+
* // },
|
|
70
|
+
* // endpointArn: "STRING_VALUE",
|
|
71
|
+
* // },
|
|
72
|
+
* // };
|
|
73
|
+
*
|
|
41
74
|
* ```
|
|
42
75
|
*
|
|
43
76
|
* @param CreateEndpointAccessCommandInput - {@link CreateEndpointAccessCommandInput}
|
|
@@ -64,6 +97,8 @@ export interface CreateEndpointAccessCommandOutput extends CreateEndpointAccessR
|
|
|
64
97
|
* @throws {@link ValidationException} (client fault)
|
|
65
98
|
* <p>The input failed to satisfy the constraints specified by an AWS service.</p>
|
|
66
99
|
*
|
|
100
|
+
* @throws {@link RedshiftServerlessServiceException}
|
|
101
|
+
* <p>Base exception class for all service exceptions from RedshiftServerless service.</p>
|
|
67
102
|
*
|
|
68
103
|
*/
|
|
69
104
|
export declare class CreateEndpointAccessCommand extends $Command<CreateEndpointAccessCommandInput, CreateEndpointAccessCommandOutput, RedshiftServerlessClientResolvedConfig> {
|
|
@@ -48,6 +48,26 @@ export interface CreateNamespaceCommandOutput extends CreateNamespaceResponse, _
|
|
|
48
48
|
* };
|
|
49
49
|
* const command = new CreateNamespaceCommand(input);
|
|
50
50
|
* const response = await client.send(command);
|
|
51
|
+
* // { // CreateNamespaceResponse
|
|
52
|
+
* // namespace: { // Namespace
|
|
53
|
+
* // namespaceArn: "STRING_VALUE",
|
|
54
|
+
* // namespaceId: "STRING_VALUE",
|
|
55
|
+
* // namespaceName: "STRING_VALUE",
|
|
56
|
+
* // adminUsername: "STRING_VALUE",
|
|
57
|
+
* // dbName: "STRING_VALUE",
|
|
58
|
+
* // kmsKeyId: "STRING_VALUE",
|
|
59
|
+
* // defaultIamRoleArn: "STRING_VALUE",
|
|
60
|
+
* // iamRoles: [ // IamRoleArnList
|
|
61
|
+
* // "STRING_VALUE",
|
|
62
|
+
* // ],
|
|
63
|
+
* // logExports: [ // LogExportList
|
|
64
|
+
* // "STRING_VALUE",
|
|
65
|
+
* // ],
|
|
66
|
+
* // status: "STRING_VALUE",
|
|
67
|
+
* // creationDate: new Date("TIMESTAMP"),
|
|
68
|
+
* // },
|
|
69
|
+
* // };
|
|
70
|
+
*
|
|
51
71
|
* ```
|
|
52
72
|
*
|
|
53
73
|
* @param CreateNamespaceCommandInput - {@link CreateNamespaceCommandInput}
|
|
@@ -68,6 +88,8 @@ export interface CreateNamespaceCommandOutput extends CreateNamespaceResponse, _
|
|
|
68
88
|
* @throws {@link ValidationException} (client fault)
|
|
69
89
|
* <p>The input failed to satisfy the constraints specified by an AWS service.</p>
|
|
70
90
|
*
|
|
91
|
+
* @throws {@link RedshiftServerlessServiceException}
|
|
92
|
+
* <p>Base exception class for all service exceptions from RedshiftServerless service.</p>
|
|
71
93
|
*
|
|
72
94
|
*/
|
|
73
95
|
export declare class CreateNamespaceCommand extends $Command<CreateNamespaceCommandInput, CreateNamespaceCommandOutput, RedshiftServerlessClientResolvedConfig> {
|
|
@@ -42,6 +42,35 @@ export interface CreateSnapshotCommandOutput extends CreateSnapshotResponse, __M
|
|
|
42
42
|
* };
|
|
43
43
|
* const command = new CreateSnapshotCommand(input);
|
|
44
44
|
* const response = await client.send(command);
|
|
45
|
+
* // { // CreateSnapshotResponse
|
|
46
|
+
* // snapshot: { // Snapshot
|
|
47
|
+
* // namespaceName: "STRING_VALUE",
|
|
48
|
+
* // namespaceArn: "STRING_VALUE",
|
|
49
|
+
* // snapshotName: "STRING_VALUE",
|
|
50
|
+
* // snapshotCreateTime: new Date("TIMESTAMP"),
|
|
51
|
+
* // adminUsername: "STRING_VALUE",
|
|
52
|
+
* // status: "STRING_VALUE",
|
|
53
|
+
* // kmsKeyId: "STRING_VALUE",
|
|
54
|
+
* // ownerAccount: "STRING_VALUE",
|
|
55
|
+
* // totalBackupSizeInMegaBytes: Number("double"),
|
|
56
|
+
* // actualIncrementalBackupSizeInMegaBytes: Number("double"),
|
|
57
|
+
* // backupProgressInMegaBytes: Number("double"),
|
|
58
|
+
* // currentBackupRateInMegaBytesPerSecond: Number("double"),
|
|
59
|
+
* // estimatedSecondsToCompletion: Number("long"),
|
|
60
|
+
* // elapsedTimeInSeconds: Number("long"),
|
|
61
|
+
* // snapshotRetentionPeriod: Number("int"),
|
|
62
|
+
* // snapshotRemainingDays: Number("int"),
|
|
63
|
+
* // snapshotRetentionStartTime: new Date("TIMESTAMP"),
|
|
64
|
+
* // snapshotArn: "STRING_VALUE",
|
|
65
|
+
* // accountsWithRestoreAccess: [ // AccountIdList
|
|
66
|
+
* // "STRING_VALUE",
|
|
67
|
+
* // ],
|
|
68
|
+
* // accountsWithProvisionedRestoreAccess: [
|
|
69
|
+
* // "STRING_VALUE",
|
|
70
|
+
* // ],
|
|
71
|
+
* // },
|
|
72
|
+
* // };
|
|
73
|
+
*
|
|
45
74
|
* ```
|
|
46
75
|
*
|
|
47
76
|
* @param CreateSnapshotCommandInput - {@link CreateSnapshotCommandInput}
|
|
@@ -68,6 +97,8 @@ export interface CreateSnapshotCommandOutput extends CreateSnapshotResponse, __M
|
|
|
68
97
|
* @throws {@link ValidationException} (client fault)
|
|
69
98
|
* <p>The input failed to satisfy the constraints specified by an AWS service.</p>
|
|
70
99
|
*
|
|
100
|
+
* @throws {@link RedshiftServerlessServiceException}
|
|
101
|
+
* <p>Base exception class for all service exceptions from RedshiftServerless service.</p>
|
|
71
102
|
*
|
|
72
103
|
*/
|
|
73
104
|
export declare class CreateSnapshotCommand extends $Command<CreateSnapshotCommandInput, CreateSnapshotCommandOutput, RedshiftServerlessClientResolvedConfig> {
|
|
@@ -36,6 +36,18 @@ export interface CreateUsageLimitCommandOutput extends CreateUsageLimitResponse,
|
|
|
36
36
|
* };
|
|
37
37
|
* const command = new CreateUsageLimitCommand(input);
|
|
38
38
|
* const response = await client.send(command);
|
|
39
|
+
* // { // CreateUsageLimitResponse
|
|
40
|
+
* // usageLimit: { // UsageLimit
|
|
41
|
+
* // usageLimitId: "STRING_VALUE",
|
|
42
|
+
* // usageLimitArn: "STRING_VALUE",
|
|
43
|
+
* // resourceArn: "STRING_VALUE",
|
|
44
|
+
* // usageType: "STRING_VALUE",
|
|
45
|
+
* // amount: Number("long"),
|
|
46
|
+
* // period: "STRING_VALUE",
|
|
47
|
+
* // breachAction: "STRING_VALUE",
|
|
48
|
+
* // },
|
|
49
|
+
* // };
|
|
50
|
+
*
|
|
39
51
|
* ```
|
|
40
52
|
*
|
|
41
53
|
* @param CreateUsageLimitCommandInput - {@link CreateUsageLimitCommandInput}
|
|
@@ -59,6 +71,8 @@ export interface CreateUsageLimitCommandOutput extends CreateUsageLimitResponse,
|
|
|
59
71
|
* @throws {@link ValidationException} (client fault)
|
|
60
72
|
* <p>The input failed to satisfy the constraints specified by an AWS service.</p>
|
|
61
73
|
*
|
|
74
|
+
* @throws {@link RedshiftServerlessServiceException}
|
|
75
|
+
* <p>Base exception class for all service exceptions from RedshiftServerless service.</p>
|
|
62
76
|
*
|
|
63
77
|
*/
|
|
64
78
|
export declare class CreateUsageLimitCommand extends $Command<CreateUsageLimitCommandInput, CreateUsageLimitCommandOutput, RedshiftServerlessClientResolvedConfig> {
|
|
@@ -54,6 +54,51 @@ export interface CreateWorkgroupCommandOutput extends CreateWorkgroupResponse, _
|
|
|
54
54
|
* };
|
|
55
55
|
* const command = new CreateWorkgroupCommand(input);
|
|
56
56
|
* const response = await client.send(command);
|
|
57
|
+
* // { // CreateWorkgroupResponse
|
|
58
|
+
* // workgroup: { // Workgroup
|
|
59
|
+
* // workgroupId: "STRING_VALUE",
|
|
60
|
+
* // workgroupArn: "STRING_VALUE",
|
|
61
|
+
* // workgroupName: "STRING_VALUE",
|
|
62
|
+
* // namespaceName: "STRING_VALUE",
|
|
63
|
+
* // baseCapacity: Number("int"),
|
|
64
|
+
* // enhancedVpcRouting: true || false,
|
|
65
|
+
* // configParameters: [ // ConfigParameterList
|
|
66
|
+
* // { // ConfigParameter
|
|
67
|
+
* // parameterKey: "STRING_VALUE",
|
|
68
|
+
* // parameterValue: "STRING_VALUE",
|
|
69
|
+
* // },
|
|
70
|
+
* // ],
|
|
71
|
+
* // securityGroupIds: [ // SecurityGroupIdList
|
|
72
|
+
* // "STRING_VALUE",
|
|
73
|
+
* // ],
|
|
74
|
+
* // subnetIds: [ // SubnetIdList
|
|
75
|
+
* // "STRING_VALUE",
|
|
76
|
+
* // ],
|
|
77
|
+
* // status: "STRING_VALUE",
|
|
78
|
+
* // endpoint: { // Endpoint
|
|
79
|
+
* // address: "STRING_VALUE",
|
|
80
|
+
* // port: Number("int"),
|
|
81
|
+
* // vpcEndpoints: [ // VpcEndpointList
|
|
82
|
+
* // { // VpcEndpoint
|
|
83
|
+
* // vpcEndpointId: "STRING_VALUE",
|
|
84
|
+
* // vpcId: "STRING_VALUE",
|
|
85
|
+
* // networkInterfaces: [ // NetworkInterfaceList
|
|
86
|
+
* // { // NetworkInterface
|
|
87
|
+
* // networkInterfaceId: "STRING_VALUE",
|
|
88
|
+
* // subnetId: "STRING_VALUE",
|
|
89
|
+
* // privateIpAddress: "STRING_VALUE",
|
|
90
|
+
* // availabilityZone: "STRING_VALUE",
|
|
91
|
+
* // },
|
|
92
|
+
* // ],
|
|
93
|
+
* // },
|
|
94
|
+
* // ],
|
|
95
|
+
* // },
|
|
96
|
+
* // publiclyAccessible: true || false,
|
|
97
|
+
* // creationDate: new Date("TIMESTAMP"),
|
|
98
|
+
* // port: Number("int"),
|
|
99
|
+
* // },
|
|
100
|
+
* // };
|
|
101
|
+
*
|
|
57
102
|
* ```
|
|
58
103
|
*
|
|
59
104
|
* @param CreateWorkgroupCommandInput - {@link CreateWorkgroupCommandInput}
|
|
@@ -80,6 +125,8 @@ export interface CreateWorkgroupCommandOutput extends CreateWorkgroupResponse, _
|
|
|
80
125
|
* @throws {@link ValidationException} (client fault)
|
|
81
126
|
* <p>The input failed to satisfy the constraints specified by an AWS service.</p>
|
|
82
127
|
*
|
|
128
|
+
* @throws {@link RedshiftServerlessServiceException}
|
|
129
|
+
* <p>Base exception class for all service exceptions from RedshiftServerless service.</p>
|
|
83
130
|
*
|
|
84
131
|
*/
|
|
85
132
|
export declare class CreateWorkgroupCommand extends $Command<CreateWorkgroupCommandInput, CreateWorkgroupCommandOutput, RedshiftServerlessClientResolvedConfig> {
|
|
@@ -31,6 +31,39 @@ export interface DeleteEndpointAccessCommandOutput extends DeleteEndpointAccessR
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteEndpointAccessCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // DeleteEndpointAccessResponse
|
|
35
|
+
* // endpoint: { // EndpointAccess
|
|
36
|
+
* // endpointName: "STRING_VALUE",
|
|
37
|
+
* // endpointStatus: "STRING_VALUE",
|
|
38
|
+
* // workgroupName: "STRING_VALUE",
|
|
39
|
+
* // endpointCreateTime: new Date("TIMESTAMP"),
|
|
40
|
+
* // port: Number("int"),
|
|
41
|
+
* // address: "STRING_VALUE",
|
|
42
|
+
* // subnetIds: [ // SubnetIdList
|
|
43
|
+
* // "STRING_VALUE",
|
|
44
|
+
* // ],
|
|
45
|
+
* // vpcSecurityGroups: [ // VpcSecurityGroupMembershipList
|
|
46
|
+
* // { // VpcSecurityGroupMembership
|
|
47
|
+
* // vpcSecurityGroupId: "STRING_VALUE",
|
|
48
|
+
* // status: "STRING_VALUE",
|
|
49
|
+
* // },
|
|
50
|
+
* // ],
|
|
51
|
+
* // vpcEndpoint: { // VpcEndpoint
|
|
52
|
+
* // vpcEndpointId: "STRING_VALUE",
|
|
53
|
+
* // vpcId: "STRING_VALUE",
|
|
54
|
+
* // networkInterfaces: [ // NetworkInterfaceList
|
|
55
|
+
* // { // NetworkInterface
|
|
56
|
+
* // networkInterfaceId: "STRING_VALUE",
|
|
57
|
+
* // subnetId: "STRING_VALUE",
|
|
58
|
+
* // privateIpAddress: "STRING_VALUE",
|
|
59
|
+
* // availabilityZone: "STRING_VALUE",
|
|
60
|
+
* // },
|
|
61
|
+
* // ],
|
|
62
|
+
* // },
|
|
63
|
+
* // endpointArn: "STRING_VALUE",
|
|
64
|
+
* // },
|
|
65
|
+
* // };
|
|
66
|
+
*
|
|
34
67
|
* ```
|
|
35
68
|
*
|
|
36
69
|
* @param DeleteEndpointAccessCommandInput - {@link DeleteEndpointAccessCommandInput}
|
|
@@ -51,6 +84,8 @@ export interface DeleteEndpointAccessCommandOutput extends DeleteEndpointAccessR
|
|
|
51
84
|
* @throws {@link ValidationException} (client fault)
|
|
52
85
|
* <p>The input failed to satisfy the constraints specified by an AWS service.</p>
|
|
53
86
|
*
|
|
87
|
+
* @throws {@link RedshiftServerlessServiceException}
|
|
88
|
+
* <p>Base exception class for all service exceptions from RedshiftServerless service.</p>
|
|
54
89
|
*
|
|
55
90
|
*/
|
|
56
91
|
export declare class DeleteEndpointAccessCommand extends $Command<DeleteEndpointAccessCommandInput, DeleteEndpointAccessCommandOutput, RedshiftServerlessClientResolvedConfig> {
|
|
@@ -34,6 +34,26 @@ export interface DeleteNamespaceCommandOutput extends DeleteNamespaceResponse, _
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new DeleteNamespaceCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // { // DeleteNamespaceResponse
|
|
38
|
+
* // namespace: { // Namespace
|
|
39
|
+
* // namespaceArn: "STRING_VALUE",
|
|
40
|
+
* // namespaceId: "STRING_VALUE",
|
|
41
|
+
* // namespaceName: "STRING_VALUE",
|
|
42
|
+
* // adminUsername: "STRING_VALUE",
|
|
43
|
+
* // dbName: "STRING_VALUE",
|
|
44
|
+
* // kmsKeyId: "STRING_VALUE",
|
|
45
|
+
* // defaultIamRoleArn: "STRING_VALUE",
|
|
46
|
+
* // iamRoles: [ // IamRoleArnList
|
|
47
|
+
* // "STRING_VALUE",
|
|
48
|
+
* // ],
|
|
49
|
+
* // logExports: [ // LogExportList
|
|
50
|
+
* // "STRING_VALUE",
|
|
51
|
+
* // ],
|
|
52
|
+
* // status: "STRING_VALUE",
|
|
53
|
+
* // creationDate: new Date("TIMESTAMP"),
|
|
54
|
+
* // },
|
|
55
|
+
* // };
|
|
56
|
+
*
|
|
37
57
|
* ```
|
|
38
58
|
*
|
|
39
59
|
* @param DeleteNamespaceCommandInput - {@link DeleteNamespaceCommandInput}
|
|
@@ -54,6 +74,8 @@ export interface DeleteNamespaceCommandOutput extends DeleteNamespaceResponse, _
|
|
|
54
74
|
* @throws {@link ValidationException} (client fault)
|
|
55
75
|
* <p>The input failed to satisfy the constraints specified by an AWS service.</p>
|
|
56
76
|
*
|
|
77
|
+
* @throws {@link RedshiftServerlessServiceException}
|
|
78
|
+
* <p>Base exception class for all service exceptions from RedshiftServerless service.</p>
|
|
57
79
|
*
|
|
58
80
|
*/
|
|
59
81
|
export declare class DeleteNamespaceCommand extends $Command<DeleteNamespaceCommandInput, DeleteNamespaceCommandOutput, RedshiftServerlessClientResolvedConfig> {
|
|
@@ -31,6 +31,8 @@ export interface DeleteResourcePolicyCommandOutput extends DeleteResourcePolicyR
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteResourcePolicyCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // {};
|
|
35
|
+
*
|
|
34
36
|
* ```
|
|
35
37
|
*
|
|
36
38
|
* @param DeleteResourcePolicyCommandInput - {@link DeleteResourcePolicyCommandInput}
|
|
@@ -48,6 +50,8 @@ export interface DeleteResourcePolicyCommandOutput extends DeleteResourcePolicyR
|
|
|
48
50
|
* @throws {@link ValidationException} (client fault)
|
|
49
51
|
* <p>The input failed to satisfy the constraints specified by an AWS service.</p>
|
|
50
52
|
*
|
|
53
|
+
* @throws {@link RedshiftServerlessServiceException}
|
|
54
|
+
* <p>Base exception class for all service exceptions from RedshiftServerless service.</p>
|
|
51
55
|
*
|
|
52
56
|
*/
|
|
53
57
|
export declare class DeleteResourcePolicyCommand extends $Command<DeleteResourcePolicyCommandInput, DeleteResourcePolicyCommandOutput, RedshiftServerlessClientResolvedConfig> {
|
|
@@ -31,6 +31,35 @@ export interface DeleteSnapshotCommandOutput extends DeleteSnapshotResponse, __M
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteSnapshotCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // DeleteSnapshotResponse
|
|
35
|
+
* // snapshot: { // Snapshot
|
|
36
|
+
* // namespaceName: "STRING_VALUE",
|
|
37
|
+
* // namespaceArn: "STRING_VALUE",
|
|
38
|
+
* // snapshotName: "STRING_VALUE",
|
|
39
|
+
* // snapshotCreateTime: new Date("TIMESTAMP"),
|
|
40
|
+
* // adminUsername: "STRING_VALUE",
|
|
41
|
+
* // status: "STRING_VALUE",
|
|
42
|
+
* // kmsKeyId: "STRING_VALUE",
|
|
43
|
+
* // ownerAccount: "STRING_VALUE",
|
|
44
|
+
* // totalBackupSizeInMegaBytes: Number("double"),
|
|
45
|
+
* // actualIncrementalBackupSizeInMegaBytes: Number("double"),
|
|
46
|
+
* // backupProgressInMegaBytes: Number("double"),
|
|
47
|
+
* // currentBackupRateInMegaBytesPerSecond: Number("double"),
|
|
48
|
+
* // estimatedSecondsToCompletion: Number("long"),
|
|
49
|
+
* // elapsedTimeInSeconds: Number("long"),
|
|
50
|
+
* // snapshotRetentionPeriod: Number("int"),
|
|
51
|
+
* // snapshotRemainingDays: Number("int"),
|
|
52
|
+
* // snapshotRetentionStartTime: new Date("TIMESTAMP"),
|
|
53
|
+
* // snapshotArn: "STRING_VALUE",
|
|
54
|
+
* // accountsWithRestoreAccess: [ // AccountIdList
|
|
55
|
+
* // "STRING_VALUE",
|
|
56
|
+
* // ],
|
|
57
|
+
* // accountsWithProvisionedRestoreAccess: [
|
|
58
|
+
* // "STRING_VALUE",
|
|
59
|
+
* // ],
|
|
60
|
+
* // },
|
|
61
|
+
* // };
|
|
62
|
+
*
|
|
34
63
|
* ```
|
|
35
64
|
*
|
|
36
65
|
* @param DeleteSnapshotCommandInput - {@link DeleteSnapshotCommandInput}
|
|
@@ -51,6 +80,8 @@ export interface DeleteSnapshotCommandOutput extends DeleteSnapshotResponse, __M
|
|
|
51
80
|
* @throws {@link ValidationException} (client fault)
|
|
52
81
|
* <p>The input failed to satisfy the constraints specified by an AWS service.</p>
|
|
53
82
|
*
|
|
83
|
+
* @throws {@link RedshiftServerlessServiceException}
|
|
84
|
+
* <p>Base exception class for all service exceptions from RedshiftServerless service.</p>
|
|
54
85
|
*
|
|
55
86
|
*/
|
|
56
87
|
export declare class DeleteSnapshotCommand extends $Command<DeleteSnapshotCommandInput, DeleteSnapshotCommandOutput, RedshiftServerlessClientResolvedConfig> {
|
|
@@ -31,6 +31,18 @@ export interface DeleteUsageLimitCommandOutput extends DeleteUsageLimitResponse,
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteUsageLimitCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // DeleteUsageLimitResponse
|
|
35
|
+
* // usageLimit: { // UsageLimit
|
|
36
|
+
* // usageLimitId: "STRING_VALUE",
|
|
37
|
+
* // usageLimitArn: "STRING_VALUE",
|
|
38
|
+
* // resourceArn: "STRING_VALUE",
|
|
39
|
+
* // usageType: "STRING_VALUE",
|
|
40
|
+
* // amount: Number("long"),
|
|
41
|
+
* // period: "STRING_VALUE",
|
|
42
|
+
* // breachAction: "STRING_VALUE",
|
|
43
|
+
* // },
|
|
44
|
+
* // };
|
|
45
|
+
*
|
|
34
46
|
* ```
|
|
35
47
|
*
|
|
36
48
|
* @param DeleteUsageLimitCommandInput - {@link DeleteUsageLimitCommandInput}
|
|
@@ -51,6 +63,8 @@ export interface DeleteUsageLimitCommandOutput extends DeleteUsageLimitResponse,
|
|
|
51
63
|
* @throws {@link ValidationException} (client fault)
|
|
52
64
|
* <p>The input failed to satisfy the constraints specified by an AWS service.</p>
|
|
53
65
|
*
|
|
66
|
+
* @throws {@link RedshiftServerlessServiceException}
|
|
67
|
+
* <p>Base exception class for all service exceptions from RedshiftServerless service.</p>
|
|
54
68
|
*
|
|
55
69
|
*/
|
|
56
70
|
export declare class DeleteUsageLimitCommand extends $Command<DeleteUsageLimitCommandInput, DeleteUsageLimitCommandOutput, RedshiftServerlessClientResolvedConfig> {
|
|
@@ -31,6 +31,51 @@ export interface DeleteWorkgroupCommandOutput extends DeleteWorkgroupResponse, _
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteWorkgroupCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // DeleteWorkgroupResponse
|
|
35
|
+
* // workgroup: { // Workgroup
|
|
36
|
+
* // workgroupId: "STRING_VALUE",
|
|
37
|
+
* // workgroupArn: "STRING_VALUE",
|
|
38
|
+
* // workgroupName: "STRING_VALUE",
|
|
39
|
+
* // namespaceName: "STRING_VALUE",
|
|
40
|
+
* // baseCapacity: Number("int"),
|
|
41
|
+
* // enhancedVpcRouting: true || false,
|
|
42
|
+
* // configParameters: [ // ConfigParameterList
|
|
43
|
+
* // { // ConfigParameter
|
|
44
|
+
* // parameterKey: "STRING_VALUE",
|
|
45
|
+
* // parameterValue: "STRING_VALUE",
|
|
46
|
+
* // },
|
|
47
|
+
* // ],
|
|
48
|
+
* // securityGroupIds: [ // SecurityGroupIdList
|
|
49
|
+
* // "STRING_VALUE",
|
|
50
|
+
* // ],
|
|
51
|
+
* // subnetIds: [ // SubnetIdList
|
|
52
|
+
* // "STRING_VALUE",
|
|
53
|
+
* // ],
|
|
54
|
+
* // status: "STRING_VALUE",
|
|
55
|
+
* // endpoint: { // Endpoint
|
|
56
|
+
* // address: "STRING_VALUE",
|
|
57
|
+
* // port: Number("int"),
|
|
58
|
+
* // vpcEndpoints: [ // VpcEndpointList
|
|
59
|
+
* // { // VpcEndpoint
|
|
60
|
+
* // vpcEndpointId: "STRING_VALUE",
|
|
61
|
+
* // vpcId: "STRING_VALUE",
|
|
62
|
+
* // networkInterfaces: [ // NetworkInterfaceList
|
|
63
|
+
* // { // NetworkInterface
|
|
64
|
+
* // networkInterfaceId: "STRING_VALUE",
|
|
65
|
+
* // subnetId: "STRING_VALUE",
|
|
66
|
+
* // privateIpAddress: "STRING_VALUE",
|
|
67
|
+
* // availabilityZone: "STRING_VALUE",
|
|
68
|
+
* // },
|
|
69
|
+
* // ],
|
|
70
|
+
* // },
|
|
71
|
+
* // ],
|
|
72
|
+
* // },
|
|
73
|
+
* // publiclyAccessible: true || false,
|
|
74
|
+
* // creationDate: new Date("TIMESTAMP"),
|
|
75
|
+
* // port: Number("int"),
|
|
76
|
+
* // },
|
|
77
|
+
* // };
|
|
78
|
+
*
|
|
34
79
|
* ```
|
|
35
80
|
*
|
|
36
81
|
* @param DeleteWorkgroupCommandInput - {@link DeleteWorkgroupCommandInput}
|
|
@@ -51,6 +96,8 @@ export interface DeleteWorkgroupCommandOutput extends DeleteWorkgroupResponse, _
|
|
|
51
96
|
* @throws {@link ValidationException} (client fault)
|
|
52
97
|
* <p>The input failed to satisfy the constraints specified by an AWS service.</p>
|
|
53
98
|
*
|
|
99
|
+
* @throws {@link RedshiftServerlessServiceException}
|
|
100
|
+
* <p>Base exception class for all service exceptions from RedshiftServerless service.</p>
|
|
54
101
|
*
|
|
55
102
|
*/
|
|
56
103
|
export declare class DeleteWorkgroupCommand extends $Command<DeleteWorkgroupCommandInput, DeleteWorkgroupCommandOutput, RedshiftServerlessClientResolvedConfig> {
|
|
@@ -43,6 +43,13 @@ export interface GetCredentialsCommandOutput extends GetCredentialsResponse, __M
|
|
|
43
43
|
* };
|
|
44
44
|
* const command = new GetCredentialsCommand(input);
|
|
45
45
|
* const response = await client.send(command);
|
|
46
|
+
* // { // GetCredentialsResponse
|
|
47
|
+
* // dbUser: "STRING_VALUE",
|
|
48
|
+
* // dbPassword: "STRING_VALUE",
|
|
49
|
+
* // expiration: new Date("TIMESTAMP"),
|
|
50
|
+
* // nextRefreshTime: new Date("TIMESTAMP"),
|
|
51
|
+
* // };
|
|
52
|
+
*
|
|
46
53
|
* ```
|
|
47
54
|
*
|
|
48
55
|
* @param GetCredentialsCommandInput - {@link GetCredentialsCommandInput}
|
|
@@ -60,6 +67,8 @@ export interface GetCredentialsCommandOutput extends GetCredentialsResponse, __M
|
|
|
60
67
|
* @throws {@link ValidationException} (client fault)
|
|
61
68
|
* <p>The input failed to satisfy the constraints specified by an AWS service.</p>
|
|
62
69
|
*
|
|
70
|
+
* @throws {@link RedshiftServerlessServiceException}
|
|
71
|
+
* <p>Base exception class for all service exceptions from RedshiftServerless service.</p>
|
|
63
72
|
*
|
|
64
73
|
*/
|
|
65
74
|
export declare class GetCredentialsCommand extends $Command<GetCredentialsCommandInput, GetCredentialsCommandOutput, RedshiftServerlessClientResolvedConfig> {
|
|
@@ -31,6 +31,39 @@ export interface GetEndpointAccessCommandOutput extends GetEndpointAccessRespons
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetEndpointAccessCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // GetEndpointAccessResponse
|
|
35
|
+
* // endpoint: { // EndpointAccess
|
|
36
|
+
* // endpointName: "STRING_VALUE",
|
|
37
|
+
* // endpointStatus: "STRING_VALUE",
|
|
38
|
+
* // workgroupName: "STRING_VALUE",
|
|
39
|
+
* // endpointCreateTime: new Date("TIMESTAMP"),
|
|
40
|
+
* // port: Number("int"),
|
|
41
|
+
* // address: "STRING_VALUE",
|
|
42
|
+
* // subnetIds: [ // SubnetIdList
|
|
43
|
+
* // "STRING_VALUE",
|
|
44
|
+
* // ],
|
|
45
|
+
* // vpcSecurityGroups: [ // VpcSecurityGroupMembershipList
|
|
46
|
+
* // { // VpcSecurityGroupMembership
|
|
47
|
+
* // vpcSecurityGroupId: "STRING_VALUE",
|
|
48
|
+
* // status: "STRING_VALUE",
|
|
49
|
+
* // },
|
|
50
|
+
* // ],
|
|
51
|
+
* // vpcEndpoint: { // VpcEndpoint
|
|
52
|
+
* // vpcEndpointId: "STRING_VALUE",
|
|
53
|
+
* // vpcId: "STRING_VALUE",
|
|
54
|
+
* // networkInterfaces: [ // NetworkInterfaceList
|
|
55
|
+
* // { // NetworkInterface
|
|
56
|
+
* // networkInterfaceId: "STRING_VALUE",
|
|
57
|
+
* // subnetId: "STRING_VALUE",
|
|
58
|
+
* // privateIpAddress: "STRING_VALUE",
|
|
59
|
+
* // availabilityZone: "STRING_VALUE",
|
|
60
|
+
* // },
|
|
61
|
+
* // ],
|
|
62
|
+
* // },
|
|
63
|
+
* // endpointArn: "STRING_VALUE",
|
|
64
|
+
* // },
|
|
65
|
+
* // };
|
|
66
|
+
*
|
|
34
67
|
* ```
|
|
35
68
|
*
|
|
36
69
|
* @param GetEndpointAccessCommandInput - {@link GetEndpointAccessCommandInput}
|
|
@@ -51,6 +84,8 @@ export interface GetEndpointAccessCommandOutput extends GetEndpointAccessRespons
|
|
|
51
84
|
* @throws {@link ValidationException} (client fault)
|
|
52
85
|
* <p>The input failed to satisfy the constraints specified by an AWS service.</p>
|
|
53
86
|
*
|
|
87
|
+
* @throws {@link RedshiftServerlessServiceException}
|
|
88
|
+
* <p>Base exception class for all service exceptions from RedshiftServerless service.</p>
|
|
54
89
|
*
|
|
55
90
|
*/
|
|
56
91
|
export declare class GetEndpointAccessCommand extends $Command<GetEndpointAccessCommandInput, GetEndpointAccessCommandOutput, RedshiftServerlessClientResolvedConfig> {
|
|
@@ -31,6 +31,26 @@ export interface GetNamespaceCommandOutput extends GetNamespaceResponse, __Metad
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetNamespaceCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // GetNamespaceResponse
|
|
35
|
+
* // namespace: { // Namespace
|
|
36
|
+
* // namespaceArn: "STRING_VALUE",
|
|
37
|
+
* // namespaceId: "STRING_VALUE",
|
|
38
|
+
* // namespaceName: "STRING_VALUE",
|
|
39
|
+
* // adminUsername: "STRING_VALUE",
|
|
40
|
+
* // dbName: "STRING_VALUE",
|
|
41
|
+
* // kmsKeyId: "STRING_VALUE",
|
|
42
|
+
* // defaultIamRoleArn: "STRING_VALUE",
|
|
43
|
+
* // iamRoles: [ // IamRoleArnList
|
|
44
|
+
* // "STRING_VALUE",
|
|
45
|
+
* // ],
|
|
46
|
+
* // logExports: [ // LogExportList
|
|
47
|
+
* // "STRING_VALUE",
|
|
48
|
+
* // ],
|
|
49
|
+
* // status: "STRING_VALUE",
|
|
50
|
+
* // creationDate: new Date("TIMESTAMP"),
|
|
51
|
+
* // },
|
|
52
|
+
* // };
|
|
53
|
+
*
|
|
34
54
|
* ```
|
|
35
55
|
*
|
|
36
56
|
* @param GetNamespaceCommandInput - {@link GetNamespaceCommandInput}
|
|
@@ -48,6 +68,8 @@ export interface GetNamespaceCommandOutput extends GetNamespaceResponse, __Metad
|
|
|
48
68
|
* @throws {@link ValidationException} (client fault)
|
|
49
69
|
* <p>The input failed to satisfy the constraints specified by an AWS service.</p>
|
|
50
70
|
*
|
|
71
|
+
* @throws {@link RedshiftServerlessServiceException}
|
|
72
|
+
* <p>Base exception class for all service exceptions from RedshiftServerless service.</p>
|
|
51
73
|
*
|
|
52
74
|
*/
|
|
53
75
|
export declare class GetNamespaceCommand extends $Command<GetNamespaceCommandInput, GetNamespaceCommandOutput, RedshiftServerlessClientResolvedConfig> {
|
|
@@ -31,6 +31,17 @@ export interface GetRecoveryPointCommandOutput extends GetRecoveryPointResponse,
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetRecoveryPointCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // GetRecoveryPointResponse
|
|
35
|
+
* // recoveryPoint: { // RecoveryPoint
|
|
36
|
+
* // recoveryPointId: "STRING_VALUE",
|
|
37
|
+
* // recoveryPointCreateTime: new Date("TIMESTAMP"),
|
|
38
|
+
* // totalSizeInMegaBytes: Number("double"),
|
|
39
|
+
* // namespaceName: "STRING_VALUE",
|
|
40
|
+
* // workgroupName: "STRING_VALUE",
|
|
41
|
+
* // namespaceArn: "STRING_VALUE",
|
|
42
|
+
* // },
|
|
43
|
+
* // };
|
|
44
|
+
*
|
|
34
45
|
* ```
|
|
35
46
|
*
|
|
36
47
|
* @param GetRecoveryPointCommandInput - {@link GetRecoveryPointCommandInput}
|
|
@@ -51,6 +62,8 @@ export interface GetRecoveryPointCommandOutput extends GetRecoveryPointResponse,
|
|
|
51
62
|
* @throws {@link ValidationException} (client fault)
|
|
52
63
|
* <p>The input failed to satisfy the constraints specified by an AWS service.</p>
|
|
53
64
|
*
|
|
65
|
+
* @throws {@link RedshiftServerlessServiceException}
|
|
66
|
+
* <p>Base exception class for all service exceptions from RedshiftServerless service.</p>
|
|
54
67
|
*
|
|
55
68
|
*/
|
|
56
69
|
export declare class GetRecoveryPointCommand extends $Command<GetRecoveryPointCommandInput, GetRecoveryPointCommandOutput, RedshiftServerlessClientResolvedConfig> {
|