aws-sdk-firehose 1.24.0 → 1.29.1

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
- SHA1:
3
- metadata.gz: 1ce4d2633d82f381e0e50865cc188f7ad3ddb385
4
- data.tar.gz: 99e97f5764c7efe3e2986af5b25f644432168a1e
2
+ SHA256:
3
+ metadata.gz: e75d400584d795830616cb79597582345d61f6c2eda0ead38754d73ffbf96378
4
+ data.tar.gz: 38dc7604ba1d9a1c2890028f44744f930ecce42f286d34770a97e3f77cce6c9c
5
5
  SHA512:
6
- metadata.gz: c63ff9b66687b3fd6e9ecd9cd3c2ea8c29dcc73caec18ef89cf648c29c0e1cf7e6a7d5770c3e883aed7e3ac2188bd72db041e77301ab47e80d8b703c5d839682
7
- data.tar.gz: 001f15af1a8aa9a1f848dc28602b25b5d8424c015de362b6cc5503a27ee7117886f44cc55fa21ee491be7b20026f9416dc8fe345062b323e1043e69620e571cd
6
+ metadata.gz: 021c1c1b619c88d2e13bc183ca5a9f559ea735a9582d90b5e2d9120e3f67ec8a7ad99fd796b563c16eab99b864842eb8f1bec62a1a655b855b811b61d6a28ada
7
+ data.tar.gz: d5f4e78d09cd68d6d11d47b5541ebb6d212f08df412ac4325fe91133831aa405798fa463581d1db0fa04fb2c4f3f4e457353ab17f5cd48305835a6ef29919f08
@@ -24,17 +24,20 @@ require_relative 'aws-sdk-firehose/customizations'
24
24
  # methods each accept a hash of request parameters and return a response
25
25
  # structure.
26
26
  #
27
+ # firehose = Aws::Firehose::Client.new
28
+ # resp = firehose.create_delivery_stream(params)
29
+ #
27
30
  # See {Client} for more information.
28
31
  #
29
32
  # # Errors
30
33
  #
31
- # Errors returned from Amazon Kinesis Firehose all
32
- # extend {Errors::ServiceError}.
34
+ # Errors returned from Amazon Kinesis Firehose are defined in the
35
+ # {Errors} module and all extend {Errors::ServiceError}.
33
36
  #
34
37
  # begin
35
38
  # # do stuff
36
39
  # rescue Aws::Firehose::Errors::ServiceError
37
- # # rescues all service API errors
40
+ # # rescues all Amazon Kinesis Firehose API errors
38
41
  # end
39
42
  #
40
43
  # See {Errors} for more information.
@@ -42,6 +45,6 @@ require_relative 'aws-sdk-firehose/customizations'
42
45
  # @service
43
46
  module Aws::Firehose
44
47
 
45
- GEM_VERSION = '1.24.0'
48
+ GEM_VERSION = '1.29.1'
46
49
 
47
50
  end
@@ -24,12 +24,25 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
24
24
  require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
25
25
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
26
26
  require 'aws-sdk-core/plugins/transfer_encoding.rb'
27
+ require 'aws-sdk-core/plugins/http_checksum.rb'
27
28
  require 'aws-sdk-core/plugins/signature_v4.rb'
28
29
  require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
29
30
 
30
31
  Aws::Plugins::GlobalConfiguration.add_identifier(:firehose)
31
32
 
32
33
  module Aws::Firehose
34
+ # An API client for Firehose. To construct a client, you need to configure a `:region` and `:credentials`.
35
+ #
36
+ # client = Aws::Firehose::Client.new(
37
+ # region: region_name,
38
+ # credentials: credentials,
39
+ # # ...
40
+ # )
41
+ #
42
+ # For details on configuring region and credentials see
43
+ # the [developer guide](/sdk-for-ruby/v3/developer-guide/setup-config.html).
44
+ #
45
+ # See {#initialize} for a full list of supported configuration options.
33
46
  class Client < Seahorse::Client::Base
34
47
 
35
48
  include Aws::ClientStubs
@@ -57,6 +70,7 @@ module Aws::Firehose
57
70
  add_plugin(Aws::Plugins::ClientMetricsPlugin)
58
71
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
59
72
  add_plugin(Aws::Plugins::TransferEncoding)
73
+ add_plugin(Aws::Plugins::HttpChecksum)
60
74
  add_plugin(Aws::Plugins::SignatureV4)
61
75
  add_plugin(Aws::Plugins::Protocols::JsonRpc)
62
76
 
@@ -93,7 +107,7 @@ module Aws::Firehose
93
107
  # @option options [required, String] :region
94
108
  # The AWS region to connect to. The configured `:region` is
95
109
  # used to determine the service `:endpoint`. When not passed,
96
- # a default `:region` is search for in the following locations:
110
+ # a default `:region` is searched for in the following locations:
97
111
  #
98
112
  # * `Aws.config[:region]`
99
113
  # * `ENV['AWS_REGION']`
@@ -108,6 +122,12 @@ module Aws::Firehose
108
122
  # When set to `true`, a thread polling for endpoints will be running in
109
123
  # the background every 60 secs (default). Defaults to `false`.
110
124
  #
125
+ # @option options [Boolean] :adaptive_retry_wait_to_fill (true)
126
+ # Used only in `adaptive` retry mode. When true, the request will sleep
127
+ # until there is sufficent client side capacity to retry the request.
128
+ # When false, the request will raise a `RetryCapacityNotAvailableError` and will
129
+ # not retry instead of sleeping.
130
+ #
111
131
  # @option options [Boolean] :client_side_monitoring (false)
112
132
  # When `true`, client-side metrics will be collected for all API requests from
113
133
  # this client.
@@ -132,6 +152,10 @@ module Aws::Firehose
132
152
  # When `true`, an attempt is made to coerce request parameters into
133
153
  # the required types.
134
154
  #
155
+ # @option options [Boolean] :correct_clock_skew (true)
156
+ # Used only in `standard` and adaptive retry modes. Specifies whether to apply
157
+ # a clock skew correction and retry requests with skewed client clocks.
158
+ #
135
159
  # @option options [Boolean] :disable_host_prefix_injection (false)
136
160
  # Set to true to disable SDK automatically adding host prefix
137
161
  # to default service endpoint when available.
@@ -139,7 +163,7 @@ module Aws::Firehose
139
163
  # @option options [String] :endpoint
140
164
  # The client endpoint is normally constructed from the `:region`
141
165
  # option. You should only configure an `:endpoint` when connecting
142
- # to test endpoints. This should be avalid HTTP(S) URI.
166
+ # to test or custom endpoints. This should be a valid HTTP(S) URI.
143
167
  #
144
168
  # @option options [Integer] :endpoint_cache_max_entries (1000)
145
169
  # Used for the maximum size limit of the LRU cache storing endpoints data
@@ -154,7 +178,7 @@ module Aws::Firehose
154
178
  # requests fetching endpoints information. Defaults to 60 sec.
155
179
  #
156
180
  # @option options [Boolean] :endpoint_discovery (false)
157
- # When set to `true`, endpoint discovery will be enabled for operations when available. Defaults to `false`.
181
+ # When set to `true`, endpoint discovery will be enabled for operations when available.
158
182
  #
159
183
  # @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
160
184
  # The log formatter.
@@ -166,15 +190,29 @@ module Aws::Firehose
166
190
  # The Logger instance to send log messages to. If this option
167
191
  # is not set, logging will be disabled.
168
192
  #
193
+ # @option options [Integer] :max_attempts (3)
194
+ # An integer representing the maximum number attempts that will be made for
195
+ # a single request, including the initial attempt. For example,
196
+ # setting this value to 5 will result in a request being retried up to
197
+ # 4 times. Used in `standard` and `adaptive` retry modes.
198
+ #
169
199
  # @option options [String] :profile ("default")
170
200
  # Used when loading credentials from the shared credentials file
171
201
  # at HOME/.aws/credentials. When not specified, 'default' is used.
172
202
  #
203
+ # @option options [Proc] :retry_backoff
204
+ # A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
205
+ # This option is only used in the `legacy` retry mode.
206
+ #
173
207
  # @option options [Float] :retry_base_delay (0.3)
174
- # The base delay in seconds used by the default backoff function.
208
+ # The base delay in seconds used by the default backoff function. This option
209
+ # is only used in the `legacy` retry mode.
175
210
  #
176
211
  # @option options [Symbol] :retry_jitter (:none)
177
- # A delay randomiser function used by the default backoff function. Some predefined functions can be referenced by name - :none, :equal, :full, otherwise a Proc that takes and returns a number.
212
+ # A delay randomiser function used by the default backoff function.
213
+ # Some predefined functions can be referenced by name - :none, :equal, :full,
214
+ # otherwise a Proc that takes and returns a number. This option is only used
215
+ # in the `legacy` retry mode.
178
216
  #
179
217
  # @see https://www.awsarchitectureblog.com/2015/03/backoff.html
180
218
  #
@@ -182,11 +220,30 @@ module Aws::Firehose
182
220
  # The maximum number of times to retry failed requests. Only
183
221
  # ~ 500 level server errors and certain ~ 400 level client errors
