aws-sdk-firehose 1.49.0 → 1.50.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e46955a1687ace5f3fccc738ceca51b62b51e32ca7782592ed48d6829d9a9161
4
- data.tar.gz: 84247152f4c27d145038afc4cf3052367d9b05a1fc28b20e273b2e9f0a36b8b4
3
+ metadata.gz: 02bfa116b9289be1fe4d5de8ea398e082aef7d2265cf7e01cc3a6f429a0f1707
4
+ data.tar.gz: eaf803fcf52197eb3143cd73c97d37ce547063e8911a9b49f74afd534c8ad552
5
5
  SHA512:
6
- metadata.gz: 20377cd692e8f7be97b9c1be475892b382bd26a6a6026a4d2f67b2b4c86b0bd29ec52d91f8a0613e2a9b884eef4049417c3ca1a951aac6b7620ccc3968e350df
7
- data.tar.gz: 33ab2a073bd9910fbb89287362c0586bfc1c249d302a4f1882d030567c87502b4f7f4f558f0e06be6dae177a41f9374671f97e011f2f634e87456d450b478f5e
6
+ metadata.gz: abc8ad1bb635f124742ab46ebe85dfd8747461be235d2911ec50602f043ada181da3e598180651af4a9c470ba425e29c67d6594b997b4be42daf4ca29cf4f13e
7
+ data.tar.gz: e2c69be5f59523a11e438f5129ad9e39dce2d8d1f58e6706b34179f558f4fbcb8c7b5cf5f9f95cd0cff547c9ed8d9ca42ae8fc73c2a975abc622eab26652ee93
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.50.0 (2022-11-29)
5
+ ------------------
6
+
7
+ * Feature - Allow support for the Serverless offering for Amazon OpenSearch Service as a Kinesis Data Firehose delivery destination.
8
+
4
9
  1.49.0 (2022-10-25)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.49.0
1
+ 1.50.0
@@ -380,7 +380,8 @@ module Aws::Firehose
380
380
 
381
381
  # Creates a Kinesis Data Firehose delivery stream.
382
382
  #
383
- # By default, you can create up to 50 delivery streams per AWS Region.
383
+ # By default, you can create up to 50 delivery streams per Amazon Web
384
+ # Services Region.
384
385
  #
385
386
  # This is an asynchronous operation that immediately returns. The
386
387
  # initial status of the delivery stream is `CREATING`. After the
@@ -459,10 +460,10 @@ module Aws::Firehose
459
460
  # [1]: https://docs.aws.amazon.com/firehose/latest/dev/controlling-access.html#using-iam-s3
460
461
  #
461
462
  # @option params [required, String] :delivery_stream_name
462
- # The name of the delivery stream. This name must be unique per AWS
463
- # account in the same AWS Region. If the delivery streams are in
464
- # different accounts or different Regions, you can have multiple
465
- # delivery streams with the same name.
463
+ # The name of the delivery stream. This name must be unique per Amazon
464
+ # Web Services account in the same Amazon Web Services Region. If the
465
+ # delivery streams are in different accounts or different Regions, you
466
+ # can have multiple delivery streams with the same name.
466
467
  #
467
468
  # @option params [String] :delivery_stream_type
468
469
  # The delivery stream type. This parameter can be one of the following
@@ -499,6 +500,8 @@ module Aws::Firehose
499
500
  # The destination in Amazon ES. You can specify only one destination.
500
501
  #
501
502
  # @option params [Types::AmazonopensearchserviceDestinationConfiguration] :amazonopensearchservice_destination_configuration
503
+ # The destination in Amazon OpenSearch Service. You can specify only one
504
+ # destination.
502
505
  #
503
506
  # @option params [Types::SplunkDestinationConfiguration] :splunk_destination_configuration
504
507
  # The destination in Splunk. You can specify only one destination.
@@ -509,11 +512,12 @@ module Aws::Firehose
509
512
  #
510
513
  # @option params [Array<Types::Tag>] :tags
511
514
  # A set of tags to assign to the delivery stream. A tag is a key-value
512
- # pair that you can define and assign to AWS resources. Tags are
513
- # metadata. For example, you can add friendly names and descriptions or
514
- # other types of information that can help you distinguish the delivery
515
- # stream. For more information about tags, see [Using Cost Allocation
516
- # Tags][1] in the AWS Billing and Cost Management User Guide.
515
+ # pair that you can define and assign to Amazon Web Services resources.
516
+ # Tags are metadata. For example, you can add friendly names and
517
+ # descriptions or other types of information that can help you
518
+ # distinguish the delivery stream. For more information about tags, see
519
+ # [Using Cost Allocation Tags][1] in the Amazon Web Services Billing and
520
+ # Cost Management User Guide.
517
521
  #
