forked from aws-amplify/aws-sdk-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAWSFirehoseModel.h
3845 lines (2947 loc) · 166 KB
/
AWSFirehoseModel.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
//
// Copyright 2010-2024 Amazon.com, Inc. or its affiliates. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License").
// You may not use this file except in compliance with the License.
// A copy of the License is located at
//
// http://aws.amazon.com/apache2.0
//
// or in the "license" file accompanying this file. This file is distributed
// on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
// express or implied. See the License for the specific language governing
// permissions and limitations under the License.
//
#import <Foundation/Foundation.h>
#import <AWSCore/AWSNetworking.h>
#import <AWSCore/AWSModel.h>
NS_ASSUME_NONNULL_BEGIN
FOUNDATION_EXPORT NSString *const AWSFirehoseErrorDomain;
typedef NS_ENUM(NSInteger, AWSFirehoseErrorType) {
AWSFirehoseErrorUnknown,
AWSFirehoseErrorConcurrentModification,
AWSFirehoseErrorInvalidArgument,
AWSFirehoseErrorInvalidKMSResource,
AWSFirehoseErrorInvalidSource,
AWSFirehoseErrorLimitExceeded,
AWSFirehoseErrorResourceInUse,
AWSFirehoseErrorResourceNotFound,
AWSFirehoseErrorServiceUnavailable,
};
typedef NS_ENUM(NSInteger, AWSFirehoseAmazonOpenSearchServerlessS3BackupMode) {
AWSFirehoseAmazonOpenSearchServerlessS3BackupModeUnknown,
AWSFirehoseAmazonOpenSearchServerlessS3BackupModeFailedDocumentsOnly,
AWSFirehoseAmazonOpenSearchServerlessS3BackupModeAllDocuments,
};
typedef NS_ENUM(NSInteger, AWSFirehoseAmazonopensearchserviceIndexRotationPeriod) {
AWSFirehoseAmazonopensearchserviceIndexRotationPeriodUnknown,
AWSFirehoseAmazonopensearchserviceIndexRotationPeriodNoRotation,
AWSFirehoseAmazonopensearchserviceIndexRotationPeriodOneHour,
AWSFirehoseAmazonopensearchserviceIndexRotationPeriodOneDay,
AWSFirehoseAmazonopensearchserviceIndexRotationPeriodOneWeek,
AWSFirehoseAmazonopensearchserviceIndexRotationPeriodOneMonth,
};
typedef NS_ENUM(NSInteger, AWSFirehoseAmazonopensearchserviceS3BackupMode) {
AWSFirehoseAmazonopensearchserviceS3BackupModeUnknown,
AWSFirehoseAmazonopensearchserviceS3BackupModeFailedDocumentsOnly,
AWSFirehoseAmazonopensearchserviceS3BackupModeAllDocuments,
};
typedef NS_ENUM(NSInteger, AWSFirehoseCompressionFormat) {
AWSFirehoseCompressionFormatUnknown,
AWSFirehoseCompressionFormatUncompressed,
AWSFirehoseCompressionFormatGzip,
AWSFirehoseCompressionFormatZip,
AWSFirehoseCompressionFormatSnappy,
AWSFirehoseCompressionFormatHadoopSnappy,
};
typedef NS_ENUM(NSInteger, AWSFirehoseConnectivity) {
AWSFirehoseConnectivityUnknown,
AWSFirehoseConnectivityPublic,
AWSFirehoseConnectivityPrivate,
};
typedef NS_ENUM(NSInteger, AWSFirehoseContentEncoding) {
AWSFirehoseContentEncodingUnknown,
AWSFirehoseContentEncodingNone,
AWSFirehoseContentEncodingGzip,
};
typedef NS_ENUM(NSInteger, AWSFirehoseDefaultDocumentIdFormat) {
AWSFirehoseDefaultDocumentIdFormatUnknown,
AWSFirehoseDefaultDocumentIdFormatFirehoseDefault,
AWSFirehoseDefaultDocumentIdFormatNoDocumentId,
};
typedef NS_ENUM(NSInteger, AWSFirehoseDeliveryStreamEncryptionStatus) {
AWSFirehoseDeliveryStreamEncryptionStatusUnknown,
AWSFirehoseDeliveryStreamEncryptionStatusEnabled,
AWSFirehoseDeliveryStreamEncryptionStatusEnabling,
AWSFirehoseDeliveryStreamEncryptionStatusEnablingFailed,
AWSFirehoseDeliveryStreamEncryptionStatusDisabled,
AWSFirehoseDeliveryStreamEncryptionStatusDisabling,
AWSFirehoseDeliveryStreamEncryptionStatusDisablingFailed,
};
typedef NS_ENUM(NSInteger, AWSFirehoseDeliveryStreamFailureType) {
AWSFirehoseDeliveryStreamFailureTypeUnknown,
AWSFirehoseDeliveryStreamFailureTypeRetireKmsGrantFailed,
AWSFirehoseDeliveryStreamFailureTypeCreateKmsGrantFailed,
AWSFirehoseDeliveryStreamFailureTypeKmsAccessDenied,
AWSFirehoseDeliveryStreamFailureTypeDisabledKmsKey,
AWSFirehoseDeliveryStreamFailureTypeInvalidKmsKey,
AWSFirehoseDeliveryStreamFailureTypeKmsKeyNotFound,
AWSFirehoseDeliveryStreamFailureTypeKmsOptInRequired,
AWSFirehoseDeliveryStreamFailureTypeCreateEniFailed,
AWSFirehoseDeliveryStreamFailureTypeDeleteEniFailed,
AWSFirehoseDeliveryStreamFailureTypeSubnetNotFound,
AWSFirehoseDeliveryStreamFailureTypeSecurityGroupNotFound,
AWSFirehoseDeliveryStreamFailureTypeEniAccessDenied,
AWSFirehoseDeliveryStreamFailureTypeSubnetAccessDenied,
AWSFirehoseDeliveryStreamFailureTypeSecurityGroupAccessDenied,
AWSFirehoseDeliveryStreamFailureTypeUnknownError,
};
typedef NS_ENUM(NSInteger, AWSFirehoseDeliveryStreamStatus) {
AWSFirehoseDeliveryStreamStatusUnknown,
AWSFirehoseDeliveryStreamStatusCreating,
AWSFirehoseDeliveryStreamStatusCreatingFailed,
AWSFirehoseDeliveryStreamStatusDeleting,
AWSFirehoseDeliveryStreamStatusDeletingFailed,
AWSFirehoseDeliveryStreamStatusActive,
};
typedef NS_ENUM(NSInteger, AWSFirehoseDeliveryStreamType) {
AWSFirehoseDeliveryStreamTypeUnknown,
AWSFirehoseDeliveryStreamTypeDirectPut,
AWSFirehoseDeliveryStreamTypeKinesisStreamAsSource,
AWSFirehoseDeliveryStreamTypeMSKAsSource,
};
typedef NS_ENUM(NSInteger, AWSFirehoseElasticsearchIndexRotationPeriod) {
AWSFirehoseElasticsearchIndexRotationPeriodUnknown,
AWSFirehoseElasticsearchIndexRotationPeriodNoRotation,
AWSFirehoseElasticsearchIndexRotationPeriodOneHour,
AWSFirehoseElasticsearchIndexRotationPeriodOneDay,
AWSFirehoseElasticsearchIndexRotationPeriodOneWeek,
AWSFirehoseElasticsearchIndexRotationPeriodOneMonth,
};
typedef NS_ENUM(NSInteger, AWSFirehoseElasticsearchS3BackupMode) {
AWSFirehoseElasticsearchS3BackupModeUnknown,
AWSFirehoseElasticsearchS3BackupModeFailedDocumentsOnly,
AWSFirehoseElasticsearchS3BackupModeAllDocuments,
};
typedef NS_ENUM(NSInteger, AWSFirehoseHECEndpointType) {
AWSFirehoseHECEndpointTypeUnknown,
AWSFirehoseHECEndpointTypeRaw,
AWSFirehoseHECEndpointTypeEvent,
};
typedef NS_ENUM(NSInteger, AWSFirehoseHttpEndpointS3BackupMode) {
AWSFirehoseHttpEndpointS3BackupModeUnknown,
AWSFirehoseHttpEndpointS3BackupModeFailedDataOnly,
AWSFirehoseHttpEndpointS3BackupModeAllData,
};
typedef NS_ENUM(NSInteger, AWSFirehoseKeyType) {
AWSFirehoseKeyTypeUnknown,
AWSFirehoseKeyTypeAwsOwnedCmk,
AWSFirehoseKeyTypeCustomerManagedCmk,
};
typedef NS_ENUM(NSInteger, AWSFirehoseNoEncryptionConfig) {
AWSFirehoseNoEncryptionConfigUnknown,
AWSFirehoseNoEncryptionConfigNoEncryption,
};
typedef NS_ENUM(NSInteger, AWSFirehoseOrcCompression) {
AWSFirehoseOrcCompressionUnknown,
AWSFirehoseOrcCompressionNone,
AWSFirehoseOrcCompressionZlib,
AWSFirehoseOrcCompressionSnappy,
};
typedef NS_ENUM(NSInteger, AWSFirehoseOrcFormatVersion) {
AWSFirehoseOrcFormatVersionUnknown,
AWSFirehoseOrcFormatVersionV011,
AWSFirehoseOrcFormatVersionV012,
};
typedef NS_ENUM(NSInteger, AWSFirehoseParquetCompression) {
AWSFirehoseParquetCompressionUnknown,
AWSFirehoseParquetCompressionUncompressed,
AWSFirehoseParquetCompressionGzip,
AWSFirehoseParquetCompressionSnappy,
};
typedef NS_ENUM(NSInteger, AWSFirehoseParquetWriterVersion) {
AWSFirehoseParquetWriterVersionUnknown,
AWSFirehoseParquetWriterVersionV1,
AWSFirehoseParquetWriterVersionV2,
};
typedef NS_ENUM(NSInteger, AWSFirehoseProcessorParameterName) {
AWSFirehoseProcessorParameterNameUnknown,
AWSFirehoseProcessorParameterNameLambdaArn,
AWSFirehoseProcessorParameterNameNumberOfRetries,
AWSFirehoseProcessorParameterNameMetadataExtractionQuery,
AWSFirehoseProcessorParameterNameJsonParsingEngine,
AWSFirehoseProcessorParameterNameRoleArn,
AWSFirehoseProcessorParameterNameBufferSizeInMBs,
AWSFirehoseProcessorParameterNameBufferIntervalInSeconds,
AWSFirehoseProcessorParameterNameSubRecordType,
AWSFirehoseProcessorParameterNameDelimiter,
AWSFirehoseProcessorParameterNameCompressionFormat,
AWSFirehoseProcessorParameterNameDataMessageExtraction,
};
typedef NS_ENUM(NSInteger, AWSFirehoseProcessorType) {
AWSFirehoseProcessorTypeUnknown,
AWSFirehoseProcessorTypeRecordDeAggregation,
AWSFirehoseProcessorTypeDecompression,
AWSFirehoseProcessorTypeCloudWatchLogProcessing,
AWSFirehoseProcessorTypeLambda,
AWSFirehoseProcessorTypeMetadataExtraction,
AWSFirehoseProcessorTypeAppendDelimiterToRecord,
};
typedef NS_ENUM(NSInteger, AWSFirehoseRedshiftS3BackupMode) {
AWSFirehoseRedshiftS3BackupModeUnknown,
AWSFirehoseRedshiftS3BackupModeDisabled,
AWSFirehoseRedshiftS3BackupModeEnabled,
};
typedef NS_ENUM(NSInteger, AWSFirehoseS3BackupMode) {
AWSFirehoseS3BackupModeUnknown,
AWSFirehoseS3BackupModeDisabled,
AWSFirehoseS3BackupModeEnabled,
};
typedef NS_ENUM(NSInteger, AWSFirehoseSnowflakeDataLoadingOption) {
AWSFirehoseSnowflakeDataLoadingOptionUnknown,
AWSFirehoseSnowflakeDataLoadingOptionJsonMapping,
AWSFirehoseSnowflakeDataLoadingOptionVariantContentMapping,
AWSFirehoseSnowflakeDataLoadingOptionVariantContentAndMetadataMapping,
};
typedef NS_ENUM(NSInteger, AWSFirehoseSnowflakeS3BackupMode) {
AWSFirehoseSnowflakeS3BackupModeUnknown,
AWSFirehoseSnowflakeS3BackupModeFailedDataOnly,
AWSFirehoseSnowflakeS3BackupModeAllData,
};
typedef NS_ENUM(NSInteger, AWSFirehoseSplunkS3BackupMode) {
AWSFirehoseSplunkS3BackupModeUnknown,
AWSFirehoseSplunkS3BackupModeFailedEventsOnly,
AWSFirehoseSplunkS3BackupModeAllEvents,
};
@class AWSFirehoseAmazonOpenSearchServerlessBufferingHints;
@class AWSFirehoseAmazonOpenSearchServerlessDestinationConfiguration;
@class AWSFirehoseAmazonOpenSearchServerlessDestinationDescription;
@class AWSFirehoseAmazonOpenSearchServerlessDestinationUpdate;
@class AWSFirehoseAmazonOpenSearchServerlessRetryOptions;
@class AWSFirehoseAmazonopensearchserviceBufferingHints;
@class AWSFirehoseAmazonopensearchserviceDestinationConfiguration;
@class AWSFirehoseAmazonopensearchserviceDestinationDescription;
@class AWSFirehoseAmazonopensearchserviceDestinationUpdate;
@class AWSFirehoseAmazonopensearchserviceRetryOptions;
@class AWSFirehoseAuthenticationConfiguration;
@class AWSFirehoseBufferingHints;
@class AWSFirehoseCloudWatchLoggingOptions;
@class AWSFirehoseReplicateCommand;
@class AWSFirehoseCreateDeliveryStreamInput;
@class AWSFirehoseCreateDeliveryStreamOutput;
@class AWSFirehoseDataFormatConversionConfiguration;
@class AWSFirehoseDeleteDeliveryStreamInput;
@class AWSFirehoseDeleteDeliveryStreamOutput;
@class AWSFirehoseDeliveryStreamDescription;
@class AWSFirehoseDeliveryStreamEncryptionConfiguration;
@class AWSFirehoseDeliveryStreamEncryptionConfigurationInput;
@class AWSFirehoseDescribeDeliveryStreamInput;
@class AWSFirehoseDescribeDeliveryStreamOutput;
@class AWSFirehoseDeserializer;
@class AWSFirehoseDestinationDescription;
@class AWSFirehoseDocumentIdOptions;
@class AWSFirehoseDynamicPartitioningConfiguration;
@class AWSFirehoseElasticsearchBufferingHints;
@class AWSFirehoseElasticsearchDestinationConfiguration;
@class AWSFirehoseElasticsearchDestinationDescription;
@class AWSFirehoseElasticsearchDestinationUpdate;
@class AWSFirehoseElasticsearchRetryOptions;
@class AWSFirehoseEncryptionConfiguration;
@class AWSFirehoseExtendedS3DestinationConfiguration;
@class AWSFirehoseExtendedS3DestinationDescription;
@class AWSFirehoseExtendedS3DestinationUpdate;
@class AWSFirehoseFailureDescription;
@class AWSFirehoseHiveJsonSerDe;
@class AWSFirehoseHttpEndpointBufferingHints;
@class AWSFirehoseHttpEndpointCommonAttribute;
@class AWSFirehoseHttpEndpointConfiguration;
@class AWSFirehoseHttpEndpointDescription;
@class AWSFirehoseHttpEndpointDestinationConfiguration;
@class AWSFirehoseHttpEndpointDestinationDescription;
@class AWSFirehoseHttpEndpointDestinationUpdate;
@class AWSFirehoseHttpEndpointRequestConfiguration;
@class AWSFirehoseHttpEndpointRetryOptions;
@class AWSFirehoseInputFormatConfiguration;
@class AWSFirehoseKMSEncryptionConfig;
@class AWSFirehoseKinesisStreamSourceConfiguration;
@class AWSFirehoseKinesisStreamSourceDescription;
@class AWSFirehoseListDeliveryStreamsInput;
@class AWSFirehoseListDeliveryStreamsOutput;
@class AWSFirehoseListTagsForDeliveryStreamInput;
@class AWSFirehoseListTagsForDeliveryStreamOutput;
@class AWSFirehoseMSKSourceConfiguration;
@class AWSFirehoseMSKSourceDescription;
@class AWSFirehoseOpenXJsonSerDe;
@class AWSFirehoseOrcSerDe;
@class AWSFirehoseOutputFormatConfiguration;
@class AWSFirehoseParquetSerDe;
@class AWSFirehoseProcessingConfiguration;
@class AWSFirehoseProcessor;
@class AWSFirehoseProcessorParameter;
@class AWSFirehosePutRecordBatchInput;
@class AWSFirehosePutRecordBatchOutput;
@class AWSFirehosePutRecordBatchResponseEntry;
@class AWSFirehosePutRecordInput;
@class AWSFirehosePutRecordOutput;
@class AWSFirehoseRecord;
@class AWSFirehoseRedshiftDestinationConfiguration;
@class AWSFirehoseRedshiftDestinationDescription;
@class AWSFirehoseRedshiftDestinationUpdate;
@class AWSFirehoseRedshiftRetryOptions;
@class AWSFirehoseRetryOptions;
@class AWSFirehoseS3DestinationConfiguration;
@class AWSFirehoseS3DestinationDescription;
@class AWSFirehoseS3DestinationUpdate;
@class AWSFirehoseSchemaConfiguration;
@class AWSFirehoseSerializer;
@class AWSFirehoseSnowflakeDestinationConfiguration;
@class AWSFirehoseSnowflakeDestinationDescription;
@class AWSFirehoseSnowflakeDestinationUpdate;
@class AWSFirehoseSnowflakeRetryOptions;
@class AWSFirehoseSnowflakeRoleConfiguration;
@class AWSFirehoseSnowflakeVpcConfiguration;
@class AWSFirehoseSourceDescription;
@class AWSFirehoseSplunkBufferingHints;
@class AWSFirehoseSplunkDestinationConfiguration;
@class AWSFirehoseSplunkDestinationDescription;
@class AWSFirehoseSplunkDestinationUpdate;
@class AWSFirehoseSplunkRetryOptions;
@class AWSFirehoseStartDeliveryStreamEncryptionInput;
@class AWSFirehoseStartDeliveryStreamEncryptionOutput;
@class AWSFirehoseStopDeliveryStreamEncryptionInput;
@class AWSFirehoseStopDeliveryStreamEncryptionOutput;
@class AWSFirehoseTag;
@class AWSFirehoseTagDeliveryStreamInput;
@class AWSFirehoseTagDeliveryStreamOutput;
@class AWSFirehoseUntagDeliveryStreamInput;
@class AWSFirehoseUntagDeliveryStreamOutput;
@class AWSFirehoseUpdateDestinationInput;
@class AWSFirehoseUpdateDestinationOutput;
@class AWSFirehoseVpcConfiguration;
@class AWSFirehoseVpcConfigurationDescription;
/**
<p>Describes the buffering to perform before delivering data to the Serverless offering for Amazon OpenSearch Service destination.</p>
*/
@interface AWSFirehoseAmazonOpenSearchServerlessBufferingHints : AWSModel
/**
<p>Buffer incoming data for the specified period of time, in seconds, before delivering it to the destination. The default value is 300 (5 minutes).</p>
*/
@property (nonatomic, strong) NSNumber * _Nullable intervalInSeconds;
/**
<p>Buffer incoming data to the specified size, in MBs, before delivering it to the destination. The default value is 5. </p><p>We recommend setting this parameter to a value greater than the amount of data you typically ingest into the delivery stream in 10 seconds. For example, if you typically ingest data at 1 MB/sec, the value should be 10 MB or higher.</p>
*/
@property (nonatomic, strong) NSNumber * _Nullable sizeInMBs;
@end
/**
<p>Describes the configuration of a destination in the Serverless offering for Amazon OpenSearch Service.</p>
Required parameters: [RoleARN, IndexName, S3Configuration]
*/
@interface AWSFirehoseAmazonOpenSearchServerlessDestinationConfiguration : AWSModel
/**
<p>The buffering options. If no value is specified, the default values for AmazonopensearchserviceBufferingHints are used.</p>
*/
@property (nonatomic, strong) AWSFirehoseAmazonOpenSearchServerlessBufferingHints * _Nullable bufferingHints;
/**
<p>Describes the Amazon CloudWatch logging options for your delivery stream.</p>
*/
@property (nonatomic, strong) AWSFirehoseCloudWatchLoggingOptions * _Nullable cloudWatchLoggingOptions;
/**
<p>The endpoint to use when communicating with the collection in the Serverless offering for Amazon OpenSearch Service.</p>
*/
@property (nonatomic, strong) NSString * _Nullable collectionEndpoint;
/**
<p>The Serverless offering for Amazon OpenSearch Service index name.</p>
*/
@property (nonatomic, strong) NSString * _Nullable indexName;
/**
<p>Describes a data processing configuration.</p>
*/
@property (nonatomic, strong) AWSFirehoseProcessingConfiguration * _Nullable processingConfiguration;
/**
<p>The retry behavior in case Firehose is unable to deliver documents to the Serverless offering for Amazon OpenSearch Service. The default value is 300 (5 minutes).</p>
*/
@property (nonatomic, strong) AWSFirehoseAmazonOpenSearchServerlessRetryOptions * _Nullable retryOptions;
/**
<p>The Amazon Resource Name (ARN) of the IAM role to be assumed by Firehose for calling the Serverless offering for Amazon OpenSearch Service Configuration API and for indexing documents.</p>
*/
@property (nonatomic, strong) NSString * _Nullable roleARN;
/**
<p>Defines how documents should be delivered to Amazon S3. When it is set to FailedDocumentsOnly, Firehose writes any documents that could not be indexed to the configured Amazon S3 destination, with AmazonOpenSearchService-failed/ appended to the key prefix. When set to AllDocuments, Firehose delivers all incoming records to Amazon S3, and also writes failed documents with AmazonOpenSearchService-failed/ appended to the prefix.</p>
*/
@property (nonatomic, assign) AWSFirehoseAmazonOpenSearchServerlessS3BackupMode s3BackupMode;
/**
<p>Describes the configuration of a destination in Amazon S3.</p>
*/
@property (nonatomic, strong) AWSFirehoseS3DestinationConfiguration * _Nullable s3Configuration;
/**
<p>The details of the VPC of the Amazon OpenSearch or Amazon OpenSearch Serverless destination.</p>
*/
@property (nonatomic, strong) AWSFirehoseVpcConfiguration * _Nullable vpcConfiguration;
@end
/**
<p>The destination description in the Serverless offering for Amazon OpenSearch Service.</p>
*/
@interface AWSFirehoseAmazonOpenSearchServerlessDestinationDescription : AWSModel
/**
<p>The buffering options.</p>
*/
@property (nonatomic, strong) AWSFirehoseAmazonOpenSearchServerlessBufferingHints * _Nullable bufferingHints;
/**
<p>Describes the Amazon CloudWatch logging options for your delivery stream.</p>
*/
@property (nonatomic, strong) AWSFirehoseCloudWatchLoggingOptions * _Nullable cloudWatchLoggingOptions;
/**
<p>The endpoint to use when communicating with the collection in the Serverless offering for Amazon OpenSearch Service.</p>
*/
@property (nonatomic, strong) NSString * _Nullable collectionEndpoint;
/**
<p>The Serverless offering for Amazon OpenSearch Service index name.</p>
*/
@property (nonatomic, strong) NSString * _Nullable indexName;
/**
<p>Describes a data processing configuration.</p>
*/
@property (nonatomic, strong) AWSFirehoseProcessingConfiguration * _Nullable processingConfiguration;
/**
<p>The Serverless offering for Amazon OpenSearch Service retry options.</p>
*/
@property (nonatomic, strong) AWSFirehoseAmazonOpenSearchServerlessRetryOptions * _Nullable retryOptions;
/**
<p>The Amazon Resource Name (ARN) of the Amazon Web Services credentials.</p>
*/
@property (nonatomic, strong) NSString * _Nullable roleARN;
/**
<p>The Amazon S3 backup mode.</p>
*/
@property (nonatomic, assign) AWSFirehoseAmazonOpenSearchServerlessS3BackupMode s3BackupMode;
/**
<p>Describes a destination in Amazon S3.</p>
*/
@property (nonatomic, strong) AWSFirehoseS3DestinationDescription * _Nullable s3DestinationDescription;
/**
<p>The details of the VPC of the Amazon ES destination.</p>
*/
@property (nonatomic, strong) AWSFirehoseVpcConfigurationDescription * _Nullable vpcConfigurationDescription;
@end
/**
<p>Describes an update for a destination in the Serverless offering for Amazon OpenSearch Service.</p>
*/
@interface AWSFirehoseAmazonOpenSearchServerlessDestinationUpdate : AWSModel
/**
<p>The buffering options. If no value is specified, AmazonopensearchBufferingHints object default values are used.</p>
*/
@property (nonatomic, strong) AWSFirehoseAmazonOpenSearchServerlessBufferingHints * _Nullable bufferingHints;
/**
<p>Describes the Amazon CloudWatch logging options for your delivery stream.</p>
*/
@property (nonatomic, strong) AWSFirehoseCloudWatchLoggingOptions * _Nullable cloudWatchLoggingOptions;
/**
<p>The endpoint to use when communicating with the collection in the Serverless offering for Amazon OpenSearch Service.</p>
*/
@property (nonatomic, strong) NSString * _Nullable collectionEndpoint;
/**
<p>The Serverless offering for Amazon OpenSearch Service index name.</p>
*/
@property (nonatomic, strong) NSString * _Nullable indexName;
/**
<p>Describes a data processing configuration.</p>
*/
@property (nonatomic, strong) AWSFirehoseProcessingConfiguration * _Nullable processingConfiguration;
/**
<p>The retry behavior in case Firehose is unable to deliver documents to the Serverless offering for Amazon OpenSearch Service. The default value is 300 (5 minutes).</p>
*/
@property (nonatomic, strong) AWSFirehoseAmazonOpenSearchServerlessRetryOptions * _Nullable retryOptions;
/**
<p>The Amazon Resource Name (ARN) of the IAM role to be assumed by Firehose for calling the Serverless offering for Amazon OpenSearch Service Configuration API and for indexing documents.</p>
*/
@property (nonatomic, strong) NSString * _Nullable roleARN;
/**
<p>Describes an update for a destination in Amazon S3.</p>
*/
@property (nonatomic, strong) AWSFirehoseS3DestinationUpdate * _Nullable s3Update;
@end
/**
<p>Configures retry behavior in case Firehose is unable to deliver documents to the Serverless offering for Amazon OpenSearch Service.</p>
*/
@interface AWSFirehoseAmazonOpenSearchServerlessRetryOptions : AWSModel
/**
<p>After an initial failure to deliver to the Serverless offering for Amazon OpenSearch Service, the total amount of time during which Firehose retries delivery (including the first attempt). After this time has elapsed, the failed documents are written to Amazon S3. Default value is 300 seconds (5 minutes). A value of 0 (zero) results in no retries.</p>
*/
@property (nonatomic, strong) NSNumber * _Nullable durationInSeconds;
@end
/**
<p>Describes the buffering to perform before delivering data to the Amazon OpenSearch Service destination. </p>
*/
@interface AWSFirehoseAmazonopensearchserviceBufferingHints : AWSModel
/**
<p>Buffer incoming data for the specified period of time, in seconds, before delivering it to the destination. The default value is 300 (5 minutes). </p>
*/
@property (nonatomic, strong) NSNumber * _Nullable intervalInSeconds;
/**
<p>Buffer incoming data to the specified size, in MBs, before delivering it to the destination. The default value is 5.</p><p>We recommend setting this parameter to a value greater than the amount of data you typically ingest into the delivery stream in 10 seconds. For example, if you typically ingest data at 1 MB/sec, the value should be 10 MB or higher. </p>
*/
@property (nonatomic, strong) NSNumber * _Nullable sizeInMBs;
@end
/**
<p>Describes the configuration of a destination in Amazon OpenSearch Service</p>
Required parameters: [RoleARN, IndexName, S3Configuration]
*/
@interface AWSFirehoseAmazonopensearchserviceDestinationConfiguration : AWSModel
/**
<p>The buffering options. If no value is specified, the default values for AmazonopensearchserviceBufferingHints are used. </p>
*/
@property (nonatomic, strong) AWSFirehoseAmazonopensearchserviceBufferingHints * _Nullable bufferingHints;
/**
<p>Describes the Amazon CloudWatch logging options for your delivery stream.</p>
*/
@property (nonatomic, strong) AWSFirehoseCloudWatchLoggingOptions * _Nullable cloudWatchLoggingOptions;
/**
<p>The endpoint to use when communicating with the cluster. Specify either this ClusterEndpoint or the DomainARN field. </p>
*/
@property (nonatomic, strong) NSString * _Nullable clusterEndpoint;
/**
<p>Indicates the method for setting up document ID. The supported methods are Firehose generated document ID and OpenSearch Service generated document ID.</p>
*/
@property (nonatomic, strong) AWSFirehoseDocumentIdOptions * _Nullable documentIdOptions;
/**
<p>The ARN of the Amazon OpenSearch Service domain. The IAM role must have permissions for DescribeElasticsearchDomain, DescribeElasticsearchDomains, and DescribeElasticsearchDomainConfig after assuming the role specified in RoleARN. </p>
*/
@property (nonatomic, strong) NSString * _Nullable domainARN;
/**
<p>The ElasticsearAmazon OpenSearch Service index name.</p>
*/
@property (nonatomic, strong) NSString * _Nullable indexName;
/**
<p>The Amazon OpenSearch Service index rotation period. Index rotation appends a timestamp to the IndexName to facilitate the expiration of old data.</p>
*/
@property (nonatomic, assign) AWSFirehoseAmazonopensearchserviceIndexRotationPeriod indexRotationPeriod;
/**
<p>Describes a data processing configuration.</p>
*/
@property (nonatomic, strong) AWSFirehoseProcessingConfiguration * _Nullable processingConfiguration;
/**
<p>The retry behavior in case Firehose is unable to deliver documents to Amazon OpenSearch Service. The default value is 300 (5 minutes). </p>
*/
@property (nonatomic, strong) AWSFirehoseAmazonopensearchserviceRetryOptions * _Nullable retryOptions;
/**
<p>The Amazon Resource Name (ARN) of the IAM role to be assumed by Firehose for calling the Amazon OpenSearch Service Configuration API and for indexing documents.</p>
*/
@property (nonatomic, strong) NSString * _Nullable roleARN;
/**
<p>Defines how documents should be delivered to Amazon S3. When it is set to FailedDocumentsOnly, Firehose writes any documents that could not be indexed to the configured Amazon S3 destination, with AmazonOpenSearchService-failed/ appended to the key prefix. When set to AllDocuments, Firehose delivers all incoming records to Amazon S3, and also writes failed documents with AmazonOpenSearchService-failed/ appended to the prefix. </p>
*/
@property (nonatomic, assign) AWSFirehoseAmazonopensearchserviceS3BackupMode s3BackupMode;
/**
<p>Describes the configuration of a destination in Amazon S3.</p>
*/
@property (nonatomic, strong) AWSFirehoseS3DestinationConfiguration * _Nullable s3Configuration;
/**
<p>The Amazon OpenSearch Service type name. For Elasticsearch 6.x, there can be only one type per index. If you try to specify a new type for an existing index that already has another type, Firehose returns an error during run time. </p>
*/
@property (nonatomic, strong) NSString * _Nullable typeName;
/**
<p>The details of the VPC of the Amazon OpenSearch or Amazon OpenSearch Serverless destination.</p>
*/
@property (nonatomic, strong) AWSFirehoseVpcConfiguration * _Nullable vpcConfiguration;
@end
/**
<p>The destination description in Amazon OpenSearch Service.</p>
*/
@interface AWSFirehoseAmazonopensearchserviceDestinationDescription : AWSModel
/**
<p>The buffering options.</p>
*/
@property (nonatomic, strong) AWSFirehoseAmazonopensearchserviceBufferingHints * _Nullable bufferingHints;
/**
<p>Describes the Amazon CloudWatch logging options for your delivery stream.</p>
*/
@property (nonatomic, strong) AWSFirehoseCloudWatchLoggingOptions * _Nullable cloudWatchLoggingOptions;
/**
<p>The endpoint to use when communicating with the cluster. Firehose uses either this ClusterEndpoint or the DomainARN field to send data to Amazon OpenSearch Service. </p>
*/
@property (nonatomic, strong) NSString * _Nullable clusterEndpoint;
/**
<p>Indicates the method for setting up document ID. The supported methods are Firehose generated document ID and OpenSearch Service generated document ID.</p>
*/
@property (nonatomic, strong) AWSFirehoseDocumentIdOptions * _Nullable documentIdOptions;
/**
<p>The ARN of the Amazon OpenSearch Service domain.</p>
*/
@property (nonatomic, strong) NSString * _Nullable domainARN;
/**
<p>The Amazon OpenSearch Service index name.</p>
*/
@property (nonatomic, strong) NSString * _Nullable indexName;
/**
<p>The Amazon OpenSearch Service index rotation period</p>
*/
@property (nonatomic, assign) AWSFirehoseAmazonopensearchserviceIndexRotationPeriod indexRotationPeriod;
/**
<p>Describes a data processing configuration.</p>
*/
@property (nonatomic, strong) AWSFirehoseProcessingConfiguration * _Nullable processingConfiguration;
/**
<p>The Amazon OpenSearch Service retry options.</p>
*/
@property (nonatomic, strong) AWSFirehoseAmazonopensearchserviceRetryOptions * _Nullable retryOptions;
/**
<p>The Amazon Resource Name (ARN) of the Amazon Web Services credentials. </p>
*/
@property (nonatomic, strong) NSString * _Nullable roleARN;
/**
<p>The Amazon S3 backup mode.</p>
*/
@property (nonatomic, assign) AWSFirehoseAmazonopensearchserviceS3BackupMode s3BackupMode;
/**
<p>Describes a destination in Amazon S3.</p>
*/
@property (nonatomic, strong) AWSFirehoseS3DestinationDescription * _Nullable s3DestinationDescription;
/**
<p>The Amazon OpenSearch Service type name. This applies to Elasticsearch 6.x and lower versions. For Elasticsearch 7.x and OpenSearch Service 1.x, there's no value for TypeName. </p>
*/
@property (nonatomic, strong) NSString * _Nullable typeName;
/**
<p>The details of the VPC of the Amazon ES destination.</p>
*/
@property (nonatomic, strong) AWSFirehoseVpcConfigurationDescription * _Nullable vpcConfigurationDescription;
@end
/**
<p>Describes an update for a destination in Amazon OpenSearch Service.</p>
*/
@interface AWSFirehoseAmazonopensearchserviceDestinationUpdate : AWSModel
/**
<p>The buffering options. If no value is specified, AmazonopensearchBufferingHints object default values are used. </p>
*/
@property (nonatomic, strong) AWSFirehoseAmazonopensearchserviceBufferingHints * _Nullable bufferingHints;
/**
<p>Describes the Amazon CloudWatch logging options for your delivery stream.</p>
*/
@property (nonatomic, strong) AWSFirehoseCloudWatchLoggingOptions * _Nullable cloudWatchLoggingOptions;
/**
<p>The endpoint to use when communicating with the cluster. Specify either this ClusterEndpoint or the DomainARN field. </p>
*/
@property (nonatomic, strong) NSString * _Nullable clusterEndpoint;
/**
<p>Indicates the method for setting up document ID. The supported methods are Firehose generated document ID and OpenSearch Service generated document ID.</p>
*/
@property (nonatomic, strong) AWSFirehoseDocumentIdOptions * _Nullable documentIdOptions;
/**
<p>The ARN of the Amazon OpenSearch Service domain. The IAM role must have permissions for DescribeDomain, DescribeDomains, and DescribeDomainConfig after assuming the IAM role specified in RoleARN.</p>
*/
@property (nonatomic, strong) NSString * _Nullable domainARN;
/**
<p>The Amazon OpenSearch Service index name.</p>
*/
@property (nonatomic, strong) NSString * _Nullable indexName;
/**
<p>The Amazon OpenSearch Service index rotation period. Index rotation appends a timestamp to IndexName to facilitate the expiration of old data.</p>
*/
@property (nonatomic, assign) AWSFirehoseAmazonopensearchserviceIndexRotationPeriod indexRotationPeriod;
/**
<p>Describes a data processing configuration.</p>
*/
@property (nonatomic, strong) AWSFirehoseProcessingConfiguration * _Nullable processingConfiguration;
/**
<p>The retry behavior in case Firehose is unable to deliver documents to Amazon OpenSearch Service. The default value is 300 (5 minutes). </p>
*/
@property (nonatomic, strong) AWSFirehoseAmazonopensearchserviceRetryOptions * _Nullable retryOptions;
/**
<p>The Amazon Resource Name (ARN) of the IAM role to be assumed by Firehose for calling the Amazon OpenSearch Service Configuration API and for indexing documents. </p>
*/
@property (nonatomic, strong) NSString * _Nullable roleARN;
/**
<p>Describes an update for a destination in Amazon S3.</p>
*/
@property (nonatomic, strong) AWSFirehoseS3DestinationUpdate * _Nullable s3Update;
/**
<p>The Amazon OpenSearch Service type name. For Elasticsearch 6.x, there can be only one type per index. If you try to specify a new type for an existing index that already has another type, Firehose returns an error during runtime. </p><p>If you upgrade Elasticsearch from 6.x to 7.x and don’t update your delivery stream, Firehose still delivers data to Elasticsearch with the old index name and type name. If you want to update your delivery stream with a new index name, provide an empty string for TypeName. </p>
*/
@property (nonatomic, strong) NSString * _Nullable typeName;
@end
/**
<p>Configures retry behavior in case Firehose is unable to deliver documents to Amazon OpenSearch Service. </p>
*/
@interface AWSFirehoseAmazonopensearchserviceRetryOptions : AWSModel
/**
<p>After an initial failure to deliver to Amazon OpenSearch Service, the total amount of time during which Firehose retries delivery (including the first attempt). After this time has elapsed, the failed documents are written to Amazon S3. Default value is 300 seconds (5 minutes). A value of 0 (zero) results in no retries. </p>
*/
@property (nonatomic, strong) NSNumber * _Nullable durationInSeconds;
@end
/**
<p>The authentication configuration of the Amazon MSK cluster.</p>
Required parameters: [RoleARN, Connectivity]
*/
@interface AWSFirehoseAuthenticationConfiguration : AWSModel
/**
<p>The type of connectivity used to access the Amazon MSK cluster.</p>
*/
@property (nonatomic, assign) AWSFirehoseConnectivity connectivity;
/**
<p>The ARN of the role used to access the Amazon MSK cluster.</p>
*/
@property (nonatomic, strong) NSString * _Nullable roleARN;
@end
/**
<p>Describes hints for the buffering to perform before delivering data to the destination. These options are treated as hints, and therefore Firehose might choose to use different values when it is optimal. The <code>SizeInMBs</code> and <code>IntervalInSeconds</code> parameters are optional. However, if specify a value for one of them, you must also provide a value for the other.</p>
*/
@interface AWSFirehoseBufferingHints : AWSModel
/**
<p>Buffer incoming data for the specified period of time, in seconds, before delivering it to the destination. The default value is 300. This parameter is optional but if you specify a value for it, you must also specify a value for <code>SizeInMBs</code>, and vice versa.</p>
*/
@property (nonatomic, strong) NSNumber * _Nullable intervalInSeconds;
/**
<p>Buffer incoming data to the specified size, in MiBs, before delivering it to the destination. The default value is 5. This parameter is optional but if you specify a value for it, you must also specify a value for <code>IntervalInSeconds</code>, and vice versa.</p><p>We recommend setting this parameter to a value greater than the amount of data you typically ingest into the delivery stream in 10 seconds. For example, if you typically ingest data at 1 MiB/sec, the value should be 10 MiB or higher.</p>
*/
@property (nonatomic, strong) NSNumber * _Nullable sizeInMBs;
@end
/**
<p>Describes the Amazon CloudWatch logging options for your delivery stream.</p>
*/
@interface AWSFirehoseCloudWatchLoggingOptions : AWSModel
/**
<p>Enables or disables CloudWatch logging.</p>
*/
@property (nonatomic, strong) NSNumber * _Nullable enabled;
/**
<p>The CloudWatch group name for logging. This value is required if CloudWatch logging is enabled.</p>
*/
@property (nonatomic, strong) NSString * _Nullable logGroupName;
/**
<p>The CloudWatch log stream name for logging. This value is required if CloudWatch logging is enabled.</p>
*/
@property (nonatomic, strong) NSString * _Nullable logStreamName;
@end
/**
<p>Describes a <code>COPY</code> command for Amazon Redshift.</p>
Required parameters: [DataTableName]
*/
@interface AWSFirehoseReplicateCommand : AWSModel
/**
<p>Optional parameters to use with the Amazon Redshift <code>COPY</code> command. For more information, see the "Optional Parameters" section of <a href="https://docs.aws.amazon.com/redshift/latest/dg/r_COPY.html">Amazon Redshift COPY command</a>. Some possible examples that would apply to Firehose are as follows:</p><p><code>delimiter '\t' lzop;</code> - fields are delimited with "\t" (TAB character) and compressed using lzop.</p><p><code>delimiter '|'</code> - fields are delimited with "|" (this is the default delimiter).</p><p><code>delimiter '|' escape</code> - the delimiter should be escaped.</p><p><code>fixedwidth 'venueid:3,venuename:25,venuecity:12,venuestate:2,venueseats:6'</code> - fields are fixed width in the source, with each width specified after every column in the table.</p><p><code>JSON 's3://mybucket/jsonpaths.txt'</code> - data is in JSON format, and the path specified is the format of the data.</p><p>For more examples, see <a href="https://docs.aws.amazon.com/redshift/latest/dg/r_COPY_command_examples.html">Amazon Redshift COPY command examples</a>.</p>
*/
@property (nonatomic, strong) NSString * _Nullable replicateOptions;
/**
<p>A comma-separated list of column names.</p>
*/
@property (nonatomic, strong) NSString * _Nullable dataTableColumns;
/**
<p>The name of the target table. The table must already exist in the database.</p>
*/
@property (nonatomic, strong) NSString * _Nullable dataTableName;
@end
/**
*/
@interface AWSFirehoseCreateDeliveryStreamInput : AWSRequest
/**
<p>The destination in the Serverless offering for Amazon OpenSearch Service. You can specify only one destination.</p>
*/
@property (nonatomic, strong) AWSFirehoseAmazonOpenSearchServerlessDestinationConfiguration * _Nullable amazonOpenSearchServerlessDestinationConfiguration;
/**
<p>The destination in Amazon OpenSearch Service. You can specify only one destination.</p>
*/
@property (nonatomic, strong) AWSFirehoseAmazonopensearchserviceDestinationConfiguration * _Nullable amazonopensearchserviceDestinationConfiguration;
/**
<p>Used to specify the type and Amazon Resource Name (ARN) of the KMS key needed for Server-Side Encryption (SSE).</p>
*/
@property (nonatomic, strong) AWSFirehoseDeliveryStreamEncryptionConfigurationInput * _Nullable deliveryStreamEncryptionConfigurationInput;
/**
<p>The name of the delivery stream. This name must be unique per Amazon Web Services account in the same Amazon Web Services Region. If the delivery streams are in different accounts or different Regions, you can have multiple delivery streams with the same name.</p>
*/
@property (nonatomic, strong) NSString * _Nullable deliveryStreamName;
/**
<p>The delivery stream type. This parameter can be one of the following values:</p><ul><li><p><code>DirectPut</code>: Provider applications access the delivery stream directly.</p></li><li><p><code>KinesisStreamAsSource</code>: The delivery stream uses a Kinesis data stream as a source.</p></li></ul>
*/
@property (nonatomic, assign) AWSFirehoseDeliveryStreamType deliveryStreamType;
/**
<p>The destination in Amazon ES. You can specify only one destination.</p>
*/
@property (nonatomic, strong) AWSFirehoseElasticsearchDestinationConfiguration * _Nullable elasticsearchDestinationConfiguration;
/**
<p>The destination in Amazon S3. You can specify only one destination.</p>
*/
@property (nonatomic, strong) AWSFirehoseExtendedS3DestinationConfiguration * _Nullable extendedS3DestinationConfiguration;
/**
<p>Enables configuring Kinesis Firehose to deliver data to any HTTP endpoint destination. You can specify only one destination.</p>
*/
@property (nonatomic, strong) AWSFirehoseHttpEndpointDestinationConfiguration * _Nullable httpEndpointDestinationConfiguration;
/**
<p>When a Kinesis data stream is used as the source for the delivery stream, a <a>KinesisStreamSourceConfiguration</a> containing the Kinesis data stream Amazon Resource Name (ARN) and the role ARN for the source stream.</p>
*/
@property (nonatomic, strong) AWSFirehoseKinesisStreamSourceConfiguration * _Nullable kinesisStreamSourceConfiguration;
/**
<p>The configuration for the Amazon MSK cluster to be used as the source for a delivery stream.</p>
*/
@property (nonatomic, strong) AWSFirehoseMSKSourceConfiguration * _Nullable MSKSourceConfiguration;
/**
<p>The destination in Amazon Redshift. You can specify only one destination.</p>
*/
@property (nonatomic, strong) AWSFirehoseRedshiftDestinationConfiguration * _Nullable redshiftDestinationConfiguration;
/**
<p>[Deprecated] The destination in Amazon S3. You can specify only one destination.</p>
*/
@property (nonatomic, strong) AWSFirehoseS3DestinationConfiguration * _Nullable s3DestinationConfiguration;
/**
<p>Configure Snowflake destination</p>
*/
@property (nonatomic, strong) AWSFirehoseSnowflakeDestinationConfiguration * _Nullable snowflakeDestinationConfiguration;
/**
<p>The destination in Splunk. You can specify only one destination.</p>
*/
@property (nonatomic, strong) AWSFirehoseSplunkDestinationConfiguration * _Nullable splunkDestinationConfiguration;
/**
<p>A set of tags to assign to the delivery stream. A tag is a key-value pair that you can define and assign to Amazon Web Services resources. Tags are metadata. For example, you can add friendly names and descriptions or other types of information that can help you distinguish the delivery stream. For more information about tags, see <a href="https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/cost-alloc-tags.html">Using Cost Allocation Tags</a> in the Amazon Web Services Billing and Cost Management User Guide.</p><p>You can specify up to 50 tags when creating a delivery stream.</p><p>If you specify tags in the <code>CreateDeliveryStream</code> action, Amazon Data Firehose performs an additional authorization on the <code>firehose:TagDeliveryStream</code> action to verify if users have permissions to create tags. If you do not provide this permission, requests to create new Firehose delivery streams with IAM resource tags will fail with an <code>AccessDeniedException</code> such as following.</p><p><b>AccessDeniedException</b></p><p>User: arn:aws:sts::x:assumed-role/x/x is not authorized to perform: firehose:TagDeliveryStream on resource: arn:aws:firehose:us-east-1:x:deliverystream/x with an explicit deny in an identity-based policy.</p><p>For an example IAM policy, see <a href="https://docs.aws.amazon.com/firehose/latest/APIReference/API_CreateDeliveryStream.html#API_CreateDeliveryStream_Examples">Tag example.</a></p>
*/
@property (nonatomic, strong) NSArray<AWSFirehoseTag *> * _Nullable tags;
@end
/**
*/
@interface AWSFirehoseCreateDeliveryStreamOutput : AWSModel
/**
<p>The ARN of the delivery stream.</p>
*/
@property (nonatomic, strong) NSString * _Nullable deliveryStreamARN;
@end
/**
<p>Specifies that you want Firehose to convert data from the JSON format to the Parquet or ORC format before writing it to Amazon S3. Firehose uses the serializer and deserializer that you specify, in addition to the column information from the Amazon Web Services Glue table, to deserialize your input data from JSON and then serialize it to the Parquet or ORC format. For more information, see <a href="https://docs.aws.amazon.com/firehose/latest/dev/record-format-conversion.html">Firehose Record Format Conversion</a>.</p>
*/
@interface AWSFirehoseDataFormatConversionConfiguration : AWSModel
/**
<p>Defaults to <code>true</code>. Set it to <code>false</code> if you want to disable format conversion while preserving the configuration details.</p>
*/
@property (nonatomic, strong) NSNumber * _Nullable enabled;
/**
<p>Specifies the deserializer that you want Firehose to use to convert the format of your data from JSON. This parameter is required if <code>Enabled</code> is set to true.</p>