aws-sdk-firehose 1.60.0 → 1.62.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3c0b25abb2923866f98bdee7a6f88a59bc909e7e1e3e3c7fea4a48c4f3da60c5
4
- data.tar.gz: e5e26c2ea8493aa92dbc2f8c13377ba7d86a4ba8d7b371d42c98a38de8f89b81
3
+ metadata.gz: bb1055b234cd9a13da69c44a431e6e7ee2dfdae73ec46294acf21732607401ef
4
+ data.tar.gz: e51fbdf991b178b0265f656ebf96b8559b6307604d7b4c0b19015082405e5327
5
5
  SHA512:
6
- metadata.gz: a2a9e845e904d6897dc307cc4aff231674ba172166efd14cca743b4dea7f52d9049a1fe96ade8f9bee19f8975194f3bfcd00545eba3f1c96e79d1d04b3163ec8
7
- data.tar.gz: a5ad9f30c97e3d92c5d92b8ecc4acfc92f2f2536080517de92da73dd2c66156f7aa74b2921d106a232f0f994cd0e9ae2984e5c6b49eddac42859343bdd71d0c2
6
+ metadata.gz: 43164dc1b673d86a5c0c884e109074b74de24b1f29fe03fb1dbca435d10cf808cca42fa57d353059ebfc69e7dd13cdc7ee96366a9dc969a78905828503d7239c
7
+ data.tar.gz: 5241ce8e2e717784fea8df202e1f624ef013abcbc7f653ad9316f6049c9a0ccfe574317b206ce96e6d6e60803afba8381d444c87162961a7fcdc8c78d920ab07
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.62.0 (2024-01-18)
5
+ ------------------
6
+
7
+ * Feature - Allow support for Snowflake as a Kinesis Data Firehose delivery destination.
8
+
9
+ 1.61.0 (2023-12-14)
10
+ ------------------
11
+
12
+ * Feature - This release, 1) adds configurable buffering hints for the Splunk destination, and 2) reduces the minimum configurable buffering interval for supported destinations
13
+
4
14
  1.60.0 (2023-11-28)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.60.0
1
+ 1.62.0
@@ -557,6 +557,9 @@ module Aws::Firehose
557
557
  # The configuration for the Amazon MSK cluster to be used as the source
558
558
  # for a delivery stream.
559
559
  #
560
+ # @option params [Types::SnowflakeDestinationConfiguration] :snowflake_destination_configuration
561
+ # Configure Snowflake destination
562
+ #
560
563
  # @return [Types::CreateDeliveryStreamOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
561
564
  #
562
565
  # * {Types::CreateDeliveryStreamOutput#delivery_stream_arn #delivery_stream_arn} => String
@@ -968,6 +971,10 @@ module Aws::Firehose
968
971
  # log_group_name: "LogGroupName",
969
972
  # log_stream_name: "LogStreamName",
970
973
  # },
974
+ # buffering_hints: {
975
+ # interval_in_seconds: 1,
976
+ # size_in_m_bs: 1,
977
+ # },
971
978
  # },
972
979
  # http_endpoint_destination_configuration: {
973
980
  # endpoint_configuration: { # required
@@ -1108,6 +1115,71 @@ module Aws::Firehose
1108
1115
  # connectivity: "PUBLIC", # required, accepts PUBLIC, PRIVATE
1109
1116
  # },
1110
1117
  # },
1118
+ # snowflake_destination_configuration: {
1119
+ # account_url: "SnowflakeAccountUrl", # required
1120
+ # private_key: "SnowflakePrivateKey", # required
1121
+ # key_passphrase: "SnowflakeKeyPassphrase",
1122
+ # user: "SnowflakeUser", # required
1123
+ # database: "SnowflakeDatabase", # required
1124
+ # schema: "SnowflakeSchema", # required
1125
+ # table: "SnowflakeTable", # required
1126
+ # snowflake_role_configuration: {
1127
+ # enabled: false,
1128
+ # snowflake_role: "SnowflakeRole",
1129
+ # },
1130
+ # data_loading_option: "JSON_MAPPING", # accepts JSON_MAPPING, VARIANT_CONTENT_MAPPING, VARIANT_CONTENT_AND_METADATA_MAPPING
1131
+ # meta_data_column_name: "SnowflakeMetaDataColumnName",
1132
+ # content_column_name: "SnowflakeContentColumnName",
1133
+ # snowflake_vpc_configuration: {
1134
+ # private_link_vpce_id: "SnowflakePrivateLinkVpceId", # required
1135
+ # },
1136
+ # cloud_watch_logging_options: {
1137
+ # enabled: false,
1138
+ # log_group_name: "LogGroupName",
1139
+ # log_stream_name: "LogStreamName",
1140
+ # },
1141
+ # processing_configuration: {
1142
+ # enabled: false,
1143
+ # processors: [
1144
+ # {
1145
+ # type: "RecordDeAggregation", # required, accepts RecordDeAggregation, Decompression, Lambda, MetadataExtraction, AppendDelimiterToRecord
1146
+ # parameters: [
1147
+ # {
1148
+ # parameter_name: "LambdaArn", # required, accepts LambdaArn, NumberOfRetries, MetadataExtractionQuery, JsonParsingEngine, RoleArn, BufferSizeInMBs, BufferIntervalInSeconds, SubRecordType, Delimiter, CompressionFormat
1149
+ # parameter_value: "ProcessorParameterValue", # required
1150
+ # },
1151
+ # ],
1152
+ # },
1153
+ # ],
1154
+ # },
1155
+ # role_arn: "RoleARN", # required
1156
+ # retry_options: {
1157
+ # duration_in_seconds: 1,
1158
+ # },
1159
+ # s3_backup_mode: "FailedDataOnly", # accepts FailedDataOnly, AllData
1160
+ # s3_configuration: { # required
1161
+ # role_arn: "RoleARN", # required
1162
+ # bucket_arn: "BucketARN", # required
1163
+ # prefix: "Prefix",
1164
+ # error_output_prefix: "ErrorOutputPrefix",
1165
+ # buffering_hints: {
1166
+ # size_in_m_bs: 1,
1167
+ # interval_in_seconds: 1,
1168
+ # },
1169
+ # compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy, HADOOP_SNAPPY
1170
+ # encryption_configuration: {
1171
+ # no_encryption_config: "NoEncryption", # accepts NoEncryption
1172
+ # kms_encryption_config: {
1173
+ # awskms_key_arn: "AWSKMSKeyARN", # required
1174
+ # },
1175
+ # },
1176
+ # cloud_watch_logging_options: {
1177
+ # enabled: false,
1178
+ # log_group_name: "LogGroupName",
1179
+ # log_stream_name: "LogStreamName",
1180
+ # },
1181
+ # },
1182
+ # },
1111
1183
  # })
1112
1184
  #
1113
1185
  # @example Response structure
@@ -1456,6 +1528,8 @@ module Aws::Firehose
1456
1528
  # resp.delivery_stream_description.destinations[0].splunk_destination_description.cloud_watch_logging_options.enabled #=> Boolean
1457
1529
  # resp.delivery_stream_description.destinations[0].splunk_destination_description.cloud_watch_logging_options.log_group_name #=> String
1458
1530
  # resp.delivery_stream_description.destinations[0].splunk_destination_description.cloud_watch_logging_options.log_stream_name #=> String
1531
+ # resp.delivery_stream_description.destinations[0].splunk_destination_description.buffering_hints.interval_in_seconds #=> Integer
1532
+ # resp.delivery_stream_description.destinations[0].splunk_destination_description.buffering_hints.size_in_m_bs #=> Integer
1459
1533
  # resp.delivery_stream_description.destinations[0].http_endpoint_destination_description.endpoint_configuration.url #=> String
1460
1534
  # resp.delivery_stream_description.destinations[0].http_endpoint_destination_description.endpoint_configuration.name #=> String
1461
1535
  # resp.delivery_stream_description.destinations[0].http_endpoint_destination_description.buffering_hints.size_in_m_bs #=> Integer
@@ -1488,6 +1562,41 @@ module Aws::Firehose
1488
1562
  # resp.delivery_stream_description.destinations[0].http_endpoint_destination_description.s3_destination_description.cloud_watch_logging_options.enabled #=> Boolean
1489
1563
  # resp.delivery_stream_description.destinations[0].http_endpoint_destination_description.s3_destination_description.cloud_watch_logging_options.log_group_name #=> String
1490
1564
  # resp.delivery_stream_description.destinations[0].http_endpoint_destination_description.s3_destination_description.cloud_watch_logging_options.log_stream_name #=> String