518
522
  # You can specify up to 50 tags when creating a delivery stream.
519
523
  #
@@ -521,6 +525,10 @@ module Aws::Firehose
521
525
  #
522
526
  # [1]: https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/cost-alloc-tags.html
523
527
  #
528
+ # @option params [Types::AmazonOpenSearchServerlessDestinationConfiguration] :amazon_open_search_serverless_destination_configuration
529
+ # The destination in the Serverless offering for Amazon OpenSearch
530
+ # Service. You can specify only one destination.
531
+ #
524
532
  # @return [Types::CreateDeliveryStreamOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
525
533
  #
526
534
  # * {Types::CreateDeliveryStreamOutput#delivery_stream_arn #delivery_stream_arn} => String
@@ -999,6 +1007,65 @@ module Aws::Firehose
999
1007
  # value: "TagValue",
1000
1008
  # },
1001
1009
  # ],
1010
+ # amazon_open_search_serverless_destination_configuration: {
1011
+ # role_arn: "RoleARN", # required
1012
+ # collection_endpoint: "AmazonOpenSearchServerlessCollectionEndpoint",
1013
+ # index_name: "AmazonOpenSearchServerlessIndexName", # required
1014
+ # buffering_hints: {
1015
+ # interval_in_seconds: 1,
1016
+ # size_in_m_bs: 1,
1017
+ # },
1018
+ # retry_options: {
1019
+ # duration_in_seconds: 1,
1020
+ # },
1021
+ # s3_backup_mode: "FailedDocumentsOnly", # accepts FailedDocumentsOnly, AllDocuments
1022
+ # s3_configuration: { # required
1023
+ # role_arn: "RoleARN", # required
1024
+ # bucket_arn: "BucketARN", # required
1025
+ # prefix: "Prefix",
1026
+ # error_output_prefix: "ErrorOutputPrefix",
1027
+ # buffering_hints: {
1028
+ # size_in_m_bs: 1,
1029
+ # interval_in_seconds: 1,
1030
+ # },
1031
+ # compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy, HADOOP_SNAPPY
1032
+ # encryption_configuration: {
1033
+ # no_encryption_config: "NoEncryption", # accepts NoEncryption
1034
+ # kms_encryption_config: {
1035
+ # awskms_key_arn: "AWSKMSKeyARN", # required
1036
+ # },
1037
+ # },
1038
+ # cloud_watch_logging_options: {
1039
+ # enabled: false,
1040
+ # log_group_name: "LogGroupName",
1041
+ # log_stream_name: "LogStreamName",
1042
+ # },
1043
+ # },
1044
+ # processing_configuration: {
1045
+ # enabled: false,
1046
+ # processors: [
1047
+ # {
1048
+ # type: "RecordDeAggregation", # required, accepts RecordDeAggregation, Lambda, MetadataExtraction, AppendDelimiterToRecord
1049
+ # parameters: [
1050
+ # {
1051
+ # parameter_name: "LambdaArn", # required, accepts LambdaArn, NumberOfRetries, MetadataExtractionQuery, JsonParsingEngine, RoleArn, BufferSizeInMBs, BufferIntervalInSeconds, SubRecordType, Delimiter
1052
+ # parameter_value: "ProcessorParameterValue", # required
1053
+ # },
1054
+ # ],
1055
+ # },
1056
+ # ],
1057
+ # },
1058
+ # cloud_watch_logging_options: {
1059
+ # enabled: false,
1060
+ # log_group_name: "LogGroupName",
1061
+ # log_stream_name: "LogStreamName",
1062
+ # },
1063
+ # vpc_configuration: {
1064
+ # subnet_ids: ["NonEmptyStringWithoutWhitespace"], # required
1065
+ # role_arn: "RoleARN", # required
1066
+ # security_group_ids: ["NonEmptyStringWithoutWhitespace"], # required
1067
+ # },
1068
+ # },
1002
1069
  # })
1003
1070
  #
1004
1071
  # @example Response structure
@@ -1039,8 +1106,8 @@ module Aws::Firehose
1039
1106
  # customer error, such as when the CMK or the grant are in an invalid
1040
1107
  # state. If you force deletion, you can then use the [RevokeGrant][1]
1041
1108
  # operation to revoke the grant you gave to Kinesis Data Firehose. If a
