@aws-sdk/client-redshift-serverless 3.300.0 → 3.301.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 +3 -3
- package/dist-types/commands/CreateEndpointAccessCommand.d.ts +3 -3
- package/dist-types/commands/CreateNamespaceCommand.d.ts +5 -5
- package/dist-types/commands/CreateSnapshotCommand.d.ts +3 -3
- package/dist-types/commands/CreateUsageLimitCommand.d.ts +1 -1
- package/dist-types/commands/CreateWorkgroupCommand.d.ts +7 -7
- package/dist-types/commands/DeleteEndpointAccessCommand.d.ts +1 -1
- package/dist-types/commands/DeleteNamespaceCommand.d.ts +1 -1
- package/dist-types/commands/DeleteResourcePolicyCommand.d.ts +1 -1
- package/dist-types/commands/DeleteSnapshotCommand.d.ts +1 -1
- package/dist-types/commands/DeleteUsageLimitCommand.d.ts +1 -1
- package/dist-types/commands/DeleteWorkgroupCommand.d.ts +1 -1
- package/dist-types/commands/GetCredentialsCommand.d.ts +1 -1
- package/dist-types/commands/GetEndpointAccessCommand.d.ts +1 -1
- package/dist-types/commands/GetNamespaceCommand.d.ts +1 -1
- package/dist-types/commands/GetRecoveryPointCommand.d.ts +1 -1
- package/dist-types/commands/GetResourcePolicyCommand.d.ts +1 -1
- package/dist-types/commands/GetSnapshotCommand.d.ts +1 -1
- package/dist-types/commands/GetTableRestoreStatusCommand.d.ts +1 -1
- package/dist-types/commands/GetUsageLimitCommand.d.ts +1 -1
- package/dist-types/commands/GetWorkgroupCommand.d.ts +1 -1
- package/dist-types/commands/ListEndpointAccessCommand.d.ts +1 -1
- package/dist-types/commands/ListNamespacesCommand.d.ts +1 -1
- package/dist-types/commands/ListRecoveryPointsCommand.d.ts +1 -1
- package/dist-types/commands/ListSnapshotsCommand.d.ts +1 -1
- package/dist-types/commands/ListTableRestoreStatusCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/ListUsageLimitsCommand.d.ts +1 -1
- package/dist-types/commands/ListWorkgroupsCommand.d.ts +1 -1
- package/dist-types/commands/PutResourcePolicyCommand.d.ts +1 -1
- package/dist-types/commands/RestoreFromRecoveryPointCommand.d.ts +1 -1
- package/dist-types/commands/RestoreFromSnapshotCommand.d.ts +1 -1
- package/dist-types/commands/RestoreTableFromSnapshotCommand.d.ts +1 -1
- package/dist-types/commands/TagResourceCommand.d.ts +3 -3
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UpdateEndpointAccessCommand.d.ts +2 -2
- package/dist-types/commands/UpdateNamespaceCommand.d.ts +3 -3
- package/dist-types/commands/UpdateSnapshotCommand.d.ts +1 -1
- package/dist-types/commands/UpdateUsageLimitCommand.d.ts +1 -1
- package/dist-types/commands/UpdateWorkgroupCommand.d.ts +5 -5
- package/package.json +3 -3
|
@@ -27,12 +27,12 @@ export interface ConvertRecoveryPointToSnapshotCommandOutput extends ConvertReco
|
|
|
27
27
|
* import { RedshiftServerlessClient, ConvertRecoveryPointToSnapshotCommand } from "@aws-sdk/client-redshift-serverless"; // ES Modules import
|
|
28
28
|
* // const { RedshiftServerlessClient, ConvertRecoveryPointToSnapshotCommand } = require("@aws-sdk/client-redshift-serverless"); // CommonJS import
|
|
29
29
|
* const client = new RedshiftServerlessClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // ConvertRecoveryPointToSnapshotRequest
|
|
31
31
|
* recoveryPointId: "STRING_VALUE", // required
|
|
32
32
|
* snapshotName: "STRING_VALUE", // required
|
|
33
33
|
* retentionPeriod: Number("int"),
|
|
34
|
-
* tags: [
|
|
35
|
-
* {
|
|
34
|
+
* tags: [ // TagList
|
|
35
|
+
* { // Tag
|
|
36
36
|
* key: "STRING_VALUE", // required
|
|
37
37
|
* value: "STRING_VALUE", // required
|
|
38
38
|
* },
|
|
@@ -26,13 +26,13 @@ export interface CreateEndpointAccessCommandOutput extends CreateEndpointAccessR
|
|
|
26
26
|
* import { RedshiftServerlessClient, CreateEndpointAccessCommand } from "@aws-sdk/client-redshift-serverless"; // ES Modules import
|
|
27
27
|
* // const { RedshiftServerlessClient, CreateEndpointAccessCommand } = require("@aws-sdk/client-redshift-serverless"); // CommonJS import
|
|
28
28
|
* const client = new RedshiftServerlessClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // CreateEndpointAccessRequest
|
|
30
30
|
* endpointName: "STRING_VALUE", // required
|
|
31
|
-
* subnetIds: [ // required
|
|
31
|
+
* subnetIds: [ // SubnetIdList // required
|
|
32
32
|
* "STRING_VALUE",
|
|
33
33
|
* ],
|
|
34
34
|
* workgroupName: "STRING_VALUE", // required
|
|
35
|
-
* vpcSecurityGroupIds: [
|
|
35
|
+
* vpcSecurityGroupIds: [ // VpcSecurityGroupIdList
|
|
36
36
|
* "STRING_VALUE",
|
|
37
37
|
* ],
|
|
38
38
|
* };
|
|
@@ -26,21 +26,21 @@ export interface CreateNamespaceCommandOutput extends CreateNamespaceResponse, _
|
|
|
26
26
|
* import { RedshiftServerlessClient, CreateNamespaceCommand } from "@aws-sdk/client-redshift-serverless"; // ES Modules import
|
|
27
27
|
* // const { RedshiftServerlessClient, CreateNamespaceCommand } = require("@aws-sdk/client-redshift-serverless"); // CommonJS import
|
|
28
28
|
* const client = new RedshiftServerlessClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // CreateNamespaceRequest
|
|
30
30
|
* namespaceName: "STRING_VALUE", // required
|
|
31
31
|
* adminUsername: "STRING_VALUE",
|
|
32
32
|
* adminUserPassword: "STRING_VALUE",
|
|
33
33
|
* dbName: "STRING_VALUE",
|
|
34
34
|
* kmsKeyId: "STRING_VALUE",
|
|
35
35
|
* defaultIamRoleArn: "STRING_VALUE",
|
|
36
|
-
* iamRoles: [
|
|
36
|
+
* iamRoles: [ // IamRoleArnList
|
|
37
37
|
* "STRING_VALUE",
|
|
38
38
|
* ],
|
|
39
|
-
* logExports: [
|
|
39
|
+
* logExports: [ // LogExportList
|
|
40
40
|
* "STRING_VALUE",
|
|
41
41
|
* ],
|
|
42
|
-
* tags: [
|
|
43
|
-
* {
|
|
42
|
+
* tags: [ // TagList
|
|
43
|
+
* { // Tag
|
|
44
44
|
* key: "STRING_VALUE", // required
|
|
45
45
|
* value: "STRING_VALUE", // required
|
|
46
46
|
* },
|
|
@@ -29,12 +29,12 @@ export interface CreateSnapshotCommandOutput extends CreateSnapshotResponse, __M
|
|
|
29
29
|
* import { RedshiftServerlessClient, CreateSnapshotCommand } from "@aws-sdk/client-redshift-serverless"; // ES Modules import
|
|
30
30
|
* // const { RedshiftServerlessClient, CreateSnapshotCommand } = require("@aws-sdk/client-redshift-serverless"); // CommonJS import
|
|
31
31
|
* const client = new RedshiftServerlessClient(config);
|
|
32
|
-
* const input = {
|
|
32
|
+
* const input = { // CreateSnapshotRequest
|
|
33
33
|
* namespaceName: "STRING_VALUE", // required
|
|
34
34
|
* snapshotName: "STRING_VALUE", // required
|
|
35
35
|
* retentionPeriod: Number("int"),
|
|
36
|
-
* tags: [
|
|
37
|
-
* {
|
|
36
|
+
* tags: [ // TagList
|
|
37
|
+
* { // Tag
|
|
38
38
|
* key: "STRING_VALUE", // required
|
|
39
39
|
* value: "STRING_VALUE", // required
|
|
40
40
|
* },
|
|
@@ -27,7 +27,7 @@ export interface CreateUsageLimitCommandOutput extends CreateUsageLimitResponse,
|
|
|
27
27
|
* import { RedshiftServerlessClient, CreateUsageLimitCommand } from "@aws-sdk/client-redshift-serverless"; // ES Modules import
|
|
28
28
|
* // const { RedshiftServerlessClient, CreateUsageLimitCommand } = require("@aws-sdk/client-redshift-serverless"); // CommonJS import
|
|
29
29
|
* const client = new RedshiftServerlessClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // CreateUsageLimitRequest
|
|
31
31
|
* resourceArn: "STRING_VALUE", // required
|
|
32
32
|
* usageType: "STRING_VALUE", // required
|
|
33
33
|
* amount: Number("long"), // required
|
|
@@ -26,26 +26,26 @@ export interface CreateWorkgroupCommandOutput extends CreateWorkgroupResponse, _
|
|
|
26
26
|
* import { RedshiftServerlessClient, CreateWorkgroupCommand } from "@aws-sdk/client-redshift-serverless"; // ES Modules import
|
|
27
27
|
* // const { RedshiftServerlessClient, CreateWorkgroupCommand } = require("@aws-sdk/client-redshift-serverless"); // CommonJS import
|
|
28
28
|
* const client = new RedshiftServerlessClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // CreateWorkgroupRequest
|
|
30
30
|
* workgroupName: "STRING_VALUE", // required
|
|
31
31
|
* namespaceName: "STRING_VALUE", // required
|
|
32
32
|
* baseCapacity: Number("int"),
|
|
33
33
|
* enhancedVpcRouting: true || false,
|
|
34
|
-
* configParameters: [
|
|
35
|
-
* {
|
|
34
|
+
* configParameters: [ // ConfigParameterList
|
|
35
|
+
* { // ConfigParameter
|
|
36
36
|
* parameterKey: "STRING_VALUE",
|
|
37
37
|
* parameterValue: "STRING_VALUE",
|
|
38
38
|
* },
|
|
39
39
|
* ],
|
|
40
|
-
* securityGroupIds: [
|
|
40
|
+
* securityGroupIds: [ // SecurityGroupIdList
|
|
41
41
|
* "STRING_VALUE",
|
|
42
42
|
* ],
|
|
43
|
-
* subnetIds: [
|
|
43
|
+
* subnetIds: [ // SubnetIdList
|
|
44
44
|
* "STRING_VALUE",
|
|
45
45
|
* ],
|
|
46
46
|
* publiclyAccessible: true || false,
|
|
47
|
-
* tags: [
|
|
48
|
-
* {
|
|
47
|
+
* tags: [ // TagList
|
|
48
|
+
* { // Tag
|
|
49
49
|
* key: "STRING_VALUE", // required
|
|
50
50
|
* value: "STRING_VALUE", // required
|
|
51
51
|
* },
|
|
@@ -26,7 +26,7 @@ export interface DeleteEndpointAccessCommandOutput extends DeleteEndpointAccessR
|
|
|
26
26
|
* import { RedshiftServerlessClient, DeleteEndpointAccessCommand } from "@aws-sdk/client-redshift-serverless"; // ES Modules import
|
|
27
27
|
* // const { RedshiftServerlessClient, DeleteEndpointAccessCommand } = require("@aws-sdk/client-redshift-serverless"); // CommonJS import
|
|
28
28
|
* const client = new RedshiftServerlessClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DeleteEndpointAccessRequest
|
|
30
30
|
* endpointName: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteEndpointAccessCommand(input);
|
|
@@ -27,7 +27,7 @@ export interface DeleteNamespaceCommandOutput extends DeleteNamespaceResponse, _
|
|
|
27
27
|
* import { RedshiftServerlessClient, DeleteNamespaceCommand } from "@aws-sdk/client-redshift-serverless"; // ES Modules import
|
|
28
28
|
* // const { RedshiftServerlessClient, DeleteNamespaceCommand } = require("@aws-sdk/client-redshift-serverless"); // CommonJS import
|
|
29
29
|
* const client = new RedshiftServerlessClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // DeleteNamespaceRequest
|
|
31
31
|
* namespaceName: "STRING_VALUE", // required
|
|
32
32
|
* finalSnapshotName: "STRING_VALUE",
|
|
33
33
|
* finalSnapshotRetentionPeriod: Number("int"),
|
|
@@ -26,7 +26,7 @@ export interface DeleteResourcePolicyCommandOutput extends DeleteResourcePolicyR
|
|
|
26
26
|
* import { RedshiftServerlessClient, DeleteResourcePolicyCommand } from "@aws-sdk/client-redshift-serverless"; // ES Modules import
|
|
27
27
|
* // const { RedshiftServerlessClient, DeleteResourcePolicyCommand } = require("@aws-sdk/client-redshift-serverless"); // CommonJS import
|
|
28
28
|
* const client = new RedshiftServerlessClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DeleteResourcePolicyRequest
|
|
30
30
|
* resourceArn: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteResourcePolicyCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface DeleteSnapshotCommandOutput extends DeleteSnapshotResponse, __M
|
|
|
26
26
|
* import { RedshiftServerlessClient, DeleteSnapshotCommand } from "@aws-sdk/client-redshift-serverless"; // ES Modules import
|
|
27
27
|
* // const { RedshiftServerlessClient, DeleteSnapshotCommand } = require("@aws-sdk/client-redshift-serverless"); // CommonJS import
|
|
28
28
|
* const client = new RedshiftServerlessClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DeleteSnapshotRequest
|
|
30
30
|
* snapshotName: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteSnapshotCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface DeleteUsageLimitCommandOutput extends DeleteUsageLimitResponse,
|
|
|
26
26
|
* import { RedshiftServerlessClient, DeleteUsageLimitCommand } from "@aws-sdk/client-redshift-serverless"; // ES Modules import
|
|
27
27
|
* // const { RedshiftServerlessClient, DeleteUsageLimitCommand } = require("@aws-sdk/client-redshift-serverless"); // CommonJS import
|
|
28
28
|
* const client = new RedshiftServerlessClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DeleteUsageLimitRequest
|
|
30
30
|
* usageLimitId: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteUsageLimitCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface DeleteWorkgroupCommandOutput extends DeleteWorkgroupResponse, _
|
|
|
26
26
|
* import { RedshiftServerlessClient, DeleteWorkgroupCommand } from "@aws-sdk/client-redshift-serverless"; // ES Modules import
|
|
27
27
|
* // const { RedshiftServerlessClient, DeleteWorkgroupCommand } = require("@aws-sdk/client-redshift-serverless"); // CommonJS import
|
|
28
28
|
* const client = new RedshiftServerlessClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DeleteWorkgroupRequest
|
|
30
30
|
* workgroupName: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteWorkgroupCommand(input);
|
|
@@ -36,7 +36,7 @@ export interface GetCredentialsCommandOutput extends GetCredentialsResponse, __M
|
|
|
36
36
|
* import { RedshiftServerlessClient, GetCredentialsCommand } from "@aws-sdk/client-redshift-serverless"; // ES Modules import
|
|
37
37
|
* // const { RedshiftServerlessClient, GetCredentialsCommand } = require("@aws-sdk/client-redshift-serverless"); // CommonJS import
|
|
38
38
|
* const client = new RedshiftServerlessClient(config);
|
|
39
|
-
* const input = {
|
|
39
|
+
* const input = { // GetCredentialsRequest
|
|
40
40
|
* workgroupName: "STRING_VALUE", // required
|
|
41
41
|
* dbName: "STRING_VALUE",
|
|
42
42
|
* durationSeconds: Number("int"),
|
|
@@ -26,7 +26,7 @@ export interface GetEndpointAccessCommandOutput extends GetEndpointAccessRespons
|
|
|
26
26
|
* import { RedshiftServerlessClient, GetEndpointAccessCommand } from "@aws-sdk/client-redshift-serverless"; // ES Modules import
|
|
27
27
|
* // const { RedshiftServerlessClient, GetEndpointAccessCommand } = require("@aws-sdk/client-redshift-serverless"); // CommonJS import
|
|
28
28
|
* const client = new RedshiftServerlessClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // GetEndpointAccessRequest
|
|
30
30
|
* endpointName: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetEndpointAccessCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface GetNamespaceCommandOutput extends GetNamespaceResponse, __Metad
|
|
|
26
26
|
* import { RedshiftServerlessClient, GetNamespaceCommand } from "@aws-sdk/client-redshift-serverless"; // ES Modules import
|
|
27
27
|
* // const { RedshiftServerlessClient, GetNamespaceCommand } = require("@aws-sdk/client-redshift-serverless"); // CommonJS import
|
|
28
28
|
* const client = new RedshiftServerlessClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // GetNamespaceRequest
|
|
30
30
|
* namespaceName: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetNamespaceCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface GetRecoveryPointCommandOutput extends GetRecoveryPointResponse,
|
|
|
26
26
|
* import { RedshiftServerlessClient, GetRecoveryPointCommand } from "@aws-sdk/client-redshift-serverless"; // ES Modules import
|
|
27
27
|
* // const { RedshiftServerlessClient, GetRecoveryPointCommand } = require("@aws-sdk/client-redshift-serverless"); // CommonJS import
|
|
28
28
|
* const client = new RedshiftServerlessClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // GetRecoveryPointRequest
|
|
30
30
|
* recoveryPointId: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetRecoveryPointCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface GetResourcePolicyCommandOutput extends GetResourcePolicyRespons
|
|
|
26
26
|
* import { RedshiftServerlessClient, GetResourcePolicyCommand } from "@aws-sdk/client-redshift-serverless"; // ES Modules import
|
|
27
27
|
* // const { RedshiftServerlessClient, GetResourcePolicyCommand } = require("@aws-sdk/client-redshift-serverless"); // CommonJS import
|
|
28
28
|
* const client = new RedshiftServerlessClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // GetResourcePolicyRequest
|
|
30
30
|
* resourceArn: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetResourcePolicyCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface GetSnapshotCommandOutput extends GetSnapshotResponse, __Metadat
|
|
|
26
26
|
* import { RedshiftServerlessClient, GetSnapshotCommand } from "@aws-sdk/client-redshift-serverless"; // ES Modules import
|
|
27
27
|
* // const { RedshiftServerlessClient, GetSnapshotCommand } = require("@aws-sdk/client-redshift-serverless"); // CommonJS import
|
|
28
28
|
* const client = new RedshiftServerlessClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // GetSnapshotRequest
|
|
30
30
|
* snapshotName: "STRING_VALUE",
|
|
31
31
|
* ownerAccount: "STRING_VALUE",
|
|
32
32
|
* snapshotArn: "STRING_VALUE",
|
|
@@ -26,7 +26,7 @@ export interface GetTableRestoreStatusCommandOutput extends GetTableRestoreStatu
|
|
|
26
26
|
* import { RedshiftServerlessClient, GetTableRestoreStatusCommand } from "@aws-sdk/client-redshift-serverless"; // ES Modules import
|
|
27
27
|
* // const { RedshiftServerlessClient, GetTableRestoreStatusCommand } = require("@aws-sdk/client-redshift-serverless"); // CommonJS import
|
|
28
28
|
* const client = new RedshiftServerlessClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // GetTableRestoreStatusRequest
|
|
30
30
|
* tableRestoreRequestId: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetTableRestoreStatusCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface GetUsageLimitCommandOutput extends GetUsageLimitResponse, __Met
|
|
|
26
26
|
* import { RedshiftServerlessClient, GetUsageLimitCommand } from "@aws-sdk/client-redshift-serverless"; // ES Modules import
|
|
27
27
|
* // const { RedshiftServerlessClient, GetUsageLimitCommand } = require("@aws-sdk/client-redshift-serverless"); // CommonJS import
|
|
28
28
|
* const client = new RedshiftServerlessClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // GetUsageLimitRequest
|
|
30
30
|
* usageLimitId: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetUsageLimitCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface GetWorkgroupCommandOutput extends GetWorkgroupResponse, __Metad
|
|
|
26
26
|
* import { RedshiftServerlessClient, GetWorkgroupCommand } from "@aws-sdk/client-redshift-serverless"; // ES Modules import
|
|
27
27
|
* // const { RedshiftServerlessClient, GetWorkgroupCommand } = require("@aws-sdk/client-redshift-serverless"); // CommonJS import
|
|
28
28
|
* const client = new RedshiftServerlessClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // GetWorkgroupRequest
|
|
30
30
|
* workgroupName: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetWorkgroupCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface ListEndpointAccessCommandOutput extends ListEndpointAccessRespo
|
|
|
26
26
|
* import { RedshiftServerlessClient, ListEndpointAccessCommand } from "@aws-sdk/client-redshift-serverless"; // ES Modules import
|
|
27
27
|
* // const { RedshiftServerlessClient, ListEndpointAccessCommand } = require("@aws-sdk/client-redshift-serverless"); // CommonJS import
|
|
28
28
|
* const client = new RedshiftServerlessClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListEndpointAccessRequest
|
|
30
30
|
* nextToken: "STRING_VALUE",
|
|
31
31
|
* maxResults: Number("int"),
|
|
32
32
|
* workgroupName: "STRING_VALUE",
|
|
@@ -26,7 +26,7 @@ export interface ListNamespacesCommandOutput extends ListNamespacesResponse, __M
|
|
|
26
26
|
* import { RedshiftServerlessClient, ListNamespacesCommand } from "@aws-sdk/client-redshift-serverless"; // ES Modules import
|
|
27
27
|
* // const { RedshiftServerlessClient, ListNamespacesCommand } = require("@aws-sdk/client-redshift-serverless"); // CommonJS import
|
|
28
28
|
* const client = new RedshiftServerlessClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListNamespacesRequest
|
|
30
30
|
* nextToken: "STRING_VALUE",
|
|
31
31
|
* maxResults: Number("int"),
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ export interface ListRecoveryPointsCommandOutput extends ListRecoveryPointsRespo
|
|
|
26
26
|
* import { RedshiftServerlessClient, ListRecoveryPointsCommand } from "@aws-sdk/client-redshift-serverless"; // ES Modules import
|
|
27
27
|
* // const { RedshiftServerlessClient, ListRecoveryPointsCommand } = require("@aws-sdk/client-redshift-serverless"); // CommonJS import
|
|
28
28
|
* const client = new RedshiftServerlessClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListRecoveryPointsRequest
|
|
30
30
|
* nextToken: "STRING_VALUE",
|
|
31
31
|
* maxResults: Number("int"),
|
|
32
32
|
* startTime: new Date("TIMESTAMP"),
|
|
@@ -26,7 +26,7 @@ export interface ListSnapshotsCommandOutput extends ListSnapshotsResponse, __Met
|
|
|
26
26
|
* import { RedshiftServerlessClient, ListSnapshotsCommand } from "@aws-sdk/client-redshift-serverless"; // ES Modules import
|
|
27
27
|
* // const { RedshiftServerlessClient, ListSnapshotsCommand } = require("@aws-sdk/client-redshift-serverless"); // CommonJS import
|
|
28
28
|
* const client = new RedshiftServerlessClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListSnapshotsRequest
|
|
30
30
|
* nextToken: "STRING_VALUE",
|
|
31
31
|
* maxResults: Number("int"),
|
|
32
32
|
* namespaceName: "STRING_VALUE",
|
|
@@ -26,7 +26,7 @@ export interface ListTableRestoreStatusCommandOutput extends ListTableRestoreSta
|
|
|
26
26
|
* import { RedshiftServerlessClient, ListTableRestoreStatusCommand } from "@aws-sdk/client-redshift-serverless"; // ES Modules import
|
|
27
27
|
* // const { RedshiftServerlessClient, ListTableRestoreStatusCommand } = require("@aws-sdk/client-redshift-serverless"); // CommonJS import
|
|
28
28
|
* const client = new RedshiftServerlessClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListTableRestoreStatusRequest
|
|
30
30
|
* nextToken: "STRING_VALUE",
|
|
31
31
|
* maxResults: Number("int"),
|
|
32
32
|
* namespaceName: "STRING_VALUE",
|
|
@@ -26,7 +26,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
26
26
|
* import { RedshiftServerlessClient, ListTagsForResourceCommand } from "@aws-sdk/client-redshift-serverless"; // ES Modules import
|
|
27
27
|
* // const { RedshiftServerlessClient, ListTagsForResourceCommand } = require("@aws-sdk/client-redshift-serverless"); // CommonJS import
|
|
28
28
|
* const client = new RedshiftServerlessClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListTagsForResourceRequest
|
|
30
30
|
* resourceArn: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new ListTagsForResourceCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface ListUsageLimitsCommandOutput extends ListUsageLimitsResponse, _
|
|
|
26
26
|
* import { RedshiftServerlessClient, ListUsageLimitsCommand } from "@aws-sdk/client-redshift-serverless"; // ES Modules import
|
|
27
27
|
* // const { RedshiftServerlessClient, ListUsageLimitsCommand } = require("@aws-sdk/client-redshift-serverless"); // CommonJS import
|
|
28
28
|
* const client = new RedshiftServerlessClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListUsageLimitsRequest
|
|
30
30
|
* resourceArn: "STRING_VALUE",
|
|
31
31
|
* usageType: "STRING_VALUE",
|
|
32
32
|
* nextToken: "STRING_VALUE",
|
|
@@ -26,7 +26,7 @@ export interface ListWorkgroupsCommandOutput extends ListWorkgroupsResponse, __M
|
|
|
26
26
|
* import { RedshiftServerlessClient, ListWorkgroupsCommand } from "@aws-sdk/client-redshift-serverless"; // ES Modules import
|
|
27
27
|
* // const { RedshiftServerlessClient, ListWorkgroupsCommand } = require("@aws-sdk/client-redshift-serverless"); // CommonJS import
|
|
28
28
|
* const client = new RedshiftServerlessClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListWorkgroupsRequest
|
|
30
30
|
* nextToken: "STRING_VALUE",
|
|
31
31
|
* maxResults: Number("int"),
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ export interface PutResourcePolicyCommandOutput extends PutResourcePolicyRespons
|
|
|
26
26
|
* import { RedshiftServerlessClient, PutResourcePolicyCommand } from "@aws-sdk/client-redshift-serverless"; // ES Modules import
|
|
27
27
|
* // const { RedshiftServerlessClient, PutResourcePolicyCommand } = require("@aws-sdk/client-redshift-serverless"); // CommonJS import
|
|
28
28
|
* const client = new RedshiftServerlessClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // PutResourcePolicyRequest
|
|
30
30
|
* resourceArn: "STRING_VALUE", // required
|
|
31
31
|
* policy: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ export interface RestoreFromRecoveryPointCommandOutput extends RestoreFromRecove
|
|
|
26
26
|
* import { RedshiftServerlessClient, RestoreFromRecoveryPointCommand } from "@aws-sdk/client-redshift-serverless"; // ES Modules import
|
|
27
27
|
* // const { RedshiftServerlessClient, RestoreFromRecoveryPointCommand } = require("@aws-sdk/client-redshift-serverless"); // CommonJS import
|
|
28
28
|
* const client = new RedshiftServerlessClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // RestoreFromRecoveryPointRequest
|
|
30
30
|
* recoveryPointId: "STRING_VALUE", // required
|
|
31
31
|
* namespaceName: "STRING_VALUE", // required
|
|
32
32
|
* workgroupName: "STRING_VALUE", // required
|
|
@@ -26,7 +26,7 @@ export interface RestoreFromSnapshotCommandOutput extends RestoreFromSnapshotRes
|
|
|
26
26
|
* import { RedshiftServerlessClient, RestoreFromSnapshotCommand } from "@aws-sdk/client-redshift-serverless"; // ES Modules import
|
|
27
27
|
* // const { RedshiftServerlessClient, RestoreFromSnapshotCommand } = require("@aws-sdk/client-redshift-serverless"); // CommonJS import
|
|
28
28
|
* const client = new RedshiftServerlessClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // RestoreFromSnapshotRequest
|
|
30
30
|
* namespaceName: "STRING_VALUE", // required
|
|
31
31
|
* workgroupName: "STRING_VALUE", // required
|
|
32
32
|
* snapshotName: "STRING_VALUE",
|
|
@@ -27,7 +27,7 @@ export interface RestoreTableFromSnapshotCommandOutput extends RestoreTableFromS
|
|
|
27
27
|
* import { RedshiftServerlessClient, RestoreTableFromSnapshotCommand } from "@aws-sdk/client-redshift-serverless"; // ES Modules import
|
|
28
28
|
* // const { RedshiftServerlessClient, RestoreTableFromSnapshotCommand } = require("@aws-sdk/client-redshift-serverless"); // CommonJS import
|
|
29
29
|
* const client = new RedshiftServerlessClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // RestoreTableFromSnapshotRequest
|
|
31
31
|
* namespaceName: "STRING_VALUE", // required
|
|
32
32
|
* workgroupName: "STRING_VALUE", // required
|
|
33
33
|
* snapshotName: "STRING_VALUE", // required
|
|
@@ -26,10 +26,10 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
26
26
|
* import { RedshiftServerlessClient, TagResourceCommand } from "@aws-sdk/client-redshift-serverless"; // ES Modules import
|
|
27
27
|
* // const { RedshiftServerlessClient, TagResourceCommand } = require("@aws-sdk/client-redshift-serverless"); // CommonJS import
|
|
28
28
|
* const client = new RedshiftServerlessClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // TagResourceRequest
|
|
30
30
|
* resourceArn: "STRING_VALUE", // required
|
|
31
|
-
* tags: [ // required
|
|
32
|
-
* {
|
|
31
|
+
* tags: [ // TagList // required
|
|
32
|
+
* { // Tag
|
|
33
33
|
* key: "STRING_VALUE", // required
|
|
34
34
|
* value: "STRING_VALUE", // required
|
|
35
35
|
* },
|
|
@@ -26,9 +26,9 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
26
26
|
* import { RedshiftServerlessClient, UntagResourceCommand } from "@aws-sdk/client-redshift-serverless"; // ES Modules import
|
|
27
27
|
* // const { RedshiftServerlessClient, UntagResourceCommand } = require("@aws-sdk/client-redshift-serverless"); // CommonJS import
|
|
28
28
|
* const client = new RedshiftServerlessClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // UntagResourceRequest
|
|
30
30
|
* resourceArn: "STRING_VALUE", // required
|
|
31
|
-
* tagKeys: [ // required
|
|
31
|
+
* tagKeys: [ // TagKeyList // required
|
|
32
32
|
* "STRING_VALUE",
|
|
33
33
|
* ],
|
|
34
34
|
* };
|
|
@@ -26,9 +26,9 @@ export interface UpdateEndpointAccessCommandOutput extends UpdateEndpointAccessR
|
|
|
26
26
|
* import { RedshiftServerlessClient, UpdateEndpointAccessCommand } from "@aws-sdk/client-redshift-serverless"; // ES Modules import
|
|
27
27
|
* // const { RedshiftServerlessClient, UpdateEndpointAccessCommand } = require("@aws-sdk/client-redshift-serverless"); // CommonJS import
|
|
28
28
|
* const client = new RedshiftServerlessClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // UpdateEndpointAccessRequest
|
|
30
30
|
* endpointName: "STRING_VALUE", // required
|
|
31
|
-
* vpcSecurityGroupIds: [
|
|
31
|
+
* vpcSecurityGroupIds: [ // VpcSecurityGroupIdList
|
|
32
32
|
* "STRING_VALUE",
|
|
33
33
|
* ],
|
|
34
34
|
* };
|
|
@@ -28,16 +28,16 @@ export interface UpdateNamespaceCommandOutput extends UpdateNamespaceResponse, _
|
|
|
28
28
|
* import { RedshiftServerlessClient, UpdateNamespaceCommand } from "@aws-sdk/client-redshift-serverless"; // ES Modules import
|
|
29
29
|
* // const { RedshiftServerlessClient, UpdateNamespaceCommand } = require("@aws-sdk/client-redshift-serverless"); // CommonJS import
|
|
30
30
|
* const client = new RedshiftServerlessClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // UpdateNamespaceRequest
|
|
32
32
|
* namespaceName: "STRING_VALUE", // required
|
|
33
33
|
* adminUserPassword: "STRING_VALUE",
|
|
34
34
|
* adminUsername: "STRING_VALUE",
|
|
35
35
|
* kmsKeyId: "STRING_VALUE",
|
|
36
36
|
* defaultIamRoleArn: "STRING_VALUE",
|
|
37
|
-
* iamRoles: [
|
|
37
|
+
* iamRoles: [ // IamRoleArnList
|
|
38
38
|
* "STRING_VALUE",
|
|
39
39
|
* ],
|
|
40
|
-
* logExports: [
|
|
40
|
+
* logExports: [ // LogExportList
|
|
41
41
|
* "STRING_VALUE",
|
|
42
42
|
* ],
|
|
43
43
|
* };
|
|
@@ -26,7 +26,7 @@ export interface UpdateSnapshotCommandOutput extends UpdateSnapshotResponse, __M
|
|
|
26
26
|
* import { RedshiftServerlessClient, UpdateSnapshotCommand } from "@aws-sdk/client-redshift-serverless"; // ES Modules import
|
|
27
27
|
* // const { RedshiftServerlessClient, UpdateSnapshotCommand } = require("@aws-sdk/client-redshift-serverless"); // CommonJS import
|
|
28
28
|
* const client = new RedshiftServerlessClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // UpdateSnapshotRequest
|
|
30
30
|
* snapshotName: "STRING_VALUE", // required
|
|
31
31
|
* retentionPeriod: Number("int"),
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ export interface UpdateUsageLimitCommandOutput extends UpdateUsageLimitResponse,
|
|
|
26
26
|
* import { RedshiftServerlessClient, UpdateUsageLimitCommand } from "@aws-sdk/client-redshift-serverless"; // ES Modules import
|
|
27
27
|
* // const { RedshiftServerlessClient, UpdateUsageLimitCommand } = require("@aws-sdk/client-redshift-serverless"); // CommonJS import
|
|
28
28
|
* const client = new RedshiftServerlessClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // UpdateUsageLimitRequest
|
|
30
30
|
* usageLimitId: "STRING_VALUE", // required
|
|
31
31
|
* amount: Number("long"),
|
|
32
32
|
* breachAction: "STRING_VALUE",
|
|
@@ -27,21 +27,21 @@ export interface UpdateWorkgroupCommandOutput extends UpdateWorkgroupResponse, _
|
|
|
27
27
|
* import { RedshiftServerlessClient, UpdateWorkgroupCommand } from "@aws-sdk/client-redshift-serverless"; // ES Modules import
|
|
28
28
|
* // const { RedshiftServerlessClient, UpdateWorkgroupCommand } = require("@aws-sdk/client-redshift-serverless"); // CommonJS import
|
|
29
29
|
* const client = new RedshiftServerlessClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // UpdateWorkgroupRequest
|
|
31
31
|
* workgroupName: "STRING_VALUE", // required
|
|
32
32
|
* baseCapacity: Number("int"),
|
|
33
33
|
* enhancedVpcRouting: true || false,
|
|
34
|
-
* configParameters: [
|
|
35
|
-
* {
|
|
34
|
+
* configParameters: [ // ConfigParameterList
|
|
35
|
+
* { // ConfigParameter
|
|
36
36
|
* parameterKey: "STRING_VALUE",
|
|
37
37
|
* parameterValue: "STRING_VALUE",
|
|
38
38
|
* },
|
|
39
39
|
* ],
|
|
40
40
|
* publiclyAccessible: true || false,
|
|
41
|
-
* subnetIds: [
|
|
41
|
+
* subnetIds: [ // SubnetIdList
|
|
42
42
|
* "STRING_VALUE",
|
|
43
43
|
* ],
|
|
44
|
-
* securityGroupIds: [
|
|
44
|
+
* securityGroupIds: [ // SecurityGroupIdList
|
|
45
45
|
* "STRING_VALUE",
|
|
46
46
|
* ],
|
|
47
47
|
* port: Number("int"),
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-redshift-serverless",
|
|
3
3
|
"description": "AWS SDK for JavaScript Redshift Serverless Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.301.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.301.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.300.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.301.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.296.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.296.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.296.0",
|