aws-sdk-firehose 1.39.0 → 1.43.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.
@@ -14,6 +14,20 @@ module Aws::Firehose
14
14
  include Seahorse::Model
15
15
 
16
16
  AWSKMSKeyARN = Shapes::StringShape.new(name: 'AWSKMSKeyARN')
17
+ AmazonopensearchserviceBufferingHints = Shapes::StructureShape.new(name: 'AmazonopensearchserviceBufferingHints')
18
+ AmazonopensearchserviceBufferingIntervalInSeconds = Shapes::IntegerShape.new(name: 'AmazonopensearchserviceBufferingIntervalInSeconds')
19
+ AmazonopensearchserviceBufferingSizeInMBs = Shapes::IntegerShape.new(name: 'AmazonopensearchserviceBufferingSizeInMBs')
20
+ AmazonopensearchserviceClusterEndpoint = Shapes::StringShape.new(name: 'AmazonopensearchserviceClusterEndpoint')
21
+ AmazonopensearchserviceDestinationConfiguration = Shapes::StructureShape.new(name: 'AmazonopensearchserviceDestinationConfiguration')
22
+ AmazonopensearchserviceDestinationDescription = Shapes::StructureShape.new(name: 'AmazonopensearchserviceDestinationDescription')
23
+ AmazonopensearchserviceDestinationUpdate = Shapes::StructureShape.new(name: 'AmazonopensearchserviceDestinationUpdate')
24
+ AmazonopensearchserviceDomainARN = Shapes::StringShape.new(name: 'AmazonopensearchserviceDomainARN')
25
+ AmazonopensearchserviceIndexName = Shapes::StringShape.new(name: 'AmazonopensearchserviceIndexName')
26
+ AmazonopensearchserviceIndexRotationPeriod = Shapes::StringShape.new(name: 'AmazonopensearchserviceIndexRotationPeriod')
27
+ AmazonopensearchserviceRetryDurationInSeconds = Shapes::IntegerShape.new(name: 'AmazonopensearchserviceRetryDurationInSeconds')
28
+ AmazonopensearchserviceRetryOptions = Shapes::StructureShape.new(name: 'AmazonopensearchserviceRetryOptions')
29
+ AmazonopensearchserviceS3BackupMode = Shapes::StringShape.new(name: 'AmazonopensearchserviceS3BackupMode')
30
+ AmazonopensearchserviceTypeName = Shapes::StringShape.new(name: 'AmazonopensearchserviceTypeName')
17
31
  BlockSizeBytes = Shapes::IntegerShape.new(name: 'BlockSizeBytes')
18
32
  BooleanObject = Shapes::BooleanShape.new(name: 'BooleanObject')
19
33
  BucketARN = Shapes::StringShape.new(name: 'BucketARN')
@@ -53,6 +67,7 @@ module Aws::Firehose
53
67
  DestinationDescription = Shapes::StructureShape.new(name: 'DestinationDescription')
54
68
  DestinationDescriptionList = Shapes::ListShape.new(name: 'DestinationDescriptionList')
55
69
  DestinationId = Shapes::StringShape.new(name: 'DestinationId')
70
+ DynamicPartitioningConfiguration = Shapes::StructureShape.new(name: 'DynamicPartitioningConfiguration')
56
71
  ElasticsearchBufferingHints = Shapes::StructureShape.new(name: 'ElasticsearchBufferingHints')
57
72
  ElasticsearchBufferingIntervalInSeconds = Shapes::IntegerShape.new(name: 'ElasticsearchBufferingIntervalInSeconds')
58
73
  ElasticsearchBufferingSizeInMBs = Shapes::IntegerShape.new(name: 'ElasticsearchBufferingSizeInMBs')
@@ -163,6 +178,8 @@ module Aws::Firehose
163
178
  RedshiftS3BackupMode = Shapes::StringShape.new(name: 'RedshiftS3BackupMode')
164
179
  ResourceInUseException = Shapes::StructureShape.new(name: 'ResourceInUseException')
165
180
  ResourceNotFoundException = Shapes::StructureShape.new(name: 'ResourceNotFoundException')