1042
- # failure to retire the grant happens due to an AWS KMS issue, Kinesis
1043
- # Data Firehose keeps retrying the delete operation.
1109
+ # failure to retire the grant happens due to an Amazon Web Services KMS
1110
+ # issue, Kinesis Data Firehose keeps retrying the delete operation.
1044
1111
  #
1045
1112
  # The default value is false.
1046
1113
  #
@@ -1372,6 +1439,40 @@ module Aws::Firehose
1372
1439
  # resp.delivery_stream_description.destinations[0].http_endpoint_destination_description.s3_destination_description.cloud_watch_logging_options.enabled #=> Boolean
1373
1440
  # resp.delivery_stream_description.destinations[0].http_endpoint_destination_description.s3_destination_description.cloud_watch_logging_options.log_group_name #=> String
1374
1441
  # resp.delivery_stream_description.destinations[0].http_endpoint_destination_description.s3_destination_description.cloud_watch_logging_options.log_stream_name #=> String
1442
+ # resp.delivery_stream_description.destinations[0].amazon_open_search_serverless_destination_description.role_arn #=> String
1443
+ # resp.delivery_stream_description.destinations[0].amazon_open_search_serverless_destination_description.collection_endpoint #=> String
1444
+ # resp.delivery_stream_description.destinations[0].amazon_open_search_serverless_destination_description.index_name #=> String
1445
+ # resp.delivery_stream_description.destinations[0].amazon_open_search_serverless_destination_description.buffering_hints.interval_in_seconds #=> Integer
1446
+ # resp.delivery_stream_description.destinations[0].amazon_open_search_serverless_destination_description.buffering_hints.size_in_m_bs #=> Integer
1447
+ # resp.delivery_stream_description.destinations[0].amazon_open_search_serverless_destination_description.retry_options.duration_in_seconds #=> Integer
1448
+ # resp.delivery_stream_description.destinations[0].amazon_open_search_serverless_destination_description.s3_backup_mode #=> String, one of "FailedDocumentsOnly", "AllDocuments"
1449
+ # resp.delivery_stream_description.destinations[0].amazon_open_search_serverless_destination_description.s3_destination_description.role_arn #=> String
1450
+ # resp.delivery_stream_description.destinations[0].amazon_open_search_serverless_destination_description.s3_destination_description.bucket_arn #=> String
1451
+ # resp.delivery_stream_description.destinations[0].amazon_open_search_serverless_destination_description.s3_destination_description.prefix #=> String
1452
+ # resp.delivery_stream_description.destinations[0].amazon_open_search_serverless_destination_description.s3_destination_description.error_output_prefix #=> String
1453
+ # resp.delivery_stream_description.destinations[0].amazon_open_search_serverless_destination_description.s3_destination_description.buffering_hints.size_in_m_bs #=> Integer
1454
+ # resp.delivery_stream_description.destinations[0].amazon_open_search_serverless_destination_description.s3_destination_description.buffering_hints.interval_in_seconds #=> Integer
1455
+ # resp.delivery_stream_description.destinations[0].amazon_open_search_serverless_destination_description.s3_destination_description.compression_format #=> String, one of "UNCOMPRESSED", "GZIP", "ZIP", "Snappy", "HADOOP_SNAPPY"
1456
+ # resp.delivery_stream_description.destinations[0].amazon_open_search_serverless_destination_description.s3_destination_description.encryption_configuration.no_encryption_config #=> String, one of "NoEncryption"
1457
+ # resp.delivery_stream_description.destinations[0].amazon_open_search_serverless_destination_description.s3_destination_description.encryption_configuration.kms_encryption_config.awskms_key_arn #=> String
1458
+ # resp.delivery_stream_description.destinations[0].amazon_open_search_serverless_destination_description.s3_destination_description.cloud_watch_logging_options.enabled #=> Boolean
1459
+ # resp.delivery_stream_description.destinations[0].amazon_open_search_serverless_destination_description.s3_destination_description.cloud_watch_logging_options.log_group_name #=> String
1460
+ # resp.delivery_stream_description.destinations[0].amazon_open_search_serverless_destination_description.s3_destination_description.cloud_watch_logging_options.log_stream_name #=> String
1461
+ # resp.delivery_stream_description.destinations[0].amazon_open_search_serverless_destination_description.processing_configuration.enabled #=> Boolean
1462
+ # resp.delivery_stream_description.destinations[0].amazon_open_search_serverless_destination_description.processing_configuration.processors #=> Array
1463
+ # resp.delivery_stream_description.destinations[0].amazon_open_search_serverless_destination_description.processing_configuration.processors[0].type #=> String, one of "RecordDeAggregation", "Lambda", "MetadataExtraction", "AppendDelimiterToRecord"
1464
+ # resp.delivery_stream_description.destinations[0].amazon_open_search_serverless_destination_description.processing_configuration.processors[0].parameters #=> Array
1465
+ # resp.delivery_stream_description.destinations[0].amazon_open_search_serverless_destination_description.processing_configuration.processors[0].parameters[0].parameter_name #=> String, one of "LambdaArn", "NumberOfRetries", "MetadataExtractionQuery", "JsonParsingEngine", "RoleArn", "BufferSizeInMBs", "BufferIntervalInSeconds", "SubRecordType", "Delimiter"
1466
+ # resp.delivery_stream_description.destinations[0].amazon_open_search_serverless_destination_description.processing_configuration.processors[0].parameters[0].parameter_value #=> String
1467
+ # resp.delivery_stream_description.destinations[0].amazon_open_search_serverless_destination_description.cloud_watch_logging_options.enabled #=> Boolean
1468
+ # resp.delivery_stream_description.destinations[0].amazon_open_search_serverless_destination_description.cloud_watch_logging_options.log_group_name #=> String
1469
+ # resp.delivery_stream_description.destinations[0].amazon_open_search_serverless_destination_description.cloud_watch_logging_options.log_stream_name #=> String
1470
+ # resp.delivery_stream_description.destinations[0].amazon_open_search_serverless_destination_description.vpc_configuration_description.subnet_ids #=> Array
1471
+ # resp.delivery_stream_description.destinations[0].amazon_open_search_serverless_destination_description.vpc_configuration_description.subnet_ids[0] #=> String
1472
+ # resp.delivery_stream_description.destinations[0].amazon_open_search_serverless_destination_description.vpc_configuration_description.role_arn #=> String
1473
+ # resp.delivery_stream_description.destinations[0].amazon_open_search_serverless_destination_description.vpc_configuration_description.security_group_ids #=> Array
1474
+ # resp.delivery_stream_description.destinations[0].amazon_open_search_serverless_destination_description.vpc_configuration_description.security_group_ids[0] #=> String
1475
+ # resp.delivery_stream_description.destinations[0].amazon_open_search_serverless_destination_description.vpc_configuration_description.vpc_id #=> String
1375
1476
  # resp.delivery_stream_description.has_more_destinations #=> Boolean
