@aws-sdk/client-firehose 3.687.0 → 3.691.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 +81 -22
- package/dist-es/models/models_0.js +32 -15
- package/dist-es/protocols/Aws_json1_1.js +36 -0
- package/dist-types/commands/CreateDeliveryStreamCommand.d.ts +70 -12
- package/dist-types/commands/DeleteDeliveryStreamCommand.d.ts +8 -8
- package/dist-types/commands/DescribeDeliveryStreamCommand.d.ts +76 -8
- package/dist-types/commands/ListDeliveryStreamsCommand.d.ts +6 -6
- package/dist-types/commands/ListTagsForDeliveryStreamCommand.d.ts +1 -1
- package/dist-types/commands/PutRecordBatchCommand.d.ts +13 -8
- package/dist-types/commands/PutRecordCommand.d.ts +15 -10
- package/dist-types/commands/StartDeliveryStreamEncryptionCommand.d.ts +12 -12
- package/dist-types/commands/StopDeliveryStreamEncryptionCommand.d.ts +5 -5
- package/dist-types/commands/TagDeliveryStreamCommand.d.ts +3 -3
- package/dist-types/commands/UntagDeliveryStreamCommand.d.ts +1 -1
- package/dist-types/commands/UpdateDestinationCommand.d.ts +17 -3
- package/dist-types/models/models_0.d.ts +1169 -695
- package/dist-types/ts3.4/models/models_0.d.ts +644 -485
- package/package.json +7 -7
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
2
|
import { FirehoseServiceException as __BaseException } from "./FirehoseServiceException";
|
|
3
3
|
export interface AmazonOpenSearchServerlessBufferingHints {
|
|
4
|
-
IntervalInSeconds?: number;
|
|
5
|
-
SizeInMBs?: number;
|
|
4
|
+
IntervalInSeconds?: number | undefined;
|
|
5
|
+
SizeInMBs?: number | undefined;
|
|
6
6
|
}
|
|
7
7
|
export interface CloudWatchLoggingOptions {
|
|
8
|
-
Enabled?: boolean;
|
|
9
|
-
LogGroupName?: string;
|
|
10
|
-
LogStreamName?: string;
|
|
8
|
+
Enabled?: boolean | undefined;
|
|
9
|
+
LogGroupName?: string | undefined;
|
|
10
|
+
LogStreamName?: string | undefined;
|
|
11
11
|
}
|
|
12
12
|
export declare const ProcessorParameterName: {
|
|
13
13
|
readonly BUFFER_INTERVAL_IN_SECONDS: "BufferIntervalInSeconds";
|
|
@@ -39,14 +39,14 @@ export declare const ProcessorType: {
|
|
|
39
39
|
export type ProcessorType = (typeof ProcessorType)[keyof typeof ProcessorType];
|
|
40
40
|
export interface Processor {
|
|
41
41
|
Type: ProcessorType | undefined;
|
|
42
|
-
Parameters?: ProcessorParameter[];
|
|
42
|
+
Parameters?: ProcessorParameter[] | undefined;
|
|
43
43
|
}
|
|
44
44
|
export interface ProcessingConfiguration {
|
|
45
|
-
Enabled?: boolean;
|
|
46
|
-
Processors?: Processor[];
|
|
45
|
+
Enabled?: boolean | undefined;
|
|
46
|
+
Processors?: Processor[] | undefined;
|
|
47
47
|
}
|
|
48
48
|
export interface AmazonOpenSearchServerlessRetryOptions {
|
|
49
|
-
DurationInSeconds?: number;
|
|
49
|
+
DurationInSeconds?: number | undefined;
|
|
50
50
|
}
|
|
51
51
|
export declare const AmazonOpenSearchServerlessS3BackupMode: {
|
|
52
52
|
readonly AllDocuments: "AllDocuments";
|
|
@@ -55,8 +55,8 @@ export declare const AmazonOpenSearchServerlessS3BackupMode: {
|
|
|
55
55
|
export type AmazonOpenSearchServerlessS3BackupMode =
|
|
56
56
|
(typeof AmazonOpenSearchServerlessS3BackupMode)[keyof typeof AmazonOpenSearchServerlessS3BackupMode];
|
|
57
57
|
export interface BufferingHints {
|
|
58
|
-
SizeInMBs?: number;
|
|
59
|
-
IntervalInSeconds?: number;
|
|
58
|
+
SizeInMBs?: number | undefined;
|
|
59
|
+
IntervalInSeconds?: number | undefined;
|
|
60
60
|
}
|
|
61
61
|
export declare const CompressionFormat: {
|
|
62
62
|
readonly GZIP: "GZIP";
|
|
@@ -76,18 +76,18 @@ export declare const NoEncryptionConfig: {
|
|
|
76
76
|
export type NoEncryptionConfig =
|
|
77
77
|
(typeof NoEncryptionConfig)[keyof typeof NoEncryptionConfig];
|
|
78
78
|
export interface EncryptionConfiguration {
|
|
79
|
-
NoEncryptionConfig?: NoEncryptionConfig;
|
|
80
|
-
KMSEncryptionConfig?: KMSEncryptionConfig;
|
|
79
|
+
NoEncryptionConfig?: NoEncryptionConfig | undefined;
|
|
80
|
+
KMSEncryptionConfig?: KMSEncryptionConfig | undefined;
|
|
81
81
|
}
|
|
82
82
|
export interface S3DestinationConfiguration {
|
|
83
83
|
RoleARN: string | undefined;
|
|
84
84
|
BucketARN: string | undefined;
|
|
85
|
-
Prefix?: string;
|
|
86
|
-
ErrorOutputPrefix?: string;
|
|
87
|
-
BufferingHints?: BufferingHints;
|
|
88
|
-
CompressionFormat?: CompressionFormat;
|
|
89
|
-
EncryptionConfiguration?: EncryptionConfiguration;
|
|
90
|
-
CloudWatchLoggingOptions?: CloudWatchLoggingOptions;
|
|
85
|
+
Prefix?: string | undefined;
|
|
86
|
+
ErrorOutputPrefix?: string | undefined;
|
|
87
|
+
BufferingHints?: BufferingHints | undefined;
|
|
88
|
+
CompressionFormat?: CompressionFormat | undefined;
|
|
89
|
+
EncryptionConfiguration?: EncryptionConfiguration | undefined;
|
|
90
|
+
CloudWatchLoggingOptions?: CloudWatchLoggingOptions | undefined;
|
|
91
91
|
}
|
|
92
92
|
export interface VpcConfiguration {
|
|
93
93
|
SubnetIds: string[] | undefined;
|
|
@@ -96,25 +96,25 @@ export interface VpcConfiguration {
|
|
|
96
96
|
}
|
|
97
97
|
export interface AmazonOpenSearchServerlessDestinationConfiguration {
|
|
98
98
|
RoleARN: string | undefined;
|
|
99
|
-
CollectionEndpoint?: string;
|
|
99
|
+
CollectionEndpoint?: string | undefined;
|
|
100
100
|
IndexName: string | undefined;
|
|
101
|
-
BufferingHints?: AmazonOpenSearchServerlessBufferingHints;
|
|
102
|
-
RetryOptions?: AmazonOpenSearchServerlessRetryOptions;
|
|
103
|
-
S3BackupMode?: AmazonOpenSearchServerlessS3BackupMode;
|
|
101
|
+
BufferingHints?: AmazonOpenSearchServerlessBufferingHints | undefined;
|
|
102
|
+
RetryOptions?: AmazonOpenSearchServerlessRetryOptions | undefined;
|
|
103
|
+
S3BackupMode?: AmazonOpenSearchServerlessS3BackupMode | undefined;
|
|
104
104
|
S3Configuration: S3DestinationConfiguration | undefined;
|
|
105
|
-
ProcessingConfiguration?: ProcessingConfiguration;
|
|
106
|
-
CloudWatchLoggingOptions?: CloudWatchLoggingOptions;
|
|
107
|
-
VpcConfiguration?: VpcConfiguration;
|
|
105
|
+
ProcessingConfiguration?: ProcessingConfiguration | undefined;
|
|
106
|
+
CloudWatchLoggingOptions?: CloudWatchLoggingOptions | undefined;
|
|
107
|
+
VpcConfiguration?: VpcConfiguration | undefined;
|
|
108
108
|
}
|
|
109
109
|
export interface S3DestinationDescription {
|
|
110
110
|
RoleARN: string | undefined;
|
|
111
111
|
BucketARN: string | undefined;
|
|
112
|
-
Prefix?: string;
|
|
113
|
-
ErrorOutputPrefix?: string;
|
|
112
|
+
Prefix?: string | undefined;
|
|
113
|
+
ErrorOutputPrefix?: string | undefined;
|
|
114
114
|
BufferingHints: BufferingHints | undefined;
|
|
115
115
|
CompressionFormat: CompressionFormat | undefined;
|
|
116
116
|
EncryptionConfiguration: EncryptionConfiguration | undefined;
|
|
117
|
-
CloudWatchLoggingOptions?: CloudWatchLoggingOptions;
|
|
117
|
+
CloudWatchLoggingOptions?: CloudWatchLoggingOptions | undefined;
|
|
118
118
|
}
|
|
119
119
|
export interface VpcConfigurationDescription {
|
|
120
120
|
SubnetIds: string[] | undefined;
|
|
@@ -123,40 +123,40 @@ export interface VpcConfigurationDescription {
|
|
|
123
123
|
VpcId: string | undefined;
|
|
124
124
|
}
|
|
125
125
|
export interface AmazonOpenSearchServerlessDestinationDescription {
|
|
126
|
-
RoleARN?: string;
|
|
127
|
-
CollectionEndpoint?: string;
|
|
128
|
-
IndexName?: string;
|
|
129
|
-
BufferingHints?: AmazonOpenSearchServerlessBufferingHints;
|
|
130
|
-
RetryOptions?: AmazonOpenSearchServerlessRetryOptions;
|
|
131
|
-
S3BackupMode?: AmazonOpenSearchServerlessS3BackupMode;
|
|
132
|
-
S3DestinationDescription?: S3DestinationDescription;
|
|
133
|
-
ProcessingConfiguration?: ProcessingConfiguration;
|
|
134
|
-
CloudWatchLoggingOptions?: CloudWatchLoggingOptions;
|
|
135
|
-
VpcConfigurationDescription?: VpcConfigurationDescription;
|
|
126
|
+
RoleARN?: string | undefined;
|
|
127
|
+
CollectionEndpoint?: string | undefined;
|
|
128
|
+
IndexName?: string | undefined;
|
|
129
|
+
BufferingHints?: AmazonOpenSearchServerlessBufferingHints | undefined;
|
|
130
|
+
RetryOptions?: AmazonOpenSearchServerlessRetryOptions | undefined;
|
|
131
|
+
S3BackupMode?: AmazonOpenSearchServerlessS3BackupMode | undefined;
|
|
132
|
+
S3DestinationDescription?: S3DestinationDescription | undefined;
|
|
133
|
+
ProcessingConfiguration?: ProcessingConfiguration | undefined;
|
|
134
|
+
CloudWatchLoggingOptions?: CloudWatchLoggingOptions | undefined;
|
|
135
|
+
VpcConfigurationDescription?: VpcConfigurationDescription | undefined;
|
|
136
136
|
}
|
|
137
137
|
export interface S3DestinationUpdate {
|
|
138
|
-
RoleARN?: string;
|
|
139
|
-
BucketARN?: string;
|
|
140
|
-
Prefix?: string;
|
|
141
|
-
ErrorOutputPrefix?: string;
|
|
142
|
-
BufferingHints?: BufferingHints;
|
|
143
|
-
CompressionFormat?: CompressionFormat;
|
|
144
|
-
EncryptionConfiguration?: EncryptionConfiguration;
|
|
145
|
-
CloudWatchLoggingOptions?: CloudWatchLoggingOptions;
|
|
138
|
+
RoleARN?: string | undefined;
|
|
139
|
+
BucketARN?: string | undefined;
|
|
140
|
+
Prefix?: string | undefined;
|
|
141
|
+
ErrorOutputPrefix?: string | undefined;
|
|
142
|
+
BufferingHints?: BufferingHints | undefined;
|
|
143
|
+
CompressionFormat?: CompressionFormat | undefined;
|
|
144
|
+
EncryptionConfiguration?: EncryptionConfiguration | undefined;
|
|
145
|
+
CloudWatchLoggingOptions?: CloudWatchLoggingOptions | undefined;
|
|
146
146
|
}
|
|
147
147
|
export interface AmazonOpenSearchServerlessDestinationUpdate {
|
|
148
|
-
RoleARN?: string;
|
|
149
|
-
CollectionEndpoint?: string;
|
|
150
|
-
IndexName?: string;
|
|
151
|
-
BufferingHints?: AmazonOpenSearchServerlessBufferingHints;
|
|
152
|
-
RetryOptions?: AmazonOpenSearchServerlessRetryOptions;
|
|
153
|
-
S3Update?: S3DestinationUpdate;
|
|
154
|
-
ProcessingConfiguration?: ProcessingConfiguration;
|
|
155
|
-
CloudWatchLoggingOptions?: CloudWatchLoggingOptions;
|
|
148
|
+
RoleARN?: string | undefined;
|
|
149
|
+
CollectionEndpoint?: string | undefined;
|
|
150
|
+
IndexName?: string | undefined;
|
|
151
|
+
BufferingHints?: AmazonOpenSearchServerlessBufferingHints | undefined;
|
|
152
|
+
RetryOptions?: AmazonOpenSearchServerlessRetryOptions | undefined;
|
|
153
|
+
S3Update?: S3DestinationUpdate | undefined;
|
|
154
|
+
ProcessingConfiguration?: ProcessingConfiguration | undefined;
|
|
155
|
+
CloudWatchLoggingOptions?: CloudWatchLoggingOptions | undefined;
|
|
156
156
|
}
|
|
157
157
|
export interface AmazonopensearchserviceBufferingHints {
|
|
158
|
-
IntervalInSeconds?: number;
|
|
159
|
-
SizeInMBs?: number;
|
|
158
|
+
IntervalInSeconds?: number | undefined;
|
|
159
|
+
SizeInMBs?: number | undefined;
|
|
160
160
|
}
|
|
161
161
|
export declare const DefaultDocumentIdFormat: {
|
|
162
162
|
readonly FIREHOSE_DEFAULT: "FIREHOSE_DEFAULT";
|
|
@@ -177,7 +177,7 @@ export declare const AmazonopensearchserviceIndexRotationPeriod: {
|
|
|
177
177
|
export type AmazonopensearchserviceIndexRotationPeriod =
|
|
178
178
|
(typeof AmazonopensearchserviceIndexRotationPeriod)[keyof typeof AmazonopensearchserviceIndexRotationPeriod];
|
|
179
179
|
export interface AmazonopensearchserviceRetryOptions {
|
|
180
|
-
DurationInSeconds?: number;
|
|
180
|
+
DurationInSeconds?: number | undefined;
|
|
181
181
|
}
|
|
182
182
|
export declare const AmazonopensearchserviceS3BackupMode: {
|
|
183
183
|
readonly AllDocuments: "AllDocuments";
|
|
@@ -187,49 +187,49 @@ export type AmazonopensearchserviceS3BackupMode =
|
|
|
187
187
|
(typeof AmazonopensearchserviceS3BackupMode)[keyof typeof AmazonopensearchserviceS3BackupMode];
|
|
188
188
|
export interface AmazonopensearchserviceDestinationConfiguration {
|
|
189
189
|
RoleARN: string | undefined;
|
|
190
|
-
DomainARN?: string;
|
|
191
|
-
ClusterEndpoint?: string;
|
|
190
|
+
DomainARN?: string | undefined;
|
|
191
|
+
ClusterEndpoint?: string | undefined;
|
|
192
192
|
IndexName: string | undefined;
|
|
193
|
-
TypeName?: string;
|
|
194
|
-
IndexRotationPeriod?: AmazonopensearchserviceIndexRotationPeriod;
|
|
195
|
-
BufferingHints?: AmazonopensearchserviceBufferingHints;
|
|
196
|
-
RetryOptions?: AmazonopensearchserviceRetryOptions;
|
|
197
|
-
S3BackupMode?: AmazonopensearchserviceS3BackupMode;
|
|
193
|
+
TypeName?: string | undefined;
|
|
194
|
+
IndexRotationPeriod?: AmazonopensearchserviceIndexRotationPeriod | undefined;
|
|
195
|
+
BufferingHints?: AmazonopensearchserviceBufferingHints | undefined;
|
|
196
|
+
RetryOptions?: AmazonopensearchserviceRetryOptions | undefined;
|
|
197
|
+
S3BackupMode?: AmazonopensearchserviceS3BackupMode | undefined;
|
|
198
198
|
S3Configuration: S3DestinationConfiguration | undefined;
|
|
199
|
-
ProcessingConfiguration?: ProcessingConfiguration;
|
|
200
|
-
CloudWatchLoggingOptions?: CloudWatchLoggingOptions;
|
|
201
|
-
VpcConfiguration?: VpcConfiguration;
|
|
202
|
-
DocumentIdOptions?: DocumentIdOptions;
|
|
199
|
+
ProcessingConfiguration?: ProcessingConfiguration | undefined;
|
|
200
|
+
CloudWatchLoggingOptions?: CloudWatchLoggingOptions | undefined;
|
|
201
|
+
VpcConfiguration?: VpcConfiguration | undefined;
|
|
202
|
+
DocumentIdOptions?: DocumentIdOptions | undefined;
|
|
203
203
|
}
|
|
204
204
|
export interface AmazonopensearchserviceDestinationDescription {
|
|
205
|
-
RoleARN?: string;
|
|
206
|
-
DomainARN?: string;
|
|
207
|
-
ClusterEndpoint?: string;
|
|
208
|
-
IndexName?: string;
|
|
209
|
-
TypeName?: string;
|
|
210
|
-
IndexRotationPeriod?: AmazonopensearchserviceIndexRotationPeriod;
|
|
211
|
-
BufferingHints?: AmazonopensearchserviceBufferingHints;
|
|
212
|
-
RetryOptions?: AmazonopensearchserviceRetryOptions;
|
|
213
|
-
S3BackupMode?: AmazonopensearchserviceS3BackupMode;
|
|
214
|
-
S3DestinationDescription?: S3DestinationDescription;
|
|
215
|
-
ProcessingConfiguration?: ProcessingConfiguration;
|
|
216
|
-
CloudWatchLoggingOptions?: CloudWatchLoggingOptions;
|
|
217
|
-
VpcConfigurationDescription?: VpcConfigurationDescription;
|
|
218
|
-
DocumentIdOptions?: DocumentIdOptions;
|
|
205
|
+
RoleARN?: string | undefined;
|
|
206
|
+
DomainARN?: string | undefined;
|
|
207
|
+
ClusterEndpoint?: string | undefined;
|
|
208
|
+
IndexName?: string | undefined;
|
|
209
|
+
TypeName?: string | undefined;
|
|
210
|
+
IndexRotationPeriod?: AmazonopensearchserviceIndexRotationPeriod | undefined;
|
|
211
|
+
BufferingHints?: AmazonopensearchserviceBufferingHints | undefined;
|
|
212
|
+
RetryOptions?: AmazonopensearchserviceRetryOptions | undefined;
|
|
213
|
+
S3BackupMode?: AmazonopensearchserviceS3BackupMode | undefined;
|
|
214
|
+
S3DestinationDescription?: S3DestinationDescription | undefined;
|
|
215
|
+
ProcessingConfiguration?: ProcessingConfiguration | undefined;
|
|
216
|
+
CloudWatchLoggingOptions?: CloudWatchLoggingOptions | undefined;
|
|
217
|
+
VpcConfigurationDescription?: VpcConfigurationDescription | undefined;
|
|
218
|
+
DocumentIdOptions?: DocumentIdOptions | undefined;
|
|
219
219
|
}
|
|
220
220
|
export interface AmazonopensearchserviceDestinationUpdate {
|
|
221
|
-
RoleARN?: string;
|
|
222
|
-
DomainARN?: string;
|
|
223
|
-
ClusterEndpoint?: string;
|
|
224
|
-
IndexName?: string;
|
|
225
|
-
TypeName?: string;
|
|
226
|
-
IndexRotationPeriod?: AmazonopensearchserviceIndexRotationPeriod;
|
|
227
|
-
BufferingHints?: AmazonopensearchserviceBufferingHints;
|
|
228
|
-
RetryOptions?: AmazonopensearchserviceRetryOptions;
|
|
229
|
-
S3Update?: S3DestinationUpdate;
|
|
230
|
-
ProcessingConfiguration?: ProcessingConfiguration;
|
|
231
|
-
CloudWatchLoggingOptions?: CloudWatchLoggingOptions;
|
|
232
|
-
DocumentIdOptions?: DocumentIdOptions;
|
|
221
|
+
RoleARN?: string | undefined;
|
|
222
|
+
DomainARN?: string | undefined;
|
|
223
|
+
ClusterEndpoint?: string | undefined;
|
|
224
|
+
IndexName?: string | undefined;
|
|
225
|
+
TypeName?: string | undefined;
|
|
226
|
+
IndexRotationPeriod?: AmazonopensearchserviceIndexRotationPeriod | undefined;
|
|
227
|
+
BufferingHints?: AmazonopensearchserviceBufferingHints | undefined;
|
|
228
|
+
RetryOptions?: AmazonopensearchserviceRetryOptions | undefined;
|
|
229
|
+
S3Update?: S3DestinationUpdate | undefined;
|
|
230
|
+
ProcessingConfiguration?: ProcessingConfiguration | undefined;
|
|
231
|
+
CloudWatchLoggingOptions?: CloudWatchLoggingOptions | undefined;
|
|
232
|
+
DocumentIdOptions?: DocumentIdOptions | undefined;
|
|
233
233
|
}
|
|
234
234
|
export declare const Connectivity: {
|
|
235
235
|
readonly PRIVATE: "PRIVATE";
|
|
@@ -241,7 +241,8 @@ export interface AuthenticationConfiguration {
|
|
|
241
241
|
Connectivity: Connectivity | undefined;
|
|
242
242
|
}
|
|
243
243
|
export interface CatalogConfiguration {
|
|
244
|
-
CatalogARN?: string;
|
|
244
|
+
CatalogARN?: string | undefined;
|
|
245
|
+
WarehouseLocation?: string | undefined;
|
|
245
246
|
}
|
|
246
247
|
export declare class ConcurrentModificationException extends __BaseException {
|
|
247
248
|
readonly name: "ConcurrentModificationException";
|
|
@@ -261,8 +262,56 @@ export type ContentEncoding =
|
|
|
261
262
|
(typeof ContentEncoding)[keyof typeof ContentEncoding];
|
|
262
263
|
export interface CopyCommand {
|
|
263
264
|
DataTableName: string | undefined;
|
|
264
|
-
DataTableColumns?: string;
|
|
265
|
-
CopyOptions?: string;
|
|
265
|
+
DataTableColumns?: string | undefined;
|
|
266
|
+
CopyOptions?: string | undefined;
|
|
267
|
+
}
|
|
268
|
+
export interface DatabaseColumnList {
|
|
269
|
+
Include?: string[] | undefined;
|
|
270
|
+
Exclude?: string[] | undefined;
|
|
271
|
+
}
|
|
272
|
+
export interface DatabaseList {
|
|
273
|
+
Include?: string[] | undefined;
|
|
274
|
+
Exclude?: string[] | undefined;
|
|
275
|
+
}
|
|
276
|
+
export interface SecretsManagerConfiguration {
|
|
277
|
+
SecretARN?: string | undefined;
|
|
278
|
+
RoleARN?: string | undefined;
|
|
279
|
+
Enabled: boolean | undefined;
|
|
280
|
+
}
|
|
281
|
+
export interface DatabaseSourceAuthenticationConfiguration {
|
|
282
|
+
SecretsManagerConfiguration: SecretsManagerConfiguration | undefined;
|
|
283
|
+
}
|
|
284
|
+
export interface DatabaseSourceVPCConfiguration {
|
|
285
|
+
VpcEndpointServiceName: string | undefined;
|
|
286
|
+
}
|
|
287
|
+
export declare const SSLMode: {
|
|
288
|
+
readonly Disabled: "Disabled";
|
|
289
|
+
readonly Enabled: "Enabled";
|
|
290
|
+
};
|
|
291
|
+
export type SSLMode = (typeof SSLMode)[keyof typeof SSLMode];
|
|
292
|
+
export interface DatabaseTableList {
|
|
293
|
+
Include?: string[] | undefined;
|
|
294
|
+
Exclude?: string[] | undefined;
|
|
295
|
+
}
|
|
296
|
+
export declare const DatabaseType: {
|
|
297
|
+
readonly MySQL: "MySQL";
|
|
298
|
+
readonly PostgreSQL: "PostgreSQL";
|
|
299
|
+
};
|
|
300
|
+
export type DatabaseType = (typeof DatabaseType)[keyof typeof DatabaseType];
|
|
301
|
+
export interface DatabaseSourceConfiguration {
|
|
302
|
+
Type: DatabaseType | undefined;
|
|
303
|
+
Endpoint: string | undefined;
|
|
304
|
+
Port: number | undefined;
|
|
305
|
+
SSLMode?: SSLMode | undefined;
|
|
306
|
+
Databases: DatabaseList | undefined;
|
|
307
|
+
Tables: DatabaseTableList | undefined;
|
|
308
|
+
Columns?: DatabaseColumnList | undefined;
|
|
309
|
+
SurrogateKeys?: string[] | undefined;
|
|
310
|
+
SnapshotWatermarkTable: string | undefined;
|
|
311
|
+
DatabaseSourceAuthenticationConfiguration:
|
|
312
|
+
| DatabaseSourceAuthenticationConfiguration
|
|
313
|
+
| undefined;
|
|
314
|
+
DatabaseSourceVPCConfiguration: DatabaseSourceVPCConfiguration | undefined;
|
|
266
315
|
}
|
|
267
316
|
export declare const KeyType: {
|
|
268
317
|
readonly AWS_OWNED_CMK: "AWS_OWNED_CMK";
|
|
@@ -270,10 +319,11 @@ export declare const KeyType: {
|
|
|
270
319
|
};
|
|
271
320
|
export type KeyType = (typeof KeyType)[keyof typeof KeyType];
|
|
272
321
|
export interface DeliveryStreamEncryptionConfigurationInput {
|
|
273
|
-
KeyARN?: string;
|
|
322
|
+
KeyARN?: string | undefined;
|
|
274
323
|
KeyType: KeyType | undefined;
|
|
275
324
|
}
|
|
276
325
|
export declare const DeliveryStreamType: {
|
|
326
|
+
readonly DatabaseAsSource: "DatabaseAsSource";
|
|
277
327
|
readonly DirectPut: "DirectPut";
|
|
278
328
|
readonly KinesisStreamAsSource: "KinesisStreamAsSource";
|
|
279
329
|
readonly MSKAsSource: "MSKAsSource";
|
|
@@ -281,8 +331,8 @@ export declare const DeliveryStreamType: {
|
|
|
281
331
|
export type DeliveryStreamType =
|
|
282
332
|
(typeof DeliveryStreamType)[keyof typeof DeliveryStreamType];
|
|
283
333
|
export interface ElasticsearchBufferingHints {
|
|
284
|
-
IntervalInSeconds?: number;
|
|
285
|
-
SizeInMBs?: number;
|
|
334
|
+
IntervalInSeconds?: number | undefined;
|
|
335
|
+
SizeInMBs?: number | undefined;
|
|
286
336
|
}
|
|
287
337
|
export declare const ElasticsearchIndexRotationPeriod: {
|
|
288
338
|
readonly NoRotation: "NoRotation";
|
|
@@ -294,7 +344,7 @@ export declare const ElasticsearchIndexRotationPeriod: {
|
|
|
294
344
|
export type ElasticsearchIndexRotationPeriod =
|
|
295
345
|
(typeof ElasticsearchIndexRotationPeriod)[keyof typeof ElasticsearchIndexRotationPeriod];
|
|
296
346
|
export interface ElasticsearchRetryOptions {
|
|
297
|
-
DurationInSeconds?: number;
|
|
347
|
+
DurationInSeconds?: number | undefined;
|
|
298
348
|
}
|
|
299
349
|
export declare const ElasticsearchS3BackupMode: {
|
|
300
350
|
readonly AllDocuments: "AllDocuments";
|
|
@@ -304,34 +354,34 @@ export type ElasticsearchS3BackupMode =
|
|
|
304
354
|
(typeof ElasticsearchS3BackupMode)[keyof typeof ElasticsearchS3BackupMode];
|
|
305
355
|
export interface ElasticsearchDestinationConfiguration {
|
|
306
356
|
RoleARN: string | undefined;
|
|
307
|
-
DomainARN?: string;
|
|
308
|
-
ClusterEndpoint?: string;
|
|
357
|
+
DomainARN?: string | undefined;
|
|
358
|
+
ClusterEndpoint?: string | undefined;
|
|
309
359
|
IndexName: string | undefined;
|
|
310
|
-
TypeName?: string;
|
|
311
|
-
IndexRotationPeriod?: ElasticsearchIndexRotationPeriod;
|
|
312
|
-
BufferingHints?: ElasticsearchBufferingHints;
|
|
313
|
-
RetryOptions?: ElasticsearchRetryOptions;
|
|
314
|
-
S3BackupMode?: ElasticsearchS3BackupMode;
|
|
360
|
+
TypeName?: string | undefined;
|
|
361
|
+
IndexRotationPeriod?: ElasticsearchIndexRotationPeriod | undefined;
|
|
362
|
+
BufferingHints?: ElasticsearchBufferingHints | undefined;
|
|
363
|
+
RetryOptions?: ElasticsearchRetryOptions | undefined;
|
|
364
|
+
S3BackupMode?: ElasticsearchS3BackupMode | undefined;
|
|
315
365
|
S3Configuration: S3DestinationConfiguration | undefined;
|
|
316
|
-
ProcessingConfiguration?: ProcessingConfiguration;
|
|
317
|
-
CloudWatchLoggingOptions?: CloudWatchLoggingOptions;
|
|
318
|
-
VpcConfiguration?: VpcConfiguration;
|
|
319
|
-
DocumentIdOptions?: DocumentIdOptions;
|
|
366
|
+
ProcessingConfiguration?: ProcessingConfiguration | undefined;
|
|
367
|
+
CloudWatchLoggingOptions?: CloudWatchLoggingOptions | undefined;
|
|
368
|
+
VpcConfiguration?: VpcConfiguration | undefined;
|
|
369
|
+
DocumentIdOptions?: DocumentIdOptions | undefined;
|
|
320
370
|
}
|
|
321
371
|
export interface HiveJsonSerDe {
|
|
322
|
-
TimestampFormats?: string[];
|
|
372
|
+
TimestampFormats?: string[] | undefined;
|
|
323
373
|
}
|
|
324
374
|
export interface OpenXJsonSerDe {
|
|
325
|
-
ConvertDotsInJsonKeysToUnderscores?: boolean;
|
|
326
|
-
CaseInsensitive?: boolean;
|
|
327
|
-
ColumnToJsonKeyMappings?: Record<string, string
|
|
375
|
+
ConvertDotsInJsonKeysToUnderscores?: boolean | undefined;
|
|
376
|
+
CaseInsensitive?: boolean | undefined;
|
|
377
|
+
ColumnToJsonKeyMappings?: Record<string, string> | undefined;
|
|
328
378
|
}
|
|
329
379
|
export interface Deserializer {
|
|
330
|
-
OpenXJsonSerDe?: OpenXJsonSerDe;
|
|
331
|
-
HiveJsonSerDe?: HiveJsonSerDe;
|
|
380
|
+
OpenXJsonSerDe?: OpenXJsonSerDe | undefined;
|
|
381
|
+
HiveJsonSerDe?: HiveJsonSerDe | undefined;
|
|
332
382
|
}
|
|
333
383
|
export interface InputFormatConfiguration {
|
|
334
|
-
Deserializer?: Deserializer;
|
|
384
|
+
Deserializer?: Deserializer | undefined;
|
|
335
385
|
}
|
|
336
386
|
export declare const OrcCompression: {
|
|
337
387
|
readonly NONE: "NONE";
|
|
@@ -347,16 +397,16 @@ export declare const OrcFormatVersion: {
|
|
|
347
397
|
export type OrcFormatVersion =
|
|
348
398
|
(typeof OrcFormatVersion)[keyof typeof OrcFormatVersion];
|
|
349
399
|
export interface OrcSerDe {
|
|
350
|
-
StripeSizeBytes?: number;
|
|
351
|
-
BlockSizeBytes?: number;
|
|
352
|
-
RowIndexStride?: number;
|
|
353
|
-
EnablePadding?: boolean;
|
|
354
|
-
PaddingTolerance?: number;
|
|
355
|
-
Compression?: OrcCompression;
|
|
356
|
-
BloomFilterColumns?: string[];
|
|
357
|
-
BloomFilterFalsePositiveProbability?: number;
|
|
358
|
-
DictionaryKeyThreshold?: number;
|
|
359
|
-
FormatVersion?: OrcFormatVersion;
|
|
400
|
+
StripeSizeBytes?: number | undefined;
|
|
401
|
+
BlockSizeBytes?: number | undefined;
|
|
402
|
+
RowIndexStride?: number | undefined;
|
|
403
|
+
EnablePadding?: boolean | undefined;
|
|
404
|
+
PaddingTolerance?: number | undefined;
|
|
405
|
+
Compression?: OrcCompression | undefined;
|
|
406
|
+
BloomFilterColumns?: string[] | undefined;
|
|
407
|
+
BloomFilterFalsePositiveProbability?: number | undefined;
|
|
408
|
+
DictionaryKeyThreshold?: number | undefined;
|
|
409
|
+
FormatVersion?: OrcFormatVersion | undefined;
|
|
360
410
|
}
|
|
361
411
|
export declare const ParquetCompression: {
|
|
362
412
|
readonly GZIP: "GZIP";
|
|
@@ -372,40 +422,40 @@ export declare const ParquetWriterVersion: {
|
|
|
372
422
|
export type ParquetWriterVersion =
|
|
373
423
|
(typeof ParquetWriterVersion)[keyof typeof ParquetWriterVersion];
|
|
374
424
|
export interface ParquetSerDe {
|
|
375
|
-
BlockSizeBytes?: number;
|
|
376
|
-
PageSizeBytes?: number;
|
|
377
|
-
Compression?: ParquetCompression;
|
|
378
|
-
EnableDictionaryCompression?: boolean;
|
|
379
|
-
MaxPaddingBytes?: number;
|
|
380
|
-
WriterVersion?: ParquetWriterVersion;
|
|
425
|
+
BlockSizeBytes?: number | undefined;
|
|
426
|
+
PageSizeBytes?: number | undefined;
|
|
427
|
+
Compression?: ParquetCompression | undefined;
|
|
428
|
+
EnableDictionaryCompression?: boolean | undefined;
|
|
429
|
+
MaxPaddingBytes?: number | undefined;
|
|
430
|
+
WriterVersion?: ParquetWriterVersion | undefined;
|
|
381
431
|
}
|
|
382
432
|
export interface Serializer {
|
|
383
|
-
ParquetSerDe?: ParquetSerDe;
|
|
384
|
-
OrcSerDe?: OrcSerDe;
|
|
433
|
+
ParquetSerDe?: ParquetSerDe | undefined;
|
|
434
|
+
OrcSerDe?: OrcSerDe | undefined;
|
|
385
435
|
}
|
|
386
436
|
export interface OutputFormatConfiguration {
|
|
387
|
-
Serializer?: Serializer;
|
|
437
|
+
Serializer?: Serializer | undefined;
|
|
388
438
|
}
|
|
389
439
|
export interface SchemaConfiguration {
|
|
390
|
-
RoleARN?: string;
|
|
391
|
-
CatalogId?: string;
|
|
392
|
-
DatabaseName?: string;
|
|
393
|
-
TableName?: string;
|
|
394
|
-
Region?: string;
|
|
395
|
-
VersionId?: string;
|
|
440
|
+
RoleARN?: string | undefined;
|
|
441
|
+
CatalogId?: string | undefined;
|
|
442
|
+
DatabaseName?: string | undefined;
|
|
443
|
+
TableName?: string | undefined;
|
|
444
|
+
Region?: string | undefined;
|
|
445
|
+
VersionId?: string | undefined;
|
|
396
446
|
}
|
|
397
447
|
export interface DataFormatConversionConfiguration {
|
|
398
|
-
SchemaConfiguration?: SchemaConfiguration;
|
|
399
|
-
InputFormatConfiguration?: InputFormatConfiguration;
|
|
400
|
-
OutputFormatConfiguration?: OutputFormatConfiguration;
|
|
401
|
-
Enabled?: boolean;
|
|
448
|
+
SchemaConfiguration?: SchemaConfiguration | undefined;
|
|
449
|
+
InputFormatConfiguration?: InputFormatConfiguration | undefined;
|
|
450
|
+
OutputFormatConfiguration?: OutputFormatConfiguration | undefined;
|
|
451
|
+
Enabled?: boolean | undefined;
|
|
402
452
|
}
|
|
403
453
|
export interface RetryOptions {
|
|
404
|
-
DurationInSeconds?: number;
|
|
454
|
+
DurationInSeconds?: number | undefined;
|
|
405
455
|
}
|
|
406
456
|
export interface DynamicPartitioningConfiguration {
|
|
407
|
-
RetryOptions?: RetryOptions;
|
|
408
|
-
Enabled?: boolean;
|
|
457
|
+
RetryOptions?: RetryOptions | undefined;
|
|
458
|
+
Enabled?: boolean | undefined;
|
|
409
459
|
}
|
|
410
460
|
export declare const S3BackupMode: {
|
|
411
461
|
readonly Disabled: "Disabled";
|
|
@@ -415,39 +465,43 @@ export type S3BackupMode = (typeof S3BackupMode)[keyof typeof S3BackupMode];
|
|
|
415
465
|
export interface ExtendedS3DestinationConfiguration {
|
|
416
466
|
RoleARN: string | undefined;
|
|
417
467
|
BucketARN: string | undefined;
|
|
418
|
-
Prefix?: string;
|
|
419
|
-
ErrorOutputPrefix?: string;
|
|
420
|
-
BufferingHints?: BufferingHints;
|
|
421
|
-
CompressionFormat?: CompressionFormat;
|
|
422
|
-
EncryptionConfiguration?: EncryptionConfiguration;
|
|
423
|
-
CloudWatchLoggingOptions?: CloudWatchLoggingOptions;
|
|
424
|
-
ProcessingConfiguration?: ProcessingConfiguration;
|
|
425
|
-
S3BackupMode?: S3BackupMode;
|
|
426
|
-
S3BackupConfiguration?: S3DestinationConfiguration;
|
|
427
|
-
DataFormatConversionConfiguration?:
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
468
|
+
Prefix?: string | undefined;
|
|
469
|
+
ErrorOutputPrefix?: string | undefined;
|
|
470
|
+
BufferingHints?: BufferingHints | undefined;
|
|
471
|
+
CompressionFormat?: CompressionFormat | undefined;
|
|
472
|
+
EncryptionConfiguration?: EncryptionConfiguration | undefined;
|
|
473
|
+
CloudWatchLoggingOptions?: CloudWatchLoggingOptions | undefined;
|
|
474
|
+
ProcessingConfiguration?: ProcessingConfiguration | undefined;
|
|
475
|
+
S3BackupMode?: S3BackupMode | undefined;
|
|
476
|
+
S3BackupConfiguration?: S3DestinationConfiguration | undefined;
|
|
477
|
+
DataFormatConversionConfiguration?:
|
|
478
|
+
| DataFormatConversionConfiguration
|
|
479
|
+
| undefined;
|
|
480
|
+
DynamicPartitioningConfiguration?:
|
|
481
|
+
| DynamicPartitioningConfiguration
|
|
482
|
+
| undefined;
|
|
483
|
+
FileExtension?: string | undefined;
|
|
484
|
+
CustomTimeZone?: string | undefined;
|
|
431
485
|
}
|
|
432
486
|
export interface HttpEndpointBufferingHints {
|
|
433
|
-
SizeInMBs?: number;
|
|
434
|
-
IntervalInSeconds?: number;
|
|
487
|
+
SizeInMBs?: number | undefined;
|
|
488
|
+
IntervalInSeconds?: number | undefined;
|
|
435
489
|
}
|
|
436
490
|
export interface HttpEndpointConfiguration {
|
|
437
491
|
Url: string | undefined;
|
|
438
|
-
Name?: string;
|
|
439
|
-
AccessKey?: string;
|
|
492
|
+
Name?: string | undefined;
|
|
493
|
+
AccessKey?: string | undefined;
|
|
440
494
|
}
|
|
441
495
|
export interface HttpEndpointCommonAttribute {
|
|
442
496
|
AttributeName: string | undefined;
|
|
443
497
|
AttributeValue: string | undefined;
|
|
444
498
|
}
|
|
445
499
|
export interface HttpEndpointRequestConfiguration {
|
|
446
|
-
ContentEncoding?: ContentEncoding;
|
|
447
|
-
CommonAttributes?: HttpEndpointCommonAttribute[];
|
|
500
|
+
ContentEncoding?: ContentEncoding | undefined;
|
|
501
|
+
CommonAttributes?: HttpEndpointCommonAttribute[] | undefined;
|
|
448
502
|
}
|
|
449
503
|
export interface HttpEndpointRetryOptions {
|
|
450
|
-
DurationInSeconds?: number;
|
|
504
|
+
DurationInSeconds?: number | undefined;
|
|
451
505
|
}
|
|
452
506
|
export declare const HttpEndpointS3BackupMode: {
|
|
453
507
|
readonly AllData: "AllData";
|
|
@@ -455,28 +509,30 @@ export declare const HttpEndpointS3BackupMode: {
|
|
|
455
509
|
};
|
|
456
510
|
export type HttpEndpointS3BackupMode =
|
|
457
511
|
(typeof HttpEndpointS3BackupMode)[keyof typeof HttpEndpointS3BackupMode];
|
|
458
|
-
export interface SecretsManagerConfiguration {
|
|
459
|
-
SecretARN?: string;
|
|
460
|
-
RoleARN?: string;
|
|
461
|
-
Enabled: boolean | undefined;
|
|
462
|
-
}
|
|
463
512
|
export interface HttpEndpointDestinationConfiguration {
|
|
464
513
|
EndpointConfiguration: HttpEndpointConfiguration | undefined;
|
|
465
|
-
BufferingHints?: HttpEndpointBufferingHints;
|
|
466
|
-
CloudWatchLoggingOptions?: CloudWatchLoggingOptions;
|
|
467
|
-
RequestConfiguration?: HttpEndpointRequestConfiguration;
|
|
468
|
-
ProcessingConfiguration?: ProcessingConfiguration;
|
|
469
|
-
RoleARN?: string;
|
|
470
|
-
RetryOptions?: HttpEndpointRetryOptions;
|
|
471
|
-
S3BackupMode?: HttpEndpointS3BackupMode;
|
|
514
|
+
BufferingHints?: HttpEndpointBufferingHints | undefined;
|
|
515
|
+
CloudWatchLoggingOptions?: CloudWatchLoggingOptions | undefined;
|
|
516
|
+
RequestConfiguration?: HttpEndpointRequestConfiguration | undefined;
|
|
517
|
+
ProcessingConfiguration?: ProcessingConfiguration | undefined;
|
|
518
|
+
RoleARN?: string | undefined;
|
|
519
|
+
RetryOptions?: HttpEndpointRetryOptions | undefined;
|
|
520
|
+
S3BackupMode?: HttpEndpointS3BackupMode | undefined;
|
|
472
521
|
S3Configuration: S3DestinationConfiguration | undefined;
|
|
473
|
-
SecretsManagerConfiguration?: SecretsManagerConfiguration;
|
|
522
|
+
SecretsManagerConfiguration?: SecretsManagerConfiguration | undefined;
|
|
523
|
+
}
|
|
524
|
+
export interface PartitionField {
|
|
525
|
+
SourceName: string | undefined;
|
|
526
|
+
}
|
|
527
|
+
export interface PartitionSpec {
|
|
528
|
+
Identity?: PartitionField[] | undefined;
|
|
474
529
|
}
|
|
475
530
|
export interface DestinationTableConfiguration {
|
|
476
531
|
DestinationTableName: string | undefined;
|
|
477
532
|
DestinationDatabaseName: string | undefined;
|
|
478
|
-
UniqueKeys?: string[];
|
|
479
|
-
|
|
533
|
+
UniqueKeys?: string[] | undefined;
|
|
534
|
+
PartitionSpec?: PartitionSpec | undefined;
|
|
535
|
+
S3ErrorOutputPrefix?: string | undefined;
|
|
480
536
|
}
|
|
481
537
|
export declare const IcebergS3BackupMode: {
|
|
482
538
|
readonly AllData: "AllData";
|
|
@@ -484,13 +540,23 @@ export declare const IcebergS3BackupMode: {
|
|
|
484
540
|
};
|
|
485
541
|
export type IcebergS3BackupMode =
|
|
486
542
|
(typeof IcebergS3BackupMode)[keyof typeof IcebergS3BackupMode];
|
|
543
|
+
export interface SchemaEvolutionConfiguration {
|
|
544
|
+
Enabled: boolean | undefined;
|
|
545
|
+
}
|
|
546
|
+
export interface TableCreationConfiguration {
|
|
547
|
+
Enabled: boolean | undefined;
|
|
548
|
+
}
|
|
487
549
|
export interface IcebergDestinationConfiguration {
|
|
488
|
-
DestinationTableConfigurationList?:
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
550
|
+
DestinationTableConfigurationList?:
|
|
551
|
+
| DestinationTableConfiguration[]
|
|
552
|
+
| undefined;
|
|
553
|
+
SchemaEvolutionConfiguration?: SchemaEvolutionConfiguration | undefined;
|
|
554
|
+
TableCreationConfiguration?: TableCreationConfiguration | undefined;
|
|
555
|
+
BufferingHints?: BufferingHints | undefined;
|
|
556
|
+
CloudWatchLoggingOptions?: CloudWatchLoggingOptions | undefined;
|
|
557
|
+
ProcessingConfiguration?: ProcessingConfiguration | undefined;
|
|
558
|
+
S3BackupMode?: IcebergS3BackupMode | undefined;
|
|
559
|
+
RetryOptions?: RetryOptions | undefined;
|
|
494
560
|
RoleARN: string | undefined;
|
|
495
561
|
CatalogConfiguration: CatalogConfiguration | undefined;
|
|
496
562
|
S3Configuration: S3DestinationConfiguration | undefined;
|
|
@@ -503,10 +569,10 @@ export interface MSKSourceConfiguration {
|
|
|
503
569
|
MSKClusterARN: string | undefined;
|
|
504
570
|
TopicName: string | undefined;
|
|
505
571
|
AuthenticationConfiguration: AuthenticationConfiguration | undefined;
|
|
506
|
-
ReadFromTimestamp?: Date;
|
|
572
|
+
ReadFromTimestamp?: Date | undefined;
|
|
507
573
|
}
|
|
508
574
|
export interface RedshiftRetryOptions {
|
|
509
|
-
DurationInSeconds?: number;
|
|
575
|
+
DurationInSeconds?: number | undefined;
|
|
510
576
|
}
|
|
511
577
|
export declare const RedshiftS3BackupMode: {
|
|
512
578
|
readonly Disabled: "Disabled";
|
|
@@ -518,19 +584,19 @@ export interface RedshiftDestinationConfiguration {
|
|
|
518
584
|
RoleARN: string | undefined;
|
|
519
585
|
ClusterJDBCURL: string | undefined;
|
|
520
586
|
CopyCommand: CopyCommand | undefined;
|
|
521
|
-
Username?: string;
|
|
522
|
-
Password?: string;
|
|
523
|
-
RetryOptions?: RedshiftRetryOptions;
|
|
587
|
+
Username?: string | undefined;
|
|
588
|
+
Password?: string | undefined;
|
|
589
|
+
RetryOptions?: RedshiftRetryOptions | undefined;
|
|
524
590
|
S3Configuration: S3DestinationConfiguration | undefined;
|
|
525
|
-
ProcessingConfiguration?: ProcessingConfiguration;
|
|
526
|
-
S3BackupMode?: RedshiftS3BackupMode;
|
|
527
|
-
S3BackupConfiguration?: S3DestinationConfiguration;
|
|
528
|
-
CloudWatchLoggingOptions?: CloudWatchLoggingOptions;
|
|
529
|
-
SecretsManagerConfiguration?: SecretsManagerConfiguration;
|
|
591
|
+
ProcessingConfiguration?: ProcessingConfiguration | undefined;
|
|
592
|
+
S3BackupMode?: RedshiftS3BackupMode | undefined;
|
|
593
|
+
S3BackupConfiguration?: S3DestinationConfiguration | undefined;
|
|
594
|
+
CloudWatchLoggingOptions?: CloudWatchLoggingOptions | undefined;
|
|
595
|
+
SecretsManagerConfiguration?: SecretsManagerConfiguration | undefined;
|
|
530
596
|
}
|
|
531
597
|
export interface SnowflakeBufferingHints {
|
|
532
|
-
SizeInMBs?: number;
|
|
533
|
-
IntervalInSeconds?: number;
|
|
598
|
+
SizeInMBs?: number | undefined;
|
|
599
|
+
IntervalInSeconds?: number | undefined;
|
|
534
600
|
}
|
|
535
601
|
export declare const SnowflakeDataLoadingOption: {
|
|
536
602
|
readonly JSON_MAPPING: "JSON_MAPPING";
|
|
@@ -540,7 +606,7 @@ export declare const SnowflakeDataLoadingOption: {
|
|
|
540
606
|
export type SnowflakeDataLoadingOption =
|
|
541
607
|
(typeof SnowflakeDataLoadingOption)[keyof typeof SnowflakeDataLoadingOption];
|
|
542
608
|
export interface SnowflakeRetryOptions {
|
|
543
|
-
DurationInSeconds?: number;
|
|
609
|
+
DurationInSeconds?: number | undefined;
|
|
544
610
|
}
|
|
545
611
|
export declare const SnowflakeS3BackupMode: {
|
|
546
612
|
readonly AllData: "AllData";
|
|
@@ -549,37 +615,37 @@ export declare const SnowflakeS3BackupMode: {
|
|
|
549
615
|
export type SnowflakeS3BackupMode =
|
|
550
616
|
(typeof SnowflakeS3BackupMode)[keyof typeof SnowflakeS3BackupMode];
|
|
551
617
|
export interface SnowflakeRoleConfiguration {
|
|
552
|
-
Enabled?: boolean;
|
|
553
|
-
SnowflakeRole?: string;
|
|
618
|
+
Enabled?: boolean | undefined;
|
|
619
|
+
SnowflakeRole?: string | undefined;
|
|
554
620
|
}
|
|
555
621
|
export interface SnowflakeVpcConfiguration {
|
|
556
622
|
PrivateLinkVpceId: string | undefined;
|
|
557
623
|
}
|
|
558
624
|
export interface SnowflakeDestinationConfiguration {
|
|
559
625
|
AccountUrl: string | undefined;
|
|
560
|
-
PrivateKey?: string;
|
|
561
|
-
KeyPassphrase?: string;
|
|
562
|
-
User?: string;
|
|
626
|
+
PrivateKey?: string | undefined;
|
|
627
|
+
KeyPassphrase?: string | undefined;
|
|
628
|
+
User?: string | undefined;
|
|
563
629
|
Database: string | undefined;
|
|
564
630
|
Schema: string | undefined;
|
|
565
631
|
Table: string | undefined;
|
|
566
|
-
SnowflakeRoleConfiguration?: SnowflakeRoleConfiguration;
|
|
567
|
-
DataLoadingOption?: SnowflakeDataLoadingOption;
|
|
568
|
-
MetaDataColumnName?: string;
|
|
569
|
-
ContentColumnName?: string;
|
|
570
|
-
SnowflakeVpcConfiguration?: SnowflakeVpcConfiguration;
|
|
571
|
-
CloudWatchLoggingOptions?: CloudWatchLoggingOptions;
|
|
572
|
-
ProcessingConfiguration?: ProcessingConfiguration;
|
|
632
|
+
SnowflakeRoleConfiguration?: SnowflakeRoleConfiguration | undefined;
|
|
633
|
+
DataLoadingOption?: SnowflakeDataLoadingOption | undefined;
|
|
634
|
+
MetaDataColumnName?: string | undefined;
|
|
635
|
+
ContentColumnName?: string | undefined;
|
|
636
|
+
SnowflakeVpcConfiguration?: SnowflakeVpcConfiguration | undefined;
|
|
637
|
+
CloudWatchLoggingOptions?: CloudWatchLoggingOptions | undefined;
|
|
638
|
+
ProcessingConfiguration?: ProcessingConfiguration | undefined;
|
|
573
639
|
RoleARN: string | undefined;
|
|
574
|
-
RetryOptions?: SnowflakeRetryOptions;
|
|
575
|
-
S3BackupMode?: SnowflakeS3BackupMode;
|
|
640
|
+
RetryOptions?: SnowflakeRetryOptions | undefined;
|
|
641
|
+
S3BackupMode?: SnowflakeS3BackupMode | undefined;
|
|
576
642
|
S3Configuration: S3DestinationConfiguration | undefined;
|
|
577
|
-
SecretsManagerConfiguration?: SecretsManagerConfiguration;
|
|
578
|
-
BufferingHints?: SnowflakeBufferingHints;
|
|
643
|
+
SecretsManagerConfiguration?: SecretsManagerConfiguration | undefined;
|
|
644
|
+
BufferingHints?: SnowflakeBufferingHints | undefined;
|
|
579
645
|
}
|
|
580
646
|
export interface SplunkBufferingHints {
|
|
581
|
-
IntervalInSeconds?: number;
|
|
582
|
-
SizeInMBs?: number;
|
|
647
|
+
IntervalInSeconds?: number | undefined;
|
|
648
|
+
SizeInMBs?: number | undefined;
|
|
583
649
|
}
|
|
584
650
|
export declare const HECEndpointType: {
|
|
585
651
|
readonly Event: "Event";
|
|
@@ -588,7 +654,7 @@ export declare const HECEndpointType: {
|
|
|
588
654
|
export type HECEndpointType =
|
|
589
655
|
(typeof HECEndpointType)[keyof typeof HECEndpointType];
|
|
590
656
|
export interface SplunkRetryOptions {
|
|
591
|
-
DurationInSeconds?: number;
|
|
657
|
+
DurationInSeconds?: number | undefined;
|
|
592
658
|
}
|
|
593
659
|
export declare const SplunkS3BackupMode: {
|
|
594
660
|
readonly AllEvents: "AllEvents";
|
|
@@ -599,40 +665,59 @@ export type SplunkS3BackupMode =
|
|
|
599
665
|
export interface SplunkDestinationConfiguration {
|
|
600
666
|
HECEndpoint: string | undefined;
|
|
601
667
|
HECEndpointType: HECEndpointType | undefined;
|
|
602
|
-
HECToken?: string;
|
|
603
|
-
HECAcknowledgmentTimeoutInSeconds?: number;
|
|
604
|
-
RetryOptions?: SplunkRetryOptions;
|
|
605
|
-
S3BackupMode?: SplunkS3BackupMode;
|
|
668
|
+
HECToken?: string | undefined;
|
|
669
|
+
HECAcknowledgmentTimeoutInSeconds?: number | undefined;
|
|
670
|
+
RetryOptions?: SplunkRetryOptions | undefined;
|
|
671
|
+
S3BackupMode?: SplunkS3BackupMode | undefined;
|
|
606
672
|
S3Configuration: S3DestinationConfiguration | undefined;
|
|
607
|
-
ProcessingConfiguration?: ProcessingConfiguration;
|
|
608
|
-
CloudWatchLoggingOptions?: CloudWatchLoggingOptions;
|
|
609
|
-
BufferingHints?: SplunkBufferingHints;
|
|
610
|
-
SecretsManagerConfiguration?: SecretsManagerConfiguration;
|
|
673
|
+
ProcessingConfiguration?: ProcessingConfiguration | undefined;
|
|
674
|
+
CloudWatchLoggingOptions?: CloudWatchLoggingOptions | undefined;
|
|
675
|
+
BufferingHints?: SplunkBufferingHints | undefined;
|
|
676
|
+
SecretsManagerConfiguration?: SecretsManagerConfiguration | undefined;
|
|
611
677
|
}
|
|
612
678
|
export interface Tag {
|
|
613
679
|
Key: string | undefined;
|
|
614
|
-
Value?: string;
|
|
680
|
+
Value?: string | undefined;
|
|
615
681
|
}
|
|
616
682
|
export interface CreateDeliveryStreamInput {
|
|
617
683
|
DeliveryStreamName: string | undefined;
|
|
618
|
-
DeliveryStreamType?: DeliveryStreamType;
|
|
619
|
-
KinesisStreamSourceConfiguration?:
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
684
|
+
DeliveryStreamType?: DeliveryStreamType | undefined;
|
|
685
|
+
KinesisStreamSourceConfiguration?:
|
|
686
|
+
| KinesisStreamSourceConfiguration
|
|
687
|
+
| undefined;
|
|
688
|
+
DeliveryStreamEncryptionConfigurationInput?:
|
|
689
|
+
| DeliveryStreamEncryptionConfigurationInput
|
|
690
|
+
| undefined;
|
|
691
|
+
S3DestinationConfiguration?: S3DestinationConfiguration | undefined;
|
|
692
|
+
ExtendedS3DestinationConfiguration?:
|
|
693
|
+
| ExtendedS3DestinationConfiguration
|
|
694
|
+
| undefined;
|
|
695
|
+
RedshiftDestinationConfiguration?:
|
|
696
|
+
| RedshiftDestinationConfiguration
|
|
697
|
+
| undefined;
|
|
698
|
+
ElasticsearchDestinationConfiguration?:
|
|
699
|
+
| ElasticsearchDestinationConfiguration
|
|
700
|
+
| undefined;
|
|
701
|
+
AmazonopensearchserviceDestinationConfiguration?:
|
|
702
|
+
| AmazonopensearchserviceDestinationConfiguration
|
|
703
|
+
| undefined;
|
|
704
|
+
SplunkDestinationConfiguration?: SplunkDestinationConfiguration | undefined;
|
|
705
|
+
HttpEndpointDestinationConfiguration?:
|
|
706
|
+
| HttpEndpointDestinationConfiguration
|
|
707
|
+
| undefined;
|
|
708
|
+
Tags?: Tag[] | undefined;
|
|
709
|
+
AmazonOpenSearchServerlessDestinationConfiguration?:
|
|
710
|
+
| AmazonOpenSearchServerlessDestinationConfiguration
|
|
711
|
+
| undefined;
|
|
712
|
+
MSKSourceConfiguration?: MSKSourceConfiguration | undefined;
|
|
713
|
+
SnowflakeDestinationConfiguration?:
|
|
714
|
+
| SnowflakeDestinationConfiguration
|
|
715
|
+
| undefined;
|
|
716
|
+
IcebergDestinationConfiguration?: IcebergDestinationConfiguration | undefined;
|
|
717
|
+
DatabaseSourceConfiguration?: DatabaseSourceConfiguration | undefined;
|
|
633
718
|
}
|
|
634
719
|
export interface CreateDeliveryStreamOutput {
|
|
635
|
-
DeliveryStreamARN?: string;
|
|
720
|
+
DeliveryStreamARN?: string | undefined;
|
|
636
721
|
}
|
|
637
722
|
export declare class InvalidArgumentException extends __BaseException {
|
|
638
723
|
readonly name: "InvalidArgumentException";
|
|
@@ -644,7 +729,7 @@ export declare class InvalidArgumentException extends __BaseException {
|
|
|
644
729
|
export declare class InvalidKMSResourceException extends __BaseException {
|
|
645
730
|
readonly name: "InvalidKMSResourceException";
|
|
646
731
|
readonly $fault: "client";
|
|
647
|
-
code?: string;
|
|
732
|
+
code?: string | undefined;
|
|
648
733
|
constructor(
|
|
649
734
|
opts: __ExceptionOptionType<InvalidKMSResourceException, __BaseException>
|
|
650
735
|
);
|
|
@@ -663,18 +748,6 @@ export declare class ResourceInUseException extends __BaseException {
|
|
|
663
748
|
opts: __ExceptionOptionType<ResourceInUseException, __BaseException>
|
|
664
749
|
);
|
|
665
750
|
}
|
|
666
|
-
export interface DeleteDeliveryStreamInput {
|
|
667
|
-
DeliveryStreamName: string | undefined;
|
|
668
|
-
AllowForceDelete?: boolean;
|
|
669
|
-
}
|
|
670
|
-
export interface DeleteDeliveryStreamOutput {}
|
|
671
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
672
|
-
readonly name: "ResourceNotFoundException";
|
|
673
|
-
readonly $fault: "client";
|
|
674
|
-
constructor(
|
|
675
|
-
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
676
|
-
);
|
|
677
|
-
}
|
|
678
751
|
export declare const DeliveryStreamFailureType: {
|
|
679
752
|
readonly CREATE_ENI_FAILED: "CREATE_ENI_FAILED";
|
|
680
753
|
readonly CREATE_KMS_GRANT_FAILED: "CREATE_KMS_GRANT_FAILED";
|
|
@@ -691,6 +764,8 @@ export declare const DeliveryStreamFailureType: {
|
|
|
691
764
|
readonly SUBNET_ACCESS_DENIED: "SUBNET_ACCESS_DENIED";
|
|
692
765
|
readonly SUBNET_NOT_FOUND: "SUBNET_NOT_FOUND";
|
|
693
766
|
readonly UNKNOWN_ERROR: "UNKNOWN_ERROR";
|
|
767
|
+
readonly VPC_ENDPOINT_SERVICE_NAME_NOT_FOUND: "VPC_ENDPOINT_SERVICE_NAME_NOT_FOUND";
|
|
768
|
+
readonly VPC_INTERFACE_ENDPOINT_SERVICE_ACCESS_DENIED: "VPC_INTERFACE_ENDPOINT_SERVICE_ACCESS_DENIED";
|
|
694
769
|
};
|
|
695
770
|
export type DeliveryStreamFailureType =
|
|
696
771
|
(typeof DeliveryStreamFailureType)[keyof typeof DeliveryStreamFailureType];
|
|
@@ -698,6 +773,55 @@ export interface FailureDescription {
|
|
|
698
773
|
Type: DeliveryStreamFailureType | undefined;
|
|
699
774
|
Details: string | undefined;
|
|
700
775
|
}
|
|
776
|
+
export declare const SnapshotRequestedBy: {
|
|
777
|
+
readonly FIREHOSE: "FIREHOSE";
|
|
778
|
+
readonly USER: "USER";
|
|
779
|
+
};
|
|
780
|
+
export type SnapshotRequestedBy =
|
|
781
|
+
(typeof SnapshotRequestedBy)[keyof typeof SnapshotRequestedBy];
|
|
782
|
+
export declare const SnapshotStatus: {
|
|
783
|
+
readonly COMPLETE: "COMPLETE";
|
|
784
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
785
|
+
readonly SUSPENDED: "SUSPENDED";
|
|
786
|
+
};
|
|
787
|
+
export type SnapshotStatus =
|
|
788
|
+
(typeof SnapshotStatus)[keyof typeof SnapshotStatus];
|
|
789
|
+
export interface DatabaseSnapshotInfo {
|
|
790
|
+
Id: string | undefined;
|
|
791
|
+
Table: string | undefined;
|
|
792
|
+
RequestTimestamp: Date | undefined;
|
|
793
|
+
RequestedBy: SnapshotRequestedBy | undefined;
|
|
794
|
+
Status: SnapshotStatus | undefined;
|
|
795
|
+
FailureDescription?: FailureDescription | undefined;
|
|
796
|
+
}
|
|
797
|
+
export interface DatabaseSourceDescription {
|
|
798
|
+
Type?: DatabaseType | undefined;
|
|
799
|
+
Endpoint?: string | undefined;
|
|
800
|
+
Port?: number | undefined;
|
|
801
|
+
SSLMode?: SSLMode | undefined;
|
|
802
|
+
Databases?: DatabaseList | undefined;
|
|
803
|
+
Tables?: DatabaseTableList | undefined;
|
|
804
|
+
Columns?: DatabaseColumnList | undefined;
|
|
805
|
+
SurrogateKeys?: string[] | undefined;
|
|
806
|
+
SnapshotWatermarkTable?: string | undefined;
|
|
807
|
+
SnapshotInfo?: DatabaseSnapshotInfo[] | undefined;
|
|
808
|
+
DatabaseSourceAuthenticationConfiguration?:
|
|
809
|
+
| DatabaseSourceAuthenticationConfiguration
|
|
810
|
+
| undefined;
|
|
811
|
+
DatabaseSourceVPCConfiguration?: DatabaseSourceVPCConfiguration | undefined;
|
|
812
|
+
}
|
|
813
|
+
export interface DeleteDeliveryStreamInput {
|
|
814
|
+
DeliveryStreamName: string | undefined;
|
|
815
|
+
AllowForceDelete?: boolean | undefined;
|
|
816
|
+
}
|
|
817
|
+
export interface DeleteDeliveryStreamOutput {}
|
|
818
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
819
|
+
readonly name: "ResourceNotFoundException";
|
|
820
|
+
readonly $fault: "client";
|
|
821
|
+
constructor(
|
|
822
|
+
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
823
|
+
);
|
|
824
|
+
}
|
|
701
825
|
export declare const DeliveryStreamEncryptionStatus: {
|
|
702
826
|
readonly DISABLED: "DISABLED";
|
|
703
827
|
readonly DISABLING: "DISABLING";
|
|
@@ -709,10 +833,10 @@ export declare const DeliveryStreamEncryptionStatus: {
|
|
|
709
833
|
export type DeliveryStreamEncryptionStatus =
|
|
710
834
|
(typeof DeliveryStreamEncryptionStatus)[keyof typeof DeliveryStreamEncryptionStatus];
|
|
711
835
|
export interface DeliveryStreamEncryptionConfiguration {
|
|
712
|
-
KeyARN?: string;
|
|
713
|
-
KeyType?: KeyType;
|
|
714
|
-
Status?: DeliveryStreamEncryptionStatus;
|
|
715
|
-
FailureDescription?: FailureDescription;
|
|
836
|
+
KeyARN?: string | undefined;
|
|
837
|
+
KeyType?: KeyType | undefined;
|
|
838
|
+
Status?: DeliveryStreamEncryptionStatus | undefined;
|
|
839
|
+
FailureDescription?: FailureDescription | undefined;
|
|
716
840
|
}
|
|
717
841
|
export declare const DeliveryStreamStatus: {
|
|
718
842
|
readonly ACTIVE: "ACTIVE";
|
|
@@ -724,197 +848,222 @@ export declare const DeliveryStreamStatus: {
|
|
|
724
848
|
export type DeliveryStreamStatus =
|
|
725
849
|
(typeof DeliveryStreamStatus)[keyof typeof DeliveryStreamStatus];
|
|
726
850
|
export interface ElasticsearchDestinationDescription {
|
|
727
|
-
RoleARN?: string;
|
|
728
|
-
DomainARN?: string;
|
|
729
|
-
ClusterEndpoint?: string;
|
|
730
|
-
IndexName?: string;
|
|
731
|
-
TypeName?: string;
|
|
732
|
-
IndexRotationPeriod?: ElasticsearchIndexRotationPeriod;
|
|
733
|
-
BufferingHints?: ElasticsearchBufferingHints;
|
|
734
|
-
RetryOptions?: ElasticsearchRetryOptions;
|
|
735
|
-
S3BackupMode?: ElasticsearchS3BackupMode;
|
|
736
|
-
S3DestinationDescription?: S3DestinationDescription;
|
|
737
|
-
ProcessingConfiguration?: ProcessingConfiguration;
|
|
738
|
-
CloudWatchLoggingOptions?: CloudWatchLoggingOptions;
|
|
739
|
-
VpcConfigurationDescription?: VpcConfigurationDescription;
|
|
740
|
-
DocumentIdOptions?: DocumentIdOptions;
|
|
851
|
+
RoleARN?: string | undefined;
|
|
852
|
+
DomainARN?: string | undefined;
|
|
853
|
+
ClusterEndpoint?: string | undefined;
|
|
854
|
+
IndexName?: string | undefined;
|
|
855
|
+
TypeName?: string | undefined;
|
|
856
|
+
IndexRotationPeriod?: ElasticsearchIndexRotationPeriod | undefined;
|
|
857
|
+
BufferingHints?: ElasticsearchBufferingHints | undefined;
|
|
858
|
+
RetryOptions?: ElasticsearchRetryOptions | undefined;
|
|
859
|
+
S3BackupMode?: ElasticsearchS3BackupMode | undefined;
|
|
860
|
+
S3DestinationDescription?: S3DestinationDescription | undefined;
|
|
861
|
+
ProcessingConfiguration?: ProcessingConfiguration | undefined;
|
|
862
|
+
CloudWatchLoggingOptions?: CloudWatchLoggingOptions | undefined;
|
|
863
|
+
VpcConfigurationDescription?: VpcConfigurationDescription | undefined;
|
|
864
|
+
DocumentIdOptions?: DocumentIdOptions | undefined;
|
|
741
865
|
}
|
|
742
866
|
export interface ExtendedS3DestinationDescription {
|
|
743
867
|
RoleARN: string | undefined;
|
|
744
868
|
BucketARN: string | undefined;
|
|
745
|
-
Prefix?: string;
|
|
746
|
-
ErrorOutputPrefix?: string;
|
|
869
|
+
Prefix?: string | undefined;
|
|
870
|
+
ErrorOutputPrefix?: string | undefined;
|
|
747
871
|
BufferingHints: BufferingHints | undefined;
|
|
748
872
|
CompressionFormat: CompressionFormat | undefined;
|
|
749
873
|
EncryptionConfiguration: EncryptionConfiguration | undefined;
|
|
750
|
-
CloudWatchLoggingOptions?: CloudWatchLoggingOptions;
|
|
751
|
-
ProcessingConfiguration?: ProcessingConfiguration;
|
|
752
|
-
S3BackupMode?: S3BackupMode;
|
|
753
|
-
S3BackupDescription?: S3DestinationDescription;
|
|
754
|
-
DataFormatConversionConfiguration?:
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
|
|
874
|
+
CloudWatchLoggingOptions?: CloudWatchLoggingOptions | undefined;
|
|
875
|
+
ProcessingConfiguration?: ProcessingConfiguration | undefined;
|
|
876
|
+
S3BackupMode?: S3BackupMode | undefined;
|
|
877
|
+
S3BackupDescription?: S3DestinationDescription | undefined;
|
|
878
|
+
DataFormatConversionConfiguration?:
|
|
879
|
+
| DataFormatConversionConfiguration
|
|
880
|
+
| undefined;
|
|
881
|
+
DynamicPartitioningConfiguration?:
|
|
882
|
+
| DynamicPartitioningConfiguration
|
|
883
|
+
| undefined;
|
|
884
|
+
FileExtension?: string | undefined;
|
|
885
|
+
CustomTimeZone?: string | undefined;
|
|
758
886
|
}
|
|
759
887
|
export interface HttpEndpointDescription {
|
|
760
|
-
Url?: string;
|
|
761
|
-
Name?: string;
|
|
888
|
+
Url?: string | undefined;
|
|
889
|
+
Name?: string | undefined;
|
|
762
890
|
}
|
|
763
891
|
export interface HttpEndpointDestinationDescription {
|
|
764
|
-
EndpointConfiguration?: HttpEndpointDescription;
|
|
765
|
-
BufferingHints?: HttpEndpointBufferingHints;
|
|
766
|
-
CloudWatchLoggingOptions?: CloudWatchLoggingOptions;
|
|
767
|
-
RequestConfiguration?: HttpEndpointRequestConfiguration;
|
|
768
|
-
ProcessingConfiguration?: ProcessingConfiguration;
|
|
769
|
-
RoleARN?: string;
|
|
770
|
-
RetryOptions?: HttpEndpointRetryOptions;
|
|
771
|
-
S3BackupMode?: HttpEndpointS3BackupMode;
|
|
772
|
-
S3DestinationDescription?: S3DestinationDescription;
|
|
773
|
-
SecretsManagerConfiguration?: SecretsManagerConfiguration;
|
|
892
|
+
EndpointConfiguration?: HttpEndpointDescription | undefined;
|
|
893
|
+
BufferingHints?: HttpEndpointBufferingHints | undefined;
|
|
894
|
+
CloudWatchLoggingOptions?: CloudWatchLoggingOptions | undefined;
|
|
895
|
+
RequestConfiguration?: HttpEndpointRequestConfiguration | undefined;
|
|
896
|
+
ProcessingConfiguration?: ProcessingConfiguration | undefined;
|
|
897
|
+
RoleARN?: string | undefined;
|
|
898
|
+
RetryOptions?: HttpEndpointRetryOptions | undefined;
|
|
899
|
+
S3BackupMode?: HttpEndpointS3BackupMode | undefined;
|
|
900
|
+
S3DestinationDescription?: S3DestinationDescription | undefined;
|
|
901
|
+
SecretsManagerConfiguration?: SecretsManagerConfiguration | undefined;
|
|
774
902
|
}
|
|
775
903
|
export interface IcebergDestinationDescription {
|
|
776
|
-
DestinationTableConfigurationList?:
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
904
|
+
DestinationTableConfigurationList?:
|
|
905
|
+
| DestinationTableConfiguration[]
|
|
906
|
+
| undefined;
|
|
907
|
+
SchemaEvolutionConfiguration?: SchemaEvolutionConfiguration | undefined;
|
|
908
|
+
TableCreationConfiguration?: TableCreationConfiguration | undefined;
|
|
909
|
+
BufferingHints?: BufferingHints | undefined;
|
|
910
|
+
CloudWatchLoggingOptions?: CloudWatchLoggingOptions | undefined;
|
|
911
|
+
ProcessingConfiguration?: ProcessingConfiguration | undefined;
|
|
912
|
+
S3BackupMode?: IcebergS3BackupMode | undefined;
|
|
913
|
+
RetryOptions?: RetryOptions | undefined;
|
|
914
|
+
RoleARN?: string | undefined;
|
|
915
|
+
CatalogConfiguration?: CatalogConfiguration | undefined;
|
|
916
|
+
S3DestinationDescription?: S3DestinationDescription | undefined;
|
|
785
917
|
}
|
|
786
918
|
export interface RedshiftDestinationDescription {
|
|
787
919
|
RoleARN: string | undefined;
|
|
788
920
|
ClusterJDBCURL: string | undefined;
|
|
789
921
|
CopyCommand: CopyCommand | undefined;
|
|
790
|
-
Username?: string;
|
|
791
|
-
RetryOptions?: RedshiftRetryOptions;
|
|
922
|
+
Username?: string | undefined;
|
|
923
|
+
RetryOptions?: RedshiftRetryOptions | undefined;
|
|
792
924
|
S3DestinationDescription: S3DestinationDescription | undefined;
|
|
793
|
-
ProcessingConfiguration?: ProcessingConfiguration;
|
|
794
|
-
S3BackupMode?: RedshiftS3BackupMode;
|
|
795
|
-
S3BackupDescription?: S3DestinationDescription;
|
|
796
|
-
CloudWatchLoggingOptions?: CloudWatchLoggingOptions;
|
|
797
|
-
SecretsManagerConfiguration?: SecretsManagerConfiguration;
|
|
925
|
+
ProcessingConfiguration?: ProcessingConfiguration | undefined;
|
|
926
|
+
S3BackupMode?: RedshiftS3BackupMode | undefined;
|
|
927
|
+
S3BackupDescription?: S3DestinationDescription | undefined;
|
|
928
|
+
CloudWatchLoggingOptions?: CloudWatchLoggingOptions | undefined;
|
|
929
|
+
SecretsManagerConfiguration?: SecretsManagerConfiguration | undefined;
|
|
798
930
|
}
|
|
799
931
|
export interface SnowflakeDestinationDescription {
|
|
800
|
-
AccountUrl?: string;
|
|
801
|
-
User?: string;
|
|
802
|
-
Database?: string;
|
|
803
|
-
Schema?: string;
|
|
804
|
-
Table?: string;
|
|
805
|
-
SnowflakeRoleConfiguration?: SnowflakeRoleConfiguration;
|
|
806
|
-
DataLoadingOption?: SnowflakeDataLoadingOption;
|
|
807
|
-
MetaDataColumnName?: string;
|
|
808
|
-
ContentColumnName?: string;
|
|
809
|
-
SnowflakeVpcConfiguration?: SnowflakeVpcConfiguration;
|
|
810
|
-
CloudWatchLoggingOptions?: CloudWatchLoggingOptions;
|
|
811
|
-
ProcessingConfiguration?: ProcessingConfiguration;
|
|
812
|
-
RoleARN?: string;
|
|
813
|
-
RetryOptions?: SnowflakeRetryOptions;
|
|
814
|
-
S3BackupMode?: SnowflakeS3BackupMode;
|
|
815
|
-
S3DestinationDescription?: S3DestinationDescription;
|
|
816
|
-
SecretsManagerConfiguration?: SecretsManagerConfiguration;
|
|
817
|
-
BufferingHints?: SnowflakeBufferingHints;
|
|
932
|
+
AccountUrl?: string | undefined;
|
|
933
|
+
User?: string | undefined;
|
|
934
|
+
Database?: string | undefined;
|
|
935
|
+
Schema?: string | undefined;
|
|
936
|
+
Table?: string | undefined;
|
|
937
|
+
SnowflakeRoleConfiguration?: SnowflakeRoleConfiguration | undefined;
|
|
938
|
+
DataLoadingOption?: SnowflakeDataLoadingOption | undefined;
|
|
939
|
+
MetaDataColumnName?: string | undefined;
|
|
940
|
+
ContentColumnName?: string | undefined;
|
|
941
|
+
SnowflakeVpcConfiguration?: SnowflakeVpcConfiguration | undefined;
|
|
942
|
+
CloudWatchLoggingOptions?: CloudWatchLoggingOptions | undefined;
|
|
943
|
+
ProcessingConfiguration?: ProcessingConfiguration | undefined;
|
|
944
|
+
RoleARN?: string | undefined;
|
|
945
|
+
RetryOptions?: SnowflakeRetryOptions | undefined;
|
|
946
|
+
S3BackupMode?: SnowflakeS3BackupMode | undefined;
|
|
947
|
+
S3DestinationDescription?: S3DestinationDescription | undefined;
|
|
948
|
+
SecretsManagerConfiguration?: SecretsManagerConfiguration | undefined;
|
|
949
|
+
BufferingHints?: SnowflakeBufferingHints | undefined;
|
|
818
950
|
}
|
|
819
951
|
export interface SplunkDestinationDescription {
|
|
820
|
-
HECEndpoint?: string;
|
|
821
|
-
HECEndpointType?: HECEndpointType;
|
|
822
|
-
HECToken?: string;
|
|
823
|
-
HECAcknowledgmentTimeoutInSeconds?: number;
|
|
824
|
-
RetryOptions?: SplunkRetryOptions;
|
|
825
|
-
S3BackupMode?: SplunkS3BackupMode;
|
|
826
|
-
S3DestinationDescription?: S3DestinationDescription;
|
|
827
|
-
ProcessingConfiguration?: ProcessingConfiguration;
|
|
828
|
-
CloudWatchLoggingOptions?: CloudWatchLoggingOptions;
|
|
829
|
-
BufferingHints?: SplunkBufferingHints;
|
|
830
|
-
SecretsManagerConfiguration?: SecretsManagerConfiguration;
|
|
952
|
+
HECEndpoint?: string | undefined;
|
|
953
|
+
HECEndpointType?: HECEndpointType | undefined;
|
|
954
|
+
HECToken?: string | undefined;
|
|
955
|
+
HECAcknowledgmentTimeoutInSeconds?: number | undefined;
|
|
956
|
+
RetryOptions?: SplunkRetryOptions | undefined;
|
|
957
|
+
S3BackupMode?: SplunkS3BackupMode | undefined;
|
|
958
|
+
S3DestinationDescription?: S3DestinationDescription | undefined;
|
|
959
|
+
ProcessingConfiguration?: ProcessingConfiguration | undefined;
|
|
960
|
+
CloudWatchLoggingOptions?: CloudWatchLoggingOptions | undefined;
|
|
961
|
+
BufferingHints?: SplunkBufferingHints | undefined;
|
|
962
|
+
SecretsManagerConfiguration?: SecretsManagerConfiguration | undefined;
|
|
831
963
|
}
|
|
832
964
|
export interface DestinationDescription {
|
|
833
965
|
DestinationId: string | undefined;
|
|
834
|
-
S3DestinationDescription?: S3DestinationDescription;
|
|
835
|
-
ExtendedS3DestinationDescription?:
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
|
|
839
|
-
|
|
840
|
-
|
|
841
|
-
|
|
842
|
-
|
|
843
|
-
|
|
966
|
+
S3DestinationDescription?: S3DestinationDescription | undefined;
|
|
967
|
+
ExtendedS3DestinationDescription?:
|
|
968
|
+
| ExtendedS3DestinationDescription
|
|
969
|
+
| undefined;
|
|
970
|
+
RedshiftDestinationDescription?: RedshiftDestinationDescription | undefined;
|
|
971
|
+
ElasticsearchDestinationDescription?:
|
|
972
|
+
| ElasticsearchDestinationDescription
|
|
973
|
+
| undefined;
|
|
974
|
+
AmazonopensearchserviceDestinationDescription?:
|
|
975
|
+
| AmazonopensearchserviceDestinationDescription
|
|
976
|
+
| undefined;
|
|
977
|
+
SplunkDestinationDescription?: SplunkDestinationDescription | undefined;
|
|
978
|
+
HttpEndpointDestinationDescription?:
|
|
979
|
+
| HttpEndpointDestinationDescription
|
|
980
|
+
| undefined;
|
|
981
|
+
SnowflakeDestinationDescription?: SnowflakeDestinationDescription | undefined;
|
|
982
|
+
AmazonOpenSearchServerlessDestinationDescription?:
|
|
983
|
+
| AmazonOpenSearchServerlessDestinationDescription
|
|
984
|
+
| undefined;
|
|
985
|
+
IcebergDestinationDescription?: IcebergDestinationDescription | undefined;
|
|
844
986
|
}
|
|
845
987
|
export interface KinesisStreamSourceDescription {
|
|
846
|
-
KinesisStreamARN?: string;
|
|
847
|
-
RoleARN?: string;
|
|
848
|
-
DeliveryStartTimestamp?: Date;
|
|
988
|
+
KinesisStreamARN?: string | undefined;
|
|
989
|
+
RoleARN?: string | undefined;
|
|
990
|
+
DeliveryStartTimestamp?: Date | undefined;
|
|
849
991
|
}
|
|
850
992
|
export interface MSKSourceDescription {
|
|
851
|
-
MSKClusterARN?: string;
|
|
852
|
-
TopicName?: string;
|
|
853
|
-
AuthenticationConfiguration?: AuthenticationConfiguration;
|
|
854
|
-
DeliveryStartTimestamp?: Date;
|
|
855
|
-
ReadFromTimestamp?: Date;
|
|
993
|
+
MSKClusterARN?: string | undefined;
|
|
994
|
+
TopicName?: string | undefined;
|
|
995
|
+
AuthenticationConfiguration?: AuthenticationConfiguration | undefined;
|
|
996
|
+
DeliveryStartTimestamp?: Date | undefined;
|
|
997
|
+
ReadFromTimestamp?: Date | undefined;
|
|
856
998
|
}
|
|
857
999
|
export interface SourceDescription {
|
|
858
|
-
KinesisStreamSourceDescription?: KinesisStreamSourceDescription;
|
|
859
|
-
MSKSourceDescription?: MSKSourceDescription;
|
|
1000
|
+
KinesisStreamSourceDescription?: KinesisStreamSourceDescription | undefined;
|
|
1001
|
+
MSKSourceDescription?: MSKSourceDescription | undefined;
|
|
1002
|
+
DatabaseSourceDescription?: DatabaseSourceDescription | undefined;
|
|
860
1003
|
}
|
|
861
1004
|
export interface DeliveryStreamDescription {
|
|
862
1005
|
DeliveryStreamName: string | undefined;
|
|
863
1006
|
DeliveryStreamARN: string | undefined;
|
|
864
1007
|
DeliveryStreamStatus: DeliveryStreamStatus | undefined;
|
|
865
|
-
FailureDescription?: FailureDescription;
|
|
866
|
-
DeliveryStreamEncryptionConfiguration?:
|
|
1008
|
+
FailureDescription?: FailureDescription | undefined;
|
|
1009
|
+
DeliveryStreamEncryptionConfiguration?:
|
|
1010
|
+
| DeliveryStreamEncryptionConfiguration
|
|
1011
|
+
| undefined;
|
|
867
1012
|
DeliveryStreamType: DeliveryStreamType | undefined;
|
|
868
1013
|
VersionId: string | undefined;
|
|
869
|
-
CreateTimestamp?: Date;
|
|
870
|
-
LastUpdateTimestamp?: Date;
|
|
871
|
-
Source?: SourceDescription;
|
|
1014
|
+
CreateTimestamp?: Date | undefined;
|
|
1015
|
+
LastUpdateTimestamp?: Date | undefined;
|
|
1016
|
+
Source?: SourceDescription | undefined;
|
|
872
1017
|
Destinations: DestinationDescription[] | undefined;
|
|
873
1018
|
HasMoreDestinations: boolean | undefined;
|
|
874
1019
|
}
|
|
875
1020
|
export interface DescribeDeliveryStreamInput {
|
|
876
1021
|
DeliveryStreamName: string | undefined;
|
|
877
|
-
Limit?: number;
|
|
878
|
-
ExclusiveStartDestinationId?: string;
|
|
1022
|
+
Limit?: number | undefined;
|
|
1023
|
+
ExclusiveStartDestinationId?: string | undefined;
|
|
879
1024
|
}
|
|
880
1025
|
export interface DescribeDeliveryStreamOutput {
|
|
881
1026
|
DeliveryStreamDescription: DeliveryStreamDescription | undefined;
|
|
882
1027
|
}
|
|
883
1028
|
export interface ElasticsearchDestinationUpdate {
|
|
884
|
-
RoleARN?: string;
|
|
885
|
-
DomainARN?: string;
|
|
886
|
-
ClusterEndpoint?: string;
|
|
887
|
-
IndexName?: string;
|
|
888
|
-
TypeName?: string;
|
|
889
|
-
IndexRotationPeriod?: ElasticsearchIndexRotationPeriod;
|
|
890
|
-
BufferingHints?: ElasticsearchBufferingHints;
|
|
891
|
-
RetryOptions?: ElasticsearchRetryOptions;
|
|
892
|
-
S3Update?: S3DestinationUpdate;
|
|
893
|
-
ProcessingConfiguration?: ProcessingConfiguration;
|
|
894
|
-
CloudWatchLoggingOptions?: CloudWatchLoggingOptions;
|
|
895
|
-
DocumentIdOptions?: DocumentIdOptions;
|
|
1029
|
+
RoleARN?: string | undefined;
|
|
1030
|
+
DomainARN?: string | undefined;
|
|
1031
|
+
ClusterEndpoint?: string | undefined;
|
|
1032
|
+
IndexName?: string | undefined;
|
|
1033
|
+
TypeName?: string | undefined;
|
|
1034
|
+
IndexRotationPeriod?: ElasticsearchIndexRotationPeriod | undefined;
|
|
1035
|
+
BufferingHints?: ElasticsearchBufferingHints | undefined;
|
|
1036
|
+
RetryOptions?: ElasticsearchRetryOptions | undefined;
|
|
1037
|
+
S3Update?: S3DestinationUpdate | undefined;
|
|
1038
|
+
ProcessingConfiguration?: ProcessingConfiguration | undefined;
|
|
1039
|
+
CloudWatchLoggingOptions?: CloudWatchLoggingOptions | undefined;
|
|
1040
|
+
DocumentIdOptions?: DocumentIdOptions | undefined;
|
|
896
1041
|
}
|
|
897
1042
|
export interface ExtendedS3DestinationUpdate {
|
|
898
|
-
RoleARN?: string;
|
|
899
|
-
BucketARN?: string;
|
|
900
|
-
Prefix?: string;
|
|
901
|
-
ErrorOutputPrefix?: string;
|
|
902
|
-
BufferingHints?: BufferingHints;
|
|
903
|
-
CompressionFormat?: CompressionFormat;
|
|
904
|
-
EncryptionConfiguration?: EncryptionConfiguration;
|
|
905
|
-
CloudWatchLoggingOptions?: CloudWatchLoggingOptions;
|
|
906
|
-
ProcessingConfiguration?: ProcessingConfiguration;
|
|
907
|
-
S3BackupMode?: S3BackupMode;
|
|
908
|
-
S3BackupUpdate?: S3DestinationUpdate;
|
|
909
|
-
DataFormatConversionConfiguration?:
|
|
910
|
-
|
|
911
|
-
|
|
912
|
-
|
|
1043
|
+
RoleARN?: string | undefined;
|
|
1044
|
+
BucketARN?: string | undefined;
|
|
1045
|
+
Prefix?: string | undefined;
|
|
1046
|
+
ErrorOutputPrefix?: string | undefined;
|
|
1047
|
+
BufferingHints?: BufferingHints | undefined;
|
|
1048
|
+
CompressionFormat?: CompressionFormat | undefined;
|
|
1049
|
+
EncryptionConfiguration?: EncryptionConfiguration | undefined;
|
|
1050
|
+
CloudWatchLoggingOptions?: CloudWatchLoggingOptions | undefined;
|
|
1051
|
+
ProcessingConfiguration?: ProcessingConfiguration | undefined;
|
|
1052
|
+
S3BackupMode?: S3BackupMode | undefined;
|
|
1053
|
+
S3BackupUpdate?: S3DestinationUpdate | undefined;
|
|
1054
|
+
DataFormatConversionConfiguration?:
|
|
1055
|
+
| DataFormatConversionConfiguration
|
|
1056
|
+
| undefined;
|
|
1057
|
+
DynamicPartitioningConfiguration?:
|
|
1058
|
+
| DynamicPartitioningConfiguration
|
|
1059
|
+
| undefined;
|
|
1060
|
+
FileExtension?: string | undefined;
|
|
1061
|
+
CustomTimeZone?: string | undefined;
|
|
913
1062
|
}
|
|
914
1063
|
export interface ListDeliveryStreamsInput {
|
|
915
|
-
Limit?: number;
|
|
916
|
-
DeliveryStreamType?: DeliveryStreamType;
|
|
917
|
-
ExclusiveStartDeliveryStreamName?: string;
|
|
1064
|
+
Limit?: number | undefined;
|
|
1065
|
+
DeliveryStreamType?: DeliveryStreamType | undefined;
|
|
1066
|
+
ExclusiveStartDeliveryStreamName?: string | undefined;
|
|
918
1067
|
}
|
|
919
1068
|
export interface ListDeliveryStreamsOutput {
|
|
920
1069
|
DeliveryStreamNames: string[] | undefined;
|
|
@@ -922,8 +1071,8 @@ export interface ListDeliveryStreamsOutput {
|
|
|
922
1071
|
}
|
|
923
1072
|
export interface ListTagsForDeliveryStreamInput {
|
|
924
1073
|
DeliveryStreamName: string | undefined;
|
|
925
|
-
ExclusiveStartTagKey?: string;
|
|
926
|
-
Limit?: number;
|
|
1074
|
+
ExclusiveStartTagKey?: string | undefined;
|
|
1075
|
+
Limit?: number | undefined;
|
|
927
1076
|
}
|
|
928
1077
|
export interface ListTagsForDeliveryStreamOutput {
|
|
929
1078
|
Tags: Tag[] | undefined;
|
|
@@ -932,7 +1081,7 @@ export interface ListTagsForDeliveryStreamOutput {
|
|
|
932
1081
|
export declare class InvalidSourceException extends __BaseException {
|
|
933
1082
|
readonly name: "InvalidSourceException";
|
|
934
1083
|
readonly $fault: "client";
|
|
935
|
-
code?: string;
|
|
1084
|
+
code?: string | undefined;
|
|
936
1085
|
constructor(
|
|
937
1086
|
opts: __ExceptionOptionType<InvalidSourceException, __BaseException>
|
|
938
1087
|
);
|
|
@@ -946,7 +1095,7 @@ export interface PutRecordInput {
|
|
|
946
1095
|
}
|
|
947
1096
|
export interface PutRecordOutput {
|
|
948
1097
|
RecordId: string | undefined;
|
|
949
|
-
Encrypted?: boolean;
|
|
1098
|
+
Encrypted?: boolean | undefined;
|
|
950
1099
|
}
|
|
951
1100
|
export declare class ServiceUnavailableException extends __BaseException {
|
|
952
1101
|
readonly name: "ServiceUnavailableException";
|
|
@@ -960,18 +1109,20 @@ export interface PutRecordBatchInput {
|
|
|
960
1109
|
Records: _Record[] | undefined;
|
|
961
1110
|
}
|
|
962
1111
|
export interface PutRecordBatchResponseEntry {
|
|
963
|
-
RecordId?: string;
|
|
964
|
-
ErrorCode?: string;
|
|
965
|
-
ErrorMessage?: string;
|
|
1112
|
+
RecordId?: string | undefined;
|
|
1113
|
+
ErrorCode?: string | undefined;
|
|
1114
|
+
ErrorMessage?: string | undefined;
|
|
966
1115
|
}
|
|
967
1116
|
export interface PutRecordBatchOutput {
|
|
968
1117
|
FailedPutCount: number | undefined;
|
|
969
|
-
Encrypted?: boolean;
|
|
1118
|
+
Encrypted?: boolean | undefined;
|
|
970
1119
|
RequestResponses: PutRecordBatchResponseEntry[] | undefined;
|
|
971
1120
|
}
|
|
972
1121
|
export interface StartDeliveryStreamEncryptionInput {
|
|
973
1122
|
DeliveryStreamName: string | undefined;
|
|
974
|
-
DeliveryStreamEncryptionConfigurationInput?:
|
|
1123
|
+
DeliveryStreamEncryptionConfigurationInput?:
|
|
1124
|
+
| DeliveryStreamEncryptionConfigurationInput
|
|
1125
|
+
| undefined;
|
|
975
1126
|
}
|
|
976
1127
|
export interface StartDeliveryStreamEncryptionOutput {}
|
|
977
1128
|
export interface StopDeliveryStreamEncryptionInput {
|
|
@@ -989,90 +1140,98 @@ export interface UntagDeliveryStreamInput {
|
|
|
989
1140
|
}
|
|
990
1141
|
export interface UntagDeliveryStreamOutput {}
|
|
991
1142
|
export interface HttpEndpointDestinationUpdate {
|
|
992
|
-
EndpointConfiguration?: HttpEndpointConfiguration;
|
|
993
|
-
BufferingHints?: HttpEndpointBufferingHints;
|
|
994
|
-
CloudWatchLoggingOptions?: CloudWatchLoggingOptions;
|
|
995
|
-
RequestConfiguration?: HttpEndpointRequestConfiguration;
|
|
996
|
-
ProcessingConfiguration?: ProcessingConfiguration;
|
|
997
|
-
RoleARN?: string;
|
|
998
|
-
RetryOptions?: HttpEndpointRetryOptions;
|
|
999
|
-
S3BackupMode?: HttpEndpointS3BackupMode;
|
|
1000
|
-
S3Update?: S3DestinationUpdate;
|
|
1001
|
-
SecretsManagerConfiguration?: SecretsManagerConfiguration;
|
|
1143
|
+
EndpointConfiguration?: HttpEndpointConfiguration | undefined;
|
|
1144
|
+
BufferingHints?: HttpEndpointBufferingHints | undefined;
|
|
1145
|
+
CloudWatchLoggingOptions?: CloudWatchLoggingOptions | undefined;
|
|
1146
|
+
RequestConfiguration?: HttpEndpointRequestConfiguration | undefined;
|
|
1147
|
+
ProcessingConfiguration?: ProcessingConfiguration | undefined;
|
|
1148
|
+
RoleARN?: string | undefined;
|
|
1149
|
+
RetryOptions?: HttpEndpointRetryOptions | undefined;
|
|
1150
|
+
S3BackupMode?: HttpEndpointS3BackupMode | undefined;
|
|
1151
|
+
S3Update?: S3DestinationUpdate | undefined;
|
|
1152
|
+
SecretsManagerConfiguration?: SecretsManagerConfiguration | undefined;
|
|
1002
1153
|
}
|
|
1003
1154
|
export interface IcebergDestinationUpdate {
|
|
1004
|
-
DestinationTableConfigurationList?:
|
|
1005
|
-
|
|
1006
|
-
|
|
1007
|
-
|
|
1008
|
-
|
|
1009
|
-
|
|
1010
|
-
|
|
1011
|
-
|
|
1012
|
-
|
|
1155
|
+
DestinationTableConfigurationList?:
|
|
1156
|
+
| DestinationTableConfiguration[]
|
|
1157
|
+
| undefined;
|
|
1158
|
+
SchemaEvolutionConfiguration?: SchemaEvolutionConfiguration | undefined;
|
|
1159
|
+
TableCreationConfiguration?: TableCreationConfiguration | undefined;
|
|
1160
|
+
BufferingHints?: BufferingHints | undefined;
|
|
1161
|
+
CloudWatchLoggingOptions?: CloudWatchLoggingOptions | undefined;
|
|
1162
|
+
ProcessingConfiguration?: ProcessingConfiguration | undefined;
|
|
1163
|
+
S3BackupMode?: IcebergS3BackupMode | undefined;
|
|
1164
|
+
RetryOptions?: RetryOptions | undefined;
|
|
1165
|
+
RoleARN?: string | undefined;
|
|
1166
|
+
CatalogConfiguration?: CatalogConfiguration | undefined;
|
|
1167
|
+
S3Configuration?: S3DestinationConfiguration | undefined;
|
|
1013
1168
|
}
|
|
1014
1169
|
export interface RedshiftDestinationUpdate {
|
|
1015
|
-
RoleARN?: string;
|
|
1016
|
-
ClusterJDBCURL?: string;
|
|
1017
|
-
CopyCommand?: CopyCommand;
|
|
1018
|
-
Username?: string;
|
|
1019
|
-
Password?: string;
|
|
1020
|
-
RetryOptions?: RedshiftRetryOptions;
|
|
1021
|
-
S3Update?: S3DestinationUpdate;
|
|
1022
|
-
ProcessingConfiguration?: ProcessingConfiguration;
|
|
1023
|
-
S3BackupMode?: RedshiftS3BackupMode;
|
|
1024
|
-
S3BackupUpdate?: S3DestinationUpdate;
|
|
1025
|
-
CloudWatchLoggingOptions?: CloudWatchLoggingOptions;
|
|
1026
|
-
SecretsManagerConfiguration?: SecretsManagerConfiguration;
|
|
1170
|
+
RoleARN?: string | undefined;
|
|
1171
|
+
ClusterJDBCURL?: string | undefined;
|
|
1172
|
+
CopyCommand?: CopyCommand | undefined;
|
|
1173
|
+
Username?: string | undefined;
|
|
1174
|
+
Password?: string | undefined;
|
|
1175
|
+
RetryOptions?: RedshiftRetryOptions | undefined;
|
|
1176
|
+
S3Update?: S3DestinationUpdate | undefined;
|
|
1177
|
+
ProcessingConfiguration?: ProcessingConfiguration | undefined;
|
|
1178
|
+
S3BackupMode?: RedshiftS3BackupMode | undefined;
|
|
1179
|
+
S3BackupUpdate?: S3DestinationUpdate | undefined;
|
|
1180
|
+
CloudWatchLoggingOptions?: CloudWatchLoggingOptions | undefined;
|
|
1181
|
+
SecretsManagerConfiguration?: SecretsManagerConfiguration | undefined;
|
|
1027
1182
|
}
|
|
1028
1183
|
export interface SnowflakeDestinationUpdate {
|
|
1029
|
-
AccountUrl?: string;
|
|
1030
|
-
PrivateKey?: string;
|
|
1031
|
-
KeyPassphrase?: string;
|
|
1032
|
-
User?: string;
|
|
1033
|
-
Database?: string;
|
|
1034
|
-
Schema?: string;
|
|
1035
|
-
Table?: string;
|
|
1036
|
-
SnowflakeRoleConfiguration?: SnowflakeRoleConfiguration;
|
|
1037
|
-
DataLoadingOption?: SnowflakeDataLoadingOption;
|
|
1038
|
-
MetaDataColumnName?: string;
|
|
1039
|
-
ContentColumnName?: string;
|
|
1040
|
-
CloudWatchLoggingOptions?: CloudWatchLoggingOptions;
|
|
1041
|
-
ProcessingConfiguration?: ProcessingConfiguration;
|
|
1042
|
-
RoleARN?: string;
|
|
1043
|
-
RetryOptions?: SnowflakeRetryOptions;
|
|
1044
|
-
S3BackupMode?: SnowflakeS3BackupMode;
|
|
1045
|
-
S3Update?: S3DestinationUpdate;
|
|
1046
|
-
SecretsManagerConfiguration?: SecretsManagerConfiguration;
|
|
1047
|
-
BufferingHints?: SnowflakeBufferingHints;
|
|
1184
|
+
AccountUrl?: string | undefined;
|
|
1185
|
+
PrivateKey?: string | undefined;
|
|
1186
|
+
KeyPassphrase?: string | undefined;
|
|
1187
|
+
User?: string | undefined;
|
|
1188
|
+
Database?: string | undefined;
|
|
1189
|
+
Schema?: string | undefined;
|
|
1190
|
+
Table?: string | undefined;
|
|
1191
|
+
SnowflakeRoleConfiguration?: SnowflakeRoleConfiguration | undefined;
|
|
1192
|
+
DataLoadingOption?: SnowflakeDataLoadingOption | undefined;
|
|
1193
|
+
MetaDataColumnName?: string | undefined;
|
|
1194
|
+
ContentColumnName?: string | undefined;
|
|
1195
|
+
CloudWatchLoggingOptions?: CloudWatchLoggingOptions | undefined;
|
|
1196
|
+
ProcessingConfiguration?: ProcessingConfiguration | undefined;
|
|
1197
|
+
RoleARN?: string | undefined;
|
|
1198
|
+
RetryOptions?: SnowflakeRetryOptions | undefined;
|
|
1199
|
+
S3BackupMode?: SnowflakeS3BackupMode | undefined;
|
|
1200
|
+
S3Update?: S3DestinationUpdate | undefined;
|
|
1201
|
+
SecretsManagerConfiguration?: SecretsManagerConfiguration | undefined;
|
|
1202
|
+
BufferingHints?: SnowflakeBufferingHints | undefined;
|
|
1048
1203
|
}
|
|
1049
1204
|
export interface SplunkDestinationUpdate {
|
|
1050
|
-
HECEndpoint?: string;
|
|
1051
|
-
HECEndpointType?: HECEndpointType;
|
|
1052
|
-
HECToken?: string;
|
|
1053
|
-
HECAcknowledgmentTimeoutInSeconds?: number;
|
|
1054
|
-
RetryOptions?: SplunkRetryOptions;
|
|
1055
|
-
S3BackupMode?: SplunkS3BackupMode;
|
|
1056
|
-
S3Update?: S3DestinationUpdate;
|
|
1057
|
-
ProcessingConfiguration?: ProcessingConfiguration;
|
|
1058
|
-
CloudWatchLoggingOptions?: CloudWatchLoggingOptions;
|
|
1059
|
-
BufferingHints?: SplunkBufferingHints;
|
|
1060
|
-
SecretsManagerConfiguration?: SecretsManagerConfiguration;
|
|
1205
|
+
HECEndpoint?: string | undefined;
|
|
1206
|
+
HECEndpointType?: HECEndpointType | undefined;
|
|
1207
|
+
HECToken?: string | undefined;
|
|
1208
|
+
HECAcknowledgmentTimeoutInSeconds?: number | undefined;
|
|
1209
|
+
RetryOptions?: SplunkRetryOptions | undefined;
|
|
1210
|
+
S3BackupMode?: SplunkS3BackupMode | undefined;
|
|
1211
|
+
S3Update?: S3DestinationUpdate | undefined;
|
|
1212
|
+
ProcessingConfiguration?: ProcessingConfiguration | undefined;
|
|
1213
|
+
CloudWatchLoggingOptions?: CloudWatchLoggingOptions | undefined;
|
|
1214
|
+
BufferingHints?: SplunkBufferingHints | undefined;
|
|
1215
|
+
SecretsManagerConfiguration?: SecretsManagerConfiguration | undefined;
|
|
1061
1216
|
}
|
|
1062
1217
|
export interface UpdateDestinationInput {
|
|
1063
1218
|
DeliveryStreamName: string | undefined;
|
|
1064
1219
|
CurrentDeliveryStreamVersionId: string | undefined;
|
|
1065
1220
|
DestinationId: string | undefined;
|
|
1066
|
-
S3DestinationUpdate?: S3DestinationUpdate;
|
|
1067
|
-
ExtendedS3DestinationUpdate?: ExtendedS3DestinationUpdate;
|
|
1068
|
-
RedshiftDestinationUpdate?: RedshiftDestinationUpdate;
|
|
1069
|
-
ElasticsearchDestinationUpdate?: ElasticsearchDestinationUpdate;
|
|
1070
|
-
AmazonopensearchserviceDestinationUpdate?:
|
|
1071
|
-
|
|
1072
|
-
|
|
1073
|
-
|
|
1074
|
-
|
|
1075
|
-
|
|
1221
|
+
S3DestinationUpdate?: S3DestinationUpdate | undefined;
|
|
1222
|
+
ExtendedS3DestinationUpdate?: ExtendedS3DestinationUpdate | undefined;
|
|
1223
|
+
RedshiftDestinationUpdate?: RedshiftDestinationUpdate | undefined;
|
|
1224
|
+
ElasticsearchDestinationUpdate?: ElasticsearchDestinationUpdate | undefined;
|
|
1225
|
+
AmazonopensearchserviceDestinationUpdate?:
|
|
1226
|
+
| AmazonopensearchserviceDestinationUpdate
|
|
1227
|
+
| undefined;
|
|
1228
|
+
SplunkDestinationUpdate?: SplunkDestinationUpdate | undefined;
|
|
1229
|
+
HttpEndpointDestinationUpdate?: HttpEndpointDestinationUpdate | undefined;
|
|
1230
|
+
AmazonOpenSearchServerlessDestinationUpdate?:
|
|
1231
|
+
| AmazonOpenSearchServerlessDestinationUpdate
|
|
1232
|
+
| undefined;
|
|
1233
|
+
SnowflakeDestinationUpdate?: SnowflakeDestinationUpdate | undefined;
|
|
1234
|
+
IcebergDestinationUpdate?: IcebergDestinationUpdate | undefined;
|
|
1076
1235
|
}
|
|
1077
1236
|
export interface UpdateDestinationOutput {}
|
|
1078
1237
|
export declare const HttpEndpointConfigurationFilterSensitiveLog: (
|