184
222
  # are retried. Generally, these are throttling errors, data
185
- # checksum errors, networking errors, timeout errors and auth
186
- # errors from expired credentials.
223
+ # checksum errors, networking errors, timeout errors, auth errors,
224
+ # endpoint discovery, and errors from expired credentials.
225
+ # This option is only used in the `legacy` retry mode.
187
226
  #
188
227
  # @option options [Integer] :retry_max_delay (0)
189
- # The maximum number of seconds to delay between retries (0 for no limit) used by the default backoff function.
228
+ # The maximum number of seconds to delay between retries (0 for no limit)
229
+ # used by the default backoff function. This option is only used in the
230
+ # `legacy` retry mode.
231
+ #
232
+ # @option options [String] :retry_mode ("legacy")
233
+ # Specifies which retry algorithm to use. Values are:
234
+ #
235
+ # * `legacy` - The pre-existing retry behavior. This is default value if
236
+ # no retry mode is provided.
237
+ #
238
+ # * `standard` - A standardized set of retry rules across the AWS SDKs.
239
+ # This includes support for retry quotas, which limit the number of
240
+ # unsuccessful retries a client can make.
241
+ #
242
+ # * `adaptive` - An experimental retry mode that includes all the
243
+ # functionality of `standard` mode along with automatic client side
244
+ # throttling. This is a provisional mode that may change behavior
245
+ # in the future.
246
+ #
190
247
  #
191
248
  # @option options [String] :secret_access_key
192
249
  #
@@ -219,16 +276,15 @@ module Aws::Firehose
219
276
  # requests through. Formatted like 'http://proxy.com:123'.
220
277
  #
221
278
  # @option options [Float] :http_open_timeout (15) The number of
222
- # seconds to wait when opening a HTTP session before rasing a
279
+ # seconds to wait when opening a HTTP session before raising a
223
280
  # `Timeout::Error`.
224
281
  #
225
282
  # @option options [Integer] :http_read_timeout (60) The default
226
283
  # number of seconds to wait for response data. This value can
227
- # safely be set
228
- # per-request on the session yeidled by {#session_for}.
284
+ # safely be set per-request on the session.
229
285
  #
230
286
  # @option options [Float] :http_idle_timeout (5) The number of
231
- # seconds a connection is allowed to sit idble before it is
287
+ # seconds a connection is allowed to sit idle before it is
232
288
  # considered stale. Stale connections are closed and removed
233
289
  # from the pool before making a request.
234
290
  #
@@ -237,7 +293,7 @@ module Aws::Firehose
237
293
  # request body. This option has no effect unless the request has
238
294
  # "Expect" header set to "100-continue". Defaults to `nil` which
239
295
  # disables this behaviour. This value can safely be set per
240
- # request on the session yeidled by {#session_for}.
296
+ # request on the session.
241
297
  #
242
298
  # @option options [Boolean] :http_wire_trace (false) When `true`,
243
299
  # HTTP debug output will be sent to the `:logger`.
@@ -427,7 +483,7 @@ module Aws::Firehose
427
483
  # size_in_m_bs: 1,
428
484
  # interval_in_seconds: 1,
429
485
  # },
430
- # compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy
486
+ # compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy, HADOOP_SNAPPY
431
487
  # encryption_configuration: {
432
488
  # no_encryption_config: "NoEncryption", # accepts NoEncryption
433
489
  # kms_encryption_config: {
@@ -449,7 +505,7 @@ module Aws::Firehose
449
505
  # size_in_m_bs: 1,
450
506
  # interval_in_seconds: 1,
451
507
  # },
452
- # compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy
508
+ # compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy, HADOOP_SNAPPY
453
509
  # encryption_configuration: {
454
510
  # no_encryption_config: "NoEncryption", # accepts NoEncryption
455
511
  # kms_encryption_config: {
@@ -485,7 +541,7 @@ module Aws::Firehose
485
541
  # size_in_m_bs: 1,
486
542
  # interval_in_seconds: 1,
487
543
  # },
488
- # compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy
544
+ # compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy, HADOOP_SNAPPY
489
545
  # encryption_configuration: {
490
546
  # no_encryption_config: "NoEncryption", # accepts NoEncryption
491
547
  # kms_encryption_config: {
@@ -570,7 +626,7 @@ module Aws::Firehose
570
626
  # size_in_m_bs: 1,
571
627
  # interval_in_seconds: 1,
572
628
  # },
573
- # compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy
629
+ # compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy, HADOOP_SNAPPY
574
630
  # encryption_configuration: {
575
631
  # no_encryption_config: "NoEncryption", # accepts NoEncryption
576
632
  # kms_encryption_config: {
@@ -607,7 +663,7 @@ module Aws::Firehose
607
663
  # size_in_m_bs: 1,
608
664
  # interval_in_seconds: 1,
609
665
  # },
610
- # compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy
666
+ # compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy, HADOOP_SNAPPY
611
667
  # encryption_configuration: {
612
668
  # no_encryption_config: "NoEncryption", # accepts NoEncryption
613
669
  # kms_encryption_config: {
@@ -650,7 +706,7 @@ module Aws::Firehose
650
706
  # size_in_m_bs: 1,
651
707
  # interval_in_seconds: 1,
652
708
  # },
653
- # compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy
709
+ # compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy, HADOOP_SNAPPY
654
710
  # encryption_configuration: {
655
711
  # no_encryption_config: "NoEncryption", # accepts NoEncryption
656
712
  # kms_encryption_config: {
@@ -682,6 +738,11 @@ module Aws::Firehose
682
738
  # log_group_name: "LogGroupName",
683
739
  # log_stream_name: "LogStreamName",
684
740
  # },
741
+ # vpc_configuration: {
742
+ # subnet_ids: ["NonEmptyStringWithoutWhitespace"], # required
743
+ # role_arn: "RoleARN", # required
744
+ # security_group_ids: ["NonEmptyStringWithoutWhitespace"], # required
745
+ # },
685
746
  # },
686
747
  # splunk_destination_configuration: {
687
748
  # hec_endpoint: "HECEndpoint", # required
@@ -701,7 +762,7 @@ module Aws::Firehose
701
762
  # size_in_m_bs: 1,
702
763
  # interval_in_seconds: 1,
703
764
  # },
704
- # compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy
765
+ # compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy, HADOOP_SNAPPY
705
766
  # encryption_configuration: {
706
767
  # no_encryption_config: "NoEncryption", # accepts NoEncryption
707
768
  # kms_encryption_config: {
@@ -848,12 +909,12 @@ module Aws::Firehose
848
909
  # resp.delivery_stream_description.delivery_stream_name #=> String
849
910
  # resp.delivery_stream_description.delivery_stream_arn #=> String
850
911
  # resp.delivery_stream_description.delivery_stream_status #=> String, one of "CREATING", "CREATING_FAILED", "DELETING", "DELETING_FAILED", "ACTIVE"
851
- # 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"
912
+ # 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"
852
913
  # resp.delivery_stream_description.failure_description.details #=> String
853
914
  # resp.delivery_stream_description.delivery_stream_encryption_configuration.key_arn #=> String
854
915
  # resp.delivery_stream_description.delivery_stream_encryption_configuration.key_type #=> String, one of "AWS_OWNED_CMK", "CUSTOMER_MANAGED_CMK"
855
916
  # resp.delivery_stream_description.delivery_stream_encryption_configuration.status #=> String, one of "ENABLED", "ENABLING", "ENABLING_FAILED", "DISABLED", "DISABLING", "DISABLING_FAILED"
856
- # 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"
917
+ # 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"
857
918
  # resp.delivery_stream_description.delivery_stream_encryption_configuration.failure_description.details #=> String
858
919
  # resp.delivery_stream_description.delivery_stream_type #=> String, one of "DirectPut", "KinesisStreamAsSource"
859
920
  # resp.delivery_stream_description.version_id #=> String
@@ -870,7 +931,7 @@ module Aws::Firehose
870
931
  # resp.delivery_stream_description.destinations[0].s3_destination_description.error_output_prefix #=> String
871
932
  # resp.delivery_stream_description.destinations[0].s3_destination_description.buffering_hints.size_in_m_bs #=> Integer
872
933
  # resp.delivery_stream_description.destinations[0].s3_destination_description.buffering_hints.interval_in_seconds #=> Integer
873
- # resp.delivery_stream_description.destinations[0].s3_destination_description.compression_format #=> String, one of "UNCOMPRESSED", "GZIP", "ZIP", "Snappy"
934
+ # resp.delivery_stream_description.destinations[0].s3_destination_description.compression_format #=> String, one of "UNCOMPRESSED", "GZIP", "ZIP", "Snappy", "HADOOP_SNAPPY"
874
935
  # resp.delivery_stream_description.destinations[0].s3_destination_description.encryption_configuration.no_encryption_config #=> String, one of "NoEncryption"
875
936
  # resp.delivery_stream_description.destinations[0].s3_destination_description.encryption_configuration.kms_encryption_config.awskms_key_arn #=> String
876
937
  # resp.delivery_stream_description.destinations[0].s3_destination_description.cloud_watch_logging_options.enabled #=> Boolean