1376
1477
  #
1377
1478
  # @see http://docs.aws.amazon.com/goto/WebAPI/firehose-2015-08-04/DescribeDeliveryStream AWS API Documentation
@@ -1811,13 +1912,14 @@ module Aws::Firehose
1811
1912
  end
1812
1913
 
1813
1914
  # Adds or updates tags for the specified delivery stream. A tag is a
1814
- # key-value pair that you can define and assign to AWS resources. If you
1815
- # specify a tag that already exists, the tag value is replaced with the
1816
- # value that you specify in the request. Tags are metadata. For example,
1817
- # you can add friendly names and descriptions or other types of
1818
- # information that can help you distinguish the delivery stream. For
1819
- # more information about tags, see [Using Cost Allocation Tags][1] in
1820
- # the *AWS Billing and Cost Management User Guide*.
1915
+ # key-value pair that you can define and assign to Amazon Web Services
1916
+ # resources. If you specify a tag that already exists, the tag value is
1917
+ # replaced with the value that you specify in the request. Tags are
1918
+ # metadata. For example, you can add friendly names and descriptions or
1919
+ # other types of information that can help you distinguish the delivery
1920
+ # stream. For more information about tags, see [Using Cost Allocation
1921
+ # Tags][1] in the *Amazon Web Services Billing and Cost Management User
1922
+ # Guide*.
1821
1923
  #
1822
1924
  # Each delivery stream can have up to 50 tags.
1823
1925
  #
@@ -1955,6 +2057,7 @@ module Aws::Firehose
1955
2057
  # Describes an update for a destination in Amazon ES.
1956
2058
  #
1957
2059
  # @option params [Types::AmazonopensearchserviceDestinationUpdate] :amazonopensearchservice_destination_update
2060
+ # Describes an update for a destination in Amazon OpenSearch Service.
1958
2061
  #
1959
2062
  # @option params [Types::SplunkDestinationUpdate] :splunk_destination_update
1960
2063
  # Describes an update for a destination in Splunk.
@@ -1962,6 +2065,10 @@ module Aws::Firehose
1962
2065
  # @option params [Types::HttpEndpointDestinationUpdate] :http_endpoint_destination_update
1963
2066
  # Describes an update to the specified HTTP endpoint destination.
1964
2067
  #