181
+ RetryDurationInSeconds = Shapes::IntegerShape.new(name: 'RetryDurationInSeconds')
182
+ RetryOptions = Shapes::StructureShape.new(name: 'RetryOptions')
166
183
  RoleARN = Shapes::StringShape.new(name: 'RoleARN')
167
184
  S3BackupMode = Shapes::StringShape.new(name: 'S3BackupMode')
168
185
  S3DestinationConfiguration = Shapes::StructureShape.new(name: 'S3DestinationConfiguration')
@@ -201,6 +218,56 @@ module Aws::Firehose
201
218
  VpcConfiguration = Shapes::StructureShape.new(name: 'VpcConfiguration')
202
219
  VpcConfigurationDescription = Shapes::StructureShape.new(name: 'VpcConfigurationDescription')
203
220
 
221
+ AmazonopensearchserviceBufferingHints.add_member(:interval_in_seconds, Shapes::ShapeRef.new(shape: AmazonopensearchserviceBufferingIntervalInSeconds, location_name: "IntervalInSeconds"))
222
+ AmazonopensearchserviceBufferingHints.add_member(:size_in_m_bs, Shapes::ShapeRef.new(shape: AmazonopensearchserviceBufferingSizeInMBs, location_name: "SizeInMBs"))
223
+ AmazonopensearchserviceBufferingHints.struct_class = Types::AmazonopensearchserviceBufferingHints
224
+
225
+ AmazonopensearchserviceDestinationConfiguration.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleARN, required: true, location_name: "RoleARN"))
226
+ AmazonopensearchserviceDestinationConfiguration.add_member(:domain_arn, Shapes::ShapeRef.new(shape: AmazonopensearchserviceDomainARN, location_name: "DomainARN"))
227
+ AmazonopensearchserviceDestinationConfiguration.add_member(:cluster_endpoint, Shapes::ShapeRef.new(shape: AmazonopensearchserviceClusterEndpoint, location_name: "ClusterEndpoint"))
228
+ AmazonopensearchserviceDestinationConfiguration.add_member(:index_name, Shapes::ShapeRef.new(shape: AmazonopensearchserviceIndexName, required: true, location_name: "IndexName"))
229
+ AmazonopensearchserviceDestinationConfiguration.add_member(:type_name, Shapes::ShapeRef.new(shape: AmazonopensearchserviceTypeName, location_name: "TypeName"))
230
+ AmazonopensearchserviceDestinationConfiguration.add_member(:index_rotation_period, Shapes::ShapeRef.new(shape: AmazonopensearchserviceIndexRotationPeriod, location_name: "IndexRotationPeriod"))
231
+ AmazonopensearchserviceDestinationConfiguration.add_member(:buffering_hints, Shapes::ShapeRef.new(shape: AmazonopensearchserviceBufferingHints, location_name: "BufferingHints"))
232
+ AmazonopensearchserviceDestinationConfiguration.add_member(:retry_options, Shapes::ShapeRef.new(shape: AmazonopensearchserviceRetryOptions, location_name: "RetryOptions"))
233
+ AmazonopensearchserviceDestinationConfiguration.add_member(:s3_backup_mode, Shapes::ShapeRef.new(shape: AmazonopensearchserviceS3BackupMode, location_name: "S3BackupMode"))
234
+ AmazonopensearchserviceDestinationConfiguration.add_member(:s3_configuration, Shapes::ShapeRef.new(shape: S3DestinationConfiguration, required: true, location_name: "S3Configuration"))
235
+ AmazonopensearchserviceDestinationConfiguration.add_member(:processing_configuration, Shapes::ShapeRef.new(shape: ProcessingConfiguration, location_name: "ProcessingConfiguration"))
236
+ AmazonopensearchserviceDestinationConfiguration.add_member(:cloud_watch_logging_options, Shapes::ShapeRef.new(shape: CloudWatchLoggingOptions, location_name: "CloudWatchLoggingOptions"))
237
+ AmazonopensearchserviceDestinationConfiguration.add_member(:vpc_configuration, Shapes::ShapeRef.new(shape: VpcConfiguration, location_name: "VpcConfiguration"))
238
+ AmazonopensearchserviceDestinationConfiguration.struct_class = Types::AmazonopensearchserviceDestinationConfiguration
239
+
240
+ AmazonopensearchserviceDestinationDescription.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleARN, location_name: "RoleARN"))
241
+ AmazonopensearchserviceDestinationDescription.add_member(:domain_arn, Shapes::ShapeRef.new(shape: AmazonopensearchserviceDomainARN, location_name: "DomainARN"))
242
+ AmazonopensearchserviceDestinationDescription.add_member(:cluster_endpoint, Shapes::ShapeRef.new(shape: AmazonopensearchserviceClusterEndpoint, location_name: "ClusterEndpoint"))
243
+ AmazonopensearchserviceDestinationDescription.add_member(:index_name, Shapes::ShapeRef.new(shape: AmazonopensearchserviceIndexName, location_name: "IndexName"))
244
+ AmazonopensearchserviceDestinationDescription.add_member(:type_name, Shapes::ShapeRef.new(shape: AmazonopensearchserviceTypeName, location_name: "TypeName"))
245
+ AmazonopensearchserviceDestinationDescription.add_member(:index_rotation_period, Shapes::ShapeRef.new(shape: AmazonopensearchserviceIndexRotationPeriod, location_name: "IndexRotationPeriod"))
246
+ AmazonopensearchserviceDestinationDescription.add_member(:buffering_hints, Shapes::ShapeRef.new(shape: AmazonopensearchserviceBufferingHints, location_name: "BufferingHints"))
247
+ AmazonopensearchserviceDestinationDescription.add_member(:retry_options, Shapes::ShapeRef.new(shape: AmazonopensearchserviceRetryOptions, location_name: "RetryOptions"))
248
+ AmazonopensearchserviceDestinationDescription.add_member(:s3_backup_mode, Shapes::ShapeRef.new(shape: AmazonopensearchserviceS3BackupMode, location_name: "S3BackupMode"))
249
+ AmazonopensearchserviceDestinationDescription.add_member(:s3_destination_description, Shapes::ShapeRef.new(shape: S3DestinationDescription, location_name: "S3DestinationDescription"))
250
+ AmazonopensearchserviceDestinationDescription.add_member(:processing_configuration, Shapes::ShapeRef.new(shape: ProcessingConfiguration, location_name: "ProcessingConfiguration"))
251
+ AmazonopensearchserviceDestinationDescription.add_member(:cloud_watch_logging_options, Shapes::ShapeRef.new(shape: CloudWatchLoggingOptions, location_name: "CloudWatchLoggingOptions"))
252
+ AmazonopensearchserviceDestinationDescription.add_member(:vpc_configuration_description, Shapes::ShapeRef.new(shape: VpcConfigurationDescription, location_name: "VpcConfigurationDescription"))
253
+ AmazonopensearchserviceDestinationDescription.struct_class = Types::AmazonopensearchserviceDestinationDescription
254
+
255
+ AmazonopensearchserviceDestinationUpdate.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleARN, location_name: "RoleARN"))
256
+ AmazonopensearchserviceDestinationUpdate.add_member(:domain_arn, Shapes::ShapeRef.new(shape: AmazonopensearchserviceDomainARN, location_name: "DomainARN"))
257
+ AmazonopensearchserviceDestinationUpdate.add_member(:cluster_endpoint, Shapes::ShapeRef.new(shape: AmazonopensearchserviceClusterEndpoint, location_name: "ClusterEndpoint"))
258
+ AmazonopensearchserviceDestinationUpdate.add_member(:index_name, Shapes::ShapeRef.new(shape: AmazonopensearchserviceIndexName, location_name: "IndexName"))
259
+ AmazonopensearchserviceDestinationUpdate.add_member(:type_name, Shapes::ShapeRef.new(shape: AmazonopensearchserviceTypeName, location_name: "TypeName"))
260
+ AmazonopensearchserviceDestinationUpdate.add_member(:index_rotation_period, Shapes::ShapeRef.new(shape: AmazonopensearchserviceIndexRotationPeriod, location_name: "IndexRotationPeriod"))
261
+ AmazonopensearchserviceDestinationUpdate.add_member(:buffering_hints, Shapes::ShapeRef.new(shape: AmazonopensearchserviceBufferingHints, location_name: "BufferingHints"))
262
+ AmazonopensearchserviceDestinationUpdate.add_member(:retry_options, Shapes::ShapeRef.new(shape: AmazonopensearchserviceRetryOptions, location_name: "RetryOptions"))
263
+ AmazonopensearchserviceDestinationUpdate.add_member(:s3_update, Shapes::ShapeRef.new(shape: S3DestinationUpdate, location_name: "S3Update"))
264
+ AmazonopensearchserviceDestinationUpdate.add_member(:processing_configuration, Shapes::ShapeRef.new(shape: ProcessingConfiguration, location_name: "ProcessingConfiguration"))
265
+ AmazonopensearchserviceDestinationUpdate.add_member(:cloud_watch_logging_options, Shapes::ShapeRef.new(shape: CloudWatchLoggingOptions, location_name: "CloudWatchLoggingOptions"))
266
+ AmazonopensearchserviceDestinationUpdate.struct_class = Types::AmazonopensearchserviceDestinationUpdate
267
+
268
+ AmazonopensearchserviceRetryOptions.add_member(:duration_in_seconds, Shapes::ShapeRef.new(shape: AmazonopensearchserviceRetryDurationInSeconds, location_name: "DurationInSeconds"))
269
+ AmazonopensearchserviceRetryOptions.struct_class = Types::AmazonopensearchserviceRetryOptions
270
+
204
271
  BufferingHints.add_member(:size_in_m_bs, Shapes::ShapeRef.new(shape: SizeInMBs, location_name: "SizeInMBs"))