@@ -882,7 +943,7 @@ module Aws::Firehose
882
943
  # resp.delivery_stream_description.destinations[0].extended_s3_destination_description.error_output_prefix #=> String
883
944
  # resp.delivery_stream_description.destinations[0].extended_s3_destination_description.buffering_hints.size_in_m_bs #=> Integer
884
945
  # resp.delivery_stream_description.destinations[0].extended_s3_destination_description.buffering_hints.interval_in_seconds #=> Integer
885
- # resp.delivery_stream_description.destinations[0].extended_s3_destination_description.compression_format #=> String, one of "UNCOMPRESSED", "GZIP", "ZIP", "Snappy"
946
+ # resp.delivery_stream_description.destinations[0].extended_s3_destination_description.compression_format #=> String, one of "UNCOMPRESSED", "GZIP", "ZIP", "Snappy", "HADOOP_SNAPPY"
886
947
  # resp.delivery_stream_description.destinations[0].extended_s3_destination_description.encryption_configuration.no_encryption_config #=> String, one of "NoEncryption"
887
948
  # resp.delivery_stream_description.destinations[0].extended_s3_destination_description.encryption_configuration.kms_encryption_config.awskms_key_arn #=> String
888
949
  # resp.delivery_stream_description.destinations[0].extended_s3_destination_description.cloud_watch_logging_options.enabled #=> Boolean
@@ -901,7 +962,7 @@ module Aws::Firehose
901
962
  # resp.delivery_stream_description.destinations[0].extended_s3_destination_description.s3_backup_description.error_output_prefix #=> String
902
963
  # resp.delivery_stream_description.destinations[0].extended_s3_destination_description.s3_backup_description.buffering_hints.size_in_m_bs #=> Integer
903
964
  # resp.delivery_stream_description.destinations[0].extended_s3_destination_description.s3_backup_description.buffering_hints.interval_in_seconds #=> Integer
904
- # resp.delivery_stream_description.destinations[0].extended_s3_destination_description.s3_backup_description.compression_format #=> String, one of "UNCOMPRESSED", "GZIP", "ZIP", "Snappy"
965
+ # resp.delivery_stream_description.destinations[0].extended_s3_destination_description.s3_backup_description.compression_format #=> String, one of "UNCOMPRESSED", "GZIP", "ZIP", "Snappy", "HADOOP_SNAPPY"
905
966
  # resp.delivery_stream_description.destinations[0].extended_s3_destination_description.s3_backup_description.encryption_configuration.no_encryption_config #=> String, one of "NoEncryption"
906
967
  # resp.delivery_stream_description.destinations[0].extended_s3_destination_description.s3_backup_description.encryption_configuration.kms_encryption_config.awskms_key_arn #=> String
907
968
  # resp.delivery_stream_description.destinations[0].extended_s3_destination_description.s3_backup_description.cloud_watch_logging_options.enabled #=> Boolean
@@ -950,7 +1011,7 @@ module Aws::Firehose
950
1011
  # resp.delivery_stream_description.destinations[0].redshift_destination_description.s3_destination_description.error_output_prefix #=> String
951
1012
  # resp.delivery_stream_description.destinations[0].redshift_destination_description.s3_destination_description.buffering_hints.size_in_m_bs #=> Integer
952
1013
  # resp.delivery_stream_description.destinations[0].redshift_destination_description.s3_destination_description.buffering_hints.interval_in_seconds #=> Integer
953
- # resp.delivery_stream_description.destinations[0].redshift_destination_description.s3_destination_description.compression_format #=> String, one of "UNCOMPRESSED", "GZIP", "ZIP", "Snappy"
1014
+ # resp.delivery_stream_description.destinations[0].redshift_destination_description.s3_destination_description.compression_format #=> String, one of "UNCOMPRESSED", "GZIP", "ZIP", "Snappy", "HADOOP_SNAPPY"
954
1015
  # resp.delivery_stream_description.destinations[0].redshift_destination_description.s3_destination_description.encryption_configuration.no_encryption_config #=> String, one of "NoEncryption"
955
1016
  # resp.delivery_stream_description.destinations[0].redshift_destination_description.s3_destination_description.encryption_configuration.kms_encryption_config.awskms_key_arn #=> String
956
1017
  # resp.delivery_stream_description.destinations[0].redshift_destination_description.s3_destination_description.cloud_watch_logging_options.enabled #=> Boolean
@@ -969,7 +1030,7 @@ module Aws::Firehose
969
1030
  # resp.delivery_stream_description.destinations[0].redshift_destination_description.s3_backup_description.error_output_prefix #=> String
970
1031
  # resp.delivery_stream_description.destinations[0].redshift_destination_description.s3_backup_description.buffering_hints.size_in_m_bs #=> Integer
971
1032
  # resp.delivery_stream_description.destinations[0].redshift_destination_description.s3_backup_description.buffering_hints.interval_in_seconds #=> Integer
972
- # resp.delivery_stream_description.destinations[0].redshift_destination_description.s3_backup_description.compression_format #=> String, one of "UNCOMPRESSED", "GZIP", "ZIP", "Snappy"
1033
+ # resp.delivery_stream_description.destinations[0].redshift_destination_description.s3_backup_description.compression_format #=> String, one of "UNCOMPRESSED", "GZIP", "ZIP", "Snappy", "HADOOP_SNAPPY"
973
1034
  # resp.delivery_stream_description.destinations[0].redshift_destination_description.s3_backup_description.encryption_configuration.no_encryption_config #=> String, one of "NoEncryption"
974
1035
  # resp.delivery_stream_description.destinations[0].redshift_destination_description.s3_backup_description.encryption_configuration.kms_encryption_config.awskms_key_arn #=> String
975
1036
  # resp.delivery_stream_description.destinations[0].redshift_destination_description.s3_backup_description.cloud_watch_logging_options.enabled #=> Boolean
@@ -994,7 +1055,7 @@ module Aws::Firehose
994
1055
  # resp.delivery_stream_description.destinations[0].elasticsearch_destination_description.s3_destination_description.error_output_prefix #=> String
995
1056
  # resp.delivery_stream_description.destinations[0].elasticsearch_destination_description.s3_destination_description.buffering_hints.size_in_m_bs #=> Integer
996
1057
  # resp.delivery_stream_description.destinations[0].elasticsearch_destination_description.s3_destination_description.buffering_hints.interval_in_seconds #=> Integer
997
- # resp.delivery_stream_description.destinations[0].elasticsearch_destination_description.s3_destination_description.compression_format #=> String, one of "UNCOMPRESSED", "GZIP", "ZIP", "Snappy"
1058
+ # resp.delivery_stream_description.destinations[0].elasticsearch_destination_description.s3_destination_description.compression_format #=> String, one of "UNCOMPRESSED", "GZIP", "ZIP", "Snappy", "HADOOP_SNAPPY"
998
1059
  # resp.delivery_stream_description.destinations[0].elasticsearch_destination_description.s3_destination_description.encryption_configuration.no_encryption_config #=> String, one of "NoEncryption"
999
1060
  # resp.delivery_stream_description.destinations[0].elasticsearch_destination_description.s3_destination_description.encryption_configuration.kms_encryption_config.awskms_key_arn #=> String
1000
1061
  # resp.delivery_stream_description.destinations[0].elasticsearch_destination_description.s3_destination_description.cloud_watch_logging_options.enabled #=> Boolean
@@ -1009,6 +1070,12 @@ module Aws::Firehose
1009
1070
  # resp.delivery_stream_description.destinations[0].elasticsearch_destination_description.cloud_watch_logging_options.enabled #=> Boolean
1010
1071
  # resp.delivery_stream_description.destinations[0].elasticsearch_destination_description.cloud_watch_logging_options.log_group_name #=> String
1011
1072
  # resp.delivery_stream_description.destinations[0].elasticsearch_destination_description.cloud_watch_logging_options.log_stream_name #=> String
1073
+ # resp.delivery_stream_description.destinations[0].elasticsearch_destination_description.vpc_configuration_description.subnet_ids #=> Array
1074
+ # resp.delivery_stream_description.destinations[0].elasticsearch_destination_description.vpc_configuration_description.subnet_ids[0] #=> String
1075
+ # resp.delivery_stream_description.destinations[0].elasticsearch_destination_description.vpc_configuration_description.role_arn #=> String
1076
+ # resp.delivery_stream_description.destinations[0].elasticsearch_destination_description.vpc_configuration_description.security_group_ids #=> Array
1077
+ # resp.delivery_stream_description.destinations[0].elasticsearch_destination_description.vpc_configuration_description.security_group_ids[0] #=> String
1078
+ # resp.delivery_stream_description.destinations[0].elasticsearch_destination_description.vpc_configuration_description.vpc_id #=> String
1012
1079
  # resp.delivery_stream_description.destinations[0].splunk_destination_description.hec_endpoint #=> String
1013
1080
  # resp.delivery_stream_description.destinations[0].splunk_destination_description.hec_endpoint_type #=> String, one of "Raw", "Event"
1014
1081
  # resp.delivery_stream_description.destinations[0].splunk_destination_description.hec_token #=> String