2068
+ # @option params [Types::AmazonOpenSearchServerlessDestinationUpdate] :amazon_open_search_serverless_destination_update
2069
+ # Describes an update for a destination in the Serverless offering for
2070
+ # Amazon OpenSearch Service.
2071
+ #
1965
2072
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1966
2073
  #
1967
2074
  # @example Request syntax with placeholder values
@@ -2413,6 +2520,59 @@ module Aws::Firehose
2413
2520
  # },
2414
2521
  # },
2415
2522
  # },
2523
+ # amazon_open_search_serverless_destination_update: {
2524
+ # role_arn: "RoleARN",
2525
+ # collection_endpoint: "AmazonOpenSearchServerlessCollectionEndpoint",
2526
+ # index_name: "AmazonOpenSearchServerlessIndexName",
2527
+ # buffering_hints: {
2528
+ # interval_in_seconds: 1,
2529
+ # size_in_m_bs: 1,
2530
+ # },
2531
+ # retry_options: {
2532
+ # duration_in_seconds: 1,
2533
+ # },
2534
+ # s3_update: {
2535
+ # role_arn: "RoleARN",
2536
+ # bucket_arn: "BucketARN",
2537
+ # prefix: "Prefix",
2538
+ # error_output_prefix: "ErrorOutputPrefix",
2539
+ # buffering_hints: {
2540
+ # size_in_m_bs: 1,
2541
+ # interval_in_seconds: 1,
2542
+ # },
2543
+ # compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy, HADOOP_SNAPPY
2544
+ # encryption_configuration: {
2545
+ # no_encryption_config: "NoEncryption", # accepts NoEncryption
2546
+ # kms_encryption_config: {
2547
+ # awskms_key_arn: "AWSKMSKeyARN", # required
2548
+ # },
2549
+ # },
2550
+ # cloud_watch_logging_options: {
2551
+ # enabled: false,
2552
+ # log_group_name: "LogGroupName",
2553
+ # log_stream_name: "LogStreamName",
2554
+ # },
2555
+ # },
2556
+ # processing_configuration: {
2557
+ # enabled: false,
2558
+ # processors: [
2559
+ # {
2560
+ # type: "RecordDeAggregation", # required, accepts RecordDeAggregation, Lambda, MetadataExtraction, AppendDelimiterToRecord
2561
+ # parameters: [
2562
+ # {
2563
+ # parameter_name: "LambdaArn", # required, accepts LambdaArn, NumberOfRetries, MetadataExtractionQuery, JsonParsingEngine, RoleArn, BufferSizeInMBs, BufferIntervalInSeconds, SubRecordType, Delimiter
2564
+ # parameter_value: "ProcessorParameterValue", # required
2565
+ # },
2566
+ # ],
2567
+ # },
2568
+ # ],
2569
+ # },
2570
+ # cloud_watch_logging_options: {
2571
+ # enabled: false,
2572
+ # log_group_name: "LogGroupName",
2573
+ # log_stream_name: "LogStreamName",
2574
+ # },
2575
+ # },
2416
2576
  # })
2417
2577
  #
2418
2578
  # @see http://docs.aws.amazon.com/goto/WebAPI/firehose-2015-08-04/UpdateDestination AWS API Documentation
@@ -2437,7 +2597,7 @@ module Aws::Firehose
2437
2597
  params: params,
2438
2598
  config: config)
2439
2599
  context[:gem_name] = 'aws-sdk-firehose'
2440
- context[:gem_version] = '1.49.0'
2600
+ context[:gem_version] = '1.50.0'
2441
2601
  Seahorse::Client::Request.new(handlers, context)
2442
2602
  end
2443
2603
 
@@ -14,6 +14,17 @@ module Aws::Firehose
14
14
  include Seahorse::Model
15
15
 
16
16
  AWSKMSKeyARN = Shapes::StringShape.new(name: 'AWSKMSKeyARN')