205
272
  BufferingHints.add_member(:interval_in_seconds, Shapes::ShapeRef.new(shape: IntervalInSeconds, location_name: "IntervalInSeconds"))
206
273
  BufferingHints.struct_class = Types::BufferingHints
@@ -229,6 +296,7 @@ module Aws::Firehose
229
296
  CreateDeliveryStreamInput.add_member(:extended_s3_destination_configuration, Shapes::ShapeRef.new(shape: ExtendedS3DestinationConfiguration, location_name: "ExtendedS3DestinationConfiguration"))
230
297
  CreateDeliveryStreamInput.add_member(:redshift_destination_configuration, Shapes::ShapeRef.new(shape: RedshiftDestinationConfiguration, location_name: "RedshiftDestinationConfiguration"))
231
298
  CreateDeliveryStreamInput.add_member(:elasticsearch_destination_configuration, Shapes::ShapeRef.new(shape: ElasticsearchDestinationConfiguration, location_name: "ElasticsearchDestinationConfiguration"))
299
+ CreateDeliveryStreamInput.add_member(:amazonopensearchservice_destination_configuration, Shapes::ShapeRef.new(shape: AmazonopensearchserviceDestinationConfiguration, location_name: "AmazonopensearchserviceDestinationConfiguration"))
232
300
  CreateDeliveryStreamInput.add_member(:splunk_destination_configuration, Shapes::ShapeRef.new(shape: SplunkDestinationConfiguration, location_name: "SplunkDestinationConfiguration"))
