aws-sdk-firehose 1.25.0 → 1.30.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/lib/aws-sdk-firehose.rb +3 -1
- data/lib/aws-sdk-firehose/client.rb +73 -51
- data/lib/aws-sdk-firehose/client_api.rb +23 -0
- data/lib/aws-sdk-firehose/customizations.rb +1 -0
- data/lib/aws-sdk-firehose/errors.rb +2 -0
- data/lib/aws-sdk-firehose/resource.rb +3 -7
- data/lib/aws-sdk-firehose/types.rb +255 -40
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 716f8f0ad821bd0967701b68cbd41d027a25599881ab2eab3a4ebc45b21edebe
|
4
|
+
data.tar.gz: 7349808ef223a77353ff492fd4483cbe8e9265f4e595a6d0d6b45183b7686c28
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5b42ba5b60ddbcd848a9cec9463017379305ddf72e14452d5ad3a350fcf63f32a4eb2876ba4c920a6ea5aa57a606712af2f86f9fdacac1aa3e1432b2b9111795
|
7
|
+
data.tar.gz: bcd51adfa057c35f810a29a21cbcbc73dcd3bb0af182ac0394ce4857cd54ffc849299530027a9c96dcb0421c7e4a48cfac8b8bdd55dc251b70bc9cd4bcf33d12
|
data/lib/aws-sdk-firehose.rb
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -45,6 +47,6 @@ require_relative 'aws-sdk-firehose/customizations'
|
|
45
47
|
# @service
|
46
48
|
module Aws::Firehose
|
47
49
|
|
48
|
-
GEM_VERSION = '1.
|
50
|
+
GEM_VERSION = '1.30.0'
|
49
51
|
|
50
52
|
end
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -24,6 +26,7 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
|
24
26
|
require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
25
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
26
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
29
|
+
require 'aws-sdk-core/plugins/http_checksum.rb'
|
27
30
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
28
31
|
require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
|
29
32
|
|
@@ -32,11 +35,11 @@ Aws::Plugins::GlobalConfiguration.add_identifier(:firehose)
|
|
32
35
|
module Aws::Firehose
|
33
36
|
# An API client for Firehose. To construct a client, you need to configure a `:region` and `:credentials`.
|
34
37
|
#
|
35
|
-
#
|
36
|
-
#
|
37
|
-
#
|
38
|
-
#
|
39
|
-
#
|
38
|
+
# client = Aws::Firehose::Client.new(
|
39
|
+
# region: region_name,
|
40
|
+
# credentials: credentials,
|
41
|
+
# # ...
|
42
|
+
# )
|
40
43
|
#
|
41
44
|
# For details on configuring region and credentials see
|
42
45
|
# the [developer guide](/sdk-for-ruby/v3/developer-guide/setup-config.html).
|
@@ -69,6 +72,7 @@ module Aws::Firehose
|
|
69
72
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
70
73
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
71
74
|
add_plugin(Aws::Plugins::TransferEncoding)
|
75
|
+
add_plugin(Aws::Plugins::HttpChecksum)
|
72
76
|
add_plugin(Aws::Plugins::SignatureV4)
|
73
77
|
add_plugin(Aws::Plugins::Protocols::JsonRpc)
|
74
78
|
|
@@ -105,7 +109,7 @@ module Aws::Firehose
|
|
105
109
|
# @option options [required, String] :region
|
106
110
|
# The AWS region to connect to. The configured `:region` is
|
107
111
|
# used to determine the service `:endpoint`. When not passed,
|
108
|
-
# a default `:region` is
|
112
|
+
# a default `:region` is searched for in the following locations:
|
109
113
|
#
|
110
114
|
# * `Aws.config[:region]`
|
111
115
|
# * `ENV['AWS_REGION']`
|
@@ -161,7 +165,7 @@ module Aws::Firehose
|
|
161
165
|
# @option options [String] :endpoint
|
162
166
|
# The client endpoint is normally constructed from the `:region`
|
163
167
|
# option. You should only configure an `:endpoint` when connecting
|
164
|
-
# to test endpoints. This should be
|
168
|
+
# to test or custom endpoints. This should be a valid HTTP(S) URI.
|
165
169
|
#
|
166
170
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
167
171
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -176,7 +180,7 @@ module Aws::Firehose
|
|
176
180
|
# requests fetching endpoints information. Defaults to 60 sec.
|
177
181
|
#
|
178
182
|
# @option options [Boolean] :endpoint_discovery (false)
|
179
|
-
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
183
|
+
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
180
184
|
#
|
181
185
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
182
186
|
# The log formatter.
|
@@ -229,15 +233,19 @@ module Aws::Firehose
|
|
229
233
|
#
|
230
234
|
# @option options [String] :retry_mode ("legacy")
|
231
235
|
# Specifies which retry algorithm to use. Values are:
|
232
|
-
#
|
233
|
-
#
|
234
|
-
#
|
235
|
-
#
|
236
|
-
#
|
237
|
-
#
|
238
|
-
#
|
239
|
-
#
|
240
|
-
#
|
236
|
+
#
|
237
|
+
# * `legacy` - The pre-existing retry behavior. This is default value if
|
238
|
+
# no retry mode is provided.
|
239
|
+
#
|
240
|
+
# * `standard` - A standardized set of retry rules across the AWS SDKs.
|
241
|
+
# This includes support for retry quotas, which limit the number of
|
242
|
+
# unsuccessful retries a client can make.
|
243
|
+
#
|
244
|
+
# * `adaptive` - An experimental retry mode that includes all the
|
245
|
+
# functionality of `standard` mode along with automatic client side
|
246
|
+
# throttling. This is a provisional mode that may change behavior
|
247
|
+
# in the future.
|
248
|
+
#
|
241
249
|
#
|
242
250
|
# @option options [String] :secret_access_key
|
243
251
|
#
|
@@ -275,8 +283,7 @@ module Aws::Firehose
|
|
275
283
|
#
|
276
284
|
# @option options [Integer] :http_read_timeout (60) The default
|
277
285
|
# number of seconds to wait for response data. This value can
|
278
|
-
# safely be set
|
279
|
-
# per-request on the session yielded by {#session_for}.
|
286
|
+
# safely be set per-request on the session.
|
280
287
|
#
|
281
288
|
# @option options [Float] :http_idle_timeout (5) The number of
|
282
289
|
# seconds a connection is allowed to sit idle before it is
|
@@ -288,7 +295,7 @@ module Aws::Firehose
|
|
288
295
|
# request body. This option has no effect unless the request has
|
289
296
|
# "Expect" header set to "100-continue". Defaults to `nil` which
|
290
297
|
# disables this behaviour. This value can safely be set per
|
291
|
-
# request on the session
|
298
|
+
# request on the session.
|
292
299
|
#
|
293
300
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
294
301
|
# HTTP debug output will be sent to the `:logger`.
|
@@ -478,7 +485,7 @@ module Aws::Firehose
|
|
478
485
|
# size_in_m_bs: 1,
|
479
486
|
# interval_in_seconds: 1,
|
480
487
|
# },
|
481
|
-
# compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy
|
488
|
+
# compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy, HADOOP_SNAPPY
|
482
489
|
# encryption_configuration: {
|
483
490
|
# no_encryption_config: "NoEncryption", # accepts NoEncryption
|
484
491
|
# kms_encryption_config: {
|
@@ -500,7 +507,7 @@ module Aws::Firehose
|
|
500
507
|
# size_in_m_bs: 1,
|
501
508
|
# interval_in_seconds: 1,
|
502
509
|
# },
|
503
|
-
# compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy
|
510
|
+
# compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy, HADOOP_SNAPPY
|
504
511
|
# encryption_configuration: {
|
505
512
|
# no_encryption_config: "NoEncryption", # accepts NoEncryption
|
506
513
|
# kms_encryption_config: {
|
@@ -536,7 +543,7 @@ module Aws::Firehose
|
|
536
543
|
# size_in_m_bs: 1,
|
537
544
|
# interval_in_seconds: 1,
|
538
545
|
# },
|
539
|
-
# compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy
|
546
|
+
# compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy, HADOOP_SNAPPY
|
540
547
|
# encryption_configuration: {
|
541
548
|
# no_encryption_config: "NoEncryption", # accepts NoEncryption
|
542
549
|
# kms_encryption_config: {
|
@@ -621,7 +628,7 @@ module Aws::Firehose
|
|
621
628
|
# size_in_m_bs: 1,
|
622
629
|
# interval_in_seconds: 1,
|
623
630
|
# },
|
624
|
-
# compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy
|
631
|
+
# compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy, HADOOP_SNAPPY
|
625
632
|
# encryption_configuration: {
|
626
633
|
# no_encryption_config: "NoEncryption", # accepts NoEncryption
|
627
634
|
# kms_encryption_config: {
|
@@ -658,7 +665,7 @@ module Aws::Firehose
|
|
658
665
|
# size_in_m_bs: 1,
|
659
666
|
# interval_in_seconds: 1,
|
660
667
|
# },
|
661
|
-
# compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy
|
668
|
+
# compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy, HADOOP_SNAPPY
|
662
669
|
# encryption_configuration: {
|
663
670
|
# no_encryption_config: "NoEncryption", # accepts NoEncryption
|
664
671
|
# kms_encryption_config: {
|
@@ -701,7 +708,7 @@ module Aws::Firehose
|
|
701
708
|
# size_in_m_bs: 1,
|
702
709
|
# interval_in_seconds: 1,
|
703
710
|
# },
|
704
|
-
# compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy
|
711
|
+
# compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy, HADOOP_SNAPPY
|
705
712
|
# encryption_configuration: {
|
706
713
|
# no_encryption_config: "NoEncryption", # accepts NoEncryption
|
707
714
|
# kms_encryption_config: {
|
@@ -733,6 +740,11 @@ module Aws::Firehose
|
|
733
740
|
# log_group_name: "LogGroupName",
|
734
741
|
# log_stream_name: "LogStreamName",
|
735
742
|
# },
|
743
|
+
# vpc_configuration: {
|
744
|
+
# subnet_ids: ["NonEmptyStringWithoutWhitespace"], # required
|
745
|
+
# role_arn: "RoleARN", # required
|
746
|
+
# security_group_ids: ["NonEmptyStringWithoutWhitespace"], # required
|
747
|
+
# },
|
736
748
|
# },
|
737
749
|
# splunk_destination_configuration: {
|
738
750
|
# hec_endpoint: "HECEndpoint", # required
|
@@ -752,7 +764,7 @@ module Aws::Firehose
|
|
752
764
|
# size_in_m_bs: 1,
|
753
765
|
# interval_in_seconds: 1,
|
754
766
|
# },
|
755
|
-
# compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy
|
767
|
+
# compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy, HADOOP_SNAPPY
|
756
768
|
# encryption_configuration: {
|
757
769
|
# no_encryption_config: "NoEncryption", # accepts NoEncryption
|
758
770
|
# kms_encryption_config: {
|
@@ -899,12 +911,12 @@ module Aws::Firehose
|
|
899
911
|
# resp.delivery_stream_description.delivery_stream_name #=> String
|
900
912
|
# resp.delivery_stream_description.delivery_stream_arn #=> String
|
901
913
|
# resp.delivery_stream_description.delivery_stream_status #=> String, one of "CREATING", "CREATING_FAILED", "DELETING", "DELETING_FAILED", "ACTIVE"
|
902
|
-
# resp.delivery_stream_description.failure_description.type #=> String, one of "RETIRE_KMS_GRANT_FAILED", "CREATE_KMS_GRANT_FAILED", "KMS_ACCESS_DENIED", "DISABLED_KMS_KEY", "INVALID_KMS_KEY", "KMS_KEY_NOT_FOUND", "KMS_OPT_IN_REQUIRED", "UNKNOWN_ERROR"
|
914
|
+
# resp.delivery_stream_description.failure_description.type #=> String, one of "RETIRE_KMS_GRANT_FAILED", "CREATE_KMS_GRANT_FAILED", "KMS_ACCESS_DENIED", "DISABLED_KMS_KEY", "INVALID_KMS_KEY", "KMS_KEY_NOT_FOUND", "KMS_OPT_IN_REQUIRED", "CREATE_ENI_FAILED", "DELETE_ENI_FAILED", "SUBNET_NOT_FOUND", "SECURITY_GROUP_NOT_FOUND", "ENI_ACCESS_DENIED", "SUBNET_ACCESS_DENIED", "SECURITY_GROUP_ACCESS_DENIED", "UNKNOWN_ERROR"
|
903
915
|
# resp.delivery_stream_description.failure_description.details #=> String
|
904
916
|
# resp.delivery_stream_description.delivery_stream_encryption_configuration.key_arn #=> String
|
905
917
|
# resp.delivery_stream_description.delivery_stream_encryption_configuration.key_type #=> String, one of "AWS_OWNED_CMK", "CUSTOMER_MANAGED_CMK"
|
906
918
|
# resp.delivery_stream_description.delivery_stream_encryption_configuration.status #=> String, one of "ENABLED", "ENABLING", "ENABLING_FAILED", "DISABLED", "DISABLING", "DISABLING_FAILED"
|
907
|
-
# resp.delivery_stream_description.delivery_stream_encryption_configuration.failure_description.type #=> String, one of "RETIRE_KMS_GRANT_FAILED", "CREATE_KMS_GRANT_FAILED", "KMS_ACCESS_DENIED", "DISABLED_KMS_KEY", "INVALID_KMS_KEY", "KMS_KEY_NOT_FOUND", "KMS_OPT_IN_REQUIRED", "UNKNOWN_ERROR"
|
919
|
+
# resp.delivery_stream_description.delivery_stream_encryption_configuration.failure_description.type #=> String, one of "RETIRE_KMS_GRANT_FAILED", "CREATE_KMS_GRANT_FAILED", "KMS_ACCESS_DENIED", "DISABLED_KMS_KEY", "INVALID_KMS_KEY", "KMS_KEY_NOT_FOUND", "KMS_OPT_IN_REQUIRED", "CREATE_ENI_FAILED", "DELETE_ENI_FAILED", "SUBNET_NOT_FOUND", "SECURITY_GROUP_NOT_FOUND", "ENI_ACCESS_DENIED", "SUBNET_ACCESS_DENIED", "SECURITY_GROUP_ACCESS_DENIED", "UNKNOWN_ERROR"
|
908
920
|
# resp.delivery_stream_description.delivery_stream_encryption_configuration.failure_description.details #=> String
|
909
921
|
# resp.delivery_stream_description.delivery_stream_type #=> String, one of "DirectPut", "KinesisStreamAsSource"
|
910
922
|
# resp.delivery_stream_description.version_id #=> String
|
@@ -921,7 +933,7 @@ module Aws::Firehose
|
|
921
933
|
# resp.delivery_stream_description.destinations[0].s3_destination_description.error_output_prefix #=> String
|
922
934
|
# resp.delivery_stream_description.destinations[0].s3_destination_description.buffering_hints.size_in_m_bs #=> Integer
|
923
935
|
# resp.delivery_stream_description.destinations[0].s3_destination_description.buffering_hints.interval_in_seconds #=> Integer
|
924
|
-
# resp.delivery_stream_description.destinations[0].s3_destination_description.compression_format #=> String, one of "UNCOMPRESSED", "GZIP", "ZIP", "Snappy"
|
936
|
+
# resp.delivery_stream_description.destinations[0].s3_destination_description.compression_format #=> String, one of "UNCOMPRESSED", "GZIP", "ZIP", "Snappy", "HADOOP_SNAPPY"
|
925
937
|
# resp.delivery_stream_description.destinations[0].s3_destination_description.encryption_configuration.no_encryption_config #=> String, one of "NoEncryption"
|
926
938
|
# resp.delivery_stream_description.destinations[0].s3_destination_description.encryption_configuration.kms_encryption_config.awskms_key_arn #=> String
|
927
939
|
# resp.delivery_stream_description.destinations[0].s3_destination_description.cloud_watch_logging_options.enabled #=> Boolean
|
@@ -933,7 +945,7 @@ module Aws::Firehose
|
|
933
945
|
# resp.delivery_stream_description.destinations[0].extended_s3_destination_description.error_output_prefix #=> String
|
934
946
|
# resp.delivery_stream_description.destinations[0].extended_s3_destination_description.buffering_hints.size_in_m_bs #=> Integer
|
935
947
|
# resp.delivery_stream_description.destinations[0].extended_s3_destination_description.buffering_hints.interval_in_seconds #=> Integer
|
936
|
-
# resp.delivery_stream_description.destinations[0].extended_s3_destination_description.compression_format #=> String, one of "UNCOMPRESSED", "GZIP", "ZIP", "Snappy"
|
948
|
+
# resp.delivery_stream_description.destinations[0].extended_s3_destination_description.compression_format #=> String, one of "UNCOMPRESSED", "GZIP", "ZIP", "Snappy", "HADOOP_SNAPPY"
|
937
949
|
# resp.delivery_stream_description.destinations[0].extended_s3_destination_description.encryption_configuration.no_encryption_config #=> String, one of "NoEncryption"
|
938
950
|
# resp.delivery_stream_description.destinations[0].extended_s3_destination_description.encryption_configuration.kms_encryption_config.awskms_key_arn #=> String
|
939
951
|
# resp.delivery_stream_description.destinations[0].extended_s3_destination_description.cloud_watch_logging_options.enabled #=> Boolean
|
@@ -952,7 +964,7 @@ module Aws::Firehose
|
|
952
964
|
# resp.delivery_stream_description.destinations[0].extended_s3_destination_description.s3_backup_description.error_output_prefix #=> String
|
953
965
|
# resp.delivery_stream_description.destinations[0].extended_s3_destination_description.s3_backup_description.buffering_hints.size_in_m_bs #=> Integer
|
954
966
|
# resp.delivery_stream_description.destinations[0].extended_s3_destination_description.s3_backup_description.buffering_hints.interval_in_seconds #=> Integer
|
955
|
-
# resp.delivery_stream_description.destinations[0].extended_s3_destination_description.s3_backup_description.compression_format #=> String, one of "UNCOMPRESSED", "GZIP", "ZIP", "Snappy"
|
967
|
+
# resp.delivery_stream_description.destinations[0].extended_s3_destination_description.s3_backup_description.compression_format #=> String, one of "UNCOMPRESSED", "GZIP", "ZIP", "Snappy", "HADOOP_SNAPPY"
|
956
968
|
# resp.delivery_stream_description.destinations[0].extended_s3_destination_description.s3_backup_description.encryption_configuration.no_encryption_config #=> String, one of "NoEncryption"
|
957
969
|
# resp.delivery_stream_description.destinations[0].extended_s3_destination_description.s3_backup_description.encryption_configuration.kms_encryption_config.awskms_key_arn #=> String
|
958
970
|
# resp.delivery_stream_description.destinations[0].extended_s3_destination_description.s3_backup_description.cloud_watch_logging_options.enabled #=> Boolean
|
@@ -1001,7 +1013,7 @@ module Aws::Firehose
|
|
1001
1013
|
# resp.delivery_stream_description.destinations[0].redshift_destination_description.s3_destination_description.error_output_prefix #=> String
|
1002
1014
|
# resp.delivery_stream_description.destinations[0].redshift_destination_description.s3_destination_description.buffering_hints.size_in_m_bs #=> Integer
|
1003
1015
|
# resp.delivery_stream_description.destinations[0].redshift_destination_description.s3_destination_description.buffering_hints.interval_in_seconds #=> Integer
|
1004
|
-
# resp.delivery_stream_description.destinations[0].redshift_destination_description.s3_destination_description.compression_format #=> String, one of "UNCOMPRESSED", "GZIP", "ZIP", "Snappy"
|
1016
|
+
# resp.delivery_stream_description.destinations[0].redshift_destination_description.s3_destination_description.compression_format #=> String, one of "UNCOMPRESSED", "GZIP", "ZIP", "Snappy", "HADOOP_SNAPPY"
|
1005
1017
|
# resp.delivery_stream_description.destinations[0].redshift_destination_description.s3_destination_description.encryption_configuration.no_encryption_config #=> String, one of "NoEncryption"
|
1006
1018
|
# resp.delivery_stream_description.destinations[0].redshift_destination_description.s3_destination_description.encryption_configuration.kms_encryption_config.awskms_key_arn #=> String
|
1007
1019
|
# resp.delivery_stream_description.destinations[0].redshift_destination_description.s3_destination_description.cloud_watch_logging_options.enabled #=> Boolean
|
@@ -1020,7 +1032,7 @@ module Aws::Firehose
|
|
1020
1032
|
# resp.delivery_stream_description.destinations[0].redshift_destination_description.s3_backup_description.error_output_prefix #=> String
|
1021
1033
|
# resp.delivery_stream_description.destinations[0].redshift_destination_description.s3_backup_description.buffering_hints.size_in_m_bs #=> Integer
|
1022
1034
|
# resp.delivery_stream_description.destinations[0].redshift_destination_description.s3_backup_description.buffering_hints.interval_in_seconds #=> Integer
|
1023
|
-
# resp.delivery_stream_description.destinations[0].redshift_destination_description.s3_backup_description.compression_format #=> String, one of "UNCOMPRESSED", "GZIP", "ZIP", "Snappy"
|
1035
|
+
# resp.delivery_stream_description.destinations[0].redshift_destination_description.s3_backup_description.compression_format #=> String, one of "UNCOMPRESSED", "GZIP", "ZIP", "Snappy", "HADOOP_SNAPPY"
|
1024
1036
|
# resp.delivery_stream_description.destinations[0].redshift_destination_description.s3_backup_description.encryption_configuration.no_encryption_config #=> String, one of "NoEncryption"
|
1025
1037
|
# resp.delivery_stream_description.destinations[0].redshift_destination_description.s3_backup_description.encryption_configuration.kms_encryption_config.awskms_key_arn #=> String
|
1026
1038
|
# resp.delivery_stream_description.destinations[0].redshift_destination_description.s3_backup_description.cloud_watch_logging_options.enabled #=> Boolean
|
@@ -1045,7 +1057,7 @@ module Aws::Firehose
|
|
1045
1057
|
# resp.delivery_stream_description.destinations[0].elasticsearch_destination_description.s3_destination_description.error_output_prefix #=> String
|
1046
1058
|
# resp.delivery_stream_description.destinations[0].elasticsearch_destination_description.s3_destination_description.buffering_hints.size_in_m_bs #=> Integer
|
1047
1059
|
# resp.delivery_stream_description.destinations[0].elasticsearch_destination_description.s3_destination_description.buffering_hints.interval_in_seconds #=> Integer
|
1048
|
-
# resp.delivery_stream_description.destinations[0].elasticsearch_destination_description.s3_destination_description.compression_format #=> String, one of "UNCOMPRESSED", "GZIP", "ZIP", "Snappy"
|
1060
|
+
# resp.delivery_stream_description.destinations[0].elasticsearch_destination_description.s3_destination_description.compression_format #=> String, one of "UNCOMPRESSED", "GZIP", "ZIP", "Snappy", "HADOOP_SNAPPY"
|
1049
1061
|
# resp.delivery_stream_description.destinations[0].elasticsearch_destination_description.s3_destination_description.encryption_configuration.no_encryption_config #=> String, one of "NoEncryption"
|
1050
1062
|
# resp.delivery_stream_description.destinations[0].elasticsearch_destination_description.s3_destination_description.encryption_configuration.kms_encryption_config.awskms_key_arn #=> String
|
1051
1063
|
# resp.delivery_stream_description.destinations[0].elasticsearch_destination_description.s3_destination_description.cloud_watch_logging_options.enabled #=> Boolean
|
@@ -1060,6 +1072,12 @@ module Aws::Firehose
|
|
1060
1072
|
# resp.delivery_stream_description.destinations[0].elasticsearch_destination_description.cloud_watch_logging_options.enabled #=> Boolean
|
1061
1073
|
# resp.delivery_stream_description.destinations[0].elasticsearch_destination_description.cloud_watch_logging_options.log_group_name #=> String
|
1062
1074
|
# resp.delivery_stream_description.destinations[0].elasticsearch_destination_description.cloud_watch_logging_options.log_stream_name #=> String
|
1075
|
+
# resp.delivery_stream_description.destinations[0].elasticsearch_destination_description.vpc_configuration_description.subnet_ids #=> Array
|
1076
|
+
# resp.delivery_stream_description.destinations[0].elasticsearch_destination_description.vpc_configuration_description.subnet_ids[0] #=> String
|
1077
|
+
# resp.delivery_stream_description.destinations[0].elasticsearch_destination_description.vpc_configuration_description.role_arn #=> String
|
1078
|
+
# resp.delivery_stream_description.destinations[0].elasticsearch_destination_description.vpc_configuration_description.security_group_ids #=> Array
|
1079
|
+
# resp.delivery_stream_description.destinations[0].elasticsearch_destination_description.vpc_configuration_description.security_group_ids[0] #=> String
|
1080
|
+
# resp.delivery_stream_description.destinations[0].elasticsearch_destination_description.vpc_configuration_description.vpc_id #=> String
|
1063
1081
|
# resp.delivery_stream_description.destinations[0].splunk_destination_description.hec_endpoint #=> String
|
1064
1082
|
# resp.delivery_stream_description.destinations[0].splunk_destination_description.hec_endpoint_type #=> String, one of "Raw", "Event"
|
1065
1083
|
# resp.delivery_stream_description.destinations[0].splunk_destination_description.hec_token #=> String
|
@@ -1072,7 +1090,7 @@ module Aws::Firehose
|
|
1072
1090
|
# resp.delivery_stream_description.destinations[0].splunk_destination_description.s3_destination_description.error_output_prefix #=> String
|
1073
1091
|
# resp.delivery_stream_description.destinations[0].splunk_destination_description.s3_destination_description.buffering_hints.size_in_m_bs #=> Integer
|
1074
1092
|
# resp.delivery_stream_description.destinations[0].splunk_destination_description.s3_destination_description.buffering_hints.interval_in_seconds #=> Integer
|
1075
|
-
# resp.delivery_stream_description.destinations[0].splunk_destination_description.s3_destination_description.compression_format #=> String, one of "UNCOMPRESSED", "GZIP", "ZIP", "Snappy"
|
1093
|
+
# resp.delivery_stream_description.destinations[0].splunk_destination_description.s3_destination_description.compression_format #=> String, one of "UNCOMPRESSED", "GZIP", "ZIP", "Snappy", "HADOOP_SNAPPY"
|
1076
1094
|
# resp.delivery_stream_description.destinations[0].splunk_destination_description.s3_destination_description.encryption_configuration.no_encryption_config #=> String, one of "NoEncryption"
|
1077
1095
|
# resp.delivery_stream_description.destinations[0].splunk_destination_description.s3_destination_description.encryption_configuration.kms_encryption_config.awskms_key_arn #=> String
|
1078
1096
|
# resp.delivery_stream_description.destinations[0].splunk_destination_description.s3_destination_description.cloud_watch_logging_options.enabled #=> Boolean
|
@@ -1422,10 +1440,12 @@ module Aws::Firehose
|
|
1422
1440
|
#
|
1423
1441
|
# Even if encryption is currently enabled for a delivery stream, you can
|
1424
1442
|
# still invoke this operation on it to change the ARN of the CMK or both
|
1425
|
-
# its type and ARN.
|
1426
|
-
#
|
1427
|
-
#
|
1428
|
-
#
|
1443
|
+
# its type and ARN. If you invoke this method to change the CMK, and the
|
1444
|
+
# old CMK is of type `CUSTOMER_MANAGED_CMK`, Kinesis Data Firehose
|
1445
|
+
# schedules the grant it had on the old CMK for retirement. If the new
|
1446
|
+
# CMK is of type `CUSTOMER_MANAGED_CMK`, Kinesis Data Firehose creates a
|
1447
|
+
# grant that enables it to use the new CMK to encrypt and decrypt data
|
1448
|
+
# and to manage the grant.
|
1429
1449
|
#
|
1430
1450
|
# If a delivery stream already has encryption enabled and then you
|
1431
1451
|
# invoke this operation to change the ARN of the CMK or both its type
|
@@ -1434,10 +1454,12 @@ module Aws::Firehose
|
|
1434
1454
|
# enabled with the old CMK.
|
1435
1455
|
#
|
1436
1456
|
# If the encryption status of your delivery stream is `ENABLING_FAILED`,
|
1437
|
-
# you can invoke this operation again.
|
1457
|
+
# you can invoke this operation again with a valid CMK. The CMK must be
|
1458
|
+
# enabled and the key policy mustn't explicitly deny the permission for
|
1459
|
+
# Kinesis Data Firehose to invoke KMS encrypt and decrypt operations.
|
1438
1460
|
#
|
1439
|
-
# You can
|
1440
|
-
# its source.
|
1461
|
+
# You can enable SSE for a delivery stream only if it's a delivery
|
1462
|
+
# stream that uses `DirectPut` as its source.
|
1441
1463
|
#
|
1442
1464
|
# The `StartDeliveryStreamEncryption` and `StopDeliveryStreamEncryption`
|
1443
1465
|
# operations have a combined limit of 25 calls per delivery stream per
|
@@ -1688,7 +1710,7 @@ module Aws::Firehose
|
|
1688
1710
|
# size_in_m_bs: 1,
|
1689
1711
|
# interval_in_seconds: 1,
|
1690
1712
|
# },
|
1691
|
-
# compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy
|
1713
|
+
# compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy, HADOOP_SNAPPY
|
1692
1714
|
# encryption_configuration: {
|
1693
1715
|
# no_encryption_config: "NoEncryption", # accepts NoEncryption
|
1694
1716
|
# kms_encryption_config: {
|
@@ -1710,7 +1732,7 @@ module Aws::Firehose
|
|
1710
1732
|
# size_in_m_bs: 1,
|
1711
1733
|
# interval_in_seconds: 1,
|
1712
1734
|
# },
|
1713
|
-
# compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy
|
1735
|
+
# compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy, HADOOP_SNAPPY
|
1714
1736
|
# encryption_configuration: {
|
1715
1737
|
# no_encryption_config: "NoEncryption", # accepts NoEncryption
|
1716
1738
|
# kms_encryption_config: {
|
@@ -1746,7 +1768,7 @@ module Aws::Firehose
|
|
1746
1768
|
# size_in_m_bs: 1,
|
1747
1769
|
# interval_in_seconds: 1,
|
1748
1770
|
# },
|
1749
|
-
# compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy
|
1771
|
+
# compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy, HADOOP_SNAPPY
|
1750
1772
|
# encryption_configuration: {
|
1751
1773
|
# no_encryption_config: "NoEncryption", # accepts NoEncryption
|
1752
1774
|
# kms_encryption_config: {
|
@@ -1831,7 +1853,7 @@ module Aws::Firehose
|
|
1831
1853
|
# size_in_m_bs: 1,
|
1832
1854
|
# interval_in_seconds: 1,
|
1833
1855
|
# },
|
1834
|
-
# compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy
|
1856
|
+
# compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy, HADOOP_SNAPPY
|
1835
1857
|
# encryption_configuration: {
|
1836
1858
|
# no_encryption_config: "NoEncryption", # accepts NoEncryption
|
1837
1859
|
# kms_encryption_config: {
|
@@ -1868,7 +1890,7 @@ module Aws::Firehose
|
|
1868
1890
|
# size_in_m_bs: 1,
|
1869
1891
|
# interval_in_seconds: 1,
|
1870
1892
|
# },
|
1871
|
-
# compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy
|
1893
|
+
# compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy, HADOOP_SNAPPY
|
1872
1894
|
# encryption_configuration: {
|
1873
1895
|
# no_encryption_config: "NoEncryption", # accepts NoEncryption
|
1874
1896
|
# kms_encryption_config: {
|
@@ -1910,7 +1932,7 @@ module Aws::Firehose
|
|
1910
1932
|
# size_in_m_bs: 1,
|
1911
1933
|
# interval_in_seconds: 1,
|
1912
1934
|
# },
|
1913
|
-
# compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy
|
1935
|
+
# compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy, HADOOP_SNAPPY
|
1914
1936
|
# encryption_configuration: {
|
1915
1937
|
# no_encryption_config: "NoEncryption", # accepts NoEncryption
|
1916
1938
|
# kms_encryption_config: {
|
@@ -1961,7 +1983,7 @@ module Aws::Firehose
|
|
1961
1983
|
# size_in_m_bs: 1,
|
1962
1984
|
# interval_in_seconds: 1,
|
1963
1985
|
# },
|
1964
|
-
# compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy
|
1986
|
+
# compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy, HADOOP_SNAPPY
|
1965
1987
|
# encryption_configuration: {
|
1966
1988
|
# no_encryption_config: "NoEncryption", # accepts NoEncryption
|
1967
1989
|
# kms_encryption_config: {
|
@@ -2018,7 +2040,7 @@ module Aws::Firehose
|
|
2018
2040
|
params: params,
|
2019
2041
|
config: config)
|
2020
2042
|
context[:gem_name] = 'aws-sdk-firehose'
|
2021
|
-
context[:gem_version] = '1.
|
2043
|
+
context[:gem_version] = '1.30.0'
|
2022
2044
|
Seahorse::Client::Request.new(handlers, context)
|
2023
2045
|
end
|
2024
2046
|
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -147,6 +149,7 @@ module Aws::Firehose
|
|
147
149
|
S3DestinationDescription = Shapes::StructureShape.new(name: 'S3DestinationDescription')
|
148
150
|
S3DestinationUpdate = Shapes::StructureShape.new(name: 'S3DestinationUpdate')
|
149
151
|
SchemaConfiguration = Shapes::StructureShape.new(name: 'SchemaConfiguration')
|
152
|
+
SecurityGroupIdList = Shapes::ListShape.new(name: 'SecurityGroupIdList')
|
150
153
|
Serializer = Shapes::StructureShape.new(name: 'Serializer')
|
151
154
|
ServiceUnavailableException = Shapes::StructureShape.new(name: 'ServiceUnavailableException')
|
152
155
|
SizeInMBs = Shapes::IntegerShape.new(name: 'SizeInMBs')
|
@@ -161,6 +164,7 @@ module Aws::Firehose
|
|
161
164
|
StartDeliveryStreamEncryptionOutput = Shapes::StructureShape.new(name: 'StartDeliveryStreamEncryptionOutput')
|
162
165
|
StopDeliveryStreamEncryptionInput = Shapes::StructureShape.new(name: 'StopDeliveryStreamEncryptionInput')
|
163
166
|
StopDeliveryStreamEncryptionOutput = Shapes::StructureShape.new(name: 'StopDeliveryStreamEncryptionOutput')
|
167
|
+
SubnetIdList = Shapes::ListShape.new(name: 'SubnetIdList')
|
164
168
|
Tag = Shapes::StructureShape.new(name: 'Tag')
|
165
169
|
TagDeliveryStreamInput = Shapes::StructureShape.new(name: 'TagDeliveryStreamInput')
|
166
170
|
TagDeliveryStreamInputTagList = Shapes::ListShape.new(name: 'TagDeliveryStreamInputTagList')
|
@@ -174,6 +178,8 @@ module Aws::Firehose
|
|
174
178
|
UpdateDestinationInput = Shapes::StructureShape.new(name: 'UpdateDestinationInput')
|
175
179
|
UpdateDestinationOutput = Shapes::StructureShape.new(name: 'UpdateDestinationOutput')
|
176
180
|
Username = Shapes::StringShape.new(name: 'Username')
|
181
|
+
VpcConfiguration = Shapes::StructureShape.new(name: 'VpcConfiguration')
|
182
|
+
VpcConfigurationDescription = Shapes::StructureShape.new(name: 'VpcConfigurationDescription')
|
177
183
|
|
178
184
|
BufferingHints.add_member(:size_in_m_bs, Shapes::ShapeRef.new(shape: SizeInMBs, location_name: "SizeInMBs"))
|
179
185
|
BufferingHints.add_member(:interval_in_seconds, Shapes::ShapeRef.new(shape: IntervalInSeconds, location_name: "IntervalInSeconds"))
|
@@ -286,6 +292,7 @@ module Aws::Firehose
|
|
286
292
|
ElasticsearchDestinationConfiguration.add_member(:s3_configuration, Shapes::ShapeRef.new(shape: S3DestinationConfiguration, required: true, location_name: "S3Configuration"))
|
287
293
|
ElasticsearchDestinationConfiguration.add_member(:processing_configuration, Shapes::ShapeRef.new(shape: ProcessingConfiguration, location_name: "ProcessingConfiguration"))
|
288
294
|
ElasticsearchDestinationConfiguration.add_member(:cloud_watch_logging_options, Shapes::ShapeRef.new(shape: CloudWatchLoggingOptions, location_name: "CloudWatchLoggingOptions"))
|
295
|
+
ElasticsearchDestinationConfiguration.add_member(:vpc_configuration, Shapes::ShapeRef.new(shape: VpcConfiguration, location_name: "VpcConfiguration"))
|
289
296
|
ElasticsearchDestinationConfiguration.struct_class = Types::ElasticsearchDestinationConfiguration
|
290
297
|
|
291
298
|
ElasticsearchDestinationDescription.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleARN, location_name: "RoleARN"))
|
@@ -300,6 +307,7 @@ module Aws::Firehose
|
|
300
307
|
ElasticsearchDestinationDescription.add_member(:s3_destination_description, Shapes::ShapeRef.new(shape: S3DestinationDescription, location_name: "S3DestinationDescription"))
|
301
308
|
ElasticsearchDestinationDescription.add_member(:processing_configuration, Shapes::ShapeRef.new(shape: ProcessingConfiguration, location_name: "ProcessingConfiguration"))
|
302
309
|
ElasticsearchDestinationDescription.add_member(:cloud_watch_logging_options, Shapes::ShapeRef.new(shape: CloudWatchLoggingOptions, location_name: "CloudWatchLoggingOptions"))
|
310
|
+
ElasticsearchDestinationDescription.add_member(:vpc_configuration_description, Shapes::ShapeRef.new(shape: VpcConfigurationDescription, location_name: "VpcConfigurationDescription"))
|
303
311
|
ElasticsearchDestinationDescription.struct_class = Types::ElasticsearchDestinationDescription
|
304
312
|
|
305
313
|
ElasticsearchDestinationUpdate.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleARN, location_name: "RoleARN"))
|
@@ -578,6 +586,8 @@ module Aws::Firehose
|
|
578
586
|
SchemaConfiguration.add_member(:version_id, Shapes::ShapeRef.new(shape: NonEmptyStringWithoutWhitespace, location_name: "VersionId"))
|
579
587
|
SchemaConfiguration.struct_class = Types::SchemaConfiguration
|
580
588
|
|
589
|
+
SecurityGroupIdList.member = Shapes::ShapeRef.new(shape: NonEmptyStringWithoutWhitespace)
|
590
|
+
|
581
591
|
Serializer.add_member(:parquet_ser_de, Shapes::ShapeRef.new(shape: ParquetSerDe, location_name: "ParquetSerDe"))
|
582
592
|
Serializer.add_member(:orc_ser_de, Shapes::ShapeRef.new(shape: OrcSerDe, location_name: "OrcSerDe"))
|
583
593
|
Serializer.struct_class = Types::Serializer
|
@@ -635,6 +645,8 @@ module Aws::Firehose
|
|
635
645
|
|
636
646
|
StopDeliveryStreamEncryptionOutput.struct_class = Types::StopDeliveryStreamEncryptionOutput
|
637
647
|
|
648
|
+
SubnetIdList.member = Shapes::ShapeRef.new(shape: NonEmptyStringWithoutWhitespace)
|
649
|
+
|
638
650
|
Tag.add_member(:key, Shapes::ShapeRef.new(shape: TagKey, required: true, location_name: "Key"))
|
639
651
|
Tag.add_member(:value, Shapes::ShapeRef.new(shape: TagValue, location_name: "Value"))
|
640
652
|
Tag.struct_class = Types::Tag
|
@@ -667,6 +679,17 @@ module Aws::Firehose
|
|
667
679
|
|
668
680
|
UpdateDestinationOutput.struct_class = Types::UpdateDestinationOutput
|
669
681
|
|
682
|
+
VpcConfiguration.add_member(:subnet_ids, Shapes::ShapeRef.new(shape: SubnetIdList, required: true, location_name: "SubnetIds"))
|
683
|
+
VpcConfiguration.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleARN, required: true, location_name: "RoleARN"))
|
684
|
+
VpcConfiguration.add_member(:security_group_ids, Shapes::ShapeRef.new(shape: SecurityGroupIdList, required: true, location_name: "SecurityGroupIds"))
|
685
|
+
VpcConfiguration.struct_class = Types::VpcConfiguration
|
686
|
+
|
687
|
+
VpcConfigurationDescription.add_member(:subnet_ids, Shapes::ShapeRef.new(shape: SubnetIdList, required: true, location_name: "SubnetIds"))
|
688
|
+
VpcConfigurationDescription.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleARN, required: true, location_name: "RoleARN"))
|
689
|
+
VpcConfigurationDescription.add_member(:security_group_ids, Shapes::ShapeRef.new(shape: SecurityGroupIdList, required: true, location_name: "SecurityGroupIds"))
|
690
|
+
VpcConfigurationDescription.add_member(:vpc_id, Shapes::ShapeRef.new(shape: NonEmptyStringWithoutWhitespace, required: true, location_name: "VpcId"))
|
691
|
+
VpcConfigurationDescription.struct_class = Types::VpcConfigurationDescription
|
692
|
+
|
670
693
|
|
671
694
|
# @api private
|
672
695
|
API = Seahorse::Model::Api.new.tap do |api|
|