aws-sdk-firehose 1.29.1 → 1.34.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/aws-sdk-firehose.rb +5 -2
- data/lib/aws-sdk-firehose/client.rb +198 -13
- data/lib/aws-sdk-firehose/client_api.rb +84 -0
- data/lib/aws-sdk-firehose/customizations.rb +1 -0
- data/lib/aws-sdk-firehose/errors.rb +2 -0
- data/lib/aws-sdk-firehose/resource.rb +2 -0
- data/lib/aws-sdk-firehose/types.rb +879 -21
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 553f87ee335b9260308e7f53eb4900e72182e88503dbea0da3fa5f6edcce8fbf
|
4
|
+
data.tar.gz: 41911279252a62abeb1a8339169299defc594c654d5b02447e395524c0143494
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: de11f4a85507a58cb897b7cc3eb81ba51ae1113bdb73a280ae101d0818baf44c821765357839afeb2dcc79401086f3b56c1261a4ad3b3b0611c3ab9ea33d0d43
|
7
|
+
data.tar.gz: 1f5a521c6273193fa17f938d7521c1cdd93058da931d35d3e4aacd72f87b975244bfe8339328fb17d64cf4cab85d55cc9bca65ac8ed86611d1ef9ce5daf308dd
|
data/lib/aws-sdk-firehose.rb
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -5,6 +7,7 @@
|
|
5
7
|
#
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
7
9
|
|
10
|
+
|
8
11
|
require 'aws-sdk-core'
|
9
12
|
require 'aws-sigv4'
|
10
13
|
|
@@ -42,9 +45,9 @@ require_relative 'aws-sdk-firehose/customizations'
|
|
42
45
|
#
|
43
46
|
# See {Errors} for more information.
|
44
47
|
#
|
45
|
-
#
|
48
|
+
# @!group service
|
46
49
|
module Aws::Firehose
|
47
50
|
|
48
|
-
GEM_VERSION = '1.
|
51
|
+
GEM_VERSION = '1.34.0'
|
49
52
|
|
50
53
|
end
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -83,13 +85,28 @@ module Aws::Firehose
|
|
83
85
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
84
86
|
# credentials.
|
85
87
|
#
|
88
|
+
# * `Aws::SharedCredentials` - Used for loading static credentials from a
|
89
|
+
# shared file, such as `~/.aws/config`.
|
90
|
+
#
|
91
|
+
# * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
|
92
|
+
#
|
93
|
+
# * `Aws::AssumeRoleWebIdentityCredentials` - Used when you need to
|
94
|
+
# assume a role after providing credentials via the web.
|
95
|
+
#
|
96
|
+
# * `Aws::SSOCredentials` - Used for loading credentials from AWS SSO using an
|
97
|
+
# access token generated from `aws login`.
|
98
|
+
#
|
99
|
+
# * `Aws::ProcessCredentials` - Used for loading credentials from a
|
100
|
+
# process that outputs to stdout.
|
101
|
+
#
|
86
102
|
# * `Aws::InstanceProfileCredentials` - Used for loading credentials
|
87
103
|
# from an EC2 IMDS on an EC2 instance.
|
88
104
|
#
|
89
|
-
# * `Aws::
|
90
|
-
#
|
105
|
+
# * `Aws::ECSCredentials` - Used for loading credentials from
|
106
|
+
# instances running in ECS.
|
91
107
|
#
|
92
|
-
# * `Aws::
|
108
|
+
# * `Aws::CognitoIdentityCredentials` - Used for loading credentials
|
109
|
+
# from the Cognito Identity service.
|
93
110
|
#
|
94
111
|
# When `:credentials` are not configured directly, the following
|
95
112
|
# locations will be searched for credentials:
|
@@ -99,10 +116,10 @@ module Aws::Firehose
|
|
99
116
|
# * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
|
100
117
|
# * `~/.aws/credentials`
|
101
118
|
# * `~/.aws/config`
|
102
|
-
# * EC2 IMDS instance profile - When used by default, the timeouts
|
103
|
-
# very aggressive. Construct and pass an instance of
|
104
|
-
# `Aws::InstanceProfileCredentails`
|
105
|
-
# timeouts.
|
119
|
+
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
120
|
+
# are very aggressive. Construct and pass an instance of
|
121
|
+
# `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
|
122
|
+
# enable retries and extended timeouts.
|
106
123
|
#
|
107
124
|
# @option options [required, String] :region
|
108
125
|
# The AWS region to connect to. The configured `:region` is
|
@@ -443,6 +460,10 @@ module Aws::Firehose
|
|
443
460
|
# @option params [Types::SplunkDestinationConfiguration] :splunk_destination_configuration
|
444
461
|
# The destination in Splunk. You can specify only one destination.
|
445
462
|
#
|
463
|
+
# @option params [Types::HttpEndpointDestinationConfiguration] :http_endpoint_destination_configuration
|
464
|
+
# Enables configuring Kinesis Firehose to deliver data to any HTTP
|
465
|
+
# endpoint destination. You can specify only one destination.
|
466
|
+
#
|
446
467
|
# @option params [Array<Types::Tag>] :tags
|
447
468
|
# A set of tags to assign to the delivery stream. A tag is a key-value
|
448
469
|
# pair that you can define and assign to AWS resources. Tags are
|
@@ -795,6 +816,72 @@ module Aws::Firehose
|
|
795
816
|
# log_stream_name: "LogStreamName",
|
796
817
|
# },
|
797
818
|
# },
|
819
|
+
# http_endpoint_destination_configuration: {
|
820
|
+
# endpoint_configuration: { # required
|
821
|
+
# url: "HttpEndpointUrl", # required
|
822
|
+
# name: "HttpEndpointName",
|
823
|
+
# access_key: "HttpEndpointAccessKey",
|
824
|
+
# },
|
825
|
+
# buffering_hints: {
|
826
|
+
# size_in_m_bs: 1,
|
827
|
+
# interval_in_seconds: 1,
|
828
|
+
# },
|
829
|
+
# cloud_watch_logging_options: {
|
830
|
+
# enabled: false,
|
831
|
+
# log_group_name: "LogGroupName",
|
832
|
+
# log_stream_name: "LogStreamName",
|
833
|
+
# },
|
834
|
+
# request_configuration: {
|
835
|
+
# content_encoding: "NONE", # accepts NONE, GZIP
|
836
|
+
# common_attributes: [
|
837
|
+
# {
|
838
|
+
# attribute_name: "HttpEndpointAttributeName", # required
|
839
|
+
# attribute_value: "HttpEndpointAttributeValue", # required
|
840
|
+
# },
|
841
|
+
# ],
|
842
|
+
# },
|
843
|
+
# processing_configuration: {
|
844
|
+
# enabled: false,
|
845
|
+
# processors: [
|
846
|
+
# {
|
847
|
+
# type: "Lambda", # required, accepts Lambda
|
848
|
+
# parameters: [
|
849
|
+
# {
|
850
|
+
# parameter_name: "LambdaArn", # required, accepts LambdaArn, NumberOfRetries, RoleArn, BufferSizeInMBs, BufferIntervalInSeconds
|
851
|
+
# parameter_value: "ProcessorParameterValue", # required
|
852
|
+
# },
|
853
|
+
# ],
|
854
|
+
# },
|
855
|
+
# ],
|
856
|
+
# },
|
857
|
+
# role_arn: "RoleARN",
|
858
|
+
# retry_options: {
|
859
|
+
# duration_in_seconds: 1,
|
860
|
+
# },
|
861
|
+
# s3_backup_mode: "FailedDataOnly", # accepts FailedDataOnly, AllData
|
862
|
+
# s3_configuration: { # required
|
863
|
+
# role_arn: "RoleARN", # required
|
864
|
+
# bucket_arn: "BucketARN", # required
|
865
|
+
# prefix: "Prefix",
|
866
|
+
# error_output_prefix: "ErrorOutputPrefix",
|
867
|
+
# buffering_hints: {
|
868
|
+
# size_in_m_bs: 1,
|
869
|
+
# interval_in_seconds: 1,
|
870
|
+
# },
|
871
|
+
# compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy, HADOOP_SNAPPY
|
872
|
+
# encryption_configuration: {
|
873
|
+
# no_encryption_config: "NoEncryption", # accepts NoEncryption
|
874
|
+
# kms_encryption_config: {
|
875
|
+
# awskms_key_arn: "AWSKMSKeyARN", # required
|
876
|
+
# },
|
877
|
+
# },
|
878
|
+
# cloud_watch_logging_options: {
|
879
|
+
# enabled: false,
|
880
|
+
# log_group_name: "LogGroupName",
|
881
|
+
# log_stream_name: "LogStreamName",
|
882
|
+
# },
|
883
|
+
# },
|
884
|
+
# },
|
798
885
|
# tags: [
|
799
886
|
# {
|
800
887
|
# key: "TagKey", # required
|
@@ -1103,6 +1190,38 @@ module Aws::Firehose
|
|
1103
1190
|
# resp.delivery_stream_description.destinations[0].splunk_destination_description.cloud_watch_logging_options.enabled #=> Boolean
|
1104
1191
|
# resp.delivery_stream_description.destinations[0].splunk_destination_description.cloud_watch_logging_options.log_group_name #=> String
|
1105
1192
|
# resp.delivery_stream_description.destinations[0].splunk_destination_description.cloud_watch_logging_options.log_stream_name #=> String
|
1193
|
+
# resp.delivery_stream_description.destinations[0].http_endpoint_destination_description.endpoint_configuration.url #=> String
|
1194
|
+
# resp.delivery_stream_description.destinations[0].http_endpoint_destination_description.endpoint_configuration.name #=> String
|
1195
|
+
# resp.delivery_stream_description.destinations[0].http_endpoint_destination_description.buffering_hints.size_in_m_bs #=> Integer
|
1196
|
+
# resp.delivery_stream_description.destinations[0].http_endpoint_destination_description.buffering_hints.interval_in_seconds #=> Integer
|
1197
|
+
# resp.delivery_stream_description.destinations[0].http_endpoint_destination_description.cloud_watch_logging_options.enabled #=> Boolean
|
1198
|
+
# resp.delivery_stream_description.destinations[0].http_endpoint_destination_description.cloud_watch_logging_options.log_group_name #=> String
|
1199
|
+
# resp.delivery_stream_description.destinations[0].http_endpoint_destination_description.cloud_watch_logging_options.log_stream_name #=> String
|
1200
|
+
# resp.delivery_stream_description.destinations[0].http_endpoint_destination_description.request_configuration.content_encoding #=> String, one of "NONE", "GZIP"
|
1201
|
+
# resp.delivery_stream_description.destinations[0].http_endpoint_destination_description.request_configuration.common_attributes #=> Array
|
1202
|
+
# resp.delivery_stream_description.destinations[0].http_endpoint_destination_description.request_configuration.common_attributes[0].attribute_name #=> String
|
1203
|
+
# resp.delivery_stream_description.destinations[0].http_endpoint_destination_description.request_configuration.common_attributes[0].attribute_value #=> String
|
1204
|
+
# resp.delivery_stream_description.destinations[0].http_endpoint_destination_description.processing_configuration.enabled #=> Boolean
|
1205
|
+
# resp.delivery_stream_description.destinations[0].http_endpoint_destination_description.processing_configuration.processors #=> Array
|
1206
|
+
# resp.delivery_stream_description.destinations[0].http_endpoint_destination_description.processing_configuration.processors[0].type #=> String, one of "Lambda"
|
1207
|
+
# resp.delivery_stream_description.destinations[0].http_endpoint_destination_description.processing_configuration.processors[0].parameters #=> Array
|
1208
|
+
# resp.delivery_stream_description.destinations[0].http_endpoint_destination_description.processing_configuration.processors[0].parameters[0].parameter_name #=> String, one of "LambdaArn", "NumberOfRetries", "RoleArn", "BufferSizeInMBs", "BufferIntervalInSeconds"
|
1209
|
+
# resp.delivery_stream_description.destinations[0].http_endpoint_destination_description.processing_configuration.processors[0].parameters[0].parameter_value #=> String
|
1210
|
+
# resp.delivery_stream_description.destinations[0].http_endpoint_destination_description.role_arn #=> String
|
1211
|
+
# resp.delivery_stream_description.destinations[0].http_endpoint_destination_description.retry_options.duration_in_seconds #=> Integer
|
1212
|
+
# resp.delivery_stream_description.destinations[0].http_endpoint_destination_description.s3_backup_mode #=> String, one of "FailedDataOnly", "AllData"
|
1213
|
+
# resp.delivery_stream_description.destinations[0].http_endpoint_destination_description.s3_destination_description.role_arn #=> String
|
1214
|
+
# resp.delivery_stream_description.destinations[0].http_endpoint_destination_description.s3_destination_description.bucket_arn #=> String
|
1215
|
+
# resp.delivery_stream_description.destinations[0].http_endpoint_destination_description.s3_destination_description.prefix #=> String
|
1216
|
+
# resp.delivery_stream_description.destinations[0].http_endpoint_destination_description.s3_destination_description.error_output_prefix #=> String
|
1217
|
+
# resp.delivery_stream_description.destinations[0].http_endpoint_destination_description.s3_destination_description.buffering_hints.size_in_m_bs #=> Integer
|
1218
|
+
# resp.delivery_stream_description.destinations[0].http_endpoint_destination_description.s3_destination_description.buffering_hints.interval_in_seconds #=> Integer
|
1219
|
+
# resp.delivery_stream_description.destinations[0].http_endpoint_destination_description.s3_destination_description.compression_format #=> String, one of "UNCOMPRESSED", "GZIP", "ZIP", "Snappy", "HADOOP_SNAPPY"
|
1220
|
+
# resp.delivery_stream_description.destinations[0].http_endpoint_destination_description.s3_destination_description.encryption_configuration.no_encryption_config #=> String, one of "NoEncryption"
|
1221
|
+
# resp.delivery_stream_description.destinations[0].http_endpoint_destination_description.s3_destination_description.encryption_configuration.kms_encryption_config.awskms_key_arn #=> String
|
1222
|
+
# resp.delivery_stream_description.destinations[0].http_endpoint_destination_description.s3_destination_description.cloud_watch_logging_options.enabled #=> Boolean
|
1223
|
+
# resp.delivery_stream_description.destinations[0].http_endpoint_destination_description.s3_destination_description.cloud_watch_logging_options.log_group_name #=> String
|
1224
|
+
# resp.delivery_stream_description.destinations[0].http_endpoint_destination_description.s3_destination_description.cloud_watch_logging_options.log_stream_name #=> String
|
1106
1225
|
# resp.delivery_stream_description.has_more_destinations #=> Boolean
|
1107
1226
|
#
|
1108
1227
|
# @see http://docs.aws.amazon.com/goto/WebAPI/firehose-2015-08-04/DescribeDeliveryStream AWS API Documentation
|
@@ -1307,11 +1426,8 @@ module Aws::Firehose
|
|
1307
1426
|
# use PutRecord. Applications using these operations are referred to as
|
1308
1427
|
# producers.
|
1309
1428
|
#
|
1310
|
-
#
|
1311
|
-
#
|
1312
|
-
# PutRecord and PutRecordBatch, the limits are an aggregate across these
|
1313
|
-
# two operations for each delivery stream. For more information about
|
1314
|
-
# limits, see [Amazon Kinesis Data Firehose Limits][1].
|
1429
|
+
# For information about service quota, see [Amazon Kinesis Data Firehose
|
1430
|
+
# Quota][1].
|
1315
1431
|
#
|
1316
1432
|
# Each PutRecordBatch request supports up to 500 records. Each record in
|
1317
1433
|
# the request can be as large as 1,000 KB (before 64-bit encoding), up
|
@@ -1691,6 +1807,9 @@ module Aws::Firehose
|
|
1691
1807
|
# @option params [Types::SplunkDestinationUpdate] :splunk_destination_update
|
1692
1808
|
# Describes an update for a destination in Splunk.
|
1693
1809
|
#
|
1810
|
+
# @option params [Types::HttpEndpointDestinationUpdate] :http_endpoint_destination_update
|
1811
|
+
# Describes an update to the specified HTTP endpoint destination.
|
1812
|
+
#
|
1694
1813
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
1695
1814
|
#
|
1696
1815
|
# @example Request syntax with placeholder values
|
@@ -2014,6 +2133,72 @@ module Aws::Firehose
|
|
2014
2133
|
# log_stream_name: "LogStreamName",
|
2015
2134
|
# },
|
2016
2135
|
# },
|
2136
|
+
# http_endpoint_destination_update: {
|
2137
|
+
# endpoint_configuration: {
|
2138
|
+
# url: "HttpEndpointUrl", # required
|
2139
|
+
# name: "HttpEndpointName",
|
2140
|
+
# access_key: "HttpEndpointAccessKey",
|
2141
|
+
# },
|
2142
|
+
# buffering_hints: {
|
2143
|
+
# size_in_m_bs: 1,
|
2144
|
+
# interval_in_seconds: 1,
|
2145
|
+
# },
|
2146
|
+
# cloud_watch_logging_options: {
|
2147
|
+
# enabled: false,
|
2148
|
+
# log_group_name: "LogGroupName",
|
2149
|
+
# log_stream_name: "LogStreamName",
|
2150
|
+
# },
|
2151
|
+
# request_configuration: {
|
2152
|
+
# content_encoding: "NONE", # accepts NONE, GZIP
|
2153
|
+
# common_attributes: [
|
2154
|
+
# {
|
2155
|
+
# attribute_name: "HttpEndpointAttributeName", # required
|
2156
|
+
# attribute_value: "HttpEndpointAttributeValue", # required
|
2157
|
+
# },
|
2158
|
+
# ],
|
2159
|
+
# },
|
2160
|
+
# processing_configuration: {
|
2161
|
+
# enabled: false,
|
2162
|
+
# processors: [
|
2163
|
+
# {
|
2164
|
+
# type: "Lambda", # required, accepts Lambda
|
2165
|
+
# parameters: [
|
2166
|
+
# {
|
2167
|
+
# parameter_name: "LambdaArn", # required, accepts LambdaArn, NumberOfRetries, RoleArn, BufferSizeInMBs, BufferIntervalInSeconds
|
2168
|
+
# parameter_value: "ProcessorParameterValue", # required
|
2169
|
+
# },
|
2170
|
+
# ],
|
2171
|
+
# },
|
2172
|
+
# ],
|
2173
|
+
# },
|
2174
|
+
# role_arn: "RoleARN",
|
2175
|
+
# retry_options: {
|
2176
|
+
# duration_in_seconds: 1,
|
2177
|
+
# },
|
2178
|
+
# s3_backup_mode: "FailedDataOnly", # accepts FailedDataOnly, AllData
|
2179
|
+
# s3_update: {
|
2180
|
+
# role_arn: "RoleARN",
|
2181
|
+
# bucket_arn: "BucketARN",
|
2182
|
+
# prefix: "Prefix",
|
2183
|
+
# error_output_prefix: "ErrorOutputPrefix",
|
2184
|
+
# buffering_hints: {
|
2185
|
+
# size_in_m_bs: 1,
|
2186
|
+
# interval_in_seconds: 1,
|
2187
|
+
# },
|
2188
|
+
# compression_format: "UNCOMPRESSED", # accepts UNCOMPRESSED, GZIP, ZIP, Snappy, HADOOP_SNAPPY
|
2189
|
+
# encryption_configuration: {
|
2190
|
+
# no_encryption_config: "NoEncryption", # accepts NoEncryption
|
2191
|
+
# kms_encryption_config: {
|
2192
|
+
# awskms_key_arn: "AWSKMSKeyARN", # required
|
2193
|
+
# },
|
2194
|
+
# },
|
2195
|
+
# cloud_watch_logging_options: {
|
2196
|
+
# enabled: false,
|
2197
|
+
# log_group_name: "LogGroupName",
|
2198
|
+
# log_stream_name: "LogStreamName",
|
2199
|
+
# },
|
2200
|
+
# },
|
2201
|
+
# },
|
2017
2202
|
# })
|
2018
2203
|
#
|
2019
2204
|
# @see http://docs.aws.amazon.com/goto/WebAPI/firehose-2015-08-04/UpdateDestination AWS API Documentation
|
@@ -2038,7 +2223,7 @@ module Aws::Firehose
|
|
2038
2223
|
params: params,
|
2039
2224
|
config: config)
|
2040
2225
|
context[:gem_name] = 'aws-sdk-firehose'
|
2041
|
-
context[:gem_version] = '1.
|
2226
|
+
context[:gem_version] = '1.34.0'
|
2042
2227
|
Seahorse::Client::Request.new(handlers, context)
|
2043
2228
|
end
|
2044
2229
|
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -21,6 +23,7 @@ module Aws::Firehose
|
|
21
23
|
ColumnToJsonKeyMappings = Shapes::MapShape.new(name: 'ColumnToJsonKeyMappings')
|
22
24
|
CompressionFormat = Shapes::StringShape.new(name: 'CompressionFormat')
|
23
25
|
ConcurrentModificationException = Shapes::StructureShape.new(name: 'ConcurrentModificationException')
|
26
|
+
ContentEncoding = Shapes::StringShape.new(name: 'ContentEncoding')
|
24
27
|
CopyCommand = Shapes::StructureShape.new(name: 'CopyCommand')
|
25
28
|
CopyOptions = Shapes::StringShape.new(name: 'CopyOptions')
|
26
29
|
CreateDeliveryStreamInput = Shapes::StructureShape.new(name: 'CreateDeliveryStreamInput')
|
@@ -77,6 +80,25 @@ module Aws::Firehose
|
|
77
80
|
HECEndpointType = Shapes::StringShape.new(name: 'HECEndpointType')
|
78
81
|
HECToken = Shapes::StringShape.new(name: 'HECToken')
|
79
82
|
HiveJsonSerDe = Shapes::StructureShape.new(name: 'HiveJsonSerDe')
|
83
|
+
HttpEndpointAccessKey = Shapes::StringShape.new(name: 'HttpEndpointAccessKey')
|
84
|
+
HttpEndpointAttributeName = Shapes::StringShape.new(name: 'HttpEndpointAttributeName')
|
85
|
+
HttpEndpointAttributeValue = Shapes::StringShape.new(name: 'HttpEndpointAttributeValue')
|
86
|
+
HttpEndpointBufferingHints = Shapes::StructureShape.new(name: 'HttpEndpointBufferingHints')
|
87
|
+
HttpEndpointBufferingIntervalInSeconds = Shapes::IntegerShape.new(name: 'HttpEndpointBufferingIntervalInSeconds')
|
88
|
+
HttpEndpointBufferingSizeInMBs = Shapes::IntegerShape.new(name: 'HttpEndpointBufferingSizeInMBs')
|
89
|
+
HttpEndpointCommonAttribute = Shapes::StructureShape.new(name: 'HttpEndpointCommonAttribute')
|
90
|
+
HttpEndpointCommonAttributesList = Shapes::ListShape.new(name: 'HttpEndpointCommonAttributesList')
|
91
|
+
HttpEndpointConfiguration = Shapes::StructureShape.new(name: 'HttpEndpointConfiguration')
|
92
|
+
HttpEndpointDescription = Shapes::StructureShape.new(name: 'HttpEndpointDescription')
|
93
|
+
HttpEndpointDestinationConfiguration = Shapes::StructureShape.new(name: 'HttpEndpointDestinationConfiguration')
|
94
|
+
HttpEndpointDestinationDescription = Shapes::StructureShape.new(name: 'HttpEndpointDestinationDescription')
|
95
|
+
HttpEndpointDestinationUpdate = Shapes::StructureShape.new(name: 'HttpEndpointDestinationUpdate')
|
96
|
+
HttpEndpointName = Shapes::StringShape.new(name: 'HttpEndpointName')
|
97
|
+
HttpEndpointRequestConfiguration = Shapes::StructureShape.new(name: 'HttpEndpointRequestConfiguration')
|
98
|
+
HttpEndpointRetryDurationInSeconds = Shapes::IntegerShape.new(name: 'HttpEndpointRetryDurationInSeconds')
|
99
|
+
HttpEndpointRetryOptions = Shapes::StructureShape.new(name: 'HttpEndpointRetryOptions')
|
100
|
+
HttpEndpointS3BackupMode = Shapes::StringShape.new(name: 'HttpEndpointS3BackupMode')
|
101
|
+
HttpEndpointUrl = Shapes::StringShape.new(name: 'HttpEndpointUrl')
|
80
102
|
InputFormatConfiguration = Shapes::StructureShape.new(name: 'InputFormatConfiguration')
|
81
103
|
IntervalInSeconds = Shapes::IntegerShape.new(name: 'IntervalInSeconds')
|
82
104
|
InvalidArgumentException = Shapes::StructureShape.new(name: 'InvalidArgumentException')
|
@@ -208,6 +230,7 @@ module Aws::Firehose
|
|
208
230
|
CreateDeliveryStreamInput.add_member(:redshift_destination_configuration, Shapes::ShapeRef.new(shape: RedshiftDestinationConfiguration, location_name: "RedshiftDestinationConfiguration"))
|
209
231
|
CreateDeliveryStreamInput.add_member(:elasticsearch_destination_configuration, Shapes::ShapeRef.new(shape: ElasticsearchDestinationConfiguration, location_name: "ElasticsearchDestinationConfiguration"))
|
210
232
|
CreateDeliveryStreamInput.add_member(:splunk_destination_configuration, Shapes::ShapeRef.new(shape: SplunkDestinationConfiguration, location_name: "SplunkDestinationConfiguration"))
|
233
|
+
CreateDeliveryStreamInput.add_member(:http_endpoint_destination_configuration, Shapes::ShapeRef.new(shape: HttpEndpointDestinationConfiguration, location_name: "HttpEndpointDestinationConfiguration"))
|
211
234
|
CreateDeliveryStreamInput.add_member(:tags, Shapes::ShapeRef.new(shape: TagDeliveryStreamInputTagList, location_name: "Tags"))
|
212
235
|
CreateDeliveryStreamInput.struct_class = Types::CreateDeliveryStreamInput
|
213
236
|
|
@@ -270,6 +293,7 @@ module Aws::Firehose
|
|
270
293
|
DestinationDescription.add_member(:redshift_destination_description, Shapes::ShapeRef.new(shape: RedshiftDestinationDescription, location_name: "RedshiftDestinationDescription"))
|
271
294
|
DestinationDescription.add_member(:elasticsearch_destination_description, Shapes::ShapeRef.new(shape: ElasticsearchDestinationDescription, location_name: "ElasticsearchDestinationDescription"))
|
272
295
|
DestinationDescription.add_member(:splunk_destination_description, Shapes::ShapeRef.new(shape: SplunkDestinationDescription, location_name: "SplunkDestinationDescription"))
|
296
|
+
DestinationDescription.add_member(:http_endpoint_destination_description, Shapes::ShapeRef.new(shape: HttpEndpointDestinationDescription, location_name: "HttpEndpointDestinationDescription"))
|
273
297
|
DestinationDescription.struct_class = Types::DestinationDescription
|
274
298
|
|
275
299
|
DestinationDescriptionList.member = Shapes::ShapeRef.new(shape: DestinationDescription)
|
@@ -377,6 +401,65 @@ module Aws::Firehose
|
|
377
401
|
HiveJsonSerDe.add_member(:timestamp_formats, Shapes::ShapeRef.new(shape: ListOfNonEmptyStrings, location_name: "TimestampFormats"))
|
378
402
|
HiveJsonSerDe.struct_class = Types::HiveJsonSerDe
|
379
403
|
|
404
|
+
HttpEndpointBufferingHints.add_member(:size_in_m_bs, Shapes::ShapeRef.new(shape: HttpEndpointBufferingSizeInMBs, location_name: "SizeInMBs"))
|
405
|
+
HttpEndpointBufferingHints.add_member(:interval_in_seconds, Shapes::ShapeRef.new(shape: HttpEndpointBufferingIntervalInSeconds, location_name: "IntervalInSeconds"))
|
406
|
+
HttpEndpointBufferingHints.struct_class = Types::HttpEndpointBufferingHints
|
407
|
+
|
408
|
+
HttpEndpointCommonAttribute.add_member(:attribute_name, Shapes::ShapeRef.new(shape: HttpEndpointAttributeName, required: true, location_name: "AttributeName"))
|
409
|
+
HttpEndpointCommonAttribute.add_member(:attribute_value, Shapes::ShapeRef.new(shape: HttpEndpointAttributeValue, required: true, location_name: "AttributeValue"))
|
410
|
+
HttpEndpointCommonAttribute.struct_class = Types::HttpEndpointCommonAttribute
|
411
|
+
|
412
|
+
HttpEndpointCommonAttributesList.member = Shapes::ShapeRef.new(shape: HttpEndpointCommonAttribute)
|
413
|
+
|
414
|
+
HttpEndpointConfiguration.add_member(:url, Shapes::ShapeRef.new(shape: HttpEndpointUrl, required: true, location_name: "Url"))
|
415
|
+
HttpEndpointConfiguration.add_member(:name, Shapes::ShapeRef.new(shape: HttpEndpointName, location_name: "Name"))
|
416
|
+
HttpEndpointConfiguration.add_member(:access_key, Shapes::ShapeRef.new(shape: HttpEndpointAccessKey, location_name: "AccessKey"))
|
417
|
+
HttpEndpointConfiguration.struct_class = Types::HttpEndpointConfiguration
|
418
|
+
|
419
|
+
HttpEndpointDescription.add_member(:url, Shapes::ShapeRef.new(shape: HttpEndpointUrl, location_name: "Url"))
|
420
|
+
HttpEndpointDescription.add_member(:name, Shapes::ShapeRef.new(shape: HttpEndpointName, location_name: "Name"))
|
421
|
+
HttpEndpointDescription.struct_class = Types::HttpEndpointDescription
|
422
|
+
|
423
|
+
HttpEndpointDestinationConfiguration.add_member(:endpoint_configuration, Shapes::ShapeRef.new(shape: HttpEndpointConfiguration, required: true, location_name: "EndpointConfiguration"))
|
424
|
+
HttpEndpointDestinationConfiguration.add_member(:buffering_hints, Shapes::ShapeRef.new(shape: HttpEndpointBufferingHints, location_name: "BufferingHints"))
|
425
|
+
HttpEndpointDestinationConfiguration.add_member(:cloud_watch_logging_options, Shapes::ShapeRef.new(shape: CloudWatchLoggingOptions, location_name: "CloudWatchLoggingOptions"))
|
426
|
+
HttpEndpointDestinationConfiguration.add_member(:request_configuration, Shapes::ShapeRef.new(shape: HttpEndpointRequestConfiguration, location_name: "RequestConfiguration"))
|
427
|
+
HttpEndpointDestinationConfiguration.add_member(:processing_configuration, Shapes::ShapeRef.new(shape: ProcessingConfiguration, location_name: "ProcessingConfiguration"))
|
428
|
+
HttpEndpointDestinationConfiguration.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleARN, location_name: "RoleARN"))
|
429
|
+
HttpEndpointDestinationConfiguration.add_member(:retry_options, Shapes::ShapeRef.new(shape: HttpEndpointRetryOptions, location_name: "RetryOptions"))
|
430
|
+
HttpEndpointDestinationConfiguration.add_member(:s3_backup_mode, Shapes::ShapeRef.new(shape: HttpEndpointS3BackupMode, location_name: "S3BackupMode"))
|
431
|
+
HttpEndpointDestinationConfiguration.add_member(:s3_configuration, Shapes::ShapeRef.new(shape: S3DestinationConfiguration, required: true, location_name: "S3Configuration"))
|
432
|
+
HttpEndpointDestinationConfiguration.struct_class = Types::HttpEndpointDestinationConfiguration
|
433
|
+
|
434
|
+
HttpEndpointDestinationDescription.add_member(:endpoint_configuration, Shapes::ShapeRef.new(shape: HttpEndpointDescription, location_name: "EndpointConfiguration"))
|
435
|
+
HttpEndpointDestinationDescription.add_member(:buffering_hints, Shapes::ShapeRef.new(shape: HttpEndpointBufferingHints, location_name: "BufferingHints"))
|
436
|
+
HttpEndpointDestinationDescription.add_member(:cloud_watch_logging_options, Shapes::ShapeRef.new(shape: CloudWatchLoggingOptions, location_name: "CloudWatchLoggingOptions"))
|
437
|
+
HttpEndpointDestinationDescription.add_member(:request_configuration, Shapes::ShapeRef.new(shape: HttpEndpointRequestConfiguration, location_name: "RequestConfiguration"))
|
438
|
+
HttpEndpointDestinationDescription.add_member(:processing_configuration, Shapes::ShapeRef.new(shape: ProcessingConfiguration, location_name: "ProcessingConfiguration"))
|
439
|
+
HttpEndpointDestinationDescription.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleARN, location_name: "RoleARN"))
|
440
|
+
HttpEndpointDestinationDescription.add_member(:retry_options, Shapes::ShapeRef.new(shape: HttpEndpointRetryOptions, location_name: "RetryOptions"))
|
441
|
+
HttpEndpointDestinationDescription.add_member(:s3_backup_mode, Shapes::ShapeRef.new(shape: HttpEndpointS3BackupMode, location_name: "S3BackupMode"))
|
442
|
+
HttpEndpointDestinationDescription.add_member(:s3_destination_description, Shapes::ShapeRef.new(shape: S3DestinationDescription, location_name: "S3DestinationDescription"))
|
443
|
+
HttpEndpointDestinationDescription.struct_class = Types::HttpEndpointDestinationDescription
|
444
|
+
|
445
|
+
HttpEndpointDestinationUpdate.add_member(:endpoint_configuration, Shapes::ShapeRef.new(shape: HttpEndpointConfiguration, location_name: "EndpointConfiguration"))
|
446
|
+
HttpEndpointDestinationUpdate.add_member(:buffering_hints, Shapes::ShapeRef.new(shape: HttpEndpointBufferingHints, location_name: "BufferingHints"))
|
447
|
+
HttpEndpointDestinationUpdate.add_member(:cloud_watch_logging_options, Shapes::ShapeRef.new(shape: CloudWatchLoggingOptions, location_name: "CloudWatchLoggingOptions"))
|
448
|
+
HttpEndpointDestinationUpdate.add_member(:request_configuration, Shapes::ShapeRef.new(shape: HttpEndpointRequestConfiguration, location_name: "RequestConfiguration"))
|
449
|
+
HttpEndpointDestinationUpdate.add_member(:processing_configuration, Shapes::ShapeRef.new(shape: ProcessingConfiguration, location_name: "ProcessingConfiguration"))
|
450
|
+
HttpEndpointDestinationUpdate.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleARN, location_name: "RoleARN"))
|
451
|
+
HttpEndpointDestinationUpdate.add_member(:retry_options, Shapes::ShapeRef.new(shape: HttpEndpointRetryOptions, location_name: "RetryOptions"))
|
452
|
+
HttpEndpointDestinationUpdate.add_member(:s3_backup_mode, Shapes::ShapeRef.new(shape: HttpEndpointS3BackupMode, location_name: "S3BackupMode"))
|
453
|
+
HttpEndpointDestinationUpdate.add_member(:s3_update, Shapes::ShapeRef.new(shape: S3DestinationUpdate, location_name: "S3Update"))
|
454
|
+
HttpEndpointDestinationUpdate.struct_class = Types::HttpEndpointDestinationUpdate
|
455
|
+
|
456
|
+
HttpEndpointRequestConfiguration.add_member(:content_encoding, Shapes::ShapeRef.new(shape: ContentEncoding, location_name: "ContentEncoding"))
|
457
|
+
HttpEndpointRequestConfiguration.add_member(:common_attributes, Shapes::ShapeRef.new(shape: HttpEndpointCommonAttributesList, location_name: "CommonAttributes"))
|
458
|
+
HttpEndpointRequestConfiguration.struct_class = Types::HttpEndpointRequestConfiguration
|
459
|
+
|
460
|
+
HttpEndpointRetryOptions.add_member(:duration_in_seconds, Shapes::ShapeRef.new(shape: HttpEndpointRetryDurationInSeconds, location_name: "DurationInSeconds"))
|
461
|
+
HttpEndpointRetryOptions.struct_class = Types::HttpEndpointRetryOptions
|
462
|
+
|
380
463
|
InputFormatConfiguration.add_member(:deserializer, Shapes::ShapeRef.new(shape: Deserializer, location_name: "Deserializer"))
|
381
464
|
InputFormatConfiguration.struct_class = Types::InputFormatConfiguration
|
382
465
|
|
@@ -673,6 +756,7 @@ module Aws::Firehose
|
|
673
756
|
UpdateDestinationInput.add_member(:redshift_destination_update, Shapes::ShapeRef.new(shape: RedshiftDestinationUpdate, location_name: "RedshiftDestinationUpdate"))
|
674
757
|
UpdateDestinationInput.add_member(:elasticsearch_destination_update, Shapes::ShapeRef.new(shape: ElasticsearchDestinationUpdate, location_name: "ElasticsearchDestinationUpdate"))
|
675
758
|
UpdateDestinationInput.add_member(:splunk_destination_update, Shapes::ShapeRef.new(shape: SplunkDestinationUpdate, location_name: "SplunkDestinationUpdate"))
|
759
|
+
UpdateDestinationInput.add_member(:http_endpoint_destination_update, Shapes::ShapeRef.new(shape: HttpEndpointDestinationUpdate, location_name: "HttpEndpointDestinationUpdate"))
|
676
760
|
UpdateDestinationInput.struct_class = Types::UpdateDestinationInput
|
677
761
|
|
678
762
|
UpdateDestinationOutput.struct_class = Types::UpdateDestinationOutput
|