233
301
  CreateDeliveryStreamInput.add_member(:http_endpoint_destination_configuration, Shapes::ShapeRef.new(shape: HttpEndpointDestinationConfiguration, location_name: "HttpEndpointDestinationConfiguration"))
234
302
  CreateDeliveryStreamInput.add_member(:tags, Shapes::ShapeRef.new(shape: TagDeliveryStreamInputTagList, location_name: "Tags"))
@@ -292,12 +360,17 @@ module Aws::Firehose
292
360
  DestinationDescription.add_member(:extended_s3_destination_description, Shapes::ShapeRef.new(shape: ExtendedS3DestinationDescription, location_name: "ExtendedS3DestinationDescription"))
293
361
  DestinationDescription.add_member(:redshift_destination_description, Shapes::ShapeRef.new(shape: RedshiftDestinationDescription, location_name: "RedshiftDestinationDescription"))
294
362
  DestinationDescription.add_member(:elasticsearch_destination_description, Shapes::ShapeRef.new(shape: ElasticsearchDestinationDescription, location_name: "ElasticsearchDestinationDescription"))
363
+ DestinationDescription.add_member(:amazonopensearchservice_destination_description, Shapes::ShapeRef.new(shape: AmazonopensearchserviceDestinationDescription, location_name: "AmazonopensearchserviceDestinationDescription"))
295
364
  DestinationDescription.add_member(:splunk_destination_description, Shapes::ShapeRef.new(shape: SplunkDestinationDescription, location_name: "SplunkDestinationDescription"))
