@aws-sdk/client-redshift-serverless 3.938.0 → 3.940.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-cjs/index.js +70 -0
- package/dist-es/models/enums.js +58 -0
- package/dist-es/models/models_0.js +1 -58
- package/dist-types/models/enums.d.ts +154 -0
- package/dist-types/models/models_0.d.ts +1 -155
- package/dist-types/ts3.4/models/enums.d.ts +79 -0
- package/dist-types/ts3.4/models/models_0.d.ts +15 -80
- package/package.json +5 -5
package/dist-cjs/index.js
CHANGED
|
@@ -3158,6 +3158,64 @@ const paginateListUsageLimits = core.createPaginator(RedshiftServerlessClient, L
|
|
|
3158
3158
|
|
|
3159
3159
|
const paginateListWorkgroups = core.createPaginator(RedshiftServerlessClient, ListWorkgroupsCommand, "nextToken", "nextToken", "maxResults");
|
|
3160
3160
|
|
|
3161
|
+
const SnapshotStatus = {
|
|
3162
|
+
AVAILABLE: "AVAILABLE",
|
|
3163
|
+
CANCELLED: "CANCELLED",
|
|
3164
|
+
COPYING: "COPYING",
|
|
3165
|
+
CREATING: "CREATING",
|
|
3166
|
+
DELETED: "DELETED",
|
|
3167
|
+
FAILED: "FAILED",
|
|
3168
|
+
};
|
|
3169
|
+
const LogExport = {
|
|
3170
|
+
CONNECTION_LOG: "connectionlog",
|
|
3171
|
+
USER_ACTIVITY_LOG: "useractivitylog",
|
|
3172
|
+
USER_LOG: "userlog",
|
|
3173
|
+
};
|
|
3174
|
+
const NamespaceStatus = {
|
|
3175
|
+
AVAILABLE: "AVAILABLE",
|
|
3176
|
+
DELETING: "DELETING",
|
|
3177
|
+
MODIFYING: "MODIFYING",
|
|
3178
|
+
};
|
|
3179
|
+
const OfferingType = {
|
|
3180
|
+
ALL_UPFRONT: "ALL_UPFRONT",
|
|
3181
|
+
NO_UPFRONT: "NO_UPFRONT",
|
|
3182
|
+
};
|
|
3183
|
+
const State = {
|
|
3184
|
+
ACTIVE: "ACTIVE",
|
|
3185
|
+
DISABLED: "DISABLED",
|
|
3186
|
+
};
|
|
3187
|
+
const UsageLimitBreachAction = {
|
|
3188
|
+
DEACTIVATE: "deactivate",
|
|
3189
|
+
EMIT_METRIC: "emit-metric",
|
|
3190
|
+
LOG: "log",
|
|
3191
|
+
};
|
|
3192
|
+
const UsageLimitPeriod = {
|
|
3193
|
+
DAILY: "daily",
|
|
3194
|
+
MONTHLY: "monthly",
|
|
3195
|
+
WEEKLY: "weekly",
|
|
3196
|
+
};
|
|
3197
|
+
const UsageLimitUsageType = {
|
|
3198
|
+
CROSS_REGION_DATASHARING: "cross-region-datasharing",
|
|
3199
|
+
SERVERLESS_COMPUTE: "serverless-compute",
|
|
3200
|
+
};
|
|
3201
|
+
const PerformanceTargetStatus = {
|
|
3202
|
+
DISABLED: "DISABLED",
|
|
3203
|
+
ENABLED: "ENABLED",
|
|
3204
|
+
};
|
|
3205
|
+
const WorkgroupStatus = {
|
|
3206
|
+
AVAILABLE: "AVAILABLE",
|
|
3207
|
+
CREATING: "CREATING",
|
|
3208
|
+
DELETING: "DELETING",
|
|
3209
|
+
MODIFYING: "MODIFYING",
|
|
3210
|
+
};
|
|
3211
|
+
const LakehouseIdcRegistration = {
|
|
3212
|
+
ASSOCIATE: "Associate",
|
|
3213
|
+
DISASSOCIATE: "Disassociate",
|
|
3214
|
+
};
|
|
3215
|
+
const LakehouseRegistration = {
|
|
3216
|
+
DEREGISTER: "Deregister",
|
|
3217
|
+
REGISTER: "Register",
|
|
3218
|
+
};
|
|
3161
3219
|
const ManagedWorkgroupStatus = {
|
|
3162
3220
|
AVAILABLE: "AVAILABLE",
|
|
3163
3221
|
CREATING: "CREATING",
|
|
@@ -3214,6 +3272,8 @@ exports.InsufficientCapacityException = InsufficientCapacityException$1;
|
|
|
3214
3272
|
exports.InternalServerException = InternalServerException$1;
|
|
3215
3273
|
exports.InvalidPaginationException = InvalidPaginationException$1;
|
|
3216
3274
|
exports.Ipv6CidrBlockNotFoundException = Ipv6CidrBlockNotFoundException$1;
|
|
3275
|
+
exports.LakehouseIdcRegistration = LakehouseIdcRegistration;
|
|
3276
|
+
exports.LakehouseRegistration = LakehouseRegistration;
|
|
3217
3277
|
exports.ListCustomDomainAssociationsCommand = ListCustomDomainAssociationsCommand;
|
|
3218
3278
|
exports.ListEndpointAccessCommand = ListEndpointAccessCommand;
|
|
3219
3279
|
exports.ListManagedWorkgroupsCommand = ListManagedWorkgroupsCommand;
|
|
@@ -3229,7 +3289,11 @@ exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
|
3229
3289
|
exports.ListTracksCommand = ListTracksCommand;
|
|
3230
3290
|
exports.ListUsageLimitsCommand = ListUsageLimitsCommand;
|
|
3231
3291
|
exports.ListWorkgroupsCommand = ListWorkgroupsCommand;
|
|
3292
|
+
exports.LogExport = LogExport;
|
|
3232
3293
|
exports.ManagedWorkgroupStatus = ManagedWorkgroupStatus;
|
|
3294
|
+
exports.NamespaceStatus = NamespaceStatus;
|
|
3295
|
+
exports.OfferingType = OfferingType;
|
|
3296
|
+
exports.PerformanceTargetStatus = PerformanceTargetStatus;
|
|
3233
3297
|
exports.PutResourcePolicyCommand = PutResourcePolicyCommand;
|
|
3234
3298
|
exports.RedshiftServerless = RedshiftServerless;
|
|
3235
3299
|
exports.RedshiftServerlessClient = RedshiftServerlessClient;
|
|
@@ -3240,6 +3304,8 @@ exports.RestoreFromSnapshotCommand = RestoreFromSnapshotCommand;
|
|
|
3240
3304
|
exports.RestoreTableFromRecoveryPointCommand = RestoreTableFromRecoveryPointCommand;
|
|
3241
3305
|
exports.RestoreTableFromSnapshotCommand = RestoreTableFromSnapshotCommand;
|
|
3242
3306
|
exports.ServiceQuotaExceededException = ServiceQuotaExceededException$1;
|
|
3307
|
+
exports.SnapshotStatus = SnapshotStatus;
|
|
3308
|
+
exports.State = State;
|
|
3243
3309
|
exports.TagResourceCommand = TagResourceCommand;
|
|
3244
3310
|
exports.ThrottlingException = ThrottlingException$1;
|
|
3245
3311
|
exports.TooManyTagsException = TooManyTagsException$1;
|
|
@@ -3253,7 +3319,11 @@ exports.UpdateSnapshotCommand = UpdateSnapshotCommand;
|
|
|
3253
3319
|
exports.UpdateSnapshotCopyConfigurationCommand = UpdateSnapshotCopyConfigurationCommand;
|
|
3254
3320
|
exports.UpdateUsageLimitCommand = UpdateUsageLimitCommand;
|
|
3255
3321
|
exports.UpdateWorkgroupCommand = UpdateWorkgroupCommand;
|
|
3322
|
+
exports.UsageLimitBreachAction = UsageLimitBreachAction;
|
|
3323
|
+
exports.UsageLimitPeriod = UsageLimitPeriod;
|
|
3324
|
+
exports.UsageLimitUsageType = UsageLimitUsageType;
|
|
3256
3325
|
exports.ValidationException = ValidationException$1;
|
|
3326
|
+
exports.WorkgroupStatus = WorkgroupStatus;
|
|
3257
3327
|
exports.paginateListCustomDomainAssociations = paginateListCustomDomainAssociations;
|
|
3258
3328
|
exports.paginateListEndpointAccess = paginateListEndpointAccess;
|
|
3259
3329
|
exports.paginateListManagedWorkgroups = paginateListManagedWorkgroups;
|
package/dist-es/models/enums.js
CHANGED
|
@@ -1,3 +1,61 @@
|
|
|
1
|
+
export const SnapshotStatus = {
|
|
2
|
+
AVAILABLE: "AVAILABLE",
|
|
3
|
+
CANCELLED: "CANCELLED",
|
|
4
|
+
COPYING: "COPYING",
|
|
5
|
+
CREATING: "CREATING",
|
|
6
|
+
DELETED: "DELETED",
|
|
7
|
+
FAILED: "FAILED",
|
|
8
|
+
};
|
|
9
|
+
export const LogExport = {
|
|
10
|
+
CONNECTION_LOG: "connectionlog",
|
|
11
|
+
USER_ACTIVITY_LOG: "useractivitylog",
|
|
12
|
+
USER_LOG: "userlog",
|
|
13
|
+
};
|
|
14
|
+
export const NamespaceStatus = {
|
|
15
|
+
AVAILABLE: "AVAILABLE",
|
|
16
|
+
DELETING: "DELETING",
|
|
17
|
+
MODIFYING: "MODIFYING",
|
|
18
|
+
};
|
|
19
|
+
export const OfferingType = {
|
|
20
|
+
ALL_UPFRONT: "ALL_UPFRONT",
|
|
21
|
+
NO_UPFRONT: "NO_UPFRONT",
|
|
22
|
+
};
|
|
23
|
+
export const State = {
|
|
24
|
+
ACTIVE: "ACTIVE",
|
|
25
|
+
DISABLED: "DISABLED",
|
|
26
|
+
};
|
|
27
|
+
export const UsageLimitBreachAction = {
|
|
28
|
+
DEACTIVATE: "deactivate",
|
|
29
|
+
EMIT_METRIC: "emit-metric",
|
|
30
|
+
LOG: "log",
|
|
31
|
+
};
|
|
32
|
+
export const UsageLimitPeriod = {
|
|
33
|
+
DAILY: "daily",
|
|
34
|
+
MONTHLY: "monthly",
|
|
35
|
+
WEEKLY: "weekly",
|
|
36
|
+
};
|
|
37
|
+
export const UsageLimitUsageType = {
|
|
38
|
+
CROSS_REGION_DATASHARING: "cross-region-datasharing",
|
|
39
|
+
SERVERLESS_COMPUTE: "serverless-compute",
|
|
40
|
+
};
|
|
41
|
+
export const PerformanceTargetStatus = {
|
|
42
|
+
DISABLED: "DISABLED",
|
|
43
|
+
ENABLED: "ENABLED",
|
|
44
|
+
};
|
|
45
|
+
export const WorkgroupStatus = {
|
|
46
|
+
AVAILABLE: "AVAILABLE",
|
|
47
|
+
CREATING: "CREATING",
|
|
48
|
+
DELETING: "DELETING",
|
|
49
|
+
MODIFYING: "MODIFYING",
|
|
50
|
+
};
|
|
51
|
+
export const LakehouseIdcRegistration = {
|
|
52
|
+
ASSOCIATE: "Associate",
|
|
53
|
+
DISASSOCIATE: "Disassociate",
|
|
54
|
+
};
|
|
55
|
+
export const LakehouseRegistration = {
|
|
56
|
+
DEREGISTER: "Deregister",
|
|
57
|
+
REGISTER: "Register",
|
|
58
|
+
};
|
|
1
59
|
export const ManagedWorkgroupStatus = {
|
|
2
60
|
AVAILABLE: "AVAILABLE",
|
|
3
61
|
CREATING: "CREATING",
|
|
@@ -1,58 +1 @@
|
|
|
1
|
-
export
|
|
2
|
-
AVAILABLE: "AVAILABLE",
|
|
3
|
-
CANCELLED: "CANCELLED",
|
|
4
|
-
COPYING: "COPYING",
|
|
5
|
-
CREATING: "CREATING",
|
|
6
|
-
DELETED: "DELETED",
|
|
7
|
-
FAILED: "FAILED",
|
|
8
|
-
};
|
|
9
|
-
export const LogExport = {
|
|
10
|
-
CONNECTION_LOG: "connectionlog",
|
|
11
|
-
USER_ACTIVITY_LOG: "useractivitylog",
|
|
12
|
-
USER_LOG: "userlog",
|
|
13
|
-
};
|
|
14
|
-
export const NamespaceStatus = {
|
|
15
|
-
AVAILABLE: "AVAILABLE",
|
|
16
|
-
DELETING: "DELETING",
|
|
17
|
-
MODIFYING: "MODIFYING",
|
|
18
|
-
};
|
|
19
|
-
export const OfferingType = {
|
|
20
|
-
ALL_UPFRONT: "ALL_UPFRONT",
|
|
21
|
-
NO_UPFRONT: "NO_UPFRONT",
|
|
22
|
-
};
|
|
23
|
-
export const State = {
|
|
24
|
-
ACTIVE: "ACTIVE",
|
|
25
|
-
DISABLED: "DISABLED",
|
|
26
|
-
};
|
|
27
|
-
export const UsageLimitBreachAction = {
|
|
28
|
-
DEACTIVATE: "deactivate",
|
|
29
|
-
EMIT_METRIC: "emit-metric",
|
|
30
|
-
LOG: "log",
|
|
31
|
-
};
|
|
32
|
-
export const UsageLimitPeriod = {
|
|
33
|
-
DAILY: "daily",
|
|
34
|
-
MONTHLY: "monthly",
|
|
35
|
-
WEEKLY: "weekly",
|
|
36
|
-
};
|
|
37
|
-
export const UsageLimitUsageType = {
|
|
38
|
-
CROSS_REGION_DATASHARING: "cross-region-datasharing",
|
|
39
|
-
SERVERLESS_COMPUTE: "serverless-compute",
|
|
40
|
-
};
|
|
41
|
-
export const PerformanceTargetStatus = {
|
|
42
|
-
DISABLED: "DISABLED",
|
|
43
|
-
ENABLED: "ENABLED",
|
|
44
|
-
};
|
|
45
|
-
export const WorkgroupStatus = {
|
|
46
|
-
AVAILABLE: "AVAILABLE",
|
|
47
|
-
CREATING: "CREATING",
|
|
48
|
-
DELETING: "DELETING",
|
|
49
|
-
MODIFYING: "MODIFYING",
|
|
50
|
-
};
|
|
51
|
-
export const LakehouseIdcRegistration = {
|
|
52
|
-
ASSOCIATE: "Associate",
|
|
53
|
-
DISASSOCIATE: "Disassociate",
|
|
54
|
-
};
|
|
55
|
-
export const LakehouseRegistration = {
|
|
56
|
-
DEREGISTER: "Deregister",
|
|
57
|
-
REGISTER: "Register",
|
|
58
|
-
};
|
|
1
|
+
export {};
|
|
@@ -1,3 +1,157 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @public
|
|
3
|
+
* @enum
|
|
4
|
+
*/
|
|
5
|
+
export declare const SnapshotStatus: {
|
|
6
|
+
readonly AVAILABLE: "AVAILABLE";
|
|
7
|
+
readonly CANCELLED: "CANCELLED";
|
|
8
|
+
readonly COPYING: "COPYING";
|
|
9
|
+
readonly CREATING: "CREATING";
|
|
10
|
+
readonly DELETED: "DELETED";
|
|
11
|
+
readonly FAILED: "FAILED";
|
|
12
|
+
};
|
|
13
|
+
/**
|
|
14
|
+
* @public
|
|
15
|
+
*/
|
|
16
|
+
export type SnapshotStatus = (typeof SnapshotStatus)[keyof typeof SnapshotStatus];
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
* @enum
|
|
20
|
+
*/
|
|
21
|
+
export declare const LogExport: {
|
|
22
|
+
readonly CONNECTION_LOG: "connectionlog";
|
|
23
|
+
readonly USER_ACTIVITY_LOG: "useractivitylog";
|
|
24
|
+
readonly USER_LOG: "userlog";
|
|
25
|
+
};
|
|
26
|
+
/**
|
|
27
|
+
* @public
|
|
28
|
+
*/
|
|
29
|
+
export type LogExport = (typeof LogExport)[keyof typeof LogExport];
|
|
30
|
+
/**
|
|
31
|
+
* @public
|
|
32
|
+
* @enum
|
|
33
|
+
*/
|
|
34
|
+
export declare const NamespaceStatus: {
|
|
35
|
+
readonly AVAILABLE: "AVAILABLE";
|
|
36
|
+
readonly DELETING: "DELETING";
|
|
37
|
+
readonly MODIFYING: "MODIFYING";
|
|
38
|
+
};
|
|
39
|
+
/**
|
|
40
|
+
* @public
|
|
41
|
+
*/
|
|
42
|
+
export type NamespaceStatus = (typeof NamespaceStatus)[keyof typeof NamespaceStatus];
|
|
43
|
+
/**
|
|
44
|
+
* @public
|
|
45
|
+
* @enum
|
|
46
|
+
*/
|
|
47
|
+
export declare const OfferingType: {
|
|
48
|
+
readonly ALL_UPFRONT: "ALL_UPFRONT";
|
|
49
|
+
readonly NO_UPFRONT: "NO_UPFRONT";
|
|
50
|
+
};
|
|
51
|
+
/**
|
|
52
|
+
* @public
|
|
53
|
+
*/
|
|
54
|
+
export type OfferingType = (typeof OfferingType)[keyof typeof OfferingType];
|
|
55
|
+
/**
|
|
56
|
+
* @public
|
|
57
|
+
* @enum
|
|
58
|
+
*/
|
|
59
|
+
export declare const State: {
|
|
60
|
+
readonly ACTIVE: "ACTIVE";
|
|
61
|
+
readonly DISABLED: "DISABLED";
|
|
62
|
+
};
|
|
63
|
+
/**
|
|
64
|
+
* @public
|
|
65
|
+
*/
|
|
66
|
+
export type State = (typeof State)[keyof typeof State];
|
|
67
|
+
/**
|
|
68
|
+
* @public
|
|
69
|
+
* @enum
|
|
70
|
+
*/
|
|
71
|
+
export declare const UsageLimitBreachAction: {
|
|
72
|
+
readonly DEACTIVATE: "deactivate";
|
|
73
|
+
readonly EMIT_METRIC: "emit-metric";
|
|
74
|
+
readonly LOG: "log";
|
|
75
|
+
};
|
|
76
|
+
/**
|
|
77
|
+
* @public
|
|
78
|
+
*/
|
|
79
|
+
export type UsageLimitBreachAction = (typeof UsageLimitBreachAction)[keyof typeof UsageLimitBreachAction];
|
|
80
|
+
/**
|
|
81
|
+
* @public
|
|
82
|
+
* @enum
|
|
83
|
+
*/
|
|
84
|
+
export declare const UsageLimitPeriod: {
|
|
85
|
+
readonly DAILY: "daily";
|
|
86
|
+
readonly MONTHLY: "monthly";
|
|
87
|
+
readonly WEEKLY: "weekly";
|
|
88
|
+
};
|
|
89
|
+
/**
|
|
90
|
+
* @public
|
|
91
|
+
*/
|
|
92
|
+
export type UsageLimitPeriod = (typeof UsageLimitPeriod)[keyof typeof UsageLimitPeriod];
|
|
93
|
+
/**
|
|
94
|
+
* @public
|
|
95
|
+
* @enum
|
|
96
|
+
*/
|
|
97
|
+
export declare const UsageLimitUsageType: {
|
|
98
|
+
readonly CROSS_REGION_DATASHARING: "cross-region-datasharing";
|
|
99
|
+
readonly SERVERLESS_COMPUTE: "serverless-compute";
|
|
100
|
+
};
|
|
101
|
+
/**
|
|
102
|
+
* @public
|
|
103
|
+
*/
|
|
104
|
+
export type UsageLimitUsageType = (typeof UsageLimitUsageType)[keyof typeof UsageLimitUsageType];
|
|
105
|
+
/**
|
|
106
|
+
* @public
|
|
107
|
+
* @enum
|
|
108
|
+
*/
|
|
109
|
+
export declare const PerformanceTargetStatus: {
|
|
110
|
+
readonly DISABLED: "DISABLED";
|
|
111
|
+
readonly ENABLED: "ENABLED";
|
|
112
|
+
};
|
|
113
|
+
/**
|
|
114
|
+
* @public
|
|
115
|
+
*/
|
|
116
|
+
export type PerformanceTargetStatus = (typeof PerformanceTargetStatus)[keyof typeof PerformanceTargetStatus];
|
|
117
|
+
/**
|
|
118
|
+
* @public
|
|
119
|
+
* @enum
|
|
120
|
+
*/
|
|
121
|
+
export declare const WorkgroupStatus: {
|
|
122
|
+
readonly AVAILABLE: "AVAILABLE";
|
|
123
|
+
readonly CREATING: "CREATING";
|
|
124
|
+
readonly DELETING: "DELETING";
|
|
125
|
+
readonly MODIFYING: "MODIFYING";
|
|
126
|
+
};
|
|
127
|
+
/**
|
|
128
|
+
* @public
|
|
129
|
+
*/
|
|
130
|
+
export type WorkgroupStatus = (typeof WorkgroupStatus)[keyof typeof WorkgroupStatus];
|
|
131
|
+
/**
|
|
132
|
+
* @public
|
|
133
|
+
* @enum
|
|
134
|
+
*/
|
|
135
|
+
export declare const LakehouseIdcRegistration: {
|
|
136
|
+
readonly ASSOCIATE: "Associate";
|
|
137
|
+
readonly DISASSOCIATE: "Disassociate";
|
|
138
|
+
};
|
|
139
|
+
/**
|
|
140
|
+
* @public
|
|
141
|
+
*/
|
|
142
|
+
export type LakehouseIdcRegistration = (typeof LakehouseIdcRegistration)[keyof typeof LakehouseIdcRegistration];
|
|
143
|
+
/**
|
|
144
|
+
* @public
|
|
145
|
+
* @enum
|
|
146
|
+
*/
|
|
147
|
+
export declare const LakehouseRegistration: {
|
|
148
|
+
readonly DEREGISTER: "Deregister";
|
|
149
|
+
readonly REGISTER: "Register";
|
|
150
|
+
};
|
|
151
|
+
/**
|
|
152
|
+
* @public
|
|
153
|
+
*/
|
|
154
|
+
export type LakehouseRegistration = (typeof LakehouseRegistration)[keyof typeof LakehouseRegistration];
|
|
1
155
|
/**
|
|
2
156
|
* @public
|
|
3
157
|
* @enum
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ManagedWorkgroupStatus } from "./enums";
|
|
1
|
+
import { LakehouseIdcRegistration, LakehouseRegistration, LogExport, ManagedWorkgroupStatus, NamespaceStatus, OfferingType, PerformanceTargetStatus, SnapshotStatus, State, UsageLimitBreachAction, UsageLimitPeriod, UsageLimitUsageType, WorkgroupStatus } from "./enums";
|
|
2
2
|
/**
|
|
3
3
|
* <p>An object that represents the custom domain name association.</p>
|
|
4
4
|
* @public
|
|
@@ -82,22 +82,6 @@ export interface ConvertRecoveryPointToSnapshotRequest {
|
|
|
82
82
|
*/
|
|
83
83
|
tags?: Tag[] | undefined;
|
|
84
84
|
}
|
|
85
|
-
/**
|
|
86
|
-
* @public
|
|
87
|
-
* @enum
|
|
88
|
-
*/
|
|
89
|
-
export declare const SnapshotStatus: {
|
|
90
|
-
readonly AVAILABLE: "AVAILABLE";
|
|
91
|
-
readonly CANCELLED: "CANCELLED";
|
|
92
|
-
readonly COPYING: "COPYING";
|
|
93
|
-
readonly CREATING: "CREATING";
|
|
94
|
-
readonly DELETED: "DELETED";
|
|
95
|
-
readonly FAILED: "FAILED";
|
|
96
|
-
};
|
|
97
|
-
/**
|
|
98
|
-
* @public
|
|
99
|
-
*/
|
|
100
|
-
export type SnapshotStatus = (typeof SnapshotStatus)[keyof typeof SnapshotStatus];
|
|
101
85
|
/**
|
|
102
86
|
* <p>A snapshot object that contains databases.</p>
|
|
103
87
|
* @public
|
|
@@ -433,19 +417,6 @@ export interface CreateEndpointAccessResponse {
|
|
|
433
417
|
*/
|
|
434
418
|
endpoint?: EndpointAccess | undefined;
|
|
435
419
|
}
|
|
436
|
-
/**
|
|
437
|
-
* @public
|
|
438
|
-
* @enum
|
|
439
|
-
*/
|
|
440
|
-
export declare const LogExport: {
|
|
441
|
-
readonly CONNECTION_LOG: "connectionlog";
|
|
442
|
-
readonly USER_ACTIVITY_LOG: "useractivitylog";
|
|
443
|
-
readonly USER_LOG: "userlog";
|
|
444
|
-
};
|
|
445
|
-
/**
|
|
446
|
-
* @public
|
|
447
|
-
*/
|
|
448
|
-
export type LogExport = (typeof LogExport)[keyof typeof LogExport];
|
|
449
420
|
/**
|
|
450
421
|
* @public
|
|
451
422
|
*/
|
|
@@ -511,19 +482,6 @@ export interface CreateNamespaceRequest {
|
|
|
511
482
|
*/
|
|
512
483
|
redshiftIdcApplicationArn?: string | undefined;
|
|
513
484
|
}
|
|
514
|
-
/**
|
|
515
|
-
* @public
|
|
516
|
-
* @enum
|
|
517
|
-
*/
|
|
518
|
-
export declare const NamespaceStatus: {
|
|
519
|
-
readonly AVAILABLE: "AVAILABLE";
|
|
520
|
-
readonly DELETING: "DELETING";
|
|
521
|
-
readonly MODIFYING: "MODIFYING";
|
|
522
|
-
};
|
|
523
|
-
/**
|
|
524
|
-
* @public
|
|
525
|
-
*/
|
|
526
|
-
export type NamespaceStatus = (typeof NamespaceStatus)[keyof typeof NamespaceStatus];
|
|
527
485
|
/**
|
|
528
486
|
* <p>A collection of database objects and users.</p>
|
|
529
487
|
* @public
|
|
@@ -635,18 +593,6 @@ export interface CreateReservationRequest {
|
|
|
635
593
|
*/
|
|
636
594
|
clientToken?: string | undefined;
|
|
637
595
|
}
|
|
638
|
-
/**
|
|
639
|
-
* @public
|
|
640
|
-
* @enum
|
|
641
|
-
*/
|
|
642
|
-
export declare const OfferingType: {
|
|
643
|
-
readonly ALL_UPFRONT: "ALL_UPFRONT";
|
|
644
|
-
readonly NO_UPFRONT: "NO_UPFRONT";
|
|
645
|
-
};
|
|
646
|
-
/**
|
|
647
|
-
* @public
|
|
648
|
-
*/
|
|
649
|
-
export type OfferingType = (typeof OfferingType)[keyof typeof OfferingType];
|
|
650
596
|
/**
|
|
651
597
|
* <p>The class of offering for the reservation. The offering class determines the payment schedule for the reservation.</p>
|
|
652
598
|
* @public
|
|
@@ -888,18 +834,6 @@ export interface CreateScheduledActionRequest {
|
|
|
888
834
|
*/
|
|
889
835
|
endTime?: Date | undefined;
|
|
890
836
|
}
|
|
891
|
-
/**
|
|
892
|
-
* @public
|
|
893
|
-
* @enum
|
|
894
|
-
*/
|
|
895
|
-
export declare const State: {
|
|
896
|
-
readonly ACTIVE: "ACTIVE";
|
|
897
|
-
readonly DISABLED: "DISABLED";
|
|
898
|
-
};
|
|
899
|
-
/**
|
|
900
|
-
* @public
|
|
901
|
-
*/
|
|
902
|
-
export type State = (typeof State)[keyof typeof State];
|
|
903
837
|
/**
|
|
904
838
|
* <p>The returned scheduled action object.</p>
|
|
905
839
|
* @public
|
|
@@ -1077,44 +1011,6 @@ export interface CreateSnapshotCopyConfigurationResponse {
|
|
|
1077
1011
|
*/
|
|
1078
1012
|
snapshotCopyConfiguration: SnapshotCopyConfiguration | undefined;
|
|
1079
1013
|
}
|
|
1080
|
-
/**
|
|
1081
|
-
* @public
|
|
1082
|
-
* @enum
|
|
1083
|
-
*/
|
|
1084
|
-
export declare const UsageLimitBreachAction: {
|
|
1085
|
-
readonly DEACTIVATE: "deactivate";
|
|
1086
|
-
readonly EMIT_METRIC: "emit-metric";
|
|
1087
|
-
readonly LOG: "log";
|
|
1088
|
-
};
|
|
1089
|
-
/**
|
|
1090
|
-
* @public
|
|
1091
|
-
*/
|
|
1092
|
-
export type UsageLimitBreachAction = (typeof UsageLimitBreachAction)[keyof typeof UsageLimitBreachAction];
|
|
1093
|
-
/**
|
|
1094
|
-
* @public
|
|
1095
|
-
* @enum
|
|
1096
|
-
*/
|
|
1097
|
-
export declare const UsageLimitPeriod: {
|
|
1098
|
-
readonly DAILY: "daily";
|
|
1099
|
-
readonly MONTHLY: "monthly";
|
|
1100
|
-
readonly WEEKLY: "weekly";
|
|
1101
|
-
};
|
|
1102
|
-
/**
|
|
1103
|
-
* @public
|
|
1104
|
-
*/
|
|
1105
|
-
export type UsageLimitPeriod = (typeof UsageLimitPeriod)[keyof typeof UsageLimitPeriod];
|
|
1106
|
-
/**
|
|
1107
|
-
* @public
|
|
1108
|
-
* @enum
|
|
1109
|
-
*/
|
|
1110
|
-
export declare const UsageLimitUsageType: {
|
|
1111
|
-
readonly CROSS_REGION_DATASHARING: "cross-region-datasharing";
|
|
1112
|
-
readonly SERVERLESS_COMPUTE: "serverless-compute";
|
|
1113
|
-
};
|
|
1114
|
-
/**
|
|
1115
|
-
* @public
|
|
1116
|
-
*/
|
|
1117
|
-
export type UsageLimitUsageType = (typeof UsageLimitUsageType)[keyof typeof UsageLimitUsageType];
|
|
1118
1014
|
/**
|
|
1119
1015
|
* @public
|
|
1120
1016
|
*/
|
|
@@ -1196,18 +1092,6 @@ export interface CreateUsageLimitResponse {
|
|
|
1196
1092
|
*/
|
|
1197
1093
|
usageLimit?: UsageLimit | undefined;
|
|
1198
1094
|
}
|
|
1199
|
-
/**
|
|
1200
|
-
* @public
|
|
1201
|
-
* @enum
|
|
1202
|
-
*/
|
|
1203
|
-
export declare const PerformanceTargetStatus: {
|
|
1204
|
-
readonly DISABLED: "DISABLED";
|
|
1205
|
-
readonly ENABLED: "ENABLED";
|
|
1206
|
-
};
|
|
1207
|
-
/**
|
|
1208
|
-
* @public
|
|
1209
|
-
*/
|
|
1210
|
-
export type PerformanceTargetStatus = (typeof PerformanceTargetStatus)[keyof typeof PerformanceTargetStatus];
|
|
1211
1095
|
/**
|
|
1212
1096
|
* <p>An object that represents the price performance target settings for the workgroup.</p>
|
|
1213
1097
|
* @public
|
|
@@ -1320,20 +1204,6 @@ export interface Endpoint {
|
|
|
1320
1204
|
*/
|
|
1321
1205
|
vpcEndpoints?: VpcEndpoint[] | undefined;
|
|
1322
1206
|
}
|
|
1323
|
-
/**
|
|
1324
|
-
* @public
|
|
1325
|
-
* @enum
|
|
1326
|
-
*/
|
|
1327
|
-
export declare const WorkgroupStatus: {
|
|
1328
|
-
readonly AVAILABLE: "AVAILABLE";
|
|
1329
|
-
readonly CREATING: "CREATING";
|
|
1330
|
-
readonly DELETING: "DELETING";
|
|
1331
|
-
readonly MODIFYING: "MODIFYING";
|
|
1332
|
-
};
|
|
1333
|
-
/**
|
|
1334
|
-
* @public
|
|
1335
|
-
*/
|
|
1336
|
-
export type WorkgroupStatus = (typeof WorkgroupStatus)[keyof typeof WorkgroupStatus];
|
|
1337
1207
|
/**
|
|
1338
1208
|
* <p>The collection of computing resources from which an endpoint is created.</p>
|
|
1339
1209
|
* @public
|
|
@@ -2245,30 +2115,6 @@ export interface GetWorkgroupResponse {
|
|
|
2245
2115
|
*/
|
|
2246
2116
|
workgroup: Workgroup | undefined;
|
|
2247
2117
|
}
|
|
2248
|
-
/**
|
|
2249
|
-
* @public
|
|
2250
|
-
* @enum
|
|
2251
|
-
*/
|
|
2252
|
-
export declare const LakehouseIdcRegistration: {
|
|
2253
|
-
readonly ASSOCIATE: "Associate";
|
|
2254
|
-
readonly DISASSOCIATE: "Disassociate";
|
|
2255
|
-
};
|
|
2256
|
-
/**
|
|
2257
|
-
* @public
|
|
2258
|
-
*/
|
|
2259
|
-
export type LakehouseIdcRegistration = (typeof LakehouseIdcRegistration)[keyof typeof LakehouseIdcRegistration];
|
|
2260
|
-
/**
|
|
2261
|
-
* @public
|
|
2262
|
-
* @enum
|
|
2263
|
-
*/
|
|
2264
|
-
export declare const LakehouseRegistration: {
|
|
2265
|
-
readonly DEREGISTER: "Deregister";
|
|
2266
|
-
readonly REGISTER: "Register";
|
|
2267
|
-
};
|
|
2268
|
-
/**
|
|
2269
|
-
* @public
|
|
2270
|
-
*/
|
|
2271
|
-
export type LakehouseRegistration = (typeof LakehouseRegistration)[keyof typeof LakehouseRegistration];
|
|
2272
2118
|
/**
|
|
2273
2119
|
* @public
|
|
2274
2120
|
*/
|
|
@@ -1,3 +1,82 @@
|
|
|
1
|
+
export declare const SnapshotStatus: {
|
|
2
|
+
readonly AVAILABLE: "AVAILABLE";
|
|
3
|
+
readonly CANCELLED: "CANCELLED";
|
|
4
|
+
readonly COPYING: "COPYING";
|
|
5
|
+
readonly CREATING: "CREATING";
|
|
6
|
+
readonly DELETED: "DELETED";
|
|
7
|
+
readonly FAILED: "FAILED";
|
|
8
|
+
};
|
|
9
|
+
export type SnapshotStatus =
|
|
10
|
+
(typeof SnapshotStatus)[keyof typeof SnapshotStatus];
|
|
11
|
+
export declare const LogExport: {
|
|
12
|
+
readonly CONNECTION_LOG: "connectionlog";
|
|
13
|
+
readonly USER_ACTIVITY_LOG: "useractivitylog";
|
|
14
|
+
readonly USER_LOG: "userlog";
|
|
15
|
+
};
|
|
16
|
+
export type LogExport = (typeof LogExport)[keyof typeof LogExport];
|
|
17
|
+
export declare const NamespaceStatus: {
|
|
18
|
+
readonly AVAILABLE: "AVAILABLE";
|
|
19
|
+
readonly DELETING: "DELETING";
|
|
20
|
+
readonly MODIFYING: "MODIFYING";
|
|
21
|
+
};
|
|
22
|
+
export type NamespaceStatus =
|
|
23
|
+
(typeof NamespaceStatus)[keyof typeof NamespaceStatus];
|
|
24
|
+
export declare const OfferingType: {
|
|
25
|
+
readonly ALL_UPFRONT: "ALL_UPFRONT";
|
|
26
|
+
readonly NO_UPFRONT: "NO_UPFRONT";
|
|
27
|
+
};
|
|
28
|
+
export type OfferingType = (typeof OfferingType)[keyof typeof OfferingType];
|
|
29
|
+
export declare const State: {
|
|
30
|
+
readonly ACTIVE: "ACTIVE";
|
|
31
|
+
readonly DISABLED: "DISABLED";
|
|
32
|
+
};
|
|
33
|
+
export type State = (typeof State)[keyof typeof State];
|
|
34
|
+
export declare const UsageLimitBreachAction: {
|
|
35
|
+
readonly DEACTIVATE: "deactivate";
|
|
36
|
+
readonly EMIT_METRIC: "emit-metric";
|
|
37
|
+
readonly LOG: "log";
|
|
38
|
+
};
|
|
39
|
+
export type UsageLimitBreachAction =
|
|
40
|
+
(typeof UsageLimitBreachAction)[keyof typeof UsageLimitBreachAction];
|
|
41
|
+
export declare const UsageLimitPeriod: {
|
|
42
|
+
readonly DAILY: "daily";
|
|
43
|
+
readonly MONTHLY: "monthly";
|
|
44
|
+
readonly WEEKLY: "weekly";
|
|
45
|
+
};
|
|
46
|
+
export type UsageLimitPeriod =
|
|
47
|
+
(typeof UsageLimitPeriod)[keyof typeof UsageLimitPeriod];
|
|
48
|
+
export declare const UsageLimitUsageType: {
|
|
49
|
+
readonly CROSS_REGION_DATASHARING: "cross-region-datasharing";
|
|
50
|
+
readonly SERVERLESS_COMPUTE: "serverless-compute";
|
|
51
|
+
};
|
|
52
|
+
export type UsageLimitUsageType =
|
|
53
|
+
(typeof UsageLimitUsageType)[keyof typeof UsageLimitUsageType];
|
|
54
|
+
export declare const PerformanceTargetStatus: {
|
|
55
|
+
readonly DISABLED: "DISABLED";
|
|
56
|
+
readonly ENABLED: "ENABLED";
|
|
57
|
+
};
|
|
58
|
+
export type PerformanceTargetStatus =
|
|
59
|
+
(typeof PerformanceTargetStatus)[keyof typeof PerformanceTargetStatus];
|
|
60
|
+
export declare const WorkgroupStatus: {
|
|
61
|
+
readonly AVAILABLE: "AVAILABLE";
|
|
62
|
+
readonly CREATING: "CREATING";
|
|
63
|
+
readonly DELETING: "DELETING";
|
|
64
|
+
readonly MODIFYING: "MODIFYING";
|
|
65
|
+
};
|
|
66
|
+
export type WorkgroupStatus =
|
|
67
|
+
(typeof WorkgroupStatus)[keyof typeof WorkgroupStatus];
|
|
68
|
+
export declare const LakehouseIdcRegistration: {
|
|
69
|
+
readonly ASSOCIATE: "Associate";
|
|
70
|
+
readonly DISASSOCIATE: "Disassociate";
|
|
71
|
+
};
|
|
72
|
+
export type LakehouseIdcRegistration =
|
|
73
|
+
(typeof LakehouseIdcRegistration)[keyof typeof LakehouseIdcRegistration];
|
|
74
|
+
export declare const LakehouseRegistration: {
|
|
75
|
+
readonly DEREGISTER: "Deregister";
|
|
76
|
+
readonly REGISTER: "Register";
|
|
77
|
+
};
|
|
78
|
+
export type LakehouseRegistration =
|
|
79
|
+
(typeof LakehouseRegistration)[keyof typeof LakehouseRegistration];
|
|
1
80
|
export declare const ManagedWorkgroupStatus: {
|
|
2
81
|
readonly AVAILABLE: "AVAILABLE";
|
|
3
82
|
readonly CREATING: "CREATING";
|
|
@@ -1,4 +1,18 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import {
|
|
2
|
+
LakehouseIdcRegistration,
|
|
3
|
+
LakehouseRegistration,
|
|
4
|
+
LogExport,
|
|
5
|
+
ManagedWorkgroupStatus,
|
|
6
|
+
NamespaceStatus,
|
|
7
|
+
OfferingType,
|
|
8
|
+
PerformanceTargetStatus,
|
|
9
|
+
SnapshotStatus,
|
|
10
|
+
State,
|
|
11
|
+
UsageLimitBreachAction,
|
|
12
|
+
UsageLimitPeriod,
|
|
13
|
+
UsageLimitUsageType,
|
|
14
|
+
WorkgroupStatus,
|
|
15
|
+
} from "./enums";
|
|
2
16
|
export interface Association {
|
|
3
17
|
customDomainCertificateArn?: string | undefined;
|
|
4
18
|
customDomainCertificateExpiryTime?: Date | undefined;
|
|
@@ -19,16 +33,6 @@ export interface ConvertRecoveryPointToSnapshotRequest {
|
|
|
19
33
|
retentionPeriod?: number | undefined;
|
|
20
34
|
tags?: Tag[] | undefined;
|
|
21
35
|
}
|
|
22
|
-
export declare const SnapshotStatus: {
|
|
23
|
-
readonly AVAILABLE: "AVAILABLE";
|
|
24
|
-
readonly CANCELLED: "CANCELLED";
|
|
25
|
-
readonly COPYING: "COPYING";
|
|
26
|
-
readonly CREATING: "CREATING";
|
|
27
|
-
readonly DELETED: "DELETED";
|
|
28
|
-
readonly FAILED: "FAILED";
|
|
29
|
-
};
|
|
30
|
-
export type SnapshotStatus =
|
|
31
|
-
(typeof SnapshotStatus)[keyof typeof SnapshotStatus];
|
|
32
36
|
export interface Snapshot {
|
|
33
37
|
namespaceName?: string | undefined;
|
|
34
38
|
namespaceArn?: string | undefined;
|
|
@@ -105,12 +109,6 @@ export interface EndpointAccess {
|
|
|
105
109
|
export interface CreateEndpointAccessResponse {
|
|
106
110
|
endpoint?: EndpointAccess | undefined;
|
|
107
111
|
}
|
|
108
|
-
export declare const LogExport: {
|
|
109
|
-
readonly CONNECTION_LOG: "connectionlog";
|
|
110
|
-
readonly USER_ACTIVITY_LOG: "useractivitylog";
|
|
111
|
-
readonly USER_LOG: "userlog";
|
|
112
|
-
};
|
|
113
|
-
export type LogExport = (typeof LogExport)[keyof typeof LogExport];
|
|
114
112
|
export interface CreateNamespaceRequest {
|
|
115
113
|
namespaceName: string | undefined;
|
|
116
114
|
adminUsername?: string | undefined;
|
|
@@ -125,13 +123,6 @@ export interface CreateNamespaceRequest {
|
|
|
125
123
|
adminPasswordSecretKmsKeyId?: string | undefined;
|
|
126
124
|
redshiftIdcApplicationArn?: string | undefined;
|
|
127
125
|
}
|
|
128
|
-
export declare const NamespaceStatus: {
|
|
129
|
-
readonly AVAILABLE: "AVAILABLE";
|
|
130
|
-
readonly DELETING: "DELETING";
|
|
131
|
-
readonly MODIFYING: "MODIFYING";
|
|
132
|
-
};
|
|
133
|
-
export type NamespaceStatus =
|
|
134
|
-
(typeof NamespaceStatus)[keyof typeof NamespaceStatus];
|
|
135
126
|
export interface Namespace {
|
|
136
127
|
namespaceArn?: string | undefined;
|
|
137
128
|
namespaceId?: string | undefined;
|
|
@@ -157,11 +148,6 @@ export interface CreateReservationRequest {
|
|
|
157
148
|
offeringId: string | undefined;
|
|
158
149
|
clientToken?: string | undefined;
|
|
159
150
|
}
|
|
160
|
-
export declare const OfferingType: {
|
|
161
|
-
readonly ALL_UPFRONT: "ALL_UPFRONT";
|
|
162
|
-
readonly NO_UPFRONT: "NO_UPFRONT";
|
|
163
|
-
};
|
|
164
|
-
export type OfferingType = (typeof OfferingType)[keyof typeof OfferingType];
|
|
165
151
|
export interface ReservationOffering {
|
|
166
152
|
offeringId?: string | undefined;
|
|
167
153
|
duration?: number | undefined;
|
|
@@ -242,11 +228,6 @@ export interface CreateScheduledActionRequest {
|
|
|
242
228
|
startTime?: Date | undefined;
|
|
243
229
|
endTime?: Date | undefined;
|
|
244
230
|
}
|
|
245
|
-
export declare const State: {
|
|
246
|
-
readonly ACTIVE: "ACTIVE";
|
|
247
|
-
readonly DISABLED: "DISABLED";
|
|
248
|
-
};
|
|
249
|
-
export type State = (typeof State)[keyof typeof State];
|
|
250
231
|
export interface ScheduledActionResponse {
|
|
251
232
|
scheduledActionName?: string | undefined;
|
|
252
233
|
schedule?: Schedule | undefined;
|
|
@@ -289,26 +270,6 @@ export interface SnapshotCopyConfiguration {
|
|
|
289
270
|
export interface CreateSnapshotCopyConfigurationResponse {
|
|
290
271
|
snapshotCopyConfiguration: SnapshotCopyConfiguration | undefined;
|
|
291
272
|
}
|
|
292
|
-
export declare const UsageLimitBreachAction: {
|
|
293
|
-
readonly DEACTIVATE: "deactivate";
|
|
294
|
-
readonly EMIT_METRIC: "emit-metric";
|
|
295
|
-
readonly LOG: "log";
|
|
296
|
-
};
|
|
297
|
-
export type UsageLimitBreachAction =
|
|
298
|
-
(typeof UsageLimitBreachAction)[keyof typeof UsageLimitBreachAction];
|
|
299
|
-
export declare const UsageLimitPeriod: {
|
|
300
|
-
readonly DAILY: "daily";
|
|
301
|
-
readonly MONTHLY: "monthly";
|
|
302
|
-
readonly WEEKLY: "weekly";
|
|
303
|
-
};
|
|
304
|
-
export type UsageLimitPeriod =
|
|
305
|
-
(typeof UsageLimitPeriod)[keyof typeof UsageLimitPeriod];
|
|
306
|
-
export declare const UsageLimitUsageType: {
|
|
307
|
-
readonly CROSS_REGION_DATASHARING: "cross-region-datasharing";
|
|
308
|
-
readonly SERVERLESS_COMPUTE: "serverless-compute";
|
|
309
|
-
};
|
|
310
|
-
export type UsageLimitUsageType =
|
|
311
|
-
(typeof UsageLimitUsageType)[keyof typeof UsageLimitUsageType];
|
|
312
273
|
export interface CreateUsageLimitRequest {
|
|
313
274
|
resourceArn: string | undefined;
|
|
314
275
|
usageType: UsageLimitUsageType | undefined;
|
|
@@ -328,12 +289,6 @@ export interface UsageLimit {
|
|
|
328
289
|
export interface CreateUsageLimitResponse {
|
|
329
290
|
usageLimit?: UsageLimit | undefined;
|
|
330
291
|
}
|
|
331
|
-
export declare const PerformanceTargetStatus: {
|
|
332
|
-
readonly DISABLED: "DISABLED";
|
|
333
|
-
readonly ENABLED: "ENABLED";
|
|
334
|
-
};
|
|
335
|
-
export type PerformanceTargetStatus =
|
|
336
|
-
(typeof PerformanceTargetStatus)[keyof typeof PerformanceTargetStatus];
|
|
337
292
|
export interface PerformanceTarget {
|
|
338
293
|
status?: PerformanceTargetStatus | undefined;
|
|
339
294
|
level?: number | undefined;
|
|
@@ -359,14 +314,6 @@ export interface Endpoint {
|
|
|
359
314
|
port?: number | undefined;
|
|
360
315
|
vpcEndpoints?: VpcEndpoint[] | undefined;
|
|
361
316
|
}
|
|
362
|
-
export declare const WorkgroupStatus: {
|
|
363
|
-
readonly AVAILABLE: "AVAILABLE";
|
|
364
|
-
readonly CREATING: "CREATING";
|
|
365
|
-
readonly DELETING: "DELETING";
|
|
366
|
-
readonly MODIFYING: "MODIFYING";
|
|
367
|
-
};
|
|
368
|
-
export type WorkgroupStatus =
|
|
369
|
-
(typeof WorkgroupStatus)[keyof typeof WorkgroupStatus];
|
|
370
317
|
export interface Workgroup {
|
|
371
318
|
workgroupId?: string | undefined;
|
|
372
319
|
workgroupArn?: string | undefined;
|
|
@@ -603,18 +550,6 @@ export interface GetWorkgroupRequest {
|
|
|
603
550
|
export interface GetWorkgroupResponse {
|
|
604
551
|
workgroup: Workgroup | undefined;
|
|
605
552
|
}
|
|
606
|
-
export declare const LakehouseIdcRegistration: {
|
|
607
|
-
readonly ASSOCIATE: "Associate";
|
|
608
|
-
readonly DISASSOCIATE: "Disassociate";
|
|
609
|
-
};
|
|
610
|
-
export type LakehouseIdcRegistration =
|
|
611
|
-
(typeof LakehouseIdcRegistration)[keyof typeof LakehouseIdcRegistration];
|
|
612
|
-
export declare const LakehouseRegistration: {
|
|
613
|
-
readonly DEREGISTER: "Deregister";
|
|
614
|
-
readonly REGISTER: "Register";
|
|
615
|
-
};
|
|
616
|
-
export type LakehouseRegistration =
|
|
617
|
-
(typeof LakehouseRegistration)[keyof typeof LakehouseRegistration];
|
|
618
553
|
export interface ListCustomDomainAssociationsRequest {
|
|
619
554
|
nextToken?: string | undefined;
|
|
620
555
|
maxResults?: number | undefined;
|
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.940.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-redshift-serverless",
|
|
@@ -20,17 +20,17 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.940.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.940.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.936.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.936.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.936.0",
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.940.0",
|
|
29
29
|
"@aws-sdk/region-config-resolver": "3.936.0",
|
|
30
30
|
"@aws-sdk/types": "3.936.0",
|
|
31
31
|
"@aws-sdk/util-endpoints": "3.936.0",
|
|
32
32
|
"@aws-sdk/util-user-agent-browser": "3.936.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.940.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.4.3",
|
|
35
35
|
"@smithy/core": "^3.18.5",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.3.6",
|