1565
+ # resp.delivery_stream_description.destinations[0].snowflake_destination_description.account_url #=> String
1566
+ # resp.delivery_stream_description.destinations[0].snowflake_destination_description.user #=> String
1567
+ # resp.delivery_stream_description.destinations[0].snowflake_destination_description.database #=> String
1568
+ # resp.delivery_stream_description.destinations[0].snowflake_destination_description.schema #=> String
1569
+ # resp.delivery_stream_description.destinations[0].snowflake_destination_description.table #=> String
1570
+ # resp.delivery_stream_description.destinations[0].snowflake_destination_description.snowflake_role_configuration.enabled #=> Boolean
1571
+ # resp.delivery_stream_description.destinations[0].snowflake_destination_description.snowflake_role_configuration.snowflake_role #=> String
1572
+ # resp.delivery_stream_description.destinations[0].snowflake_destination_description.data_loading_option #=> String, one of "JSON_MAPPING", "VARIANT_CONTENT_MAPPING", "VARIANT_CONTENT_AND_METADATA_MAPPING"
1573
+ # resp.delivery_stream_description.destinations[0].snowflake_destination_description.meta_data_column_name #=> String
1574
+ # resp.delivery_stream_description.destinations[0].snowflake_destination_description.content_column_name #=> String
1575
+ # resp.delivery_stream_description.destinations[0].snowflake_destination_description.snowflake_vpc_configuration.private_link_vpce_id #=> String
1576
+ # resp.delivery_stream_description.destinations[0].snowflake_destination_description.cloud_watch_logging_options.enabled #=> Boolean
1577
+ # resp.delivery_stream_description.destinations[0].snowflake_destination_description.cloud_watch_logging_options.log_group_name #=> String
1578
+ # resp.delivery_stream_description.destinations[0].snowflake_destination_description.cloud_watch_logging_options.log_stream_name #=> String
1579
+ # resp.delivery_stream_description.destinations[0].snowflake_destination_description.processing_configuration.enabled #=> Boolean
1580
+ # resp.delivery_stream_description.destinations[0].snowflake_destination_description.processing_configuration.processors #=> Array
1581
+ # resp.delivery_stream_description.destinations[0].snowflake_destination_description.processing_configuration.processors[0].type #=> String, one of "RecordDeAggregation", "Decompression", "Lambda", "MetadataExtraction", "AppendDelimiterToRecord"
1582
+ # resp.delivery_stream_description.destinations[0].snowflake_destination_description.processing_configuration.processors[0].parameters #=> Array
1583
+ # resp.delivery_stream_description.destinations[0].snowflake_destination_description.processing_configuration.processors[0].parameters[0].parameter_name #=> String, one of "LambdaArn", "NumberOfRetries", "MetadataExtractionQuery", "JsonParsingEngine", "RoleArn", "BufferSizeInMBs", "BufferIntervalInSeconds", "SubRecordType", "Delimiter", "CompressionFormat"
1584
+ # resp.delivery_stream_description.destinations[0].snowflake_destination_description.processing_configuration.processors[0].parameters[0].parameter_value #=> String
1585
+ # resp.delivery_stream_description.destinations[0].snowflake_destination_description.role_arn #=> String
1586
+ # resp.delivery_stream_description.destinations[0].snowflake_destination_description.retry_options.duration_in_seconds #=> Integer
1587
+ # resp.delivery_stream_description.destinations[0].snowflake_destination_description.s3_backup_mode #=> String, one of "FailedDataOnly", "AllData"
1588
+ # resp.delivery_stream_description.destinations[0].snowflake_destination_description.s3_destination_description.role_arn #=> String
1589
+ # resp.delivery_stream_description.destinations[0].snowflake_destination_description.s3_destination_description.bucket_arn #=> String
1590
+ # resp.delivery_stream_description.destinations[0].snowflake_destination_description.s3_destination_description.prefix #=> String
1591
+ # resp.delivery_stream_description.destinations[0].snowflake_destination_description.s3_destination_description.error_output_prefix #=> String
1592
+ # resp.delivery_stream_description.destinations[0].snowflake_destination_description.s3_destination_description.buffering_hints.size_in_m_bs #=> Integer
1593
+ # resp.delivery_stream_description.destinations[0].snowflake_destination_description.s3_destination_description.buffering_hints.interval_in_seconds #=> Integer
1594
+ # resp.delivery_stream_description.destinations[0].snowflake_destination_description.s3_destination_description.compression_format #=> String, one of "UNCOMPRESSED", "GZIP", "ZIP", "Snappy", "HADOOP_SNAPPY"
1595
+ # resp.delivery_stream_description.destinations[0].snowflake_destination_description.s3_destination_description.encryption_configuration.no_encryption_config #=> String, one of "NoEncryption"
1596
+ # resp.delivery_stream_description.destinations[0].snowflake_destination_description.s3_destination_description.encryption_configuration.kms_encryption_config.awskms_key_arn #=> String
1597
+ # resp.delivery_stream_description.destinations[0].snowflake_destination_description.s3_destination_description.cloud_watch_logging_options.enabled #=> Boolean
1598
+ # resp.delivery_stream_description.destinations[0].snowflake_destination_description.s3_destination_description.cloud_watch_logging_options.log_group_name #=> String
1599
+ # resp.delivery_stream_description.destinations[0].snowflake_destination_description.s3_destination_description.cloud_watch_logging_options.log_stream_name #=> String
1491
1600
  # resp.delivery_stream_description.destinations[0].amazon_open_search_serverless_destination_description.role_arn #=> String
1492
1601
  # resp.delivery_stream_description.destinations[0].amazon_open_search_serverless_destination_description.collection_endpoint #=> String
1493
1602
  # resp.delivery_stream_description.destinations[0].amazon_open_search_serverless_destination_description.index_name #=> String
@@ -2146,6 +2255,9 @@ module Aws::Firehose
2146
2255
  # Describes an update for a destination in the Serverless offering for
2147
2256
  # Amazon OpenSearch Service.
2148
2257
  #
2258
+ # @option params [Types::SnowflakeDestinationUpdate] :snowflake_destination_update
2259
+ # Update to the Snowflake destination condiguration settings
2260
+ #
2149
2261
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
2150
2262
  #
2151
2263
  # @example Request syntax with placeholder values
@@ -2536,6 +2648,10 @@ module Aws::Firehose
2536
2648
  # log_group_name: "LogGroupName",
2537
2649
  # log_stream_name: "LogStreamName",
2538
2650
  # },
2651
+ # buffering_hints: {
2652
+ # interval_in_seconds: 1,
2653
+ # size_in_m_bs: 1,
2654
+ # },
2539
2655
  # },
2540
2656
  # http_endpoint_destination_update: {
2541
2657
  # endpoint_configuration: {
@@ -2656,6 +2772,68 @@ module Aws::Firehose
2656
2772
  # log_stream_name: "LogStreamName",
2657
2773
  # },
2658
2774
  # },
2775
+ # snowflake_destination_update: {
2776
+ # account_url: "SnowflakeAccountUrl",
2777
+ # private_key: "SnowflakePrivateKey",
2778
+ # key_passphrase: "SnowflakeKeyPassphrase",
2779
+ # user: "SnowflakeUser",
2780
+ # database: "SnowflakeDatabase",
2781
+ # schema: "SnowflakeSchema",
2782
+ # table: "SnowflakeTable",
2783
+ # snowflake_role_configuration: {
2784
+ # enabled: false,
2785
+ # snowflake_role: "SnowflakeRole",
2786
+ # },
2787
+ # data_loading_option: "JSON_MAPPING", # accepts JSON_MAPPING, VARIANT_CONTENT_MAPPING, VARIANT_CONTENT_AND_METADATA_MAPPING
2788
+ # meta_data_column_name: "SnowflakeMetaDataColumnName",
2789
+ # content_column_name: "SnowflakeContentColumnName",
2790
+ # cloud_watch_logging_options: {
2791
+ # enabled: false,
2792
+ # log_group_name: "LogGroupName",
2793
+ # log_stream_name: "LogStreamName",
2794
+ # },
2795
+ # processing_configuration: {
2796
+ # enabled: false,
2797
+ # processors: [
2798
+ # {
2799
+ # type: "RecordDeAggregation", # required, accepts RecordDeAggregation, Decompression, Lambda, MetadataExtraction, AppendDelimiterToRecord
2800
+ # parameters: [
2801
+ # {
2802
+ # parameter_name: "LambdaArn", # required, accepts LambdaArn, NumberOfRetries, MetadataExtractionQuery, JsonParsingEngine, RoleArn, BufferSizeInMBs, BufferIntervalInSeconds, SubRecordType, Delimiter, CompressionFormat
2803
+ # parameter_value: "ProcessorParameterValue", # required
2804
+ # },
2805
+ # ],
2806
+ # },
2807
+ # ],
2808
+ # },
2809
+ # role_arn: "RoleARN",
2810
+ # retry_options: {
2811
+ # duration_in_seconds: 1,
2812
+ # },
2813
+ # s3_backup_mode: "FailedDataOnly", # accepts FailedDataOnly, AllData
2814
+ # s3_update: {
2815
+ # role_arn: "RoleARN",
2816
+ # bucket_arn: "BucketARN",
2817
+ # prefix: "Prefix",
2818
+ # error_output_prefix: "ErrorOutputPrefix",
2819
+ # buffering_hints: {
2820
+ # size_in_m_bs: 1,
2821
+ # interval_in_seconds: 1,
2822
+ # },
2823
+ # compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy, HADOOP_SNAPPY
2824
+ # encryption_configuration: {
2825
+ # no_encryption_config: "NoEncryption", # accepts NoEncryption
2826
+ # kms_encryption_config: {
2827
+ # awskms_key_arn: "AWSKMSKeyARN", # required
2828
+ # },
2829
+ # },
2830
+ # cloud_watch_logging_options: {
2831
+ # enabled: false,
2832
+ # log_group_name: "LogGroupName",
2833
+ # log_stream_name: "LogStreamName",
2834
+ # },
2835
+ # },
2836
+ # },
2659
2837
  # })
2660
2838
  #
2661
2839
  # @see http://docs.aws.amazon.com/goto/WebAPI/firehose-2015-08-04/UpdateDestination AWS API Documentation
@@ -2680,7 +2858,7 @@ module Aws::Firehose
2680
2858
  params: params,
2681
2859
  config: config)
2682
2860
  context[:gem_name] = 'aws-sdk-firehose'
2683
- context[:gem_version] = '1.60.0'
2861
+ context[:gem_version] = '1.62.0'
2684
2862
  Seahorse::Client::Request.new(handlers, context)
2685
2863
  end
2686
2864
 
@@ -133,6 +133,7 @@ module Aws::Firehose
133
133
  IntervalInSeconds = Shapes::IntegerShape.new(name: 'IntervalInSeconds')