17
+ AmazonOpenSearchServerlessBufferingHints = Shapes::StructureShape.new(name: 'AmazonOpenSearchServerlessBufferingHints')
18
+ AmazonOpenSearchServerlessBufferingIntervalInSeconds = Shapes::IntegerShape.new(name: 'AmazonOpenSearchServerlessBufferingIntervalInSeconds')
19
+ AmazonOpenSearchServerlessBufferingSizeInMBs = Shapes::IntegerShape.new(name: 'AmazonOpenSearchServerlessBufferingSizeInMBs')
20
+ AmazonOpenSearchServerlessCollectionEndpoint = Shapes::StringShape.new(name: 'AmazonOpenSearchServerlessCollectionEndpoint')
21
+ AmazonOpenSearchServerlessDestinationConfiguration = Shapes::StructureShape.new(name: 'AmazonOpenSearchServerlessDestinationConfiguration')
22
+ AmazonOpenSearchServerlessDestinationDescription = Shapes::StructureShape.new(name: 'AmazonOpenSearchServerlessDestinationDescription')
23
+ AmazonOpenSearchServerlessDestinationUpdate = Shapes::StructureShape.new(name: 'AmazonOpenSearchServerlessDestinationUpdate')
24
+ AmazonOpenSearchServerlessIndexName = Shapes::StringShape.new(name: 'AmazonOpenSearchServerlessIndexName')
25
+ AmazonOpenSearchServerlessRetryDurationInSeconds = Shapes::IntegerShape.new(name: 'AmazonOpenSearchServerlessRetryDurationInSeconds')
26
+ AmazonOpenSearchServerlessRetryOptions = Shapes::StructureShape.new(name: 'AmazonOpenSearchServerlessRetryOptions')
27
+ AmazonOpenSearchServerlessS3BackupMode = Shapes::StringShape.new(name: 'AmazonOpenSearchServerlessS3BackupMode')
17
28
  AmazonopensearchserviceBufferingHints = Shapes::StructureShape.new(name: 'AmazonopensearchserviceBufferingHints')
18
29
  AmazonopensearchserviceBufferingIntervalInSeconds = Shapes::IntegerShape.new(name: 'AmazonopensearchserviceBufferingIntervalInSeconds')
19
30
  AmazonopensearchserviceBufferingSizeInMBs = Shapes::IntegerShape.new(name: 'AmazonopensearchserviceBufferingSizeInMBs')
@@ -218,6 +229,47 @@ module Aws::Firehose
218
229
  VpcConfiguration = Shapes::StructureShape.new(name: 'VpcConfiguration')
219
230
  VpcConfigurationDescription = Shapes::StructureShape.new(name: 'VpcConfigurationDescription')
220
231
 