296
365
  DestinationDescription.add_member(:http_endpoint_destination_description, Shapes::ShapeRef.new(shape: HttpEndpointDestinationDescription, location_name: "HttpEndpointDestinationDescription"))
297
366
  DestinationDescription.struct_class = Types::DestinationDescription
298
367
 
299
368
  DestinationDescriptionList.member = Shapes::ShapeRef.new(shape: DestinationDescription)
300
369
 
370
+ DynamicPartitioningConfiguration.add_member(:retry_options, Shapes::ShapeRef.new(shape: RetryOptions, location_name: "RetryOptions"))
371
+ DynamicPartitioningConfiguration.add_member(:enabled, Shapes::ShapeRef.new(shape: BooleanObject, location_name: "Enabled"))
372
+ DynamicPartitioningConfiguration.struct_class = Types::DynamicPartitioningConfiguration
373
+
301
374
  ElasticsearchBufferingHints.add_member(:interval_in_seconds, Shapes::ShapeRef.new(shape: ElasticsearchBufferingIntervalInSeconds, location_name: "IntervalInSeconds"))
302
375
  ElasticsearchBufferingHints.add_member(:size_in_m_bs, Shapes::ShapeRef.new(shape: ElasticsearchBufferingSizeInMBs, location_name: "SizeInMBs"))
303
376
  ElasticsearchBufferingHints.struct_class = Types::ElasticsearchBufferingHints
@@ -364,6 +437,7 @@ module Aws::Firehose
364
437
  ExtendedS3DestinationConfiguration.add_member(:s3_backup_mode, Shapes::ShapeRef.new(shape: S3BackupMode, location_name: "S3BackupMode"))
365
438
  ExtendedS3DestinationConfiguration.add_member(:s3_backup_configuration, Shapes::ShapeRef.new(shape: S3DestinationConfiguration, location_name: "S3BackupConfiguration"))
366
439
  ExtendedS3DestinationConfiguration.add_member(:data_format_conversion_configuration, Shapes::ShapeRef.new(shape: DataFormatConversionConfiguration, location_name: "DataFormatConversionConfiguration"))
440
+ ExtendedS3DestinationConfiguration.add_member(:dynamic_partitioning_configuration, Shapes::ShapeRef.new(shape: DynamicPartitioningConfiguration, location_name: "DynamicPartitioningConfiguration"))
367
441
  ExtendedS3DestinationConfiguration.struct_class = Types::ExtendedS3DestinationConfiguration
368
442
 
369
443
  ExtendedS3DestinationDescription.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleARN, required: true, location_name: "RoleARN"))
@@ -378,6 +452,7 @@ module Aws::Firehose
378
452
  ExtendedS3DestinationDescription.add_member(:s3_backup_mode, Shapes::ShapeRef.new(shape: S3BackupMode, location_name: "S3BackupMode"))
379
453
  ExtendedS3DestinationDescription.add_member(:s3_backup_description, Shapes::ShapeRef.new(shape: S3DestinationDescription, location_name: "S3BackupDescription"))
380
454
  ExtendedS3DestinationDescription.add_member(:data_format_conversion_configuration, Shapes::ShapeRef.new(shape: DataFormatConversionConfiguration, location_name: "DataFormatConversionConfiguration"))