134
134
  InvalidArgumentException = Shapes::StructureShape.new(name: 'InvalidArgumentException')
135
135
  InvalidKMSResourceException = Shapes::StructureShape.new(name: 'InvalidKMSResourceException')
136
+ InvalidSourceException = Shapes::StructureShape.new(name: 'InvalidSourceException')
136
137
  KMSEncryptionConfig = Shapes::StructureShape.new(name: 'KMSEncryptionConfig')
137
138
  KeyType = Shapes::StringShape.new(name: 'KeyType')
138
139
  KinesisStreamARN = Shapes::StringShape.new(name: 'KinesisStreamARN')
@@ -208,7 +209,30 @@ module Aws::Firehose
208
209
  Serializer = Shapes::StructureShape.new(name: 'Serializer')
209
210
  ServiceUnavailableException = Shapes::StructureShape.new(name: 'ServiceUnavailableException')
210
211
  SizeInMBs = Shapes::IntegerShape.new(name: 'SizeInMBs')
212
+ SnowflakeAccountUrl = Shapes::StringShape.new(name: 'SnowflakeAccountUrl')
213
+ SnowflakeContentColumnName = Shapes::StringShape.new(name: 'SnowflakeContentColumnName')
214
+ SnowflakeDataLoadingOption = Shapes::StringShape.new(name: 'SnowflakeDataLoadingOption')
215
+ SnowflakeDatabase = Shapes::StringShape.new(name: 'SnowflakeDatabase')
216
+ SnowflakeDestinationConfiguration = Shapes::StructureShape.new(name: 'SnowflakeDestinationConfiguration')
217
+ SnowflakeDestinationDescription = Shapes::StructureShape.new(name: 'SnowflakeDestinationDescription')
218
+ SnowflakeDestinationUpdate = Shapes::StructureShape.new(name: 'SnowflakeDestinationUpdate')
219
+ SnowflakeKeyPassphrase = Shapes::StringShape.new(name: 'SnowflakeKeyPassphrase')
220
+ SnowflakeMetaDataColumnName = Shapes::StringShape.new(name: 'SnowflakeMetaDataColumnName')
221
+ SnowflakePrivateKey = Shapes::StringShape.new(name: 'SnowflakePrivateKey')
222
+ SnowflakePrivateLinkVpceId = Shapes::StringShape.new(name: 'SnowflakePrivateLinkVpceId')
223
+ SnowflakeRetryDurationInSeconds = Shapes::IntegerShape.new(name: 'SnowflakeRetryDurationInSeconds')
224
+ SnowflakeRetryOptions = Shapes::StructureShape.new(name: 'SnowflakeRetryOptions')
225
+ SnowflakeRole = Shapes::StringShape.new(name: 'SnowflakeRole')
226
+ SnowflakeRoleConfiguration = Shapes::StructureShape.new(name: 'SnowflakeRoleConfiguration')
227
+ SnowflakeS3BackupMode = Shapes::StringShape.new(name: 'SnowflakeS3BackupMode')
228
+ SnowflakeSchema = Shapes::StringShape.new(name: 'SnowflakeSchema')
229
+ SnowflakeTable = Shapes::StringShape.new(name: 'SnowflakeTable')
230
+ SnowflakeUser = Shapes::StringShape.new(name: 'SnowflakeUser')
231
+ SnowflakeVpcConfiguration = Shapes::StructureShape.new(name: 'SnowflakeVpcConfiguration')
211
232
  SourceDescription = Shapes::StructureShape.new(name: 'SourceDescription')
233
+ SplunkBufferingHints = Shapes::StructureShape.new(name: 'SplunkBufferingHints')
234
+ SplunkBufferingIntervalInSeconds = Shapes::IntegerShape.new(name: 'SplunkBufferingIntervalInSeconds')
235
+ SplunkBufferingSizeInMBs = Shapes::IntegerShape.new(name: 'SplunkBufferingSizeInMBs')
212
236
  SplunkDestinationConfiguration = Shapes::StructureShape.new(name: 'SplunkDestinationConfiguration')
213
237
  SplunkDestinationDescription = Shapes::StructureShape.new(name: 'SplunkDestinationDescription')
214
238
  SplunkDestinationUpdate = Shapes::StructureShape.new(name: 'SplunkDestinationUpdate')
@@ -369,6 +393,7 @@ module Aws::Firehose
369
393
  CreateDeliveryStreamInput.add_member(:tags, Shapes::ShapeRef.new(shape: TagDeliveryStreamInputTagList, location_name: "Tags"))
370
394
  CreateDeliveryStreamInput.add_member(:amazon_open_search_serverless_destination_configuration, Shapes::ShapeRef.new(shape: AmazonOpenSearchServerlessDestinationConfiguration, location_name: "AmazonOpenSearchServerlessDestinationConfiguration"))
371
395
  CreateDeliveryStreamInput.add_member(:msk_source_configuration, Shapes::ShapeRef.new(shape: MSKSourceConfiguration, location_name: "MSKSourceConfiguration"))
396
+ CreateDeliveryStreamInput.add_member(:snowflake_destination_configuration, Shapes::ShapeRef.new(shape: SnowflakeDestinationConfiguration, location_name: "SnowflakeDestinationConfiguration"))
372
397
  CreateDeliveryStreamInput.struct_class = Types::CreateDeliveryStreamInput
373
398
 
374
399
  CreateDeliveryStreamOutput.add_member(:delivery_stream_arn, Shapes::ShapeRef.new(shape: DeliveryStreamARN, location_name: "DeliveryStreamARN"))
@@ -432,6 +457,7 @@ module Aws::Firehose
432
457
  DestinationDescription.add_member(:amazonopensearchservice_destination_description, Shapes::ShapeRef.new(shape: AmazonopensearchserviceDestinationDescription, location_name: "AmazonopensearchserviceDestinationDescription"))
433
458
  DestinationDescription.add_member(:splunk_destination_description, Shapes::ShapeRef.new(shape: SplunkDestinationDescription, location_name: "SplunkDestinationDescription"))
434
459
  DestinationDescription.add_member(:http_endpoint_destination_description, Shapes::ShapeRef.new(shape: HttpEndpointDestinationDescription, location_name: "HttpEndpointDestinationDescription"))
460
+ DestinationDescription.add_member(:snowflake_destination_description, Shapes::ShapeRef.new(shape: SnowflakeDestinationDescription, location_name: "SnowflakeDestinationDescription"))
435
461
  DestinationDescription.add_member(:amazon_open_search_serverless_destination_description, Shapes::ShapeRef.new(shape: AmazonOpenSearchServerlessDestinationDescription, location_name: "AmazonOpenSearchServerlessDestinationDescription"))
436
462
  DestinationDescription.struct_class = Types::DestinationDescription
437
463
 
@@ -622,6 +648,10 @@ module Aws::Firehose
622
648
  InvalidKMSResourceException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "message"))
623
649
  InvalidKMSResourceException.struct_class = Types::InvalidKMSResourceException
624
650
 
651
+ InvalidSourceException.add_member(:code, Shapes::ShapeRef.new(shape: ErrorCode, location_name: "code"))
652
+ InvalidSourceException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "message"))
653
+ InvalidSourceException.struct_class = Types::InvalidSourceException
654
+
625
655
  KMSEncryptionConfig.add_member(:awskms_key_arn, Shapes::ShapeRef.new(shape: AWSKMSKeyARN, required: true, location_name: "AWSKMSKeyARN"))
626
656
  KMSEncryptionConfig.struct_class = Types::KMSEncryptionConfig
627
657
 
@@ -842,10 +872,81 @@ module Aws::Firehose
842
872
  ServiceUnavailableException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "message"))
843
873
  ServiceUnavailableException.struct_class = Types::ServiceUnavailableException
844
874
 