232
+ AmazonOpenSearchServerlessBufferingHints.add_member(:interval_in_seconds, Shapes::ShapeRef.new(shape: AmazonOpenSearchServerlessBufferingIntervalInSeconds, location_name: "IntervalInSeconds"))
233
+ AmazonOpenSearchServerlessBufferingHints.add_member(:size_in_m_bs, Shapes::ShapeRef.new(shape: AmazonOpenSearchServerlessBufferingSizeInMBs, location_name: "SizeInMBs"))
234
+ AmazonOpenSearchServerlessBufferingHints.struct_class = Types::AmazonOpenSearchServerlessBufferingHints
235
+
236
+ AmazonOpenSearchServerlessDestinationConfiguration.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleARN, required: true, location_name: "RoleARN"))
237
+ AmazonOpenSearchServerlessDestinationConfiguration.add_member(:collection_endpoint, Shapes::ShapeRef.new(shape: AmazonOpenSearchServerlessCollectionEndpoint, location_name: "CollectionEndpoint"))
238
+ AmazonOpenSearchServerlessDestinationConfiguration.add_member(:index_name, Shapes::ShapeRef.new(shape: AmazonOpenSearchServerlessIndexName, required: true, location_name: "IndexName"))
239
+ AmazonOpenSearchServerlessDestinationConfiguration.add_member(:buffering_hints, Shapes::ShapeRef.new(shape: AmazonOpenSearchServerlessBufferingHints, location_name: "BufferingHints"))
240
+ AmazonOpenSearchServerlessDestinationConfiguration.add_member(:retry_options, Shapes::ShapeRef.new(shape: AmazonOpenSearchServerlessRetryOptions, location_name: "RetryOptions"))
241
+ AmazonOpenSearchServerlessDestinationConfiguration.add_member(:s3_backup_mode, Shapes::ShapeRef.new(shape: AmazonOpenSearchServerlessS3BackupMode, location_name: "S3BackupMode"))
242
+ AmazonOpenSearchServerlessDestinationConfiguration.add_member(:s3_configuration, Shapes::ShapeRef.new(shape: S3DestinationConfiguration, required: true, location_name: "S3Configuration"))
243
+ AmazonOpenSearchServerlessDestinationConfiguration.add_member(:processing_configuration, Shapes::ShapeRef.new(shape: ProcessingConfiguration, location_name: "ProcessingConfiguration"))
244
+ AmazonOpenSearchServerlessDestinationConfiguration.add_member(:cloud_watch_logging_options, Shapes::ShapeRef.new(shape: CloudWatchLoggingOptions, location_name: "CloudWatchLoggingOptions"))
245
+ AmazonOpenSearchServerlessDestinationConfiguration.add_member(:vpc_configuration, Shapes::ShapeRef.new(shape: VpcConfiguration, location_name: "VpcConfiguration"))
246
+ AmazonOpenSearchServerlessDestinationConfiguration.struct_class = Types::AmazonOpenSearchServerlessDestinationConfiguration
247
+
248
+ AmazonOpenSearchServerlessDestinationDescription.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleARN, location_name: "RoleARN"))
249
+ AmazonOpenSearchServerlessDestinationDescription.add_member(:collection_endpoint, Shapes::ShapeRef.new(shape: AmazonOpenSearchServerlessCollectionEndpoint, location_name: "CollectionEndpoint"))
250
+ AmazonOpenSearchServerlessDestinationDescription.add_member(:index_name, Shapes::ShapeRef.new(shape: AmazonOpenSearchServerlessIndexName, location_name: "IndexName"))
251
+ AmazonOpenSearchServerlessDestinationDescription.add_member(:buffering_hints, Shapes::ShapeRef.new(shape: AmazonOpenSearchServerlessBufferingHints, location_name: "BufferingHints"))
252
+ AmazonOpenSearchServerlessDestinationDescription.add_member(:retry_options, Shapes::ShapeRef.new(shape: AmazonOpenSearchServerlessRetryOptions, location_name: "RetryOptions"))
253
+ AmazonOpenSearchServerlessDestinationDescription.add_member(:s3_backup_mode, Shapes::ShapeRef.new(shape: AmazonOpenSearchServerlessS3BackupMode, location_name: "S3BackupMode"))
254
+ AmazonOpenSearchServerlessDestinationDescription.add_member(:s3_destination_description, Shapes::ShapeRef.new(shape: S3DestinationDescription, location_name: "S3DestinationDescription"))
255
+ AmazonOpenSearchServerlessDestinationDescription.add_member(:processing_configuration, Shapes::ShapeRef.new(shape: ProcessingConfiguration, location_name: "ProcessingConfiguration"))
256
+ AmazonOpenSearchServerlessDestinationDescription.add_member(:cloud_watch_logging_options, Shapes::ShapeRef.new(shape: CloudWatchLoggingOptions, location_name: "CloudWatchLoggingOptions"))
257
+ AmazonOpenSearchServerlessDestinationDescription.add_member(:vpc_configuration_description, Shapes::ShapeRef.new(shape: VpcConfigurationDescription, location_name: "VpcConfigurationDescription"))
258
+ AmazonOpenSearchServerlessDestinationDescription.struct_class = Types::AmazonOpenSearchServerlessDestinationDescription
259
+
260
+ AmazonOpenSearchServerlessDestinationUpdate.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleARN, location_name: "RoleARN"))
261
+ AmazonOpenSearchServerlessDestinationUpdate.add_member(:collection_endpoint, Shapes::ShapeRef.new(shape: AmazonOpenSearchServerlessCollectionEndpoint, location_name: "CollectionEndpoint"))
262
+ AmazonOpenSearchServerlessDestinationUpdate.add_member(:index_name, Shapes::ShapeRef.new(shape: AmazonOpenSearchServerlessIndexName, location_name: "IndexName"))
263
+ AmazonOpenSearchServerlessDestinationUpdate.add_member(:buffering_hints, Shapes::ShapeRef.new(shape: AmazonOpenSearchServerlessBufferingHints, location_name: "BufferingHints"))
264
+ AmazonOpenSearchServerlessDestinationUpdate.add_member(:retry_options, Shapes::ShapeRef.new(shape: AmazonOpenSearchServerlessRetryOptions, location_name: "RetryOptions"))
265
+ AmazonOpenSearchServerlessDestinationUpdate.add_member(:s3_update, Shapes::ShapeRef.new(shape: S3DestinationUpdate, location_name: "S3Update"))
266
+ AmazonOpenSearchServerlessDestinationUpdate.add_member(:processing_configuration, Shapes::ShapeRef.new(shape: ProcessingConfiguration, location_name: "ProcessingConfiguration"))
267
+ AmazonOpenSearchServerlessDestinationUpdate.add_member(:cloud_watch_logging_options, Shapes::ShapeRef.new(shape: CloudWatchLoggingOptions, location_name: "CloudWatchLoggingOptions"))
268
+ AmazonOpenSearchServerlessDestinationUpdate.struct_class = Types::AmazonOpenSearchServerlessDestinationUpdate
269
+
270
+ AmazonOpenSearchServerlessRetryOptions.add_member(:duration_in_seconds, Shapes::ShapeRef.new(shape: AmazonOpenSearchServerlessRetryDurationInSeconds, location_name: "DurationInSeconds"))
271
+ AmazonOpenSearchServerlessRetryOptions.struct_class = Types::AmazonOpenSearchServerlessRetryOptions
272
+
221
273
  AmazonopensearchserviceBufferingHints.add_member(:interval_in_seconds, Shapes::ShapeRef.new(shape: AmazonopensearchserviceBufferingIntervalInSeconds, location_name: "IntervalInSeconds"))