@@ -1021,7 +1088,7 @@ module Aws::Firehose
1021
1088
  # resp.delivery_stream_description.destinations[0].splunk_destination_description.s3_destination_description.error_output_prefix #=> String
1022
1089
  # resp.delivery_stream_description.destinations[0].splunk_destination_description.s3_destination_description.buffering_hints.size_in_m_bs #=> Integer
1023
1090
  # resp.delivery_stream_description.destinations[0].splunk_destination_description.s3_destination_description.buffering_hints.interval_in_seconds #=> Integer
1024
- # resp.delivery_stream_description.destinations[0].splunk_destination_description.s3_destination_description.compression_format #=> String, one of "UNCOMPRESSED", "GZIP", "ZIP", "Snappy"
1091
+ # resp.delivery_stream_description.destinations[0].splunk_destination_description.s3_destination_description.compression_format #=> String, one of "UNCOMPRESSED", "GZIP", "ZIP", "Snappy", "HADOOP_SNAPPY"
1025
1092
  # resp.delivery_stream_description.destinations[0].splunk_destination_description.s3_destination_description.encryption_configuration.no_encryption_config #=> String, one of "NoEncryption"
1026
1093
  # resp.delivery_stream_description.destinations[0].splunk_destination_description.s3_destination_description.encryption_configuration.kms_encryption_config.awskms_key_arn #=> String
1027
1094
  # resp.delivery_stream_description.destinations[0].splunk_destination_description.s3_destination_description.cloud_watch_logging_options.enabled #=> Boolean
@@ -1371,10 +1438,12 @@ module Aws::Firehose
1371
1438
  #
1372
1439
  # Even if encryption is currently enabled for a delivery stream, you can
1373
1440
  # still invoke this operation on it to change the ARN of the CMK or both
1374
- # its type and ARN. In this case, Kinesis Data Firehose schedules the
1375
- # grant it had on the old CMK for retirement and creates a grant that
1376
- # enables it to use the new CMK to encrypt and decrypt data and to
1377
- # manage the grant.
1441
+ # its type and ARN. If you invoke this method to change the CMK, and the
1442
+ # old CMK is of type `CUSTOMER_MANAGED_CMK`, Kinesis Data Firehose
1443
+ # schedules the grant it had on the old CMK for retirement. If the new
1444
+ # CMK is of type `CUSTOMER_MANAGED_CMK`, Kinesis Data Firehose creates a
1445
+ # grant that enables it to use the new CMK to encrypt and decrypt data
1446
+ # and to manage the grant.
1378
1447
  #
1379
1448
  # If a delivery stream already has encryption enabled and then you
1380
1449
  # invoke this operation to change the ARN of the CMK or both its type
@@ -1383,10 +1452,12 @@ module Aws::Firehose
1383
1452
  # enabled with the old CMK.
1384
1453
  #
1385
1454
  # If the encryption status of your delivery stream is `ENABLING_FAILED`,
1386
- # you can invoke this operation again.
1455
+ # you can invoke this operation again with a valid CMK. The CMK must be
1456
+ # enabled and the key policy mustn't explicitly deny the permission for
1457
+ # Kinesis Data Firehose to invoke KMS encrypt and decrypt operations.
1387
1458
  #
1388
- # You can only enable SSE for a delivery stream that uses `DirectPut` as
1389
- # its source.
1459
+ # You can enable SSE for a delivery stream only if it's a delivery
1460
+ # stream that uses `DirectPut` as its source.
1390
1461
  #
1391
1462
  # The `StartDeliveryStreamEncryption` and `StopDeliveryStreamEncryption`
1392
1463
  # operations have a combined limit of 25 calls per delivery stream per
@@ -1637,7 +1708,7 @@ module Aws::Firehose
1637
1708
  # size_in_m_bs: 1,
1638
1709
  # interval_in_seconds: 1,
1639
1710
  # },
1640
- # compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy
1711
+ # compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy, HADOOP_SNAPPY
1641
1712
  # encryption_configuration: {
1642
1713
  # no_encryption_config: "NoEncryption", # accepts NoEncryption
1643
1714
  # kms_encryption_config: {
@@ -1659,7 +1730,7 @@ module Aws::Firehose
1659
1730
  # size_in_m_bs: 1,
1660
1731
  # interval_in_seconds: 1,
1661
1732
  # },
1662
- # compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy
1733
+ # compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy, HADOOP_SNAPPY
1663
1734
  # encryption_configuration: {
1664
1735
  # no_encryption_config: "NoEncryption", # accepts NoEncryption
1665
1736
  # kms_encryption_config: {
@@ -1695,7 +1766,7 @@ module Aws::Firehose
1695
1766
  # size_in_m_bs: 1,
1696
1767
  # interval_in_seconds: 1,
1697
1768
  # },
1698
- # compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy
1769
+ # compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy, HADOOP_SNAPPY
1699
1770
  # encryption_configuration: {
1700
1771
  # no_encryption_config: "NoEncryption", # accepts NoEncryption
1701
1772
  # kms_encryption_config: {
@@ -1780,7 +1851,7 @@ module Aws::Firehose
1780
1851
  # size_in_m_bs: 1,
1781
1852
  # interval_in_seconds: 1,
1782
1853
  # },
1783
- # compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy
1854
+ # compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy, HADOOP_SNAPPY
1784
1855
  # encryption_configuration: {
1785
1856
  # no_encryption_config: "NoEncryption", # accepts NoEncryption
1786
1857
  # kms_encryption_config: {
@@ -1817,7 +1888,7 @@ module Aws::Firehose
1817
1888
  # size_in_m_bs: 1,
1818
1889
  # interval_in_seconds: 1,
1819
1890
  # },
1820
- # compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy
1891
+ # compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy, HADOOP_SNAPPY
1821
1892
  # encryption_configuration: {
1822
1893
  # no_encryption_config: "NoEncryption", # accepts NoEncryption
1823
1894
  # kms_encryption_config: {
@@ -1859,7 +1930,7 @@ module Aws::Firehose
1859
1930
  # size_in_m_bs: 1,
1860
1931
  # interval_in_seconds: 1,
1861
1932
  # },
1862
- # compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy
1933
+ # compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy, HADOOP_SNAPPY
1863
1934
  # encryption_configuration: {
1864
1935
  # no_encryption_config: "NoEncryption", # accepts NoEncryption
1865
1936
  # kms_encryption_config: {
@@ -1910,7 +1981,7 @@ module Aws::Firehose
1910
1981
  # size_in_m_bs: 1,
1911
1982
  # interval_in_seconds: 1,
1912
1983
  # },
1913
- # compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy
1984
+ # compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy, HADOOP_SNAPPY
1914
1985
  # encryption_configuration: {
1915
1986
  # no_encryption_config: "NoEncryption", # accepts NoEncryption
1916
1987
  # kms_encryption_config: {
@@ -1967,7 +2038,7 @@ module Aws::Firehose
1967
2038
  params: params,
1968
2039
  config: config)
1969
2040
  context[:gem_name] = 'aws-sdk-firehose'
1970
- context[:gem_version] = '1.24.0'
2041
+ context[:gem_version] = '1.29.1'
1971
2042
  Seahorse::Client::Request.new(handlers, context)
1972
2043
  end
1973
2044
 
@@ -147,6 +147,7 @@ module Aws::Firehose
147
147
  S3DestinationDescription = Shapes::StructureShape.new(name: 'S3DestinationDescription')
148
148
  S3DestinationUpdate = Shapes::StructureShape.new(name: 'S3DestinationUpdate')
149
149
  SchemaConfiguration = Shapes::StructureShape.new(name: 'SchemaConfiguration')
150
+ SecurityGroupIdList = Shapes::ListShape.new(name: 'SecurityGroupIdList')
150
151
  Serializer = Shapes::StructureShape.new(name: 'Serializer')
151
152
  ServiceUnavailableException = Shapes::StructureShape.new(name: 'ServiceUnavailableException')
152
153
  SizeInMBs = Shapes::IntegerShape.new(name: 'SizeInMBs')
@@ -161,6 +162,7 @@ module Aws::Firehose
161
162
  StartDeliveryStreamEncryptionOutput = Shapes::StructureShape.new(name: 'StartDeliveryStreamEncryptionOutput')
162
163
  StopDeliveryStreamEncryptionInput = Shapes::StructureShape.new(name: 'StopDeliveryStreamEncryptionInput')
163
164
  StopDeliveryStreamEncryptionOutput = Shapes::StructureShape.new(name: 'StopDeliveryStreamEncryptionOutput')
165
+ SubnetIdList = Shapes::ListShape.new(name: 'SubnetIdList')
164
166
  Tag = Shapes::StructureShape.new(name: 'Tag')
165
167
  TagDeliveryStreamInput = Shapes::StructureShape.new(name: 'TagDeliveryStreamInput')
166
168
  TagDeliveryStreamInputTagList = Shapes::ListShape.new(name: 'TagDeliveryStreamInputTagList')
@@ -174,6 +176,8 @@ module Aws::Firehose
174
176
  UpdateDestinationInput = Shapes::StructureShape.new(name: 'UpdateDestinationInput')