875
+ SnowflakeDestinationConfiguration.add_member(:account_url, Shapes::ShapeRef.new(shape: SnowflakeAccountUrl, required: true, location_name: "AccountUrl"))
876
+ SnowflakeDestinationConfiguration.add_member(:private_key, Shapes::ShapeRef.new(shape: SnowflakePrivateKey, required: true, location_name: "PrivateKey"))
877
+ SnowflakeDestinationConfiguration.add_member(:key_passphrase, Shapes::ShapeRef.new(shape: SnowflakeKeyPassphrase, location_name: "KeyPassphrase"))
878
+ SnowflakeDestinationConfiguration.add_member(:user, Shapes::ShapeRef.new(shape: SnowflakeUser, required: true, location_name: "User"))
879
+ SnowflakeDestinationConfiguration.add_member(:database, Shapes::ShapeRef.new(shape: SnowflakeDatabase, required: true, location_name: "Database"))
880
+ SnowflakeDestinationConfiguration.add_member(:schema, Shapes::ShapeRef.new(shape: SnowflakeSchema, required: true, location_name: "Schema"))
881
+ SnowflakeDestinationConfiguration.add_member(:table, Shapes::ShapeRef.new(shape: SnowflakeTable, required: true, location_name: "Table"))
882
+ SnowflakeDestinationConfiguration.add_member(:snowflake_role_configuration, Shapes::ShapeRef.new(shape: SnowflakeRoleConfiguration, location_name: "SnowflakeRoleConfiguration"))
883
+ SnowflakeDestinationConfiguration.add_member(:data_loading_option, Shapes::ShapeRef.new(shape: SnowflakeDataLoadingOption, location_name: "DataLoadingOption"))
884
+ SnowflakeDestinationConfiguration.add_member(:meta_data_column_name, Shapes::ShapeRef.new(shape: SnowflakeMetaDataColumnName, location_name: "MetaDataColumnName"))
885
+ SnowflakeDestinationConfiguration.add_member(:content_column_name, Shapes::ShapeRef.new(shape: SnowflakeContentColumnName, location_name: "ContentColumnName"))
886
+ SnowflakeDestinationConfiguration.add_member(:snowflake_vpc_configuration, Shapes::ShapeRef.new(shape: SnowflakeVpcConfiguration, location_name: "SnowflakeVpcConfiguration"))
887
+ SnowflakeDestinationConfiguration.add_member(:cloud_watch_logging_options, Shapes::ShapeRef.new(shape: CloudWatchLoggingOptions, location_name: "CloudWatchLoggingOptions"))
888
+ SnowflakeDestinationConfiguration.add_member(:processing_configuration, Shapes::ShapeRef.new(shape: ProcessingConfiguration, location_name: "ProcessingConfiguration"))
889
+ SnowflakeDestinationConfiguration.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleARN, required: true, location_name: "RoleARN"))
890
+ SnowflakeDestinationConfiguration.add_member(:retry_options, Shapes::ShapeRef.new(shape: SnowflakeRetryOptions, location_name: "RetryOptions"))
891
+ SnowflakeDestinationConfiguration.add_member(:s3_backup_mode, Shapes::ShapeRef.new(shape: SnowflakeS3BackupMode, location_name: "S3BackupMode"))
892
+ SnowflakeDestinationConfiguration.add_member(:s3_configuration, Shapes::ShapeRef.new(shape: S3DestinationConfiguration, required: true, location_name: "S3Configuration"))
893
+ SnowflakeDestinationConfiguration.struct_class = Types::SnowflakeDestinationConfiguration
894
+
895
+ SnowflakeDestinationDescription.add_member(:account_url, Shapes::ShapeRef.new(shape: SnowflakeAccountUrl, location_name: "AccountUrl"))
896
+ SnowflakeDestinationDescription.add_member(:user, Shapes::ShapeRef.new(shape: SnowflakeUser, location_name: "User"))
897
+ SnowflakeDestinationDescription.add_member(:database, Shapes::ShapeRef.new(shape: SnowflakeDatabase, location_name: "Database"))
898
+ SnowflakeDestinationDescription.add_member(:schema, Shapes::ShapeRef.new(shape: SnowflakeSchema, location_name: "Schema"))
899
+ SnowflakeDestinationDescription.add_member(:table, Shapes::ShapeRef.new(shape: SnowflakeTable, location_name: "Table"))
900
+ SnowflakeDestinationDescription.add_member(:snowflake_role_configuration, Shapes::ShapeRef.new(shape: SnowflakeRoleConfiguration, location_name: "SnowflakeRoleConfiguration"))
901
+ SnowflakeDestinationDescription.add_member(:data_loading_option, Shapes::ShapeRef.new(shape: SnowflakeDataLoadingOption, location_name: "DataLoadingOption"))
902
+ SnowflakeDestinationDescription.add_member(:meta_data_column_name, Shapes::ShapeRef.new(shape: SnowflakeMetaDataColumnName, location_name: "MetaDataColumnName"))
903
+ SnowflakeDestinationDescription.add_member(:content_column_name, Shapes::ShapeRef.new(shape: SnowflakeContentColumnName, location_name: "ContentColumnName"))
904
+ SnowflakeDestinationDescription.add_member(:snowflake_vpc_configuration, Shapes::ShapeRef.new(shape: SnowflakeVpcConfiguration, location_name: "SnowflakeVpcConfiguration"))
905
+ SnowflakeDestinationDescription.add_member(:cloud_watch_logging_options, Shapes::ShapeRef.new(shape: CloudWatchLoggingOptions, location_name: "CloudWatchLoggingOptions"))
906
+ SnowflakeDestinationDescription.add_member(:processing_configuration, Shapes::ShapeRef.new(shape: ProcessingConfiguration, location_name: "ProcessingConfiguration"))
907
+ SnowflakeDestinationDescription.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleARN, location_name: "RoleARN"))
908
+ SnowflakeDestinationDescription.add_member(:retry_options, Shapes::ShapeRef.new(shape: SnowflakeRetryOptions, location_name: "RetryOptions"))
909
+ SnowflakeDestinationDescription.add_member(:s3_backup_mode, Shapes::ShapeRef.new(shape: SnowflakeS3BackupMode, location_name: "S3BackupMode"))
910
+ SnowflakeDestinationDescription.add_member(:s3_destination_description, Shapes::ShapeRef.new(shape: S3DestinationDescription, location_name: "S3DestinationDescription"))
911
+ SnowflakeDestinationDescription.struct_class = Types::SnowflakeDestinationDescription
912
+
913
+ SnowflakeDestinationUpdate.add_member(:account_url, Shapes::ShapeRef.new(shape: SnowflakeAccountUrl, location_name: "AccountUrl"))
914
+ SnowflakeDestinationUpdate.add_member(:private_key, Shapes::ShapeRef.new(shape: SnowflakePrivateKey, location_name: "PrivateKey"))
915
+ SnowflakeDestinationUpdate.add_member(:key_passphrase, Shapes::ShapeRef.new(shape: SnowflakeKeyPassphrase, location_name: "KeyPassphrase"))
916
+ SnowflakeDestinationUpdate.add_member(:user, Shapes::ShapeRef.new(shape: SnowflakeUser, location_name: "User"))
917
+ SnowflakeDestinationUpdate.add_member(:database, Shapes::ShapeRef.new(shape: SnowflakeDatabase, location_name: "Database"))
918
+ SnowflakeDestinationUpdate.add_member(:schema, Shapes::ShapeRef.new(shape: SnowflakeSchema, location_name: "Schema"))
919
+ SnowflakeDestinationUpdate.add_member(:table, Shapes::ShapeRef.new(shape: SnowflakeTable, location_name: "Table"))
920
+ SnowflakeDestinationUpdate.add_member(:snowflake_role_configuration, Shapes::ShapeRef.new(shape: SnowflakeRoleConfiguration, location_name: "SnowflakeRoleConfiguration"))
921
+ SnowflakeDestinationUpdate.add_member(:data_loading_option, Shapes::ShapeRef.new(shape: SnowflakeDataLoadingOption, location_name: "DataLoadingOption"))
922
+ SnowflakeDestinationUpdate.add_member(:meta_data_column_name, Shapes::ShapeRef.new(shape: SnowflakeMetaDataColumnName, location_name: "MetaDataColumnName"))
923
+ SnowflakeDestinationUpdate.add_member(:content_column_name, Shapes::ShapeRef.new(shape: SnowflakeContentColumnName, location_name: "ContentColumnName"))
924
+ SnowflakeDestinationUpdate.add_member(:cloud_watch_logging_options, Shapes::ShapeRef.new(shape: CloudWatchLoggingOptions, location_name: "CloudWatchLoggingOptions"))
925
+ SnowflakeDestinationUpdate.add_member(:processing_configuration, Shapes::ShapeRef.new(shape: ProcessingConfiguration, location_name: "ProcessingConfiguration"))
926
+ SnowflakeDestinationUpdate.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleARN, location_name: "RoleARN"))
927
+ SnowflakeDestinationUpdate.add_member(:retry_options, Shapes::ShapeRef.new(shape: SnowflakeRetryOptions, location_name: "RetryOptions"))
928
+ SnowflakeDestinationUpdate.add_member(:s3_backup_mode, Shapes::ShapeRef.new(shape: SnowflakeS3BackupMode, location_name: "S3BackupMode"))
929
+ SnowflakeDestinationUpdate.add_member(:s3_update, Shapes::ShapeRef.new(shape: S3DestinationUpdate, location_name: "S3Update"))
930
+ SnowflakeDestinationUpdate.struct_class = Types::SnowflakeDestinationUpdate
931
+
932
+ SnowflakeRetryOptions.add_member(:duration_in_seconds, Shapes::ShapeRef.new(shape: SnowflakeRetryDurationInSeconds, location_name: "DurationInSeconds"))
933
+ SnowflakeRetryOptions.struct_class = Types::SnowflakeRetryOptions
934
+
935
+ SnowflakeRoleConfiguration.add_member(:enabled, Shapes::ShapeRef.new(shape: BooleanObject, location_name: "Enabled"))
936
+ SnowflakeRoleConfiguration.add_member(:snowflake_role, Shapes::ShapeRef.new(shape: SnowflakeRole, location_name: "SnowflakeRole"))
937
+ SnowflakeRoleConfiguration.struct_class = Types::SnowflakeRoleConfiguration
938
+
939
+ SnowflakeVpcConfiguration.add_member(:private_link_vpce_id, Shapes::ShapeRef.new(shape: SnowflakePrivateLinkVpceId, required: true, location_name: "PrivateLinkVpceId"))
940
+ SnowflakeVpcConfiguration.struct_class = Types::SnowflakeVpcConfiguration
941
+
845
942
  SourceDescription.add_member(:kinesis_stream_source_description, Shapes::ShapeRef.new(shape: KinesisStreamSourceDescription, location_name: "KinesisStreamSourceDescription"))
846
943
  SourceDescription.add_member(:msk_source_description, Shapes::ShapeRef.new(shape: MSKSourceDescription, location_name: "MSKSourceDescription"))
847
944
  SourceDescription.struct_class = Types::SourceDescription
848
945
 
946
+ SplunkBufferingHints.add_member(:interval_in_seconds, Shapes::ShapeRef.new(shape: SplunkBufferingIntervalInSeconds, location_name: "IntervalInSeconds"))
947
+ SplunkBufferingHints.add_member(:size_in_m_bs, Shapes::ShapeRef.new(shape: SplunkBufferingSizeInMBs, location_name: "SizeInMBs"))
948
+ SplunkBufferingHints.struct_class = Types::SplunkBufferingHints
949
+
849
950
  SplunkDestinationConfiguration.add_member(:hec_endpoint, Shapes::ShapeRef.new(shape: HECEndpoint, required: true, location_name: "HECEndpoint"))