222
274
  AmazonopensearchserviceBufferingHints.add_member(:size_in_m_bs, Shapes::ShapeRef.new(shape: AmazonopensearchserviceBufferingSizeInMBs, location_name: "SizeInMBs"))
223
275
  AmazonopensearchserviceBufferingHints.struct_class = Types::AmazonopensearchserviceBufferingHints
@@ -300,6 +352,7 @@ module Aws::Firehose
300
352
  CreateDeliveryStreamInput.add_member(:splunk_destination_configuration, Shapes::ShapeRef.new(shape: SplunkDestinationConfiguration, location_name: "SplunkDestinationConfiguration"))
301
353
  CreateDeliveryStreamInput.add_member(:http_endpoint_destination_configuration, Shapes::ShapeRef.new(shape: HttpEndpointDestinationConfiguration, location_name: "HttpEndpointDestinationConfiguration"))
302
354
  CreateDeliveryStreamInput.add_member(:tags, Shapes::ShapeRef.new(shape: TagDeliveryStreamInputTagList, location_name: "Tags"))
355
+ CreateDeliveryStreamInput.add_member(:amazon_open_search_serverless_destination_configuration, Shapes::ShapeRef.new(shape: AmazonOpenSearchServerlessDestinationConfiguration, location_name: "AmazonOpenSearchServerlessDestinationConfiguration"))
303
356
  CreateDeliveryStreamInput.struct_class = Types::CreateDeliveryStreamInput
304
357
 
305
358
  CreateDeliveryStreamOutput.add_member(:delivery_stream_arn, Shapes::ShapeRef.new(shape: DeliveryStreamARN, location_name: "DeliveryStreamARN"))
@@ -363,6 +416,7 @@ module Aws::Firehose
363
416
  DestinationDescription.add_member(:amazonopensearchservice_destination_description, Shapes::ShapeRef.new(shape: AmazonopensearchserviceDestinationDescription, location_name: "AmazonopensearchserviceDestinationDescription"))
364
417
  DestinationDescription.add_member(:splunk_destination_description, Shapes::ShapeRef.new(shape: SplunkDestinationDescription, location_name: "SplunkDestinationDescription"))
365
418
  DestinationDescription.add_member(:http_endpoint_destination_description, Shapes::ShapeRef.new(shape: HttpEndpointDestinationDescription, location_name: "HttpEndpointDestinationDescription"))
419
+ DestinationDescription.add_member(:amazon_open_search_serverless_destination_description, Shapes::ShapeRef.new(shape: AmazonOpenSearchServerlessDestinationDescription, location_name: "AmazonOpenSearchServerlessDestinationDescription"))
366
420
  DestinationDescription.struct_class = Types::DestinationDescription
367
421
 
368
422
  DestinationDescriptionList.member = Shapes::ShapeRef.new(shape: DestinationDescription)
@@ -837,6 +891,7 @@ module Aws::Firehose
837
891
  UpdateDestinationInput.add_member(:amazonopensearchservice_destination_update, Shapes::ShapeRef.new(shape: AmazonopensearchserviceDestinationUpdate, location_name: "AmazonopensearchserviceDestinationUpdate"))
838
892
  UpdateDestinationInput.add_member(:splunk_destination_update, Shapes::ShapeRef.new(shape: SplunkDestinationUpdate, location_name: "SplunkDestinationUpdate"))
839
893
  UpdateDestinationInput.add_member(:http_endpoint_destination_update, Shapes::ShapeRef.new(shape: HttpEndpointDestinationUpdate, location_name: "HttpEndpointDestinationUpdate"))
894
+ UpdateDestinationInput.add_member(:amazon_open_search_serverless_destination_update, Shapes::ShapeRef.new(shape: AmazonOpenSearchServerlessDestinationUpdate, location_name: "AmazonOpenSearchServerlessDestinationUpdate"))
840
895
  UpdateDestinationInput.struct_class = Types::UpdateDestinationInput
841
896
 
842
897
  UpdateDestinationOutput.struct_class = Types::UpdateDestinationOutput