455
+ ExtendedS3DestinationDescription.add_member(:dynamic_partitioning_configuration, Shapes::ShapeRef.new(shape: DynamicPartitioningConfiguration, location_name: "DynamicPartitioningConfiguration"))
381
456
  ExtendedS3DestinationDescription.struct_class = Types::ExtendedS3DestinationDescription
382
457
 
383
458
  ExtendedS3DestinationUpdate.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleARN, location_name: "RoleARN"))
@@ -392,6 +467,7 @@ module Aws::Firehose
392
467
  ExtendedS3DestinationUpdate.add_member(:s3_backup_mode, Shapes::ShapeRef.new(shape: S3BackupMode, location_name: "S3BackupMode"))
393
468
  ExtendedS3DestinationUpdate.add_member(:s3_backup_update, Shapes::ShapeRef.new(shape: S3DestinationUpdate, location_name: "S3BackupUpdate"))
394
469
  ExtendedS3DestinationUpdate.add_member(:data_format_conversion_configuration, Shapes::ShapeRef.new(shape: DataFormatConversionConfiguration, location_name: "DataFormatConversionConfiguration"))
470
+ ExtendedS3DestinationUpdate.add_member(:dynamic_partitioning_configuration, Shapes::ShapeRef.new(shape: DynamicPartitioningConfiguration, location_name: "DynamicPartitioningConfiguration"))
395
471
  ExtendedS3DestinationUpdate.struct_class = Types::ExtendedS3DestinationUpdate
396
472
 
397
473
  FailureDescription.add_member(:type, Shapes::ShapeRef.new(shape: DeliveryStreamFailureType, required: true, location_name: "Type"))
@@ -629,6 +705,9 @@ module Aws::Firehose
629
705
  ResourceNotFoundException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "message"))
630
706
  ResourceNotFoundException.struct_class = Types::ResourceNotFoundException
631
707
 
708
+ RetryOptions.add_member(:duration_in_seconds, Shapes::ShapeRef.new(shape: RetryDurationInSeconds, location_name: "DurationInSeconds"))
709
+ RetryOptions.struct_class = Types::RetryOptions
710
+
632
711
  S3DestinationConfiguration.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleARN, required: true, location_name: "RoleARN"))
633
712
  S3DestinationConfiguration.add_member(:bucket_arn, Shapes::ShapeRef.new(shape: BucketARN, required: true, location_name: "BucketARN"))
634
713
  S3DestinationConfiguration.add_member(:prefix, Shapes::ShapeRef.new(shape: Prefix, location_name: "Prefix"))
@@ -755,6 +834,7 @@ module Aws::Firehose
755
834
  UpdateDestinationInput.add_member(:extended_s3_destination_update, Shapes::ShapeRef.new(shape: ExtendedS3DestinationUpdate, location_name: "ExtendedS3DestinationUpdate"))
756
835
  UpdateDestinationInput.add_member(:redshift_destination_update, Shapes::ShapeRef.new(shape: RedshiftDestinationUpdate, location_name: "RedshiftDestinationUpdate"))
757
836
  UpdateDestinationInput.add_member(:elasticsearch_destination_update, Shapes::ShapeRef.new(shape: ElasticsearchDestinationUpdate, location_name: "ElasticsearchDestinationUpdate"))
837
+ UpdateDestinationInput.add_member(:amazonopensearchservice_destination_update, Shapes::ShapeRef.new(shape: AmazonopensearchserviceDestinationUpdate, location_name: "AmazonopensearchserviceDestinationUpdate"))
758
838
  UpdateDestinationInput.add_member(:splunk_destination_update, Shapes::ShapeRef.new(shape: SplunkDestinationUpdate, location_name: "SplunkDestinationUpdate"))
759
839
  UpdateDestinationInput.add_member(:http_endpoint_destination_update, Shapes::ShapeRef.new(shape: HttpEndpointDestinationUpdate, location_name: "HttpEndpointDestinationUpdate"))
760
840
  UpdateDestinationInput.struct_class = Types::UpdateDestinationInput