850
951
  SplunkDestinationConfiguration.add_member(:hec_endpoint_type, Shapes::ShapeRef.new(shape: HECEndpointType, required: true, location_name: "HECEndpointType"))
851
952
  SplunkDestinationConfiguration.add_member(:hec_token, Shapes::ShapeRef.new(shape: HECToken, required: true, location_name: "HECToken"))
@@ -855,6 +956,7 @@ module Aws::Firehose
855
956
  SplunkDestinationConfiguration.add_member(:s3_configuration, Shapes::ShapeRef.new(shape: S3DestinationConfiguration, required: true, location_name: "S3Configuration"))
856
957
  SplunkDestinationConfiguration.add_member(:processing_configuration, Shapes::ShapeRef.new(shape: ProcessingConfiguration, location_name: "ProcessingConfiguration"))
857
958
  SplunkDestinationConfiguration.add_member(:cloud_watch_logging_options, Shapes::ShapeRef.new(shape: CloudWatchLoggingOptions, location_name: "CloudWatchLoggingOptions"))
959
+ SplunkDestinationConfiguration.add_member(:buffering_hints, Shapes::ShapeRef.new(shape: SplunkBufferingHints, location_name: "BufferingHints"))
858
960
  SplunkDestinationConfiguration.struct_class = Types::SplunkDestinationConfiguration
859
961
 
860
962
  SplunkDestinationDescription.add_member(:hec_endpoint, Shapes::ShapeRef.new(shape: HECEndpoint, location_name: "HECEndpoint"))
@@ -866,6 +968,7 @@ module Aws::Firehose
866
968
  SplunkDestinationDescription.add_member(:s3_destination_description, Shapes::ShapeRef.new(shape: S3DestinationDescription, location_name: "S3DestinationDescription"))
867
969
  SplunkDestinationDescription.add_member(:processing_configuration, Shapes::ShapeRef.new(shape: ProcessingConfiguration, location_name: "ProcessingConfiguration"))
868
970
  SplunkDestinationDescription.add_member(:cloud_watch_logging_options, Shapes::ShapeRef.new(shape: CloudWatchLoggingOptions, location_name: "CloudWatchLoggingOptions"))
971
+ SplunkDestinationDescription.add_member(:buffering_hints, Shapes::ShapeRef.new(shape: SplunkBufferingHints, location_name: "BufferingHints"))
869
972
  SplunkDestinationDescription.struct_class = Types::SplunkDestinationDescription
870
973
 
871
974
  SplunkDestinationUpdate.add_member(:hec_endpoint, Shapes::ShapeRef.new(shape: HECEndpoint, location_name: "HECEndpoint"))
@@ -877,6 +980,7 @@ module Aws::Firehose
877
980
  SplunkDestinationUpdate.add_member(:s3_update, Shapes::ShapeRef.new(shape: S3DestinationUpdate, location_name: "S3Update"))
878
981
  SplunkDestinationUpdate.add_member(:processing_configuration, Shapes::ShapeRef.new(shape: ProcessingConfiguration, location_name: "ProcessingConfiguration"))
879
982
  SplunkDestinationUpdate.add_member(:cloud_watch_logging_options, Shapes::ShapeRef.new(shape: CloudWatchLoggingOptions, location_name: "CloudWatchLoggingOptions"))
983
+ SplunkDestinationUpdate.add_member(:buffering_hints, Shapes::ShapeRef.new(shape: SplunkBufferingHints, location_name: "BufferingHints"))
880
984
  SplunkDestinationUpdate.struct_class = Types::SplunkDestinationUpdate
881
985
 
882
986
  SplunkRetryOptions.add_member(:duration_in_seconds, Shapes::ShapeRef.new(shape: SplunkRetryDurationInSeconds, location_name: "DurationInSeconds"))
@@ -926,6 +1030,7 @@ module Aws::Firehose
926
1030
  UpdateDestinationInput.add_member(:splunk_destination_update, Shapes::ShapeRef.new(shape: SplunkDestinationUpdate, location_name: "SplunkDestinationUpdate"))
927
1031
  UpdateDestinationInput.add_member(:http_endpoint_destination_update, Shapes::ShapeRef.new(shape: HttpEndpointDestinationUpdate, location_name: "HttpEndpointDestinationUpdate"))
928
1032
  UpdateDestinationInput.add_member(:amazon_open_search_serverless_destination_update, Shapes::ShapeRef.new(shape: AmazonOpenSearchServerlessDestinationUpdate, location_name: "AmazonOpenSearchServerlessDestinationUpdate"))
1033
+ UpdateDestinationInput.add_member(:snowflake_destination_update, Shapes::ShapeRef.new(shape: SnowflakeDestinationUpdate, location_name: "SnowflakeDestinationUpdate"))
929
1034
  UpdateDestinationInput.struct_class = Types::UpdateDestinationInput
930
1035
 
931
1036
  UpdateDestinationOutput.struct_class = Types::UpdateDestinationOutput
@@ -1019,6 +1124,7 @@ module Aws::Firehose
1019
1124
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1020
1125
  o.errors << Shapes::ShapeRef.new(shape: InvalidArgumentException)
1021
1126
  o.errors << Shapes::ShapeRef.new(shape: InvalidKMSResourceException)
1127
+ o.errors << Shapes::ShapeRef.new(shape: InvalidSourceException)
1022
1128
  o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
1023
1129
  end)
1024
1130
 
@@ -1031,6 +1137,7 @@ module Aws::Firehose
1031
1137
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1032
1138
  o.errors << Shapes::ShapeRef.new(shape: InvalidArgumentException)
1033
1139
  o.errors << Shapes::ShapeRef.new(shape: InvalidKMSResourceException)
1140
+ o.errors << Shapes::ShapeRef.new(shape: InvalidSourceException)
1034
1141
  o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
1035
1142
  end)
1036
1143
 
@@ -32,7 +32,7 @@ module Aws::Firehose
32
32
  raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
33
33
  end
34
34
  if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
35
- if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
35
+ if Aws::Endpoints::Matchers.boolean_equals?(Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"), true)
36
36
  return Aws::Endpoints::Endpoint.new(url: "https://firehose-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
37
37
  end
38
38
  raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
@@ -30,6 +30,7 @@ module Aws::Firehose
30
30
  # * {ConcurrentModificationException}
31
31
  # * {InvalidArgumentException}
32
32
  # * {InvalidKMSResourceException}
33
+ # * {InvalidSourceException}
33
34
  # * {LimitExceededException}
34
35
  # * {ResourceInUseException}
35
36
  # * {ResourceNotFoundException}
@@ -91,6 +92,26 @@ module Aws::Firehose
91
92
  end
92
93
  end
93
94
 
95
+ class InvalidSourceException < ServiceError
96
+
97
+ # @param [Seahorse::Client::RequestContext] context
98
+ # @param [String] message
99
+ # @param [Aws::Firehose::Types::InvalidSourceException] data
100
+ def initialize(context, message, data = Aws::EmptyStructure.new)
101
+ super(context, message, data)
102
+ end
103
+
104
+ # @return [String]
105
+ def code
106
+ @code || @data[:code]
107
+ end
108
+
109
+ # @return [String]
110
+ def message
111
+ @message || @data[:message]
112
+ end
113
+ end
114
+
94
115
  class LimitExceededException < ServiceError
95
116
 
96
117
  # @param [Seahorse::Client::RequestContext] context
@@ -818,6 +818,10 @@ module Aws::Firehose
818
818
  # source for a delivery stream.
819
819
  # @return [Types::MSKSourceConfiguration]
820
820
  #
821
+ # @!attribute [rw] snowflake_destination_configuration
822
+ # Configure Snowflake destination
823
+ # @return [Types::SnowflakeDestinationConfiguration]
824
+ #
821
825
  # @see http://docs.aws.amazon.com/goto/WebAPI/firehose-2015-08-04/CreateDeliveryStreamInput AWS API Documentation
822
826
  #
823
827
  class CreateDeliveryStreamInput < Struct.new(
@@ -834,7 +838,8 @@ module Aws::Firehose
834
838
  :http_endpoint_destination_configuration,
835
839
  :tags,
836
840
  :amazon_open_search_serverless_destination_configuration,
837
- :msk_source_configuration)
841
+ :msk_source_configuration,
842
+ :snowflake_destination_configuration)
838
843
  SENSITIVE = []
839
844
  include Aws::Structure
840
845
  end
@@ -1237,6 +1242,10 @@ module Aws::Firehose
1237
1242
  # Describes the specified HTTP endpoint destination.
1238
1243
  # @return [Types::HttpEndpointDestinationDescription]
1239
1244
  #
1245
+ # @!attribute [rw] snowflake_destination_description
1246
+ # Optional description for the destination
1247
+ # @return [Types::SnowflakeDestinationDescription]
1248
+ #
1240
1249
  # @!attribute [rw] amazon_open_search_serverless_destination_description
1241
1250
  # The destination in the Serverless offering for Amazon OpenSearch
1242
1251
  # Service.
@@ -1253,6 +1262,7 @@ module Aws::Firehose
1253
1262
  :amazonopensearchservice_destination_description,
1254
1263
  :splunk_destination_description,
1255
1264
  :http_endpoint_destination_description,
1265
+ :snowflake_destination_description,
1256
1266
  :amazon_open_search_serverless_destination_description)
1257
1267
  SENSITIVE = []
1258
1268
  include Aws::Structure
