aws-sdk-firehose 1.25.0 → 1.26.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +5 -5
- data/lib/aws-sdk-firehose.rb +1 -1
- data/lib/aws-sdk-firehose/client.rb +66 -48
- data/lib/aws-sdk-firehose/client_api.rb +21 -0
- data/lib/aws-sdk-firehose/resource.rb +1 -7
- data/lib/aws-sdk-firehose/types.rb +178 -40
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 3e1879c499cb6a35e6e4c314caff7bdbdf4e747a1ecf9a6d91417fef448876dd
|
4
|
+
data.tar.gz: d095eef9bf81ed5906d8f2ec9ef45a4427f6d6c584bf34cc8e362b43a52f6429
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 173fb21f5b56d0e8dbd6aa5f6eecfec599a3f47187395ee59313cc5f59e7ce160cbeeea2ba03c3b8baa7fa2b54229d7a1d876038dc3df879babf476869122fe7
|
7
|
+
data.tar.gz: edc7657513b3311524cb2133be08a27c815247ca2a2930e81314d12d7399cae7e5f2bfd45db5901292112040477e19cec0f4d7e6d3641e8acf11a8bb36a43e90
|
data/lib/aws-sdk-firehose.rb
CHANGED
@@ -32,11 +32,11 @@ Aws::Plugins::GlobalConfiguration.add_identifier(:firehose)
|
|
32
32
|
module Aws::Firehose
|
33
33
|
# An API client for Firehose. To construct a client, you need to configure a `:region` and `:credentials`.
|
34
34
|
#
|
35
|
-
#
|
36
|
-
#
|
37
|
-
#
|
38
|
-
#
|
39
|
-
#
|
35
|
+
# client = Aws::Firehose::Client.new(
|
36
|
+
# region: region_name,
|
37
|
+
# credentials: credentials,
|
38
|
+
# # ...
|
39
|
+
# )
|
40
40
|
#
|
41
41
|
# For details on configuring region and credentials see
|
42
42
|
# the [developer guide](/sdk-for-ruby/v3/developer-guide/setup-config.html).
|
@@ -229,15 +229,19 @@ module Aws::Firehose
|
|
229
229
|
#
|
230
230
|
# @option options [String] :retry_mode ("legacy")
|
231
231
|
# Specifies which retry algorithm to use. Values are:
|
232
|
-
#
|
233
|
-
#
|
234
|
-
#
|
235
|
-
#
|
236
|
-
#
|
237
|
-
#
|
238
|
-
#
|
239
|
-
#
|
240
|
-
#
|
232
|
+
#
|
233
|
+
# * `legacy` - The pre-existing retry behavior. This is default value if
|
234
|
+
# no retry mode is provided.
|
235
|
+
#
|
236
|
+
# * `standard` - A standardized set of retry rules across the AWS SDKs.
|
237
|
+
# This includes support for retry quotas, which limit the number of
|
238
|
+
# unsuccessful retries a client can make.
|
239
|
+
#
|
240
|
+
# * `adaptive` - An experimental retry mode that includes all the
|
241
|
+
# functionality of `standard` mode along with automatic client side
|
242
|
+
# throttling. This is a provisional mode that may change behavior
|
243
|
+
# in the future.
|
244
|
+
#
|
241
245
|
#
|
242
246
|
# @option options [String] :secret_access_key
|
243
247
|
#
|
@@ -275,8 +279,7 @@ module Aws::Firehose
|
|
275
279
|
#
|
276
280
|
# @option options [Integer] :http_read_timeout (60) The default
|
277
281
|
# 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}.
|
282
|
+
# safely be set per-request on the session.
|
280
283
|
#
|
281
284
|
# @option options [Float] :http_idle_timeout (5) The number of
|
282
285
|
# seconds a connection is allowed to sit idle before it is
|
@@ -288,7 +291,7 @@ module Aws::Firehose
|
|
288
291
|
# request body. This option has no effect unless the request has
|
289
292
|
# "Expect" header set to "100-continue". Defaults to `nil` which
|
290
293
|
# disables this behaviour. This value can safely be set per
|
291
|
-
# request on the session
|
294
|
+
# request on the session.
|
292
295
|
#
|
293
296
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
294
297
|
# HTTP debug output will be sent to the `:logger`.
|
@@ -478,7 +481,7 @@ module Aws::Firehose
|
|
478
481
|
# size_in_m_bs: 1,
|
479
482
|
# interval_in_seconds: 1,
|
480
483
|
# },
|
481
|
-
# compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy
|
484
|
+
# compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy, HADOOP_SNAPPY
|
482
485
|
# encryption_configuration: {
|
483
486
|
# no_encryption_config: "NoEncryption", # accepts NoEncryption
|
484
487
|
# kms_encryption_config: {
|
@@ -500,7 +503,7 @@ module Aws::Firehose
|
|
500
503
|
# size_in_m_bs: 1,
|
501
504
|
# interval_in_seconds: 1,
|
502
505
|
# },
|
503
|
-
# compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy
|
506
|
+
# compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy, HADOOP_SNAPPY
|
504
507
|
# encryption_configuration: {
|
505
508
|
# no_encryption_config: "NoEncryption", # accepts NoEncryption
|
506
509
|
# kms_encryption_config: {
|
@@ -536,7 +539,7 @@ module Aws::Firehose
|
|
536
539
|
# size_in_m_bs: 1,
|
537
540
|
# interval_in_seconds: 1,
|
538
541
|
# },
|
539
|
-
# compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy
|
542
|
+
# compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy, HADOOP_SNAPPY
|
540
543
|
# encryption_configuration: {
|
541
544
|
# no_encryption_config: "NoEncryption", # accepts NoEncryption
|
542
545
|
# kms_encryption_config: {
|
@@ -621,7 +624,7 @@ module Aws::Firehose
|
|
621
624
|
# size_in_m_bs: 1,
|
622
625
|
# interval_in_seconds: 1,
|
623
626
|
# },
|
624
|
-
# compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy
|
627
|
+
# compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy, HADOOP_SNAPPY
|
625
628
|
# encryption_configuration: {
|
626
629
|
# no_encryption_config: "NoEncryption", # accepts NoEncryption
|
627
630
|
# kms_encryption_config: {
|
@@ -658,7 +661,7 @@ module Aws::Firehose
|
|
658
661
|
# size_in_m_bs: 1,
|
659
662
|
# interval_in_seconds: 1,
|
660
663
|
# },
|
661
|
-
# compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy
|
664
|
+
# compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy, HADOOP_SNAPPY
|
662
665
|
# encryption_configuration: {
|
663
666
|
# no_encryption_config: "NoEncryption", # accepts NoEncryption
|
664
667
|
# kms_encryption_config: {
|
@@ -701,7 +704,7 @@ module Aws::Firehose
|
|
701
704
|
# size_in_m_bs: 1,
|
702
705
|
# interval_in_seconds: 1,
|
703
706
|
# },
|
704
|
-
# compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy
|
707
|
+
# compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy, HADOOP_SNAPPY
|
705
708
|
# encryption_configuration: {
|
706
709
|
# no_encryption_config: "NoEncryption", # accepts NoEncryption
|
707
710
|
# kms_encryption_config: {
|
@@ -733,6 +736,11 @@ module Aws::Firehose
|
|
733
736
|
# log_group_name: "LogGroupName",
|
734
737
|
# log_stream_name: "LogStreamName",
|
735
738
|
# },
|
739
|
+
# vpc_configuration: {
|
740
|
+
# subnet_ids: ["NonEmptyStringWithoutWhitespace"], # required
|
741
|
+
# role_arn: "RoleARN", # required
|
742
|
+
# security_group_ids: ["NonEmptyStringWithoutWhitespace"], # required
|
743
|
+
# },
|
736
744
|
# },
|
737
745
|
# splunk_destination_configuration: {
|
738
746
|
# hec_endpoint: "HECEndpoint", # required
|
@@ -752,7 +760,7 @@ module Aws::Firehose
|
|
752
760
|
# size_in_m_bs: 1,
|
753
761
|
# interval_in_seconds: 1,
|
754
762
|
# },
|
755
|
-
# compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy
|
763
|
+
# compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy, HADOOP_SNAPPY
|
756
764
|
# encryption_configuration: {
|
757
765
|
# no_encryption_config: "NoEncryption", # accepts NoEncryption
|
758
766
|
# kms_encryption_config: {
|
@@ -899,12 +907,12 @@ module Aws::Firehose
|
|
899
907
|
# resp.delivery_stream_description.delivery_stream_name #=> String
|
900
908
|
# resp.delivery_stream_description.delivery_stream_arn #=> String
|
901
909
|
# 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"
|
910
|
+
# 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
911
|
# resp.delivery_stream_description.failure_description.details #=> String
|
904
912
|
# resp.delivery_stream_description.delivery_stream_encryption_configuration.key_arn #=> String
|
905
913
|
# resp.delivery_stream_description.delivery_stream_encryption_configuration.key_type #=> String, one of "AWS_OWNED_CMK", "CUSTOMER_MANAGED_CMK"
|
906
914
|
# 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"
|
915
|
+
# 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
916
|
# resp.delivery_stream_description.delivery_stream_encryption_configuration.failure_description.details #=> String
|
909
917
|
# resp.delivery_stream_description.delivery_stream_type #=> String, one of "DirectPut", "KinesisStreamAsSource"
|
910
918
|
# resp.delivery_stream_description.version_id #=> String
|
@@ -921,7 +929,7 @@ module Aws::Firehose
|
|
921
929
|
# resp.delivery_stream_description.destinations[0].s3_destination_description.error_output_prefix #=> String
|
922
930
|
# resp.delivery_stream_description.destinations[0].s3_destination_description.buffering_hints.size_in_m_bs #=> Integer
|
923
931
|
# 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"
|
932
|
+
# resp.delivery_stream_description.destinations[0].s3_destination_description.compression_format #=> String, one of "UNCOMPRESSED", "GZIP", "ZIP", "Snappy", "HADOOP_SNAPPY"
|
925
933
|
# resp.delivery_stream_description.destinations[0].s3_destination_description.encryption_configuration.no_encryption_config #=> String, one of "NoEncryption"
|
926
934
|
# resp.delivery_stream_description.destinations[0].s3_destination_description.encryption_configuration.kms_encryption_config.awskms_key_arn #=> String
|
927
935
|
# resp.delivery_stream_description.destinations[0].s3_destination_description.cloud_watch_logging_options.enabled #=> Boolean
|
@@ -933,7 +941,7 @@ module Aws::Firehose
|
|
933
941
|
# resp.delivery_stream_description.destinations[0].extended_s3_destination_description.error_output_prefix #=> String
|
934
942
|
# resp.delivery_stream_description.destinations[0].extended_s3_destination_description.buffering_hints.size_in_m_bs #=> Integer
|
935
943
|
# 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"
|
944
|
+
# resp.delivery_stream_description.destinations[0].extended_s3_destination_description.compression_format #=> String, one of "UNCOMPRESSED", "GZIP", "ZIP", "Snappy", "HADOOP_SNAPPY"
|
937
945
|
# resp.delivery_stream_description.destinations[0].extended_s3_destination_description.encryption_configuration.no_encryption_config #=> String, one of "NoEncryption"
|
938
946
|
# resp.delivery_stream_description.destinations[0].extended_s3_destination_description.encryption_configuration.kms_encryption_config.awskms_key_arn #=> String
|
939
947
|
# resp.delivery_stream_description.destinations[0].extended_s3_destination_description.cloud_watch_logging_options.enabled #=> Boolean
|
@@ -952,7 +960,7 @@ module Aws::Firehose
|
|
952
960
|
# resp.delivery_stream_description.destinations[0].extended_s3_destination_description.s3_backup_description.error_output_prefix #=> String
|
953
961
|
# resp.delivery_stream_description.destinations[0].extended_s3_destination_description.s3_backup_description.buffering_hints.size_in_m_bs #=> Integer
|
954
962
|
# 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"
|
963
|
+
# 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
964
|
# resp.delivery_stream_description.destinations[0].extended_s3_destination_description.s3_backup_description.encryption_configuration.no_encryption_config #=> String, one of "NoEncryption"
|
957
965
|
# resp.delivery_stream_description.destinations[0].extended_s3_destination_description.s3_backup_description.encryption_configuration.kms_encryption_config.awskms_key_arn #=> String
|
958
966
|
# resp.delivery_stream_description.destinations[0].extended_s3_destination_description.s3_backup_description.cloud_watch_logging_options.enabled #=> Boolean
|
@@ -1001,7 +1009,7 @@ module Aws::Firehose
|
|
1001
1009
|
# resp.delivery_stream_description.destinations[0].redshift_destination_description.s3_destination_description.error_output_prefix #=> String
|
1002
1010
|
# resp.delivery_stream_description.destinations[0].redshift_destination_description.s3_destination_description.buffering_hints.size_in_m_bs #=> Integer
|
1003
1011
|
# 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"
|
1012
|
+
# resp.delivery_stream_description.destinations[0].redshift_destination_description.s3_destination_description.compression_format #=> String, one of "UNCOMPRESSED", "GZIP", "ZIP", "Snappy", "HADOOP_SNAPPY"
|
1005
1013
|
# resp.delivery_stream_description.destinations[0].redshift_destination_description.s3_destination_description.encryption_configuration.no_encryption_config #=> String, one of "NoEncryption"
|
1006
1014
|
# resp.delivery_stream_description.destinations[0].redshift_destination_description.s3_destination_description.encryption_configuration.kms_encryption_config.awskms_key_arn #=> String
|
1007
1015
|
# resp.delivery_stream_description.destinations[0].redshift_destination_description.s3_destination_description.cloud_watch_logging_options.enabled #=> Boolean
|
@@ -1020,7 +1028,7 @@ module Aws::Firehose
|
|
1020
1028
|
# resp.delivery_stream_description.destinations[0].redshift_destination_description.s3_backup_description.error_output_prefix #=> String
|
1021
1029
|
# resp.delivery_stream_description.destinations[0].redshift_destination_description.s3_backup_description.buffering_hints.size_in_m_bs #=> Integer
|
1022
1030
|
# 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"
|
1031
|
+
# resp.delivery_stream_description.destinations[0].redshift_destination_description.s3_backup_description.compression_format #=> String, one of "UNCOMPRESSED", "GZIP", "ZIP", "Snappy", "HADOOP_SNAPPY"
|
1024
1032
|
# resp.delivery_stream_description.destinations[0].redshift_destination_description.s3_backup_description.encryption_configuration.no_encryption_config #=> String, one of "NoEncryption"
|
1025
1033
|
# resp.delivery_stream_description.destinations[0].redshift_destination_description.s3_backup_description.encryption_configuration.kms_encryption_config.awskms_key_arn #=> String
|
1026
1034
|
# resp.delivery_stream_description.destinations[0].redshift_destination_description.s3_backup_description.cloud_watch_logging_options.enabled #=> Boolean
|
@@ -1045,7 +1053,7 @@ module Aws::Firehose
|
|
1045
1053
|
# resp.delivery_stream_description.destinations[0].elasticsearch_destination_description.s3_destination_description.error_output_prefix #=> String
|
1046
1054
|
# resp.delivery_stream_description.destinations[0].elasticsearch_destination_description.s3_destination_description.buffering_hints.size_in_m_bs #=> Integer
|
1047
1055
|
# 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"
|
1056
|
+
# resp.delivery_stream_description.destinations[0].elasticsearch_destination_description.s3_destination_description.compression_format #=> String, one of "UNCOMPRESSED", "GZIP", "ZIP", "Snappy", "HADOOP_SNAPPY"
|
1049
1057
|
# resp.delivery_stream_description.destinations[0].elasticsearch_destination_description.s3_destination_description.encryption_configuration.no_encryption_config #=> String, one of "NoEncryption"
|
1050
1058
|
# resp.delivery_stream_description.destinations[0].elasticsearch_destination_description.s3_destination_description.encryption_configuration.kms_encryption_config.awskms_key_arn #=> String
|
1051
1059
|
# resp.delivery_stream_description.destinations[0].elasticsearch_destination_description.s3_destination_description.cloud_watch_logging_options.enabled #=> Boolean
|
@@ -1060,6 +1068,12 @@ module Aws::Firehose
|
|
1060
1068
|
# resp.delivery_stream_description.destinations[0].elasticsearch_destination_description.cloud_watch_logging_options.enabled #=> Boolean
|
1061
1069
|
# resp.delivery_stream_description.destinations[0].elasticsearch_destination_description.cloud_watch_logging_options.log_group_name #=> String
|
1062
1070
|
# resp.delivery_stream_description.destinations[0].elasticsearch_destination_description.cloud_watch_logging_options.log_stream_name #=> String
|
1071
|
+
# resp.delivery_stream_description.destinations[0].elasticsearch_destination_description.vpc_configuration_description.subnet_ids #=> Array
|
1072
|
+
# resp.delivery_stream_description.destinations[0].elasticsearch_destination_description.vpc_configuration_description.subnet_ids[0] #=> String
|
1073
|
+
# resp.delivery_stream_description.destinations[0].elasticsearch_destination_description.vpc_configuration_description.role_arn #=> String
|
1074
|
+
# resp.delivery_stream_description.destinations[0].elasticsearch_destination_description.vpc_configuration_description.security_group_ids #=> Array
|
1075
|
+
# resp.delivery_stream_description.destinations[0].elasticsearch_destination_description.vpc_configuration_description.security_group_ids[0] #=> String
|
1076
|
+
# resp.delivery_stream_description.destinations[0].elasticsearch_destination_description.vpc_configuration_description.vpc_id #=> String
|
1063
1077
|
# resp.delivery_stream_description.destinations[0].splunk_destination_description.hec_endpoint #=> String
|
1064
1078
|
# resp.delivery_stream_description.destinations[0].splunk_destination_description.hec_endpoint_type #=> String, one of "Raw", "Event"
|
1065
1079
|
# resp.delivery_stream_description.destinations[0].splunk_destination_description.hec_token #=> String
|
@@ -1072,7 +1086,7 @@ module Aws::Firehose
|
|
1072
1086
|
# resp.delivery_stream_description.destinations[0].splunk_destination_description.s3_destination_description.error_output_prefix #=> String
|
1073
1087
|
# resp.delivery_stream_description.destinations[0].splunk_destination_description.s3_destination_description.buffering_hints.size_in_m_bs #=> Integer
|
1074
1088
|
# 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"
|
1089
|
+
# resp.delivery_stream_description.destinations[0].splunk_destination_description.s3_destination_description.compression_format #=> String, one of "UNCOMPRESSED", "GZIP", "ZIP", "Snappy", "HADOOP_SNAPPY"
|
1076
1090
|
# resp.delivery_stream_description.destinations[0].splunk_destination_description.s3_destination_description.encryption_configuration.no_encryption_config #=> String, one of "NoEncryption"
|
1077
1091
|
# resp.delivery_stream_description.destinations[0].splunk_destination_description.s3_destination_description.encryption_configuration.kms_encryption_config.awskms_key_arn #=> String
|
1078
1092
|
# resp.delivery_stream_description.destinations[0].splunk_destination_description.s3_destination_description.cloud_watch_logging_options.enabled #=> Boolean
|
@@ -1422,10 +1436,12 @@ module Aws::Firehose
|
|
1422
1436
|
#
|
1423
1437
|
# Even if encryption is currently enabled for a delivery stream, you can
|
1424
1438
|
# still invoke this operation on it to change the ARN of the CMK or both
|
1425
|
-
# its type and ARN.
|
1426
|
-
#
|
1427
|
-
#
|
1428
|
-
#
|
1439
|
+
# its type and ARN. If you invoke this method to change the CMK, and the
|
1440
|
+
# old CMK is of type `CUSTOMER_MANAGED_CMK`, Kinesis Data Firehose
|
1441
|
+
# schedules the grant it had on the old CMK for retirement. If the new
|
1442
|
+
# CMK is of type `CUSTOMER_MANAGED_CMK`, Kinesis Data Firehose creates a
|
1443
|
+
# grant that enables it to use the new CMK to encrypt and decrypt data
|
1444
|
+
# and to manage the grant.
|
1429
1445
|
#
|
1430
1446
|
# If a delivery stream already has encryption enabled and then you
|
1431
1447
|
# invoke this operation to change the ARN of the CMK or both its type
|
@@ -1434,10 +1450,12 @@ module Aws::Firehose
|
|
1434
1450
|
# enabled with the old CMK.
|
1435
1451
|
#
|
1436
1452
|
# If the encryption status of your delivery stream is `ENABLING_FAILED`,
|
1437
|
-
# you can invoke this operation again.
|
1453
|
+
# you can invoke this operation again with a valid CMK. The CMK must be
|
1454
|
+
# enabled and the key policy mustn't explicitly deny the permission for
|
1455
|
+
# Kinesis Data Firehose to invoke KMS encrypt and decrypt operations.
|
1438
1456
|
#
|
1439
|
-
# You can
|
1440
|
-
# its source.
|
1457
|
+
# You can enable SSE for a delivery stream only if it's a delivery
|
1458
|
+
# stream that uses `DirectPut` as its source.
|
1441
1459
|
#
|
1442
1460
|
# The `StartDeliveryStreamEncryption` and `StopDeliveryStreamEncryption`
|
1443
1461
|
# operations have a combined limit of 25 calls per delivery stream per
|
@@ -1688,7 +1706,7 @@ module Aws::Firehose
|
|
1688
1706
|
# size_in_m_bs: 1,
|
1689
1707
|
# interval_in_seconds: 1,
|
1690
1708
|
# },
|
1691
|
-
# compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy
|
1709
|
+
# compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy, HADOOP_SNAPPY
|
1692
1710
|
# encryption_configuration: {
|
1693
1711
|
# no_encryption_config: "NoEncryption", # accepts NoEncryption
|
1694
1712
|
# kms_encryption_config: {
|
@@ -1710,7 +1728,7 @@ module Aws::Firehose
|
|
1710
1728
|
# size_in_m_bs: 1,
|
1711
1729
|
# interval_in_seconds: 1,
|
1712
1730
|
# },
|
1713
|
-
# compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy
|
1731
|
+
# compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy, HADOOP_SNAPPY
|
1714
1732
|
# encryption_configuration: {
|
1715
1733
|
# no_encryption_config: "NoEncryption", # accepts NoEncryption
|
1716
1734
|
# kms_encryption_config: {
|
@@ -1746,7 +1764,7 @@ module Aws::Firehose
|
|
1746
1764
|
# size_in_m_bs: 1,
|
1747
1765
|
# interval_in_seconds: 1,
|
1748
1766
|
# },
|
1749
|
-
# compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy
|
1767
|
+
# compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy, HADOOP_SNAPPY
|
1750
1768
|
# encryption_configuration: {
|
1751
1769
|
# no_encryption_config: "NoEncryption", # accepts NoEncryption
|
1752
1770
|
# kms_encryption_config: {
|
@@ -1831,7 +1849,7 @@ module Aws::Firehose
|
|
1831
1849
|
# size_in_m_bs: 1,
|
1832
1850
|
# interval_in_seconds: 1,
|
1833
1851
|
# },
|
1834
|
-
# compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy
|
1852
|
+
# compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy, HADOOP_SNAPPY
|
1835
1853
|
# encryption_configuration: {
|
1836
1854
|
# no_encryption_config: "NoEncryption", # accepts NoEncryption
|
1837
1855
|
# kms_encryption_config: {
|
@@ -1868,7 +1886,7 @@ module Aws::Firehose
|
|
1868
1886
|
# size_in_m_bs: 1,
|
1869
1887
|
# interval_in_seconds: 1,
|
1870
1888
|
# },
|
1871
|
-
# compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy
|
1889
|
+
# compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy, HADOOP_SNAPPY
|
1872
1890
|
# encryption_configuration: {
|
1873
1891
|
# no_encryption_config: "NoEncryption", # accepts NoEncryption
|
1874
1892
|
# kms_encryption_config: {
|
@@ -1910,7 +1928,7 @@ module Aws::Firehose
|
|
1910
1928
|
# size_in_m_bs: 1,
|
1911
1929
|
# interval_in_seconds: 1,
|
1912
1930
|
# },
|
1913
|
-
# compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy
|
1931
|
+
# compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy, HADOOP_SNAPPY
|
1914
1932
|
# encryption_configuration: {
|
1915
1933
|
# no_encryption_config: "NoEncryption", # accepts NoEncryption
|
1916
1934
|
# kms_encryption_config: {
|
@@ -1961,7 +1979,7 @@ module Aws::Firehose
|
|
1961
1979
|
# size_in_m_bs: 1,
|
1962
1980
|
# interval_in_seconds: 1,
|
1963
1981
|
# },
|
1964
|
-
# compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy
|
1982
|
+
# compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy, HADOOP_SNAPPY
|
1965
1983
|
# encryption_configuration: {
|
1966
1984
|
# no_encryption_config: "NoEncryption", # accepts NoEncryption
|
1967
1985
|
# kms_encryption_config: {
|
@@ -2018,7 +2036,7 @@ module Aws::Firehose
|
|
2018
2036
|
params: params,
|
2019
2037
|
config: config)
|
2020
2038
|
context[:gem_name] = 'aws-sdk-firehose'
|
2021
|
-
context[:gem_version] = '1.
|
2039
|
+
context[:gem_version] = '1.26.0'
|
2022
2040
|
Seahorse::Client::Request.new(handlers, context)
|
2023
2041
|
end
|
2024
2042
|
|
@@ -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,13 +6,7 @@
|
|
6
6
|
# WARNING ABOUT GENERATED CODE
|
7
7
|
|
8
8
|
module Aws::Firehose
|
9
|
-
|
10
|
-
# To create a resource object:
|
11
|
-
# resource = Aws::Firehose::Resource.new(region: 'us-west-2')
|
12
|
-
# You can supply a client object with custom configuration that will be used for all resource operations.
|
13
|
-
# If you do not pass +:client+, a default client will be constructed.
|
14
|
-
# client = Aws::Firehose::Client.new(region: 'us-west-2')
|
15
|
-
# resource = Aws::Firehose::Resource.new(client: client)
|
9
|
+
|
16
10
|
class Resource
|
17
11
|
|
18
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
|
-
#
|
871
|
-
#
|
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
|
900
|
-
#
|
901
|
-
#
|
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.
|
4
|
+
version: 1.26.0
|
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: 2020-
|
11
|
+
date: 2020-04-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -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.
|
84
|
+
rubygems_version: 2.7.6.2
|
85
85
|
signing_key:
|
86
86
|
specification_version: 4
|
87
87
|
summary: AWS SDK for Ruby - Firehose
|