175
177
  UpdateDestinationOutput = Shapes::StructureShape.new(name: 'UpdateDestinationOutput')
176
178
  Username = Shapes::StringShape.new(name: 'Username')
179
+ VpcConfiguration = Shapes::StructureShape.new(name: 'VpcConfiguration')
180
+ VpcConfigurationDescription = Shapes::StructureShape.new(name: 'VpcConfigurationDescription')
177
181
 
178
182
  BufferingHints.add_member(:size_in_m_bs, Shapes::ShapeRef.new(shape: SizeInMBs, location_name: "SizeInMBs"))
179
183
  BufferingHints.add_member(:interval_in_seconds, Shapes::ShapeRef.new(shape: IntervalInSeconds, location_name: "IntervalInSeconds"))
@@ -286,6 +290,7 @@ module Aws::Firehose
286
290
  ElasticsearchDestinationConfiguration.add_member(:s3_configuration, Shapes::ShapeRef.new(shape: S3DestinationConfiguration, required: true, location_name: "S3Configuration"))
287
291
  ElasticsearchDestinationConfiguration.add_member(:processing_configuration, Shapes::ShapeRef.new(shape: ProcessingConfiguration, location_name: "ProcessingConfiguration"))
288
292
  ElasticsearchDestinationConfiguration.add_member(:cloud_watch_logging_options, Shapes::ShapeRef.new(shape: CloudWatchLoggingOptions, location_name: "CloudWatchLoggingOptions"))
293
+ ElasticsearchDestinationConfiguration.add_member(:vpc_configuration, Shapes::ShapeRef.new(shape: VpcConfiguration, location_name: "VpcConfiguration"))
289
294
  ElasticsearchDestinationConfiguration.struct_class = Types::ElasticsearchDestinationConfiguration
290
295
 
291
296
  ElasticsearchDestinationDescription.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleARN, location_name: "RoleARN"))
@@ -300,6 +305,7 @@ module Aws::Firehose
300
305
  ElasticsearchDestinationDescription.add_member(:s3_destination_description, Shapes::ShapeRef.new(shape: S3DestinationDescription, location_name: "S3DestinationDescription"))
301
306
  ElasticsearchDestinationDescription.add_member(:processing_configuration, Shapes::ShapeRef.new(shape: ProcessingConfiguration, location_name: "ProcessingConfiguration"))
302
307
  ElasticsearchDestinationDescription.add_member(:cloud_watch_logging_options, Shapes::ShapeRef.new(shape: CloudWatchLoggingOptions, location_name: "CloudWatchLoggingOptions"))
308
+ ElasticsearchDestinationDescription.add_member(:vpc_configuration_description, Shapes::ShapeRef.new(shape: VpcConfigurationDescription, location_name: "VpcConfigurationDescription"))
303
309
  ElasticsearchDestinationDescription.struct_class = Types::ElasticsearchDestinationDescription
304
310
 
305
311
  ElasticsearchDestinationUpdate.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleARN, location_name: "RoleARN"))
@@ -578,6 +584,8 @@ module Aws::Firehose
578
584
  SchemaConfiguration.add_member(:version_id, Shapes::ShapeRef.new(shape: NonEmptyStringWithoutWhitespace, location_name: "VersionId"))
579
585
  SchemaConfiguration.struct_class = Types::SchemaConfiguration
580
586
 
587
+ SecurityGroupIdList.member = Shapes::ShapeRef.new(shape: NonEmptyStringWithoutWhitespace)
588
+
581
589
  Serializer.add_member(:parquet_ser_de, Shapes::ShapeRef.new(shape: ParquetSerDe, location_name: "ParquetSerDe"))
582
590
  Serializer.add_member(:orc_ser_de, Shapes::ShapeRef.new(shape: OrcSerDe, location_name: "OrcSerDe"))
583
591
  Serializer.struct_class = Types::Serializer
@@ -635,6 +643,8 @@ module Aws::Firehose
635
643
 
636
644
  StopDeliveryStreamEncryptionOutput.struct_class = Types::StopDeliveryStreamEncryptionOutput
637
645
 
646
+ SubnetIdList.member = Shapes::ShapeRef.new(shape: NonEmptyStringWithoutWhitespace)
647
+
638
648
  Tag.add_member(:key, Shapes::ShapeRef.new(shape: TagKey, required: true, location_name: "Key"))
639
649
  Tag.add_member(:value, Shapes::ShapeRef.new(shape: TagValue, location_name: "Value"))
640
650
  Tag.struct_class = Types::Tag
@@ -667,6 +677,17 @@ module Aws::Firehose
667
677
 
668
678
  UpdateDestinationOutput.struct_class = Types::UpdateDestinationOutput
669
679
 
680
+ VpcConfiguration.add_member(:subnet_ids, Shapes::ShapeRef.new(shape: SubnetIdList, required: true, location_name: "SubnetIds"))
681
+ VpcConfiguration.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleARN, required: true, location_name: "RoleARN"))
682
+ VpcConfiguration.add_member(:security_group_ids, Shapes::ShapeRef.new(shape: SecurityGroupIdList, required: true, location_name: "SecurityGroupIds"))
683
+ VpcConfiguration.struct_class = Types::VpcConfiguration
684
+
685
+ VpcConfigurationDescription.add_member(:subnet_ids, Shapes::ShapeRef.new(shape: SubnetIdList, required: true, location_name: "SubnetIds"))
686
+ VpcConfigurationDescription.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleARN, required: true, location_name: "RoleARN"))
687
+ VpcConfigurationDescription.add_member(:security_group_ids, Shapes::ShapeRef.new(shape: SecurityGroupIdList, required: true, location_name: "SecurityGroupIds"))
688
+ VpcConfigurationDescription.add_member(:vpc_id, Shapes::ShapeRef.new(shape: NonEmptyStringWithoutWhitespace, required: true, location_name: "VpcId"))
689
+ VpcConfigurationDescription.struct_class = Types::VpcConfigurationDescription
690
+
670
691
 
671
692
  # @api private
672
693
  API = Seahorse::Model::Api.new.tap do |api|
@@ -6,6 +6,35 @@
6
6
  # WARNING ABOUT GENERATED CODE
7
7
 
8
8
  module Aws::Firehose
9
+
10
+ # When Firehose returns an error response, the Ruby SDK constructs and raises an error.
11
+ # These errors all extend Aws::Firehose::Errors::ServiceError < {Aws::Errors::ServiceError}
12
+ #
13
+ # You can rescue all Firehose errors using ServiceError:
14
+ #
15
+ # begin
16
+ # # do stuff
17
+ # rescue Aws::Firehose::Errors::ServiceError
18
+ # # rescues all Firehose API errors
19
+ # end
20
+ #
21
+ #
22
+ # ## Request Context
23
+ # ServiceError objects have a {Aws::Errors::ServiceError#context #context} method that returns
24
+ # information about the request that generated the error.
25
+ # See {Seahorse::Client::RequestContext} for more information.
26
+ #
27
+ # ## Error Classes
28
+ # * {ConcurrentModificationException}
29
+ # * {InvalidArgumentException}
30
+ # * {InvalidKMSResourceException}
31
+ # * {LimitExceededException}
32
+ # * {ResourceInUseException}
33
+ # * {ResourceNotFoundException}
34
+ # * {ServiceUnavailableException}
35
+ #
36
+ # Additionally, error classes are dynamically generated for service errors based on the error code
37
+ # if they are not defined above.
9
38
  module Errors
10
39
 
11
40
  extend Aws::Errors::DynamicErrors
@@ -23,7 +52,6 @@ module Aws::Firehose
23
52
  def message
24
53
  @message || @data[:message]
25
54
  end
26
-
27
55
  end
28
56
 
29
57
  class InvalidArgumentException < ServiceError
@@ -39,7 +67,6 @@ module Aws::Firehose
39
67
  def message
40
68
  @message || @data[:message]
41
69
  end
42
-
43
70
  end
44
71
 
45
72
  class InvalidKMSResourceException < ServiceError
@@ -60,7 +87,6 @@ module Aws::Firehose
60
87
  def message
61
88
  @message || @data[:message]
62
89
  end
63
-
64
90
  end
65
91
 
66
92
  class LimitExceededException < ServiceError
@@ -76,7 +102,6 @@ module Aws::Firehose
76
102
  def message
77
103
  @message || @data[:message]
78
104
  end
79
-
80
105
  end
81
106
 
82
107
  class ResourceInUseException < ServiceError
@@ -92,7 +117,6 @@ module Aws::Firehose
92
117
  def message
93
118
  @message || @data[:message]
94
119
  end
95
-
96
120
  end
97
121
 
98
122
  class ResourceNotFoundException < ServiceError
@@ -108,7 +132,6 @@ module Aws::Firehose
108
132
  def message
109
133
  @message || @data[:message]
110
134
  end
111
-
112
135
  end
113
136
 
114
137
  class ServiceUnavailableException < ServiceError
@@ -124,7 +147,6 @@ module Aws::Firehose
124
147
  def message
125
148
  @message || @data[:message]
126
149
  end