@@ -2506,6 +2516,24 @@ module Aws::Firehose
2506
2516
  include Aws::Structure
2507
2517
  end
2508
2518
 
2519
+ # Only requests from CloudWatch Logs are supported when CloudWatch Logs
2520
+ # decompression is enabled.
2521
+ #
2522
+ # @!attribute [rw] code
2523
+ # @return [String]
2524
+ #
2525
+ # @!attribute [rw] message
2526
+ # @return [String]
2527
+ #
2528
+ # @see http://docs.aws.amazon.com/goto/WebAPI/firehose-2015-08-04/InvalidSourceException AWS API Documentation
2529
+ #
2530
+ class InvalidSourceException < Struct.new(
2531
+ :code,
2532
+ :message)
2533
+ SENSITIVE = []
2534
+ include Aws::Structure
2535
+ end
2536
+
2509
2537
  # Describes an encryption key for a destination in Amazon S3.
2510
2538
  #
2511
2539
  # @!attribute [rw] awskms_key_arn
@@ -3808,6 +3836,454 @@ module Aws::Firehose
3808
3836
  include Aws::Structure
3809
3837
  end
3810
3838
 
3839
+ # Configure Snowflake destination
3840
+ #
3841
+ # @!attribute [rw] account_url
3842
+ # URL for accessing your Snowflake account. This URL must include your
3843
+ # [account identifier][1]. Note that the protocol (https://) and port
3844
+ # number are optional.
3845
+ #
3846
+ #
3847
+ #
3848
+ # [1]: https://docs.snowflake.com/en/user-guide/admin-account-identifier
3849
+ # @return [String]
3850
+ #
3851
+ # @!attribute [rw] private_key
3852
+ # The private key used to encrypt your Snowflake client. For
3853
+ # information, see [Using Key Pair Authentication &amp; Key
3854
+ # Rotation][1].
3855
+ #
3856
+ #
3857
+ #
3858
+ # [1]: https://docs.snowflake.com/en/user-guide/data-load-snowpipe-streaming-configuration#using-key-pair-authentication-key-rotation
3859
+ # @return [String]
3860
+ #
3861
+ # @!attribute [rw] key_passphrase
3862
+ # Passphrase to decrypt the private key when the key is encrypted. For
3863
+ # information, see [Using Key Pair Authentication &amp; Key
3864
+ # Rotation][1].
3865
+ #
3866
+ #
3867
+ #
3868
+ # [1]: https://docs.snowflake.com/en/user-guide/data-load-snowpipe-streaming-configuration#using-key-pair-authentication-key-rotation
3869
+ # @return [String]
3870
+ #
3871
+ # @!attribute [rw] user
3872
+ # User login name for the Snowflake account.
3873
+ # @return [String]
3874
+ #
3875
+ # @!attribute [rw] database
3876
+ # All data in Snowflake is maintained in databases.
3877
+ # @return [String]
3878
+ #
3879
+ # @!attribute [rw] schema
3880
+ # Each database consists of one or more schemas, which are logical
3881
+ # groupings of database objects, such as tables and views
3882
+ # @return [String]
3883
+ #
3884
+ # @!attribute [rw] table
3885
+ # All data in Snowflake is stored in database tables, logically
3886
+ # structured as collections of columns and rows.
3887
+ # @return [String]
3888
+ #
3889
+ # @!attribute [rw] snowflake_role_configuration
3890
+ # Optionally configure a Snowflake role. Otherwise the default user
3891
+ # role will be used.
3892
+ # @return [Types::SnowflakeRoleConfiguration]
3893
+ #
3894
+ # @!attribute [rw] data_loading_option
3895
+ # Choose to load JSON keys mapped to table column names or choose to
3896
+ # split the JSON payload where content is mapped to a record content
3897
+ # column and source metadata is mapped to a record metadata column.
3898
+ # @return [String]
3899
+ #
3900
+ # @!attribute [rw] meta_data_column_name
3901
+ # The name of the record metadata column
3902
+ # @return [String]
3903
+ #
3904
+ # @!attribute [rw] content_column_name
3905
+ # The name of the record content column
3906
+ # @return [String]
3907
+ #
3908
+ # @!attribute [rw] snowflake_vpc_configuration
3909
+ # The VPCE ID for Firehose to privately connect with Snowflake. The ID
3910
+ # format is com.amazonaws.vpce.\[region\].vpce-svc-&lt;\[id\]&gt;. For
3911
+ # more information, see [Amazon PrivateLink &amp; Snowflake][1]
3912
+ #
3913
+ #
3914
+ #
3915
+ # [1]: https://docs.snowflake.com/en/user-guide/admin-security-privatelink
3916
+ # @return [Types::SnowflakeVpcConfiguration]
3917
+ #
3918
+ # @!attribute [rw] cloud_watch_logging_options
3919
+ # Describes the Amazon CloudWatch logging options for your delivery
3920
+ # stream.
3921
+ # @return [Types::CloudWatchLoggingOptions]
3922
+ #
3923
+ # @!attribute [rw] processing_configuration
3924
+ # Describes a data processing configuration.
3925
+ # @return [Types::ProcessingConfiguration]
3926
+ #
3927
+ # @!attribute [rw] role_arn
3928
+ # The Amazon Resource Name (ARN) of the Snowflake role
3929
+ # @return [String]
3930
+ #
3931
+ # @!attribute [rw] retry_options
3932
+ # The time period where Kinesis Data Firehose will retry sending data
3933
+ # to the chosen HTTP endpoint.
3934
+ # @return [Types::SnowflakeRetryOptions]
3935
+ #
3936
+ # @!attribute [rw] s3_backup_mode
3937
+ # Choose an S3 backup mode
3938
+ # @return [String]
3939
+ #
3940
+ # @!attribute [rw] s3_configuration
3941
+ # Describes the configuration of a destination in Amazon S3.
3942
+ # @return [Types::S3DestinationConfiguration]
3943
+ #
3944
+ # @see http://docs.aws.amazon.com/goto/WebAPI/firehose-2015-08-04/SnowflakeDestinationConfiguration AWS API Documentation
3945
+ #
3946
+ class SnowflakeDestinationConfiguration < Struct.new(
3947
+ :account_url,
3948
+ :private_key,
3949
+ :key_passphrase,
3950
+ :user,
3951
+ :database,
3952
+ :schema,
3953
+ :table,
3954
+ :snowflake_role_configuration,
3955
+ :data_loading_option,
3956
+ :meta_data_column_name,
3957
+ :content_column_name,
3958
+ :snowflake_vpc_configuration,
3959
+ :cloud_watch_logging_options,
3960
+ :processing_configuration,
3961
+ :role_arn,
3962
+ :retry_options,
3963
+ :s3_backup_mode,
3964
+ :s3_configuration)
3965
+ SENSITIVE = [:account_url, :private_key, :key_passphrase, :user, :database, :schema, :table, :meta_data_column_name, :content_column_name]
3966
+ include Aws::Structure
3967
+ end
3968
+
3969
+ # Optional Snowflake destination description
3970
+ #
3971
+ # @!attribute [rw] account_url
3972
+ # URL for accessing your Snowflake account. This URL must include your
3973
+ # [account identifier][1]. Note that the protocol (https://) and port
3974
+ # number are optional.
3975
+ #
3976
+ #
3977
+ #
3978
+ # [1]: https://docs.snowflake.com/en/user-guide/admin-account-identifier
3979
+ # @return [String]
3980
+ #
3981
+ # @!attribute [rw] user
3982
+ # User login name for the Snowflake account.
3983
+ # @return [String]
3984
+ #
3985
+ # @!attribute [rw] database
3986
+ # All data in Snowflake is maintained in databases.
3987
+ # @return [String]
3988
+ #
3989
+ # @!attribute [rw] schema
3990
+ # Each database consists of one or more schemas, which are logical
3991
+ # groupings of database objects, such as tables and views
3992
+ # @return [String]
3993
+ #
3994
+ # @!attribute [rw] table
3995
+ # All data in Snowflake is stored in database tables, logically
3996
+ # structured as collections of columns and rows.
3997
+ # @return [String]
3998
+ #
3999
+ # @!attribute [rw] snowflake_role_configuration
4000
+ # Optionally configure a Snowflake role. Otherwise the default user
4001
+ # role will be used.
4002
+ # @return [Types::SnowflakeRoleConfiguration]
4003
+ #
4004
+ # @!attribute [rw] data_loading_option
4005
+ # Choose to load JSON keys mapped to table column names or choose to
4006
+ # split the JSON payload where content is mapped to a record content
4007
+ # column and source metadata is mapped to a record metadata column.
4008
+ # @return [String]
4009
+ #
4010
+ # @!attribute [rw] meta_data_column_name
4011
+ # The name of the record metadata column
4012
+ # @return [String]
4013
+ #
4014
+ # @!attribute [rw] content_column_name
4015
+ # The name of the record content column
4016
+ # @return [String]
4017
+ #
4018
+ # @!attribute [rw] snowflake_vpc_configuration
4019
+ # The VPCE ID for Firehose to privately connect with Snowflake. The ID
4020
+ # format is com.amazonaws.vpce.\[region\].vpce-svc-&lt;\[id\]&gt;. For
4021
+ # more information, see [Amazon PrivateLink &amp; Snowflake][1]
4022
+ #
4023
+ #
4024
+ #
4025
+ # [1]: https://docs.snowflake.com/en/user-guide/admin-security-privatelink
4026
+ # @return [Types::SnowflakeVpcConfiguration]
4027
+ #
4028
+ # @!attribute [rw] cloud_watch_logging_options
4029
+ # Describes the Amazon CloudWatch logging options for your delivery
4030
+ # stream.
4031
+ # @return [Types::CloudWatchLoggingOptions]
4032
+ #
4033
+ # @!attribute [rw] processing_configuration
4034
+ # Describes a data processing configuration.
4035
+ # @return [Types::ProcessingConfiguration]
4036
+ #
4037
+ # @!attribute [rw] role_arn
4038
+ # The Amazon Resource Name (ARN) of the Snowflake role
4039
+ # @return [String]
4040
+ #
4041
+ # @!attribute [rw] retry_options
4042
+ # The time period where Kinesis Data Firehose will retry sending data
4043
+ # to the chosen HTTP endpoint.
4044
+ # @return [Types::SnowflakeRetryOptions]
4045
+ #
4046
+ # @!attribute [rw] s3_backup_mode
4047
+ # Choose an S3 backup mode
4048
+ # @return [String]
4049
+ #
4050
+ # @!attribute [rw] s3_destination_description
4051
+ # Describes a destination in Amazon S3.
4052
+ # @return [Types::S3DestinationDescription]
4053
+ #
4054
+ # @see http://docs.aws.amazon.com/goto/WebAPI/firehose-2015-08-04/SnowflakeDestinationDescription AWS API Documentation
4055
+ #
4056
+ class SnowflakeDestinationDescription < Struct.new(
4057
+ :account_url,
4058
+ :user,
4059
+ :database,
4060
+ :schema,
4061
+ :table,
4062
+ :snowflake_role_configuration,
4063
+ :data_loading_option,
4064
+ :meta_data_column_name,
4065
+ :content_column_name,
4066
+ :snowflake_vpc_configuration,
4067
+ :cloud_watch_logging_options,
4068
+ :processing_configuration,
4069
+ :role_arn,
4070
+ :retry_options,
4071
+ :s3_backup_mode,
4072
+ :s3_destination_description)
4073
+ SENSITIVE = [:account_url, :user, :database, :schema, :table, :meta_data_column_name, :content_column_name]
4074
+ include Aws::Structure
4075
+ end
4076
+
4077
+ # Update to configuration settings
4078
+ #
4079
+ # @!attribute [rw] account_url
4080
+ # URL for accessing your Snowflake account. This URL must include your
4081
+ # [account identifier][1]. Note that the protocol (https://) and port
4082
+ # number are optional.
4083
+ #
4084
+ #
4085
+ #
4086
+ # [1]: https://docs.snowflake.com/en/user-guide/admin-account-identifier
4087
+ # @return [String]
4088
+ #
4089
+ # @!attribute [rw] private_key
4090
+ # The private key used to encrypt your Snowflake client. For
4091
+ # information, see [Using Key Pair Authentication &amp; Key
4092
+ # Rotation][1].
4093
+ #
4094
+ #
4095
+ #
4096
+ # [1]: https://docs.snowflake.com/en/user-guide/data-load-snowpipe-streaming-configuration#using-key-pair-authentication-key-rotation
4097
+ # @return [String]
4098
+ #
4099
+ # @!attribute [rw] key_passphrase
4100
+ # Passphrase to decrypt the private key when the key is encrypted. For
4101
+ # information, see [Using Key Pair Authentication &amp; Key
4102
+ # Rotation][1].
4103
+ #
4104
+ #
4105
+ #
4106
+ # [1]: https://docs.snowflake.com/en/user-guide/data-load-snowpipe-streaming-configuration#using-key-pair-authentication-key-rotation
4107
+ # @return [String]
4108
+ #
4109
+ # @!attribute [rw] user
4110
+ # User login name for the Snowflake account.
4111
+ # @return [String]
4112
+ #
4113
+ # @!attribute [rw] database
4114
+ # All data in Snowflake is maintained in databases.
4115
+ # @return [String]
4116
+ #
4117
+ # @!attribute [rw] schema
4118
+ # Each database consists of one or more schemas, which are logical
4119
+ # groupings of database objects, such as tables and views
4120
+ # @return [String]
4121
+ #
4122
+ # @!attribute [rw] table
4123
+ # All data in Snowflake is stored in database tables, logically
4124
+ # structured as collections of columns and rows.
4125
+ # @return [String]
4126
+ #
4127
+ # @!attribute [rw] snowflake_role_configuration
4128
+ # Optionally configure a Snowflake role. Otherwise the default user
4129
+ # role will be used.
4130
+ # @return [Types::SnowflakeRoleConfiguration]
4131
+ #
4132
+ # @!attribute [rw] data_loading_option
4133
+ # JSON keys mapped to table column names or choose to split the JSON
4134
+ # payload where content is mapped to a record content column and
4135
+ # source metadata is mapped to a record metadata column.
4136
+ # @return [String]
4137
+ #
4138
+ # @!attribute [rw] meta_data_column_name
4139
+ # The name of the record metadata column
4140
+ # @return [String]
4141
+ #
4142
+ # @!attribute [rw] content_column_name
4143
+ # The name of the content metadata column
4144
+ # @return [String]
4145
+ #
4146
+ # @!attribute [rw] cloud_watch_logging_options
4147
+ # Describes the Amazon CloudWatch logging options for your delivery
4148
+ # stream.
4149
+ # @return [Types::CloudWatchLoggingOptions]
4150
+ #
4151
+ # @!attribute [rw] processing_configuration
4152
+ # Describes a data processing configuration.
4153
+ # @return [Types::ProcessingConfiguration]
4154
+ #
4155
+ # @!attribute [rw] role_arn
4156
+ # The Amazon Resource Name (ARN) of the Snowflake role
4157
+ # @return [String]
4158
+ #
4159
+ # @!attribute [rw] retry_options
4160
+ # Specify how long Kinesis Data Firehose retries sending data to the
4161
+ # New Relic HTTP endpoint. After sending data, Kinesis Data Firehose
4162
+ # first waits for an acknowledgment from the HTTP endpoint. If an
4163
+ # error occurs or the acknowledgment doesn’t arrive within the
4164
+ # acknowledgment timeout period, Kinesis Data Firehose starts the
4165
+ # retry duration counter. It keeps retrying until the retry duration
4166
+ # expires. After that, Kinesis Data Firehose considers it a data
4167
+ # delivery failure and backs up the data to your Amazon S3 bucket.
4168
+ # Every time that Kinesis Data Firehose sends data to the HTTP
4169
+ # endpoint (either the initial attempt or a retry), it restarts the
4170
+ # acknowledgement timeout counter and waits for an acknowledgement
4171
+ # from the HTTP endpoint. Even if the retry duration expires, Kinesis
4172
+ # Data Firehose still waits for the acknowledgment until it receives
4173
+ # it or the acknowledgement timeout period is reached. If the
4174
+ # acknowledgment times out, Kinesis Data Firehose determines whether
4175
+ # there's time left in the retry counter. If there is time left, it
4176
+ # retries again and repeats the logic until it receives an
4177
+ # acknowledgment or determines that the retry time has expired. If you
4178
+ # don't want Kinesis Data Firehose to retry sending data, set this
4179
+ # value to 0.
4180
+ # @return [Types::SnowflakeRetryOptions]
4181
+ #
4182
+ # @!attribute [rw] s3_backup_mode
4183
+ # Choose an S3 backup mode
4184
+ # @return [String]
4185
+ #
4186
+ # @!attribute [rw] s3_update
4187
+ # Describes an update for a destination in Amazon S3.
4188
+ # @return [Types::S3DestinationUpdate]
4189
+ #
4190
+ # @see http://docs.aws.amazon.com/goto/WebAPI/firehose-2015-08-04/SnowflakeDestinationUpdate AWS API Documentation
4191
+ #
4192
+ class SnowflakeDestinationUpdate < Struct.new(
4193
+ :account_url,
4194
+ :private_key,
4195
+ :key_passphrase,
4196
+ :user,
4197
+ :database,
4198
+ :schema,
4199
+ :table,
4200
+ :snowflake_role_configuration,
4201
+ :data_loading_option,
4202
+ :meta_data_column_name,
4203
+ :content_column_name,
4204
+ :cloud_watch_logging_options,
4205
+ :processing_configuration,
4206
+ :role_arn,
4207
+ :retry_options,
4208
+ :s3_backup_mode,
4209
+ :s3_update)
4210
+ SENSITIVE = [:account_url, :private_key, :key_passphrase, :user, :database, :schema, :table, :meta_data_column_name, :content_column_name]
4211
+ include Aws::Structure
4212
+ end
4213
+
4214
+ # Specify how long Kinesis Data Firehose retries sending data to the New
4215
+ # Relic HTTP endpoint. After sending data, Kinesis Data Firehose first
4216
+ # waits for an acknowledgment from the HTTP endpoint. If an error occurs
4217
+ # or the acknowledgment doesn’t arrive within the acknowledgment timeout
4218
+ # period, Kinesis Data Firehose starts the retry duration counter. It
4219
+ # keeps retrying until the retry duration expires. After that, Kinesis
4220
+ # Data Firehose considers it a data delivery failure and backs up the
4221
+ # data to your Amazon S3 bucket. Every time that Kinesis Data Firehose
4222
+ # sends data to the HTTP endpoint (either the initial attempt or a
4223
+ # retry), it restarts the acknowledgement timeout counter and waits for
4224
+ # an acknowledgement from the HTTP endpoint. Even if the retry duration
4225
+ # expires, Kinesis Data Firehose still waits for the acknowledgment
4226
+ # until it receives it or the acknowledgement timeout period is reached.
4227
+ # If the acknowledgment times out, Kinesis Data Firehose determines
4228
+ # whether there's time left in the retry counter. If there is time
4229
+ # left, it retries again and repeats the logic until it receives an
4230
+ # acknowledgment or determines that the retry time has expired. If you
4231
+ # don't want Kinesis Data Firehose to retry sending data, set this
4232
+ # value to 0.
4233
+ #
4234
+ # @!attribute [rw] duration_in_seconds
4235
+ # the time period where Kinesis Data Firehose will retry sending data
4236
+ # to the chosen HTTP endpoint.
4237
+ # @return [Integer]
4238
+ #
4239
+ # @see http://docs.aws.amazon.com/goto/WebAPI/firehose-2015-08-04/SnowflakeRetryOptions AWS API Documentation
4240
+ #
4241
+ class SnowflakeRetryOptions < Struct.new(
4242
+ :duration_in_seconds)
4243
+ SENSITIVE = []
4244
+ include Aws::Structure
4245
+ end
4246
+
4247
+ # Optionally configure a Snowflake role. Otherwise the default user role
4248
+ # will be used.
4249
+ #
4250
+ # @!attribute [rw] enabled
4251
+ # Enable Snowflake role
4252
+ # @return [Boolean]
4253
+ #
4254
+ # @!attribute [rw] snowflake_role
4255
+ # The Snowflake role you wish to configure
4256
+ # @return [String]
4257
+ #
4258
+ # @see http://docs.aws.amazon.com/goto/WebAPI/firehose-2015-08-04/SnowflakeRoleConfiguration AWS API Documentation
4259
+ #
4260
+ class SnowflakeRoleConfiguration < Struct.new(
4261
+ :enabled,
4262
+ :snowflake_role)
4263
+ SENSITIVE = [:snowflake_role]
4264
+ include Aws::Structure
4265
+ end
4266
+
4267
+ # Configure a Snowflake VPC
4268
+ #
4269
+ # @!attribute [rw] private_link_vpce_id
4270
+ # The VPCE ID for Firehose to privately connect with Snowflake. The ID
4271
+ # format is com.amazonaws.vpce.\[region\].vpce-svc-&lt;\[id\]&gt;. For
4272
+ # more information, see [Amazon PrivateLink &amp; Snowflake][1]
4273
+ #
4274
+ #
4275
+ #
4276
+ # [1]: https://docs.snowflake.com/en/user-guide/admin-security-privatelink
4277
+ # @return [String]
4278
+ #
4279
+ # @see http://docs.aws.amazon.com/goto/WebAPI/firehose-2015-08-04/SnowflakeVpcConfiguration AWS API Documentation
4280
+ #
4281
+ class SnowflakeVpcConfiguration < Struct.new(
4282
+ :private_link_vpce_id)
4283
+ SENSITIVE = [:private_link_vpce_id]
4284
+ include Aws::Structure
4285
+ end
4286
+
3811
4287
  # Details about a Kinesis data stream used as the source for a Kinesis
