@aws-sdk/client-firehose 3.301.0 → 3.303.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/models/models_0.js +135 -159
- package/dist-es/models/models_0.js +135 -159
- package/dist-types/models/models_0.d.ts +255 -135
- package/dist-types/ts3.4/models/models_0.d.ts +180 -135
- package/package.json +34 -34
|
@@ -42,18 +42,23 @@ export interface CloudWatchLoggingOptions {
|
|
|
42
42
|
}
|
|
43
43
|
/**
|
|
44
44
|
* @public
|
|
45
|
+
* @enum
|
|
45
46
|
*/
|
|
46
|
-
export declare
|
|
47
|
-
BUFFER_INTERVAL_IN_SECONDS
|
|
48
|
-
BUFFER_SIZE_IN_MB
|
|
49
|
-
Delimiter
|
|
50
|
-
JSON_PARSING_ENGINE
|
|
51
|
-
LAMBDA_ARN
|
|
52
|
-
LAMBDA_NUMBER_OF_RETRIES
|
|
53
|
-
METADATA_EXTRACTION_QUERY
|
|
54
|
-
ROLE_ARN
|
|
55
|
-
SUB_RECORD_TYPE
|
|
56
|
-
}
|
|
47
|
+
export declare const ProcessorParameterName: {
|
|
48
|
+
readonly BUFFER_INTERVAL_IN_SECONDS: "BufferIntervalInSeconds";
|
|
49
|
+
readonly BUFFER_SIZE_IN_MB: "BufferSizeInMBs";
|
|
50
|
+
readonly Delimiter: "Delimiter";
|
|
51
|
+
readonly JSON_PARSING_ENGINE: "JsonParsingEngine";
|
|
52
|
+
readonly LAMBDA_ARN: "LambdaArn";
|
|
53
|
+
readonly LAMBDA_NUMBER_OF_RETRIES: "NumberOfRetries";
|
|
54
|
+
readonly METADATA_EXTRACTION_QUERY: "MetadataExtractionQuery";
|
|
55
|
+
readonly ROLE_ARN: "RoleArn";
|
|
56
|
+
readonly SUB_RECORD_TYPE: "SubRecordType";
|
|
57
|
+
};
|
|
58
|
+
/**
|
|
59
|
+
* @public
|
|
60
|
+
*/
|
|
61
|
+
export type ProcessorParameterName = (typeof ProcessorParameterName)[keyof typeof ProcessorParameterName];
|
|
57
62
|
/**
|
|
58
63
|
* @public
|
|
59
64
|
* <p>Describes the processor parameter. </p>
|
|
@@ -74,13 +79,18 @@ export interface ProcessorParameter {
|
|
|
74
79
|
}
|
|
75
80
|
/**
|
|
76
81
|
* @public
|
|
82
|
+
* @enum
|
|
77
83
|
*/
|
|
78
|
-
export declare
|
|
79
|
-
AppendDelimiterToRecord
|
|
80
|
-
Lambda
|
|
81
|
-
MetadataExtraction
|
|
82
|
-
RecordDeAggregation
|
|
83
|
-
}
|
|
84
|
+
export declare const ProcessorType: {
|
|
85
|
+
readonly AppendDelimiterToRecord: "AppendDelimiterToRecord";
|
|
86
|
+
readonly Lambda: "Lambda";
|
|
87
|
+
readonly MetadataExtraction: "MetadataExtraction";
|
|
88
|
+
readonly RecordDeAggregation: "RecordDeAggregation";
|
|
89
|
+
};
|
|
90
|
+
/**
|
|
91
|
+
* @public
|
|
92
|
+
*/
|
|
93
|
+
export type ProcessorType = (typeof ProcessorType)[keyof typeof ProcessorType];
|
|
84
94
|
/**
|
|
85
95
|
* @public
|
|
86
96
|
* <p>Describes a data processor.</p>
|
|
@@ -126,11 +136,16 @@ export interface AmazonOpenSearchServerlessRetryOptions {
|
|
|
126
136
|
}
|
|
127
137
|
/**
|
|
128
138
|
* @public
|
|
139
|
+
* @enum
|
|
129
140
|
*/
|
|
130
|
-
export declare
|
|
131
|
-
AllDocuments
|
|
132
|
-
FailedDocumentsOnly
|
|
133
|
-
}
|
|
141
|
+
export declare const AmazonOpenSearchServerlessS3BackupMode: {
|
|
142
|
+
readonly AllDocuments: "AllDocuments";
|
|
143
|
+
readonly FailedDocumentsOnly: "FailedDocumentsOnly";
|
|
144
|
+
};
|
|
145
|
+
/**
|
|
146
|
+
* @public
|
|
147
|
+
*/
|
|
148
|
+
export type AmazonOpenSearchServerlessS3BackupMode = (typeof AmazonOpenSearchServerlessS3BackupMode)[keyof typeof AmazonOpenSearchServerlessS3BackupMode];
|
|
134
149
|
/**
|
|
135
150
|
* @public
|
|
136
151
|
* <p>Describes hints for the buffering to perform before delivering data to the
|
|
@@ -160,14 +175,19 @@ export interface BufferingHints {
|
|
|
160
175
|
}
|
|
161
176
|
/**
|
|
162
177
|
* @public
|
|
178
|
+
* @enum
|
|
163
179
|
*/
|
|
164
|
-
export declare
|
|
165
|
-
GZIP
|
|
166
|
-
HADOOP_SNAPPY
|
|
167
|
-
SNAPPY
|
|
168
|
-
UNCOMPRESSED
|
|
169
|
-
ZIP
|
|
170
|
-
}
|
|
180
|
+
export declare const CompressionFormat: {
|
|
181
|
+
readonly GZIP: "GZIP";
|
|
182
|
+
readonly HADOOP_SNAPPY: "HADOOP_SNAPPY";
|
|
183
|
+
readonly SNAPPY: "Snappy";
|
|
184
|
+
readonly UNCOMPRESSED: "UNCOMPRESSED";
|
|
185
|
+
readonly ZIP: "ZIP";
|
|
186
|
+
};
|
|
187
|
+
/**
|
|
188
|
+
* @public
|
|
189
|
+
*/
|
|
190
|
+
export type CompressionFormat = (typeof CompressionFormat)[keyof typeof CompressionFormat];
|
|
171
191
|
/**
|
|
172
192
|
* @public
|
|
173
193
|
* <p>Describes an encryption key for a destination in Amazon S3.</p>
|
|
@@ -181,10 +201,15 @@ export interface KMSEncryptionConfig {
|
|
|
181
201
|
}
|
|
182
202
|
/**
|
|
183
203
|
* @public
|
|
204
|
+
* @enum
|
|
184
205
|
*/
|
|
185
|
-
export declare
|
|
186
|
-
NoEncryption
|
|
187
|
-
}
|
|
206
|
+
export declare const NoEncryptionConfig: {
|
|
207
|
+
readonly NoEncryption: "NoEncryption";
|
|
208
|
+
};
|
|
209
|
+
/**
|
|
210
|
+
* @public
|
|
211
|
+
*/
|
|
212
|
+
export type NoEncryptionConfig = (typeof NoEncryptionConfig)[keyof typeof NoEncryptionConfig];
|
|
188
213
|
/**
|
|
189
214
|
* @public
|
|
190
215
|
* <p>Describes the encryption for a destination in Amazon S3.</p>
|
|
@@ -701,14 +726,19 @@ export interface AmazonopensearchserviceBufferingHints {
|
|
|
701
726
|
}
|
|
702
727
|
/**
|
|
703
728
|
* @public
|
|
729
|
+
* @enum
|
|
704
730
|
*/
|
|
705
|
-
export declare
|
|
706
|
-
NoRotation
|
|
707
|
-
OneDay
|
|
708
|
-
OneHour
|
|
709
|
-
OneMonth
|
|
710
|
-
OneWeek
|
|
711
|
-
}
|
|
731
|
+
export declare const AmazonopensearchserviceIndexRotationPeriod: {
|
|
732
|
+
readonly NoRotation: "NoRotation";
|
|
733
|
+
readonly OneDay: "OneDay";
|
|
734
|
+
readonly OneHour: "OneHour";
|
|
735
|
+
readonly OneMonth: "OneMonth";
|
|
736
|
+
readonly OneWeek: "OneWeek";
|
|
737
|
+
};
|
|
738
|
+
/**
|
|
739
|
+
* @public
|
|
740
|
+
*/
|
|
741
|
+
export type AmazonopensearchserviceIndexRotationPeriod = (typeof AmazonopensearchserviceIndexRotationPeriod)[keyof typeof AmazonopensearchserviceIndexRotationPeriod];
|
|
712
742
|
/**
|
|
713
743
|
* @public
|
|
714
744
|
* <p>Configures retry behavior in case Kinesis Data Firehose is unable to deliver documents
|
|
@@ -725,11 +755,16 @@ export interface AmazonopensearchserviceRetryOptions {
|
|
|
725
755
|
}
|
|
726
756
|
/**
|
|
727
757
|
* @public
|
|
758
|
+
* @enum
|
|
728
759
|
*/
|
|
729
|
-
export declare
|
|
730
|
-
AllDocuments
|
|
731
|
-
FailedDocumentsOnly
|
|
732
|
-
}
|
|
760
|
+
export declare const AmazonopensearchserviceS3BackupMode: {
|
|
761
|
+
readonly AllDocuments: "AllDocuments";
|
|
762
|
+
readonly FailedDocumentsOnly: "FailedDocumentsOnly";
|
|
763
|
+
};
|
|
764
|
+
/**
|
|
765
|
+
* @public
|
|
766
|
+
*/
|
|
767
|
+
export type AmazonopensearchserviceS3BackupMode = (typeof AmazonopensearchserviceS3BackupMode)[keyof typeof AmazonopensearchserviceS3BackupMode];
|
|
733
768
|
/**
|
|
734
769
|
* @public
|
|
735
770
|
* <p>Describes the configuration of a destination in Amazon OpenSearch Service</p>
|
|
@@ -943,11 +978,16 @@ export declare class ConcurrentModificationException extends __BaseException {
|
|
|
943
978
|
}
|
|
944
979
|
/**
|
|
945
980
|
* @public
|
|
981
|
+
* @enum
|
|
946
982
|
*/
|
|
947
|
-
export declare
|
|
948
|
-
GZIP
|
|
949
|
-
NONE
|
|
950
|
-
}
|
|
983
|
+
export declare const ContentEncoding: {
|
|
984
|
+
readonly GZIP: "GZIP";
|
|
985
|
+
readonly NONE: "NONE";
|
|
986
|
+
};
|
|
987
|
+
/**
|
|
988
|
+
* @public
|
|
989
|
+
*/
|
|
990
|
+
export type ContentEncoding = (typeof ContentEncoding)[keyof typeof ContentEncoding];
|
|
951
991
|
/**
|
|
952
992
|
* @public
|
|
953
993
|
* <p>Describes a <code>COPY</code> command for Amazon Redshift.</p>
|
|
@@ -987,11 +1027,16 @@ export interface CopyCommand {
|
|
|
987
1027
|
}
|
|
988
1028
|
/**
|
|
989
1029
|
* @public
|
|
1030
|
+
* @enum
|
|
990
1031
|
*/
|
|
991
|
-
export declare
|
|
992
|
-
AWS_OWNED_CMK
|
|
993
|
-
CUSTOMER_MANAGED_CMK
|
|
994
|
-
}
|
|
1032
|
+
export declare const KeyType: {
|
|
1033
|
+
readonly AWS_OWNED_CMK: "AWS_OWNED_CMK";
|
|
1034
|
+
readonly CUSTOMER_MANAGED_CMK: "CUSTOMER_MANAGED_CMK";
|
|
1035
|
+
};
|
|
1036
|
+
/**
|
|
1037
|
+
* @public
|
|
1038
|
+
*/
|
|
1039
|
+
export type KeyType = (typeof KeyType)[keyof typeof KeyType];
|
|
995
1040
|
/**
|
|
996
1041
|
* @public
|
|
997
1042
|
* <p>Specifies the type and Amazon Resource Name (ARN) of the CMK to use for Server-Side
|
|
@@ -1029,11 +1074,16 @@ export interface DeliveryStreamEncryptionConfigurationInput {
|
|
|
1029
1074
|
}
|
|
1030
1075
|
/**
|
|
1031
1076
|
* @public
|
|
1077
|
+
* @enum
|
|
1032
1078
|
*/
|
|
1033
|
-
export declare
|
|
1034
|
-
DirectPut
|
|
1035
|
-
KinesisStreamAsSource
|
|
1036
|
-
}
|
|
1079
|
+
export declare const DeliveryStreamType: {
|
|
1080
|
+
readonly DirectPut: "DirectPut";
|
|
1081
|
+
readonly KinesisStreamAsSource: "KinesisStreamAsSource";
|
|
1082
|
+
};
|
|
1083
|
+
/**
|
|
1084
|
+
* @public
|
|
1085
|
+
*/
|
|
1086
|
+
export type DeliveryStreamType = (typeof DeliveryStreamType)[keyof typeof DeliveryStreamType];
|
|
1037
1087
|
/**
|
|
1038
1088
|
* @public
|
|
1039
1089
|
* <p>Describes the buffering to perform before delivering data to the Amazon ES
|
|
@@ -1056,14 +1106,19 @@ export interface ElasticsearchBufferingHints {
|
|
|
1056
1106
|
}
|
|
1057
1107
|
/**
|
|
1058
1108
|
* @public
|
|
1109
|
+
* @enum
|
|
1059
1110
|
*/
|
|
1060
|
-
export declare
|
|
1061
|
-
NoRotation
|
|
1062
|
-
OneDay
|
|
1063
|
-
OneHour
|
|
1064
|
-
OneMonth
|
|
1065
|
-
OneWeek
|
|
1066
|
-
}
|
|
1111
|
+
export declare const ElasticsearchIndexRotationPeriod: {
|
|
1112
|
+
readonly NoRotation: "NoRotation";
|
|
1113
|
+
readonly OneDay: "OneDay";
|
|
1114
|
+
readonly OneHour: "OneHour";
|
|
1115
|
+
readonly OneMonth: "OneMonth";
|
|
1116
|
+
readonly OneWeek: "OneWeek";
|
|
1117
|
+
};
|
|
1118
|
+
/**
|
|
1119
|
+
* @public
|
|
1120
|
+
*/
|
|
1121
|
+
export type ElasticsearchIndexRotationPeriod = (typeof ElasticsearchIndexRotationPeriod)[keyof typeof ElasticsearchIndexRotationPeriod];
|
|
1067
1122
|
/**
|
|
1068
1123
|
* @public
|
|
1069
1124
|
* <p>Configures retry behavior in case Kinesis Data Firehose is unable to deliver
|
|
@@ -1080,11 +1135,16 @@ export interface ElasticsearchRetryOptions {
|
|
|
1080
1135
|
}
|
|
1081
1136
|
/**
|
|
1082
1137
|
* @public
|
|
1138
|
+
* @enum
|
|
1083
1139
|
*/
|
|
1084
|
-
export declare
|
|
1085
|
-
AllDocuments
|
|
1086
|
-
FailedDocumentsOnly
|
|
1087
|
-
}
|
|
1140
|
+
export declare const ElasticsearchS3BackupMode: {
|
|
1141
|
+
readonly AllDocuments: "AllDocuments";
|
|
1142
|
+
readonly FailedDocumentsOnly: "FailedDocumentsOnly";
|
|
1143
|
+
};
|
|
1144
|
+
/**
|
|
1145
|
+
* @public
|
|
1146
|
+
*/
|
|
1147
|
+
export type ElasticsearchS3BackupMode = (typeof ElasticsearchS3BackupMode)[keyof typeof ElasticsearchS3BackupMode];
|
|
1088
1148
|
/**
|
|
1089
1149
|
* @public
|
|
1090
1150
|
* <p>Describes the configuration of a destination in Amazon ES.</p>
|
|
@@ -1256,19 +1316,29 @@ export interface InputFormatConfiguration {
|
|
|
1256
1316
|
}
|
|
1257
1317
|
/**
|
|
1258
1318
|
* @public
|
|
1319
|
+
* @enum
|
|
1259
1320
|
*/
|
|
1260
|
-
export declare
|
|
1261
|
-
NONE
|
|
1262
|
-
SNAPPY
|
|
1263
|
-
ZLIB
|
|
1264
|
-
}
|
|
1321
|
+
export declare const OrcCompression: {
|
|
1322
|
+
readonly NONE: "NONE";
|
|
1323
|
+
readonly SNAPPY: "SNAPPY";
|
|
1324
|
+
readonly ZLIB: "ZLIB";
|
|
1325
|
+
};
|
|
1265
1326
|
/**
|
|
1266
1327
|
* @public
|
|
1267
1328
|
*/
|
|
1268
|
-
export
|
|
1269
|
-
|
|
1270
|
-
|
|
1271
|
-
|
|
1329
|
+
export type OrcCompression = (typeof OrcCompression)[keyof typeof OrcCompression];
|
|
1330
|
+
/**
|
|
1331
|
+
* @public
|
|
1332
|
+
* @enum
|
|
1333
|
+
*/
|
|
1334
|
+
export declare const OrcFormatVersion: {
|
|
1335
|
+
readonly V0_11: "V0_11";
|
|
1336
|
+
readonly V0_12: "V0_12";
|
|
1337
|
+
};
|
|
1338
|
+
/**
|
|
1339
|
+
* @public
|
|
1340
|
+
*/
|
|
1341
|
+
export type OrcFormatVersion = (typeof OrcFormatVersion)[keyof typeof OrcFormatVersion];
|
|
1272
1342
|
/**
|
|
1273
1343
|
* @public
|
|
1274
1344
|
* <p>A serializer to use for converting data to the ORC format before storing it in Amazon
|
|
@@ -1338,19 +1408,29 @@ export interface OrcSerDe {
|
|
|
1338
1408
|
}
|
|
1339
1409
|
/**
|
|
1340
1410
|
* @public
|
|
1411
|
+
* @enum
|
|
1341
1412
|
*/
|
|
1342
|
-
export declare
|
|
1343
|
-
GZIP
|
|
1344
|
-
SNAPPY
|
|
1345
|
-
UNCOMPRESSED
|
|
1346
|
-
}
|
|
1413
|
+
export declare const ParquetCompression: {
|
|
1414
|
+
readonly GZIP: "GZIP";
|
|
1415
|
+
readonly SNAPPY: "SNAPPY";
|
|
1416
|
+
readonly UNCOMPRESSED: "UNCOMPRESSED";
|
|
1417
|
+
};
|
|
1347
1418
|
/**
|
|
1348
1419
|
* @public
|
|
1349
1420
|
*/
|
|
1350
|
-
export
|
|
1351
|
-
|
|
1352
|
-
|
|
1353
|
-
|
|
1421
|
+
export type ParquetCompression = (typeof ParquetCompression)[keyof typeof ParquetCompression];
|
|
1422
|
+
/**
|
|
1423
|
+
* @public
|
|
1424
|
+
* @enum
|
|
1425
|
+
*/
|
|
1426
|
+
export declare const ParquetWriterVersion: {
|
|
1427
|
+
readonly V1: "V1";
|
|
1428
|
+
readonly V2: "V2";
|
|
1429
|
+
};
|
|
1430
|
+
/**
|
|
1431
|
+
* @public
|
|
1432
|
+
*/
|
|
1433
|
+
export type ParquetWriterVersion = (typeof ParquetWriterVersion)[keyof typeof ParquetWriterVersion];
|
|
1354
1434
|
/**
|
|
1355
1435
|
* @public
|
|
1356
1436
|
* <p>A serializer to use for converting data to the Parquet format before storing it in
|
|
@@ -1545,11 +1625,16 @@ export interface DynamicPartitioningConfiguration {
|
|
|
1545
1625
|
}
|
|
1546
1626
|
/**
|
|
1547
1627
|
* @public
|
|
1628
|
+
* @enum
|
|
1548
1629
|
*/
|
|
1549
|
-
export declare
|
|
1550
|
-
Disabled
|
|
1551
|
-
Enabled
|
|
1552
|
-
}
|
|
1630
|
+
export declare const S3BackupMode: {
|
|
1631
|
+
readonly Disabled: "Disabled";
|
|
1632
|
+
readonly Enabled: "Enabled";
|
|
1633
|
+
};
|
|
1634
|
+
/**
|
|
1635
|
+
* @public
|
|
1636
|
+
*/
|
|
1637
|
+
export type S3BackupMode = (typeof S3BackupMode)[keyof typeof S3BackupMode];
|
|
1553
1638
|
/**
|
|
1554
1639
|
* @public
|
|
1555
1640
|
* <p>Describes the configuration of a destination in Amazon S3.</p>
|
|
@@ -1719,11 +1804,16 @@ export interface HttpEndpointRetryOptions {
|
|
|
1719
1804
|
}
|
|
1720
1805
|
/**
|
|
1721
1806
|
* @public
|
|
1807
|
+
* @enum
|
|
1722
1808
|
*/
|
|
1723
|
-
export declare
|
|
1724
|
-
AllData
|
|
1725
|
-
FailedDataOnly
|
|
1726
|
-
}
|
|
1809
|
+
export declare const HttpEndpointS3BackupMode: {
|
|
1810
|
+
readonly AllData: "AllData";
|
|
1811
|
+
readonly FailedDataOnly: "FailedDataOnly";
|
|
1812
|
+
};
|
|
1813
|
+
/**
|
|
1814
|
+
* @public
|
|
1815
|
+
*/
|
|
1816
|
+
export type HttpEndpointS3BackupMode = (typeof HttpEndpointS3BackupMode)[keyof typeof HttpEndpointS3BackupMode];
|
|
1727
1817
|
/**
|
|
1728
1818
|
* @public
|
|
1729
1819
|
* <p>Describes the configuration of the HTTP endpoint destination.</p>
|
|
@@ -1812,11 +1902,16 @@ export interface RedshiftRetryOptions {
|
|
|
1812
1902
|
}
|
|
1813
1903
|
/**
|
|
1814
1904
|
* @public
|
|
1905
|
+
* @enum
|
|
1815
1906
|
*/
|
|
1816
|
-
export declare
|
|
1817
|
-
Disabled
|
|
1818
|
-
Enabled
|
|
1819
|
-
}
|
|
1907
|
+
export declare const RedshiftS3BackupMode: {
|
|
1908
|
+
readonly Disabled: "Disabled";
|
|
1909
|
+
readonly Enabled: "Enabled";
|
|
1910
|
+
};
|
|
1911
|
+
/**
|
|
1912
|
+
* @public
|
|
1913
|
+
*/
|
|
1914
|
+
export type RedshiftS3BackupMode = (typeof RedshiftS3BackupMode)[keyof typeof RedshiftS3BackupMode];
|
|
1820
1915
|
/**
|
|
1821
1916
|
* @public
|
|
1822
1917
|
* <p>Describes the configuration of a destination in Amazon Redshift.</p>
|
|
@@ -1879,11 +1974,16 @@ export interface RedshiftDestinationConfiguration {
|
|
|
1879
1974
|
}
|
|
1880
1975
|
/**
|
|
1881
1976
|
* @public
|
|
1977
|
+
* @enum
|
|
1882
1978
|
*/
|
|
1883
|
-
export declare
|
|
1884
|
-
Event
|
|
1885
|
-
Raw
|
|
1886
|
-
}
|
|
1979
|
+
export declare const HECEndpointType: {
|
|
1980
|
+
readonly Event: "Event";
|
|
1981
|
+
readonly Raw: "Raw";
|
|
1982
|
+
};
|
|
1983
|
+
/**
|
|
1984
|
+
* @public
|
|
1985
|
+
*/
|
|
1986
|
+
export type HECEndpointType = (typeof HECEndpointType)[keyof typeof HECEndpointType];
|
|
1887
1987
|
/**
|
|
1888
1988
|
* @public
|
|
1889
1989
|
* <p>Configures retry behavior in case Kinesis Data Firehose is unable to deliver
|
|
@@ -1900,11 +2000,16 @@ export interface SplunkRetryOptions {
|
|
|
1900
2000
|
}
|
|
1901
2001
|
/**
|
|
1902
2002
|
* @public
|
|
2003
|
+
* @enum
|
|
1903
2004
|
*/
|
|
1904
|
-
export declare
|
|
1905
|
-
AllEvents
|
|
1906
|
-
FailedEventsOnly
|
|
1907
|
-
}
|
|
2005
|
+
export declare const SplunkS3BackupMode: {
|
|
2006
|
+
readonly AllEvents: "AllEvents";
|
|
2007
|
+
readonly FailedEventsOnly: "FailedEventsOnly";
|
|
2008
|
+
};
|
|
2009
|
+
/**
|
|
2010
|
+
* @public
|
|
2011
|
+
*/
|
|
2012
|
+
export type SplunkS3BackupMode = (typeof SplunkS3BackupMode)[keyof typeof SplunkS3BackupMode];
|
|
1908
2013
|
/**
|
|
1909
2014
|
* @public
|
|
1910
2015
|
* <p>Describes the configuration of a destination in Splunk.</p>
|
|
@@ -2167,24 +2272,29 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
2167
2272
|
}
|
|
2168
2273
|
/**
|
|
2169
2274
|
* @public
|
|
2275
|
+
* @enum
|
|
2170
2276
|
*/
|
|
2171
|
-
export declare
|
|
2172
|
-
CREATE_ENI_FAILED
|
|
2173
|
-
CREATE_KMS_GRANT_FAILED
|
|
2174
|
-
DELETE_ENI_FAILED
|
|
2175
|
-
DISABLED_KMS_KEY
|
|
2176
|
-
ENI_ACCESS_DENIED
|
|
2177
|
-
INVALID_KMS_KEY
|
|
2178
|
-
KMS_ACCESS_DENIED
|
|
2179
|
-
KMS_KEY_NOT_FOUND
|
|
2180
|
-
KMS_OPT_IN_REQUIRED
|
|
2181
|
-
RETIRE_KMS_GRANT_FAILED
|
|
2182
|
-
SECURITY_GROUP_ACCESS_DENIED
|
|
2183
|
-
SECURITY_GROUP_NOT_FOUND
|
|
2184
|
-
SUBNET_ACCESS_DENIED
|
|
2185
|
-
SUBNET_NOT_FOUND
|
|
2186
|
-
UNKNOWN_ERROR
|
|
2187
|
-
}
|
|
2277
|
+
export declare const DeliveryStreamFailureType: {
|
|
2278
|
+
readonly CREATE_ENI_FAILED: "CREATE_ENI_FAILED";
|
|
2279
|
+
readonly CREATE_KMS_GRANT_FAILED: "CREATE_KMS_GRANT_FAILED";
|
|
2280
|
+
readonly DELETE_ENI_FAILED: "DELETE_ENI_FAILED";
|
|
2281
|
+
readonly DISABLED_KMS_KEY: "DISABLED_KMS_KEY";
|
|
2282
|
+
readonly ENI_ACCESS_DENIED: "ENI_ACCESS_DENIED";
|
|
2283
|
+
readonly INVALID_KMS_KEY: "INVALID_KMS_KEY";
|
|
2284
|
+
readonly KMS_ACCESS_DENIED: "KMS_ACCESS_DENIED";
|
|
2285
|
+
readonly KMS_KEY_NOT_FOUND: "KMS_KEY_NOT_FOUND";
|
|
2286
|
+
readonly KMS_OPT_IN_REQUIRED: "KMS_OPT_IN_REQUIRED";
|
|
2287
|
+
readonly RETIRE_KMS_GRANT_FAILED: "RETIRE_KMS_GRANT_FAILED";
|
|
2288
|
+
readonly SECURITY_GROUP_ACCESS_DENIED: "SECURITY_GROUP_ACCESS_DENIED";
|
|
2289
|
+
readonly SECURITY_GROUP_NOT_FOUND: "SECURITY_GROUP_NOT_FOUND";
|
|
2290
|
+
readonly SUBNET_ACCESS_DENIED: "SUBNET_ACCESS_DENIED";
|
|
2291
|
+
readonly SUBNET_NOT_FOUND: "SUBNET_NOT_FOUND";
|
|
2292
|
+
readonly UNKNOWN_ERROR: "UNKNOWN_ERROR";
|
|
2293
|
+
};
|
|
2294
|
+
/**
|
|
2295
|
+
* @public
|
|
2296
|
+
*/
|
|
2297
|
+
export type DeliveryStreamFailureType = (typeof DeliveryStreamFailureType)[keyof typeof DeliveryStreamFailureType];
|
|
2188
2298
|
/**
|
|
2189
2299
|
* @public
|
|
2190
2300
|
* <p>Provides details in case one of the following operations fails due to an error related
|
|
@@ -2203,15 +2313,20 @@ export interface FailureDescription {
|
|
|
2203
2313
|
}
|
|
2204
2314
|
/**
|
|
2205
2315
|
* @public
|
|
2316
|
+
* @enum
|
|
2206
2317
|
*/
|
|
2207
|
-
export declare
|
|
2208
|
-
DISABLED
|
|
2209
|
-
DISABLING
|
|
2210
|
-
DISABLING_FAILED
|
|
2211
|
-
ENABLED
|
|
2212
|
-
ENABLING
|
|
2213
|
-
ENABLING_FAILED
|
|
2214
|
-
}
|
|
2318
|
+
export declare const DeliveryStreamEncryptionStatus: {
|
|
2319
|
+
readonly DISABLED: "DISABLED";
|
|
2320
|
+
readonly DISABLING: "DISABLING";
|
|
2321
|
+
readonly DISABLING_FAILED: "DISABLING_FAILED";
|
|
2322
|
+
readonly ENABLED: "ENABLED";
|
|
2323
|
+
readonly ENABLING: "ENABLING";
|
|
2324
|
+
readonly ENABLING_FAILED: "ENABLING_FAILED";
|
|
2325
|
+
};
|
|
2326
|
+
/**
|
|
2327
|
+
* @public
|
|
2328
|
+
*/
|
|
2329
|
+
export type DeliveryStreamEncryptionStatus = (typeof DeliveryStreamEncryptionStatus)[keyof typeof DeliveryStreamEncryptionStatus];
|
|
2215
2330
|
/**
|
|
2216
2331
|
* @public
|
|
2217
2332
|
* <p>Contains information about the server-side encryption (SSE) status for the delivery
|
|
@@ -2247,14 +2362,19 @@ export interface DeliveryStreamEncryptionConfiguration {
|
|
|
2247
2362
|
}
|
|
2248
2363
|
/**
|
|
2249
2364
|
* @public
|
|
2365
|
+
* @enum
|
|
2250
2366
|
*/
|
|
2251
|
-
export declare
|
|
2252
|
-
ACTIVE
|
|
2253
|
-
CREATING
|
|
2254
|
-
CREATING_FAILED
|
|
2255
|
-
DELETING
|
|
2256
|
-
DELETING_FAILED
|
|
2257
|
-
}
|
|
2367
|
+
export declare const DeliveryStreamStatus: {
|
|
2368
|
+
readonly ACTIVE: "ACTIVE";
|
|
2369
|
+
readonly CREATING: "CREATING";
|
|
2370
|
+
readonly CREATING_FAILED: "CREATING_FAILED";
|
|
2371
|
+
readonly DELETING: "DELETING";
|
|
2372
|
+
readonly DELETING_FAILED: "DELETING_FAILED";
|
|
2373
|
+
};
|
|
2374
|
+
/**
|
|
2375
|
+
* @public
|
|
2376
|
+
*/
|
|
2377
|
+
export type DeliveryStreamStatus = (typeof DeliveryStreamStatus)[keyof typeof DeliveryStreamStatus];
|
|
2258
2378
|
/**
|
|
2259
2379
|
* @public
|
|
2260
2380
|
* <p>The destination description in Amazon ES.</p>
|