127
-
128
150
  end
129
151
 
130
152
  end
@@ -6,6 +6,7 @@
6
6
  # WARNING ABOUT GENERATED CODE
7
7
 
8
8
  module Aws::Firehose
9
+
9
10
  class Resource
10
11
 
11
12
  # @param options ({})
@@ -181,7 +181,7 @@ module Aws::Firehose
181
181
  # size_in_m_bs: 1,
182
182
  # interval_in_seconds: 1,
183
183
  # },
184
- # compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy
184
+ # compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy, HADOOP_SNAPPY
185
185
  # encryption_configuration: {
186
186
  # no_encryption_config: "NoEncryption", # accepts NoEncryption
187
187
  # kms_encryption_config: {
@@ -203,7 +203,7 @@ module Aws::Firehose
203
203
  # size_in_m_bs: 1,
204
204
  # interval_in_seconds: 1,
205
205
  # },
206
- # compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy
206
+ # compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy, HADOOP_SNAPPY
207
207
  # encryption_configuration: {
208
208
  # no_encryption_config: "NoEncryption", # accepts NoEncryption
209
209
  # kms_encryption_config: {
@@ -239,7 +239,7 @@ module Aws::Firehose
239
239
  # size_in_m_bs: 1,
240
240
  # interval_in_seconds: 1,
241
241
  # },
242
- # compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy
242
+ # compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy, HADOOP_SNAPPY
243
243
  # encryption_configuration: {
244
244
  # no_encryption_config: "NoEncryption", # accepts NoEncryption
245
245
  # kms_encryption_config: {
@@ -324,7 +324,7 @@ module Aws::Firehose
324
324
  # size_in_m_bs: 1,
325
325
  # interval_in_seconds: 1,
326
326
  # },
327
- # compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy
327
+ # compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy, HADOOP_SNAPPY
328
328
  # encryption_configuration: {
329
329
  # no_encryption_config: "NoEncryption", # accepts NoEncryption
330
330
  # kms_encryption_config: {
@@ -361,7 +361,7 @@ module Aws::Firehose
361
361
  # size_in_m_bs: 1,
362
362
  # interval_in_seconds: 1,
363
363
  # },
364
- # compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy
364
+ # compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy, HADOOP_SNAPPY
365
365
  # encryption_configuration: {
366
366
  # no_encryption_config: "NoEncryption", # accepts NoEncryption
367
367
  # kms_encryption_config: {
@@ -404,7 +404,7 @@ module Aws::Firehose
404
404
  # size_in_m_bs: 1,
405
405
  # interval_in_seconds: 1,
406
406
  # },
407
- # compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy
407
+ # compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy, HADOOP_SNAPPY
408
408
  # encryption_configuration: {
409
409
  # no_encryption_config: "NoEncryption", # accepts NoEncryption
410
410
  # kms_encryption_config: {
@@ -436,6 +436,11 @@ module Aws::Firehose
436
436
  # log_group_name: "LogGroupName",
437
437
  # log_stream_name: "LogStreamName",
438
438
  # },
439
+ # vpc_configuration: {
440
+ # subnet_ids: ["NonEmptyStringWithoutWhitespace"], # required
441
+ # role_arn: "RoleARN", # required
442
+ # security_group_ids: ["NonEmptyStringWithoutWhitespace"], # required
443
+ # },
439
444
  # },
440
445
  # splunk_destination_configuration: {
441
446
  # hec_endpoint: "HECEndpoint", # required
@@ -455,7 +460,7 @@ module Aws::Firehose
455
460
  # size_in_m_bs: 1,
456
461
  # interval_in_seconds: 1,
457
462
  # },
458
- # compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy
463
+ # compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy, HADOOP_SNAPPY
459
464
  # encryption_configuration: {
460
465
  # no_encryption_config: "NoEncryption", # accepts NoEncryption
461
466
  # kms_encryption_config: {
@@ -658,17 +663,19 @@ module Aws::Firehose
658
663
  #
659
664
  # @!attribute [rw] schema_configuration
660
665
  # Specifies the AWS Glue Data Catalog table that contains the column
661
- # information.
666
+ # information. This parameter is required if `Enabled` is set to true.
662
667
  # @return [Types::SchemaConfiguration]
663
668
  #
664
669
  # @!attribute [rw] input_format_configuration
665
670
  # Specifies the deserializer that you want Kinesis Data Firehose to
666
- # use to convert the format of your data from JSON.
671
+ # use to convert the format of your data from JSON. This parameter is
672
+ # required if `Enabled` is set to true.
667
673
  # @return [Types::InputFormatConfiguration]
668
674
  #
669
675
  # @!attribute [rw] output_format_configuration
670
676
  # Specifies the serializer that you want Kinesis Data Firehose to use
671
677
  # to convert the format of your data to the Parquet or ORC format.
678
+ # This parameter is required if `Enabled` is set to true.
672
679
  # @return [Types::OutputFormatConfiguration]
673
680
  #
674
681
  # @!attribute [rw] enabled
@@ -867,8 +874,8 @@ module Aws::Firehose
867
874
  include Aws::Structure
868
875
  end
869
876
 
870
- # Used to specify the type and Amazon Resource Name (ARN) of the CMK
871
- # needed for Server-Side Encryption (SSE).
877
+ # Specifies the type and Amazon Resource Name (ARN) of the CMK to use
878
+ # for Server-Side Encryption (SSE).
872
879
  #
873
880
  # @note When making an API call, you may pass DeliveryStreamEncryptionConfigurationInput
874
881
  # data as a hash:
@@ -896,14 +903,25 @@ module Aws::Firehose
896
903
  # Firehose manages that grant.
897
904
  #
898
905
  # When you invoke StartDeliveryStreamEncryption to change the CMK for
899
- # a delivery stream that is already encrypted with a customer managed
900
- # CMK, Kinesis Data Firehose schedules the grant it had on the old CMK
901
- # for retirement.
906
+ # a delivery stream that is encrypted with a customer managed CMK,
907
+ # Kinesis Data Firehose schedules the grant it had on the old CMK for
908
+ # retirement.
909
+ #
910
+ # You can use a CMK of type CUSTOMER\_MANAGED\_CMK to encrypt up to
911
+ # 500 delivery streams. If a CreateDeliveryStream or
912
+ # StartDeliveryStreamEncryption operation exceeds this limit, Kinesis
913
+ # Data Firehose throws a `LimitExceededException`.
914
+ #
915
+ # To encrypt your delivery stream, use symmetric CMKs. Kinesis Data
916
+ # Firehose doesn't support asymmetric CMKs. For information about
917
+ # symmetric and asymmetric CMKs, see [About Symmetric and Asymmetric
918
+ # CMKs][3] in the AWS Key Management Service developer guide.
902
919
  #
903
920
  #
904
921
  #
905
922
  # [1]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#master_keys
906
923
  # [2]: https://docs.aws.amazon.com/kms/latest/APIReference/API_CreateGrant.html
924
+ # [3]: https://docs.aws.amazon.com/kms/latest/developerguide/symm-asymm-concepts.html
907
925
  # @return [String]
908
926
  #
909
927
  # @see http://docs.aws.amazon.com/goto/WebAPI/firehose-2015-08-04/DeliveryStreamEncryptionConfigurationInput AWS API Documentation
@@ -1113,7 +1131,7 @@ module Aws::Firehose
1113
1131
  # size_in_m_bs: 1,
1114
1132
  # interval_in_seconds: 1,
1115
1133
  # },
1116
- # compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy
1134
+ # compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy, HADOOP_SNAPPY
1117
1135
  # encryption_configuration: {
1118
1136
  # no_encryption_config: "NoEncryption", # accepts NoEncryption
1119
1137
  # kms_encryption_config: {
@@ -1145,6 +1163,11 @@ module Aws::Firehose
1145
1163
  # log_group_name: "LogGroupName",
1146
1164
  # log_stream_name: "LogStreamName",
1147
1165
  # },
1166
+ # vpc_configuration: {
1167
+ # subnet_ids: ["NonEmptyStringWithoutWhitespace"], # required
1168
+ # role_arn: "RoleARN", # required
1169
+ # security_group_ids: ["NonEmptyStringWithoutWhitespace"], # required
1170
+ # },
1148
1171
  # }
1149
1172
  #
1150
1173
  # @!attribute [rw] role_arn
@@ -1242,6 +1265,10 @@ module Aws::Firehose
1242
1265
  # The Amazon CloudWatch logging options for your delivery stream.
1243
1266
  # @return [Types::CloudWatchLoggingOptions]
1244
1267
  #
1268
+ # @!attribute [rw] vpc_configuration
1269
+ # The details of the VPC of the Amazon ES destination.
1270
+ # @return [Types::VpcConfiguration]
1271
+ #
1245
1272
  # @see http://docs.aws.amazon.com/goto/WebAPI/firehose-2015-08-04/ElasticsearchDestinationConfiguration AWS API Documentation
1246
1273
  #