3812
4288
  # Data Firehose delivery stream.
3813
4289
  #
@@ -3830,6 +4306,29 @@ module Aws::Firehose
3830
4306
  include Aws::Structure
3831
4307
  end
3832
4308
 
4309
+ # The buffering options. If no value is specified, the default values
4310
+ # for Splunk are used.
4311
+ #
4312
+ # @!attribute [rw] interval_in_seconds
4313
+ # Buffer incoming data for the specified period of time, in seconds,
4314
+ # before delivering it to the destination. The default value is 60 (1
4315
+ # minute).
4316
+ # @return [Integer]
4317
+ #
4318
+ # @!attribute [rw] size_in_m_bs
4319
+ # Buffer incoming data to the specified size, in MBs, before
4320
+ # delivering it to the destination. The default value is 5.
4321
+ # @return [Integer]
4322
+ #
4323
+ # @see http://docs.aws.amazon.com/goto/WebAPI/firehose-2015-08-04/SplunkBufferingHints AWS API Documentation
4324
+ #
4325
+ class SplunkBufferingHints < Struct.new(
4326
+ :interval_in_seconds,
4327
+ :size_in_m_bs)
4328
+ SENSITIVE = []
4329
+ include Aws::Structure
4330
+ end
4331
+
3833
4332
  # Describes the configuration of a destination in Splunk.
3834
4333
  #
3835
4334
  # @!attribute [rw] hec_endpoint
@@ -3884,6 +4383,11 @@ module Aws::Firehose
3884
4383
  # The Amazon CloudWatch logging options for your delivery stream.
3885
4384
  # @return [Types::CloudWatchLoggingOptions]
3886
4385
  #
4386
+ # @!attribute [rw] buffering_hints
4387
+ # The buffering options. If no value is specified, the default values
4388
+ # for Splunk are used.
4389
+ # @return [Types::SplunkBufferingHints]
4390
+ #
3887
4391
  # @see http://docs.aws.amazon.com/goto/WebAPI/firehose-2015-08-04/SplunkDestinationConfiguration AWS API Documentation
3888
4392
  #
3889
4393
  class SplunkDestinationConfiguration < Struct.new(
@@ -3895,7 +4399,8 @@ module Aws::Firehose
3895
4399
  :s3_backup_mode,
3896
4400
  :s3_configuration,
3897
4401
  :processing_configuration,
3898
- :cloud_watch_logging_options)
4402
+ :cloud_watch_logging_options,
4403
+ :buffering_hints)
3899
4404
  SENSITIVE = []
3900
4405
  include Aws::Structure
3901
4406
  end
@@ -3950,6 +4455,11 @@ module Aws::Firehose
3950
4455
  # The Amazon CloudWatch logging options for your delivery stream.
3951
4456
  # @return [Types::CloudWatchLoggingOptions]
3952
4457
  #
4458
+ # @!attribute [rw] buffering_hints
4459
+ # The buffering options. If no value is specified, the default values
4460
+ # for Splunk are used.
4461
+ # @return [Types::SplunkBufferingHints]
4462
+ #
3953
4463
  # @see http://docs.aws.amazon.com/goto/WebAPI/firehose-2015-08-04/SplunkDestinationDescription AWS API Documentation
3954
4464
  #
3955
4465
  class SplunkDestinationDescription < Struct.new(
@@ -3961,7 +4471,8 @@ module Aws::Firehose
3961
4471
  :s3_backup_mode,
3962
4472
  :s3_destination_description,
3963
4473
  :processing_configuration,
3964
- :cloud_watch_logging_options)
4474
+ :cloud_watch_logging_options,
4475
+ :buffering_hints)
3965
4476
  SENSITIVE = []
3966
4477
  include Aws::Structure
3967
4478
  end
@@ -4020,6 +4531,11 @@ module Aws::Firehose
4020
4531
  # The Amazon CloudWatch logging options for your delivery stream.
4021
4532
  # @return [Types::CloudWatchLoggingOptions]
4022
4533
  #
4534
+ # @!attribute [rw] buffering_hints
4535
+ # The buffering options. If no value is specified, the default values
4536
+ # for Splunk are used.
4537
+ # @return [Types::SplunkBufferingHints]
4538
+ #
4023
4539
  # @see http://docs.aws.amazon.com/goto/WebAPI/firehose-2015-08-04/SplunkDestinationUpdate AWS API Documentation
4024
4540
  #
4025
4541
  class SplunkDestinationUpdate < Struct.new(
@@ -4031,7 +4547,8 @@ module Aws::Firehose
4031
4547
  :s3_backup_mode,
4032
4548
  :s3_update,
4033
4549
  :processing_configuration,
4034
- :cloud_watch_logging_options)
4550
+ :cloud_watch_logging_options,
4551
+ :buffering_hints)
4035
4552
  SENSITIVE = []
4036
4553
  include Aws::Structure
4037
4554
  end
@@ -4214,6 +4731,10 @@ module Aws::Firehose
4214
4731
  # Amazon OpenSearch Service.
4215
4732
  # @return [Types::AmazonOpenSearchServerlessDestinationUpdate]
4216
4733
  #
4734
+ # @!attribute [rw] snowflake_destination_update
4735
+ # Update to the Snowflake destination condiguration settings
4736
+ # @return [Types::SnowflakeDestinationUpdate]
4737
+ #
4217
4738
  # @see http://docs.aws.amazon.com/goto/WebAPI/firehose-2015-08-04/UpdateDestinationInput AWS API Documentation
4218
4739
  #
4219
4740
  class UpdateDestinationInput < Struct.new(
@@ -4227,7 +4748,8 @@ module Aws::Firehose
4227
4748
  :amazonopensearchservice_destination_update,
4228
4749
  :splunk_destination_update,
4229
4750
  :http_endpoint_destination_update,
4230
- :amazon_open_search_serverless_destination_update)
4751
+ :amazon_open_search_serverless_destination_update,
4752
+ :snowflake_destination_update)
4231
4753
  SENSITIVE = []
4232
4754
  include Aws::Structure
4233
4755
  end
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-firehose/customizations'
52
52
  # @!group service
53
53
  module Aws::Firehose
54
54
 
55
- GEM_VERSION = '1.60.0'
55
+ GEM_VERSION = '1.62.0'
56
56
 
57
57
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-firehose
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.60.0
4
+ version: 1.62.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-11-28 00:00:00.000000000 Z
11
+ date: 2024-01-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -72,7 +72,7 @@ licenses:
72
72
  metadata:
73
73
  source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-firehose
74
74
  changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-firehose/CHANGELOG.md
75
- post_install_message:
75
+ post_install_message:
76
76
  rdoc_options: []
77
77
  require_paths:
78
78
  - lib
@@ -87,8 +87,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
87
87
  - !ruby/object:Gem::Version
88
88
  version: '0'
89
89
  requirements: []
90
- rubygems_version: 3.1.6
91
- signing_key:
90
+ rubygems_version: 3.4.10
91
+ signing_key:
92
92
  specification_version: 4
93
93
  summary: AWS SDK for Ruby - Firehose
94
94
  test_files: []