1247
1274
  class ElasticsearchDestinationConfiguration < Struct.new(
@@ -1256,7 +1283,8 @@ module Aws::Firehose
1256
1283
  :s3_backup_mode,
1257
1284
  :s3_configuration,
1258
1285
  :processing_configuration,
1259
- :cloud_watch_logging_options)
1286
+ :cloud_watch_logging_options,
1287
+ :vpc_configuration)
1260
1288
  include Aws::Structure
1261
1289
  end
1262
1290
 
@@ -1328,6 +1356,10 @@ module Aws::Firehose
1328
1356
  # The Amazon CloudWatch logging options.
1329
1357
  # @return [Types::CloudWatchLoggingOptions]
1330
1358
  #
1359
+ # @!attribute [rw] vpc_configuration_description
1360
+ # The details of the VPC of the Amazon ES destination.
1361
+ # @return [Types::VpcConfigurationDescription]
1362
+ #
1331
1363
  # @see http://docs.aws.amazon.com/goto/WebAPI/firehose-2015-08-04/ElasticsearchDestinationDescription AWS API Documentation
1332
1364
  #
1333
1365
  class ElasticsearchDestinationDescription < Struct.new(
@@ -1342,7 +1374,8 @@ module Aws::Firehose
1342
1374
  :s3_backup_mode,
1343
1375
  :s3_destination_description,
1344
1376
  :processing_configuration,
1345
- :cloud_watch_logging_options)
1377
+ :cloud_watch_logging_options,
1378
+ :vpc_configuration_description)
1346
1379
  include Aws::Structure
1347
1380
  end
1348
1381
 
@@ -1374,7 +1407,7 @@ module Aws::Firehose
1374
1407
  # size_in_m_bs: 1,
1375
1408
  # interval_in_seconds: 1,
1376
1409
  # },
1377
- # compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy
1410
+ # compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy, HADOOP_SNAPPY
1378
1411
  # encryption_configuration: {
1379
1412
  # no_encryption_config: "NoEncryption", # accepts NoEncryption
1380
1413
  # kms_encryption_config: {
@@ -1576,7 +1609,7 @@ module Aws::Firehose
1576
1609
  # size_in_m_bs: 1,
1577
1610
  # interval_in_seconds: 1,
1578
1611
  # },
1579
- # compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy
1612
+ # compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy, HADOOP_SNAPPY
1580
1613
  # encryption_configuration: {
1581
1614
  # no_encryption_config: "NoEncryption", # accepts NoEncryption
1582
1615
  # kms_encryption_config: {
@@ -1612,7 +1645,7 @@ module Aws::Firehose
1612
1645
  # size_in_m_bs: 1,
1613
1646
  # interval_in_seconds: 1,
1614
1647
  # },
1615
- # compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy
1648
+ # compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy, HADOOP_SNAPPY
1616
1649
  # encryption_configuration: {
1617
1650
  # no_encryption_config: "NoEncryption", # accepts NoEncryption
1618
1651
  # kms_encryption_config: {
@@ -1880,7 +1913,7 @@ module Aws::Firehose
1880
1913
  # size_in_m_bs: 1,
1881
1914
  # interval_in_seconds: 1,
1882
1915
  # },
1883
- # compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy
1916
+ # compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy, HADOOP_SNAPPY
1884
1917
  # encryption_configuration: {
1885
1918
  # no_encryption_config: "NoEncryption", # accepts NoEncryption
1886
1919
  # kms_encryption_config: {
@@ -1916,7 +1949,7 @@ module Aws::Firehose
1916
1949
  # size_in_m_bs: 1,
1917
1950
  # interval_in_seconds: 1,
1918
1951
  # },
1919
- # compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy
1952
+ # compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy, HADOOP_SNAPPY
1920
1953
  # encryption_configuration: {
1921
1954
  # no_encryption_config: "NoEncryption", # accepts NoEncryption
1922
1955
  # kms_encryption_config: {
@@ -2131,7 +2164,8 @@ module Aws::Firehose
2131
2164
  end
2132
2165
 
2133
2166
  # Specifies the deserializer you want to use to convert the format of
2134
- # the input data.
2167
+ # the input data. This parameter is required if `Enabled` is set to
2168
+ # true.
2135
2169
  #
2136
2170
  # @note When making an API call, you may pass InputFormatConfiguration
2137
2171
  # data as a hash:
@@ -2585,7 +2619,8 @@ module Aws::Firehose
2585
2619
  end
2586
2620
 
2587
2621
  # Specifies the serializer that you want Kinesis Data Firehose to use to
2588
- # convert the format of your data before it writes it to Amazon S3.
2622
+ # convert the format of your data before it writes it to Amazon S3. This
2623
+ # parameter is required if `Enabled` is set to true.
2589
2624
  #
2590
2625
  # @note When making an API call, you may pass OutputFormatConfiguration
2591
2626
  # data as a hash:
@@ -2961,7 +2996,7 @@ module Aws::Firehose
2961
2996
  # size_in_m_bs: 1,
2962
2997
  # interval_in_seconds: 1,
2963
2998
  # },
2964
- # compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy
2999
+ # compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy, HADOOP_SNAPPY
2965
3000
  # encryption_configuration: {
2966
3001
  # no_encryption_config: "NoEncryption", # accepts NoEncryption
2967
3002
  # kms_encryption_config: {
@@ -2998,7 +3033,7 @@ module Aws::Firehose
2998
3033
  # size_in_m_bs: 1,
2999
3034
  # interval_in_seconds: 1,
3000
3035
  # },
3001
- # compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy
3036
+ # compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy, HADOOP_SNAPPY
3002
3037
  # encryption_configuration: {
3003
3038
  # no_encryption_config: "NoEncryption", # accepts NoEncryption
3004
3039
  # kms_encryption_config: {
@@ -3187,7 +3222,7 @@ module Aws::Firehose
3187
3222
  # size_in_m_bs: 1,
3188
3223
  # interval_in_seconds: 1,
3189
3224
  # },
3190
- # compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy
3225
+ # compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy, HADOOP_SNAPPY
3191
3226
  # encryption_configuration: {
3192
3227
  # no_encryption_config: "NoEncryption", # accepts NoEncryption
3193
3228
  # kms_encryption_config: {
@@ -3224,7 +3259,7 @@ module Aws::Firehose
3224
3259
  # size_in_m_bs: 1,
3225
3260
  # interval_in_seconds: 1,
3226
3261
  # },
3227
- # compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy
3262
+ # compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy, HADOOP_SNAPPY
3228
3263
  # encryption_configuration: {
3229
3264
  # no_encryption_config: "NoEncryption", # accepts NoEncryption
3230
3265
  # kms_encryption_config: {
@@ -3384,7 +3419,7 @@ module Aws::Firehose
3384
3419
  # size_in_m_bs: 1,
3385
3420
  # interval_in_seconds: 1,
3386
3421
  # },
3387
- # compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy
3422
+ # compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy, HADOOP_SNAPPY
3388
3423
  # encryption_configuration: {
3389
3424
  # no_encryption_config: "NoEncryption", # accepts NoEncryption
3390
3425
  # kms_encryption_config: {
@@ -3564,7 +3599,7 @@ module Aws::Firehose
3564
3599
  # size_in_m_bs: 1,
3565
3600
  # interval_in_seconds: 1,
3566
3601
  # },
3567
- # compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy
3602
+ # compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy, HADOOP_SNAPPY
3568
3603
  # encryption_configuration: {
3569
3604
  # no_encryption_config: "NoEncryption", # accepts NoEncryption
3570
3605
  # kms_encryption_config: {
@@ -3656,7 +3691,8 @@ module Aws::Firehose
3656
3691
  end
3657
3692
 
3658
3693
  # Specifies the schema to which you want Kinesis Data Firehose to
3659
- # configure your data before it writes it to Amazon S3.
3694
+ # configure your data before it writes it to Amazon S3. This parameter
3695
+ # is required if `Enabled` is set to true.
3660
3696
  #
3661
3697
  # @note When making an API call, you may pass SchemaConfiguration
3662
3698
  # data as a hash:
@@ -3837,7 +3873,7 @@ module Aws::Firehose
3837
3873
  # size_in_m_bs: 1,
3838
3874
  # interval_in_seconds: 1,
3839
3875
  # },
3840
- # compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy
3876
+ # compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy, HADOOP_SNAPPY
3841
3877
  # encryption_configuration: {
3842
3878
  # no_encryption_config: "NoEncryption", # accepts NoEncryption
3843
3879
  # kms_encryption_config: {
@@ -4022,7 +4058,7 @@ module Aws::Firehose
4022
4058
  # size_in_m_bs: 1,
4023
4059
  # interval_in_seconds: 1,
4024
4060
  # },
4025
- # compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy
4061
+ # compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy, HADOOP_SNAPPY
4026
4062
  # encryption_configuration: {
4027
4063
  # no_encryption_config: "NoEncryption", # accepts NoEncryption
4028
4064
  # kms_encryption_config: {
@@ -4310,7 +4346,7 @@ module Aws::Firehose
4310
4346
  # size_in_m_bs: 1,
4311
4347
  # interval_in_seconds: 1,
4312
4348
  # },
4313
- # compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy
4349
+ # compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy, HADOOP_SNAPPY
4314
4350
  # encryption_configuration: {
4315
4351
  # no_encryption_config: "NoEncryption", # accepts NoEncryption
4316
4352
  # kms_encryption_config: {
@@ -4332,7 +4368,7 @@ module Aws::Firehose
4332
4368
  # size_in_m_bs: 1,
4333
4369
  # interval_in_seconds: 1,
4334
4370
  # },
4335
- # compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy
4371
+ # compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy, HADOOP_SNAPPY
4336
4372
  # encryption_configuration: {
4337
4373
  # no_encryption_config: "NoEncryption", # accepts NoEncryption
4338
4374
  # kms_encryption_config: {
@@ -4368,7 +4404,7 @@ module Aws::Firehose
4368
4404
  # size_in_m_bs: 1,
4369
4405
  # interval_in_seconds: 1,
4370
4406
  # },
4371
- # compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy
4407
+ # compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy, HADOOP_SNAPPY
4372
4408
  # encryption_configuration: {
4373
4409
  # no_encryption_config: "NoEncryption", # accepts NoEncryption
4374
4410
  # kms_encryption_config: {
@@ -4453,7 +4489,7 @@ module Aws::Firehose
4453
4489
  # size_in_m_bs: 1,
4454
4490
  # interval_in_seconds: 1,
4455
4491
  # },
4456
- # compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy
4492
+ # compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy, HADOOP_SNAPPY
4457
4493
  # encryption_configuration: {
4458
4494
  # no_encryption_config: "NoEncryption", # accepts NoEncryption
4459
4495
  # kms_encryption_config: {
@@ -4490,7 +4526,7 @@ module Aws::Firehose
4490
4526
  # size_in_m_bs: 1,
4491
4527
  # interval_in_seconds: 1,
4492
4528
  # },
4493
- # compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy
4529
+ # compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy, HADOOP_SNAPPY
4494
4530
  # encryption_configuration: {
4495
4531
  # no_encryption_config: "NoEncryption", # accepts NoEncryption
4496
4532
  # kms_encryption_config: {
@@ -4532,7 +4568,7 @@ module Aws::Firehose
4532
4568
  # size_in_m_bs: 1,
4533
4569
  # interval_in_seconds: 1,
4534
4570
  # },
4535
- # compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy
4571
+ # compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy, HADOOP_SNAPPY
4536
4572
  # encryption_configuration: {
4537
4573
  # no_encryption_config: "NoEncryption", # accepts NoEncryption
4538
4574
  # kms_encryption_config: {
@@ -4583,7 +4619,7 @@ module Aws::Firehose
4583
4619
  # size_in_m_bs: 1,
4584
4620
  # interval_in_seconds: 1,
4585
4621
  # },
4586
- # compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy
4622
+ # compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy, HADOOP_SNAPPY
4587
4623
  # encryption_configuration: {
4588
4624
  # no_encryption_config: "NoEncryption", # accepts NoEncryption
4589
4625
  # kms_encryption_config: {
@@ -4674,5 +4710,107 @@ module Aws::Firehose
4674
4710
  #
4675
4711
  class UpdateDestinationOutput < Aws::EmptyStructure; end
4676
4712
 
4713
+ # The details of the VPC of the Amazon ES destination.
4714
+ #
4715
+ # @note When making an API call, you may pass VpcConfiguration
4716
+ # data as a hash:
4717
+ #
4718
+ # {
4719
+ # subnet_ids: ["NonEmptyStringWithoutWhitespace"], # required
4720
+ # role_arn: "RoleARN", # required
4721
+ # security_group_ids: ["NonEmptyStringWithoutWhitespace"], # required
4722
+ # }
4723
+ #
4724
+ # @!attribute [rw] subnet_ids
4725
+ # The IDs of the subnets that you want Kinesis Data Firehose to use to
4726
+ # create ENIs in the VPC of the Amazon ES destination. Make sure that
4727
+ # the routing tables and inbound and outbound rules allow traffic to
4728
+ # flow from the subnets whose IDs are specified here to the subnets
4729
+ # that have the destination Amazon ES endpoints. Kinesis Data Firehose
4730
+ # creates at least one ENI in each of the subnets that are specified
4731
+ # here. Do not delete or modify these ENIs.
4732
+ #
4733
+ # The number of ENIs that Kinesis Data Firehose creates in the subnets
4734
+ # specified here scales up and down automatically based on throughput.
4735
+ # To enable Kinesis Data Firehose to scale up the number of ENIs to
4736
+ # match throughput, ensure that you have sufficient quota. To help you
4737
+ # calculate the quota you need, assume that Kinesis Data Firehose can
4738
+ # create up to three ENIs for this delivery stream for each of the
4739
+ # subnets specified here. For more information about ENI quota, see
4740
+ # [Network Interfaces ][1] in the Amazon VPC Quotas topic.
4741
+ #
4742
+ #
4743
+ #
4744
+ # [1]: https://docs.aws.amazon.com/vpc/latest/userguide/amazon-vpc-limits.html#vpc-limits-enis
4745
+ # @return [Array<String>]
4746
+ #
4747
+ # @!attribute [rw] role_arn
4748
+ # The ARN of the IAM role that you want the delivery stream to use to
4749
+ # create endpoints in the destination VPC.
4750
+ # @return [String]
4751
+ #
4752
+ # @!attribute [rw] security_group_ids
4753
+ # The IDs of the security groups that you want Kinesis Data Firehose
4754
+ # to use when it creates ENIs in the VPC of the Amazon ES destination.
4755
+ # @return [Array<String>]
4756
+ #
4757
+ # @see http://docs.aws.amazon.com/goto/WebAPI/firehose-2015-08-04/VpcConfiguration AWS API Documentation
4758
+ #
4759
+ class VpcConfiguration < Struct.new(
4760
+ :subnet_ids,
4761
+ :role_arn,
4762
+ :security_group_ids)
4763
+ include Aws::Structure
4764
+ end
4765
+
4766
+ # The details of the VPC of the Amazon ES destination.
4767
+ #
4768
+ # @!attribute [rw] subnet_ids
4769
+ # The IDs of the subnets that Kinesis Data Firehose uses to create
4770
+ # ENIs in the VPC of the Amazon ES destination. Make sure that the
4771
+ # routing tables and inbound and outbound rules allow traffic to flow
4772
+ # from the subnets whose IDs are specified here to the subnets that
4773
+ # have the destination Amazon ES endpoints. Kinesis Data Firehose
4774
+ # creates at least one ENI in each of the subnets that are specified
4775
+ # here. Do not delete or modify these ENIs.
4776
+ #
4777
+ # The number of ENIs that Kinesis Data Firehose creates in the subnets
4778
+ # specified here scales up and down automatically based on throughput.
4779
+ # To enable Kinesis Data Firehose to scale up the number of ENIs to
4780
+ # match throughput, ensure that you have sufficient quota. To help you
4781
+ # calculate the quota you need, assume that Kinesis Data Firehose can
4782
+ # create up to three ENIs for this delivery stream for each of the
4783
+ # subnets specified here. For more information about ENI quota, see
4784
+ # [Network Interfaces ][1] in the Amazon VPC Quotas topic.
4785
+ #
4786
+ #
4787
+ #
4788
+ # [1]: https://docs.aws.amazon.com/vpc/latest/userguide/amazon-vpc-limits.html#vpc-limits-enis
4789
+ # @return [Array<String>]
4790
+ #
4791
+ # @!attribute [rw] role_arn
4792
+ # The ARN of the IAM role that you want the delivery stream uses to
4793
+ # create endpoints in the destination VPC.
4794
+ # @return [String]
4795
+ #
4796
+ # @!attribute [rw] security_group_ids
4797
+ # The IDs of the security groups that Kinesis Data Firehose uses when
4798
+ # it creates ENIs in the VPC of the Amazon ES destination.
4799
+ # @return [Array<String>]
4800
+ #
4801
+ # @!attribute [rw] vpc_id
4802
+ # The ID of the Amazon ES destination's VPC.
4803
+ # @return [String]
4804
+ #
4805
+ # @see http://docs.aws.amazon.com/goto/WebAPI/firehose-2015-08-04/VpcConfigurationDescription AWS API Documentation
4806
+ #
4807
+ class VpcConfigurationDescription < Struct.new(
4808
+ :subnet_ids,
4809
+ :role_arn,
4810
+ :security_group_ids,
4811
+ :vpc_id)
4812
+ include Aws::Structure
4813
+ end
4814
+
4677
4815
  end
4678
4816
  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.24.0
4
+ version: 1.29.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-11-20 00:00:00.000000000 Z
11
+ date: 2020-06-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.71.0
22
+ version: 3.99.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.71.0
32
+ version: 3.99.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement
@@ -81,7 +81,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
81
81
  version: '0'
82
82
  requirements: []
83
83
  rubyforge_project:
84
- rubygems_version: 2.5.2.3
84
+ rubygems_version: 2.7.6.2
85
85
  signing_key:
86
86
  specification_version: 4
87
87
  summary: AWS SDK for Ruby - Firehose