aws-sdk-firehose 1.16.0 → 1.17.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c6696e08246a0b20ce95c51067111c2c8f04438a
4
- data.tar.gz: c3fda9db0bf440a47682651cb38b21470dcc1599
3
+ metadata.gz: e94afaa047b2b03ba60637858e2b774b6aeabe16
4
+ data.tar.gz: 05a1e87dee398c39315eeb80d15b95c4ea961bc4
5
5
  SHA512:
6
- metadata.gz: 86d00f8866cf77c8dbfd44483c24b1534c1317bffe81ed7a3608f0711212f429b1882cae32b78a99162c7ce40df7965656be8733b8f5d8f90f31d50914a2da8c
7
- data.tar.gz: f03a9ed0a8e21d3a275f285caa8cd0a07622e2fba5f80fdbadf78ef6e0511579bd3015d23a21bf2025f51b73fcb1d380a792c5b05e0c417c873a3a5dbcbdae9a
6
+ metadata.gz: bc1bf55195cca7938123edba43c4e3ac4d1ec52690c67d21144cbcb9b919091a0ff8947f1e53136b1812c2e7c0030381c497198342b13cb7aaaee9eba34cf6e8
7
+ data.tar.gz: f2e3c3f060dae54eabfe5219d97c0dd89022c94fe92857ef71e6d390bf43ea347a0a2e65825dfd71abbdd76e89cd705981437cf140ac87e6b565832ae3ba2f34
@@ -42,6 +42,6 @@ require_relative 'aws-sdk-firehose/customizations'
42
42
  # @service
43
43
  module Aws::Firehose
44
44
 
45
- GEM_VERSION = '1.16.0'
45
+ GEM_VERSION = '1.17.0'
46
46
 
47
47
  end
@@ -1877,7 +1877,7 @@ module Aws::Firehose
1877
1877
  params: params,
1878
1878
  config: config)
1879
1879
  context[:gem_name] = 'aws-sdk-firehose'
1880
- context[:gem_version] = '1.16.0'
1880
+ context[:gem_version] = '1.17.0'
1881
1881
  Seahorse::Client::Request.new(handlers, context)
1882
1882
  end
1883
1883
 
@@ -181,6 +181,9 @@ module Aws::Firehose
181
181
  ColumnToJsonKeyMappings.key = Shapes::ShapeRef.new(shape: NonEmptyStringWithoutWhitespace)
182
182
  ColumnToJsonKeyMappings.value = Shapes::ShapeRef.new(shape: NonEmptyString)
183
183
 
184
+ ConcurrentModificationException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "message"))
185
+ ConcurrentModificationException.struct_class = Types::ConcurrentModificationException
186
+
184
187
  CopyCommand.add_member(:data_table_name, Shapes::ShapeRef.new(shape: DataTableName, required: true, location_name: "DataTableName"))
185
188
  CopyCommand.add_member(:data_table_columns, Shapes::ShapeRef.new(shape: DataTableColumns, location_name: "DataTableColumns"))
186
189
  CopyCommand.add_member(:copy_options, Shapes::ShapeRef.new(shape: CopyOptions, location_name: "CopyOptions"))
@@ -348,6 +351,9 @@ module Aws::Firehose
348
351
  InputFormatConfiguration.add_member(:deserializer, Shapes::ShapeRef.new(shape: Deserializer, location_name: "Deserializer"))
349
352
  InputFormatConfiguration.struct_class = Types::InputFormatConfiguration
350
353
 
354
+ InvalidArgumentException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "message"))
355
+ InvalidArgumentException.struct_class = Types::InvalidArgumentException
356
+
351
357
  KMSEncryptionConfig.add_member(:awskms_key_arn, Shapes::ShapeRef.new(shape: AWSKMSKeyARN, required: true, location_name: "AWSKMSKeyARN"))
352
358
  KMSEncryptionConfig.struct_class = Types::KMSEncryptionConfig
353
359
 
@@ -360,6 +366,9 @@ module Aws::Firehose
360
366
  KinesisStreamSourceDescription.add_member(:delivery_start_timestamp, Shapes::ShapeRef.new(shape: DeliveryStartTimestamp, location_name: "DeliveryStartTimestamp"))
361
367
  KinesisStreamSourceDescription.struct_class = Types::KinesisStreamSourceDescription
362
368
 
369
+ LimitExceededException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "message"))
370
+ LimitExceededException.struct_class = Types::LimitExceededException
371
+
363
372
  ListDeliveryStreamsInput.add_member(:limit, Shapes::ShapeRef.new(shape: ListDeliveryStreamsInputLimit, location_name: "Limit"))
364
373
  ListDeliveryStreamsInput.add_member(:delivery_stream_type, Shapes::ShapeRef.new(shape: DeliveryStreamType, location_name: "DeliveryStreamType"))
365
374
  ListDeliveryStreamsInput.add_member(:exclusive_start_delivery_stream_name, Shapes::ShapeRef.new(shape: DeliveryStreamName, location_name: "ExclusiveStartDeliveryStreamName"))
@@ -498,6 +507,12 @@ module Aws::Firehose
498
507
  RedshiftRetryOptions.add_member(:duration_in_seconds, Shapes::ShapeRef.new(shape: RedshiftRetryDurationInSeconds, location_name: "DurationInSeconds"))
499
508
  RedshiftRetryOptions.struct_class = Types::RedshiftRetryOptions
500
509
 
510
+ ResourceInUseException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "message"))
511
+ ResourceInUseException.struct_class = Types::ResourceInUseException
512
+
513
+ ResourceNotFoundException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "message"))
514
+ ResourceNotFoundException.struct_class = Types::ResourceNotFoundException
515
+
501
516
  S3DestinationConfiguration.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleARN, required: true, location_name: "RoleARN"))
502
517
  S3DestinationConfiguration.add_member(:bucket_arn, Shapes::ShapeRef.new(shape: BucketARN, required: true, location_name: "BucketARN"))
503
518
  S3DestinationConfiguration.add_member(:prefix, Shapes::ShapeRef.new(shape: Prefix, location_name: "Prefix"))
@@ -540,6 +555,9 @@ module Aws::Firehose
540
555
  Serializer.add_member(:orc_ser_de, Shapes::ShapeRef.new(shape: OrcSerDe, location_name: "OrcSerDe"))
541
556
  Serializer.struct_class = Types::Serializer
542
557
 
558
+ ServiceUnavailableException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "message"))
559
+ ServiceUnavailableException.struct_class = Types::ServiceUnavailableException
560
+
543
561
  SourceDescription.add_member(:kinesis_stream_source_description, Shapes::ShapeRef.new(shape: KinesisStreamSourceDescription, location_name: "KinesisStreamSourceDescription"))
544
562
  SourceDescription.struct_class = Types::SourceDescription
545
563
 
@@ -10,5 +10,101 @@ module Aws::Firehose
10
10
 
11
11
  extend Aws::Errors::DynamicErrors
12
12
 
13
+ class ConcurrentModificationException < ServiceError
14
+
15
+ # @param [Seahorse::Client::RequestContext] context
16
+ # @param [String] message
17
+ # @param [Aws::Firehose::Types::ConcurrentModificationException] data
18
+ def initialize(context, message, data = Aws::EmptyStructure.new)
19
+ super(context, message, data)
20
+ end
21
+
22
+ # @return [String]
23
+ def message
24
+ @message || @data[:message]
25
+ end
26
+
27
+ end
28
+
29
+ class InvalidArgumentException < ServiceError
30
+
31
+ # @param [Seahorse::Client::RequestContext] context
32
+ # @param [String] message
33
+ # @param [Aws::Firehose::Types::InvalidArgumentException] data
34
+ def initialize(context, message, data = Aws::EmptyStructure.new)
35
+ super(context, message, data)
36
+ end
37
+
38
+ # @return [String]
39
+ def message
40
+ @message || @data[:message]
41
+ end
42
+
43
+ end
44
+
45
+ class LimitExceededException < ServiceError
46
+
47
+ # @param [Seahorse::Client::RequestContext] context
48
+ # @param [String] message
49
+ # @param [Aws::Firehose::Types::LimitExceededException] data
50
+ def initialize(context, message, data = Aws::EmptyStructure.new)
51
+ super(context, message, data)
52
+ end
53
+
54
+ # @return [String]
55
+ def message
56
+ @message || @data[:message]
57
+ end
58
+
59
+ end
60
+
61
+ class ResourceInUseException < ServiceError
62
+
63
+ # @param [Seahorse::Client::RequestContext] context
64
+ # @param [String] message
65
+ # @param [Aws::Firehose::Types::ResourceInUseException] data
66
+ def initialize(context, message, data = Aws::EmptyStructure.new)
67
+ super(context, message, data)
68
+ end
69
+
70
+ # @return [String]
71
+ def message
72
+ @message || @data[:message]
73
+ end
74
+
75
+ end
76
+
77
+ class ResourceNotFoundException < ServiceError
78
+
79
+ # @param [Seahorse::Client::RequestContext] context
80
+ # @param [String] message
81
+ # @param [Aws::Firehose::Types::ResourceNotFoundException] data
82
+ def initialize(context, message, data = Aws::EmptyStructure.new)
83
+ super(context, message, data)
84
+ end
85
+
86
+ # @return [String]
87
+ def message
88
+ @message || @data[:message]
89
+ end
90
+
91
+ end
92
+
93
+ class ServiceUnavailableException < ServiceError
94
+
95
+ # @param [Seahorse::Client::RequestContext] context
96
+ # @param [String] message
97
+ # @param [Aws::Firehose::Types::ServiceUnavailableException] data
98
+ def initialize(context, message, data = Aws::EmptyStructure.new)
99
+ super(context, message, data)
100
+ end
101
+
102
+ # @return [String]
103
+ def message
104
+ @message || @data[:message]
105
+ end
106
+
107
+ end
108
+
13
109
  end
14
110
  end
@@ -79,6 +79,20 @@ module Aws::Firehose
79
79
  include Aws::Structure
80
80
  end
81
81
 
82
+ # Another modification has already happened. Fetch `VersionId` again and
83
+ # use it to update the destination.
84
+ #
85
+ # @!attribute [rw] message
86
+ # A message that provides information about the error.
87
+ # @return [String]
88
+ #
89
+ # @see http://docs.aws.amazon.com/goto/WebAPI/firehose-2015-08-04/ConcurrentModificationException AWS API Documentation
90
+ #
91
+ class ConcurrentModificationException < Struct.new(
92
+ :message)
93
+ include Aws::Structure
94
+ end
95
+
82
96
  # Describes a `COPY` command for Amazon Redshift.
83
97
  #
84
98
  # @note When making an API call, you may pass CopyCommand
@@ -1958,6 +1972,19 @@ module Aws::Firehose
1958
1972
  include Aws::Structure
1959
1973
  end
1960
1974
 
1975
+ # The specified input parameter has a value that is not valid.
1976
+ #
1977
+ # @!attribute [rw] message
1978
+ # A message that provides information about the error.
1979
+ # @return [String]
1980
+ #
1981
+ # @see http://docs.aws.amazon.com/goto/WebAPI/firehose-2015-08-04/InvalidArgumentException AWS API Documentation
1982
+ #
1983
+ class InvalidArgumentException < Struct.new(
1984
+ :message)
1985
+ include Aws::Structure
1986
+ end
1987
+
1961
1988
  # Describes an encryption key for a destination in Amazon S3.
1962
1989
  #
1963
1990
  # @note When making an API call, you may pass KMSEncryptionConfig
@@ -2060,6 +2087,19 @@ module Aws::Firehose
2060
2087
  include Aws::Structure
2061
2088
  end
2062
2089
 
2090
+ # You have already reached the limit for a requested resource.
2091
+ #
2092
+ # @!attribute [rw] message
2093
+ # A message that provides information about the error.
2094
+ # @return [String]
2095
+ #
2096
+ # @see http://docs.aws.amazon.com/goto/WebAPI/firehose-2015-08-04/LimitExceededException AWS API Documentation
2097
+ #
2098
+ class LimitExceededException < Struct.new(
2099
+ :message)
2100
+ include Aws::Structure
2101
+ end
2102
+
2063
2103
  # @note When making an API call, you may pass ListDeliveryStreamsInput
2064
2104
  # data as a hash:
2065
2105
  #
@@ -3092,6 +3132,32 @@ module Aws::Firehose
3092
3132
  include Aws::Structure
3093
3133
  end
3094
3134
 
3135
+ # The resource is already in use and not available for this operation.
3136
+ #
3137
+ # @!attribute [rw] message
3138
+ # A message that provides information about the error.
3139
+ # @return [String]
3140
+ #
3141
+ # @see http://docs.aws.amazon.com/goto/WebAPI/firehose-2015-08-04/ResourceInUseException AWS API Documentation
3142
+ #
3143
+ class ResourceInUseException < Struct.new(
3144
+ :message)
3145
+ include Aws::Structure
3146
+ end
3147
+
3148
+ # The specified resource could not be found.
3149
+ #
3150
+ # @!attribute [rw] message
3151
+ # A message that provides information about the error.
3152
+ # @return [String]
3153
+ #
3154
+ # @see http://docs.aws.amazon.com/goto/WebAPI/firehose-2015-08-04/ResourceNotFoundException AWS API Documentation
3155
+ #
3156
+ class ResourceNotFoundException < Struct.new(
3157
+ :message)
3158
+ include Aws::Structure
3159
+ end
3160
+
3095
3161
  # Describes the configuration of a destination in Amazon S3.
3096
3162
  #
3097
3163
  # @note When making an API call, you may pass S3DestinationConfiguration
@@ -3494,6 +3560,27 @@ module Aws::Firehose
3494
3560
  include Aws::Structure
3495
3561
  end
3496
3562
 
3563
+ # The service is unavailable. Back off and retry the operation. If you
3564
+ # continue to see the exception, throughput limits for the delivery
3565
+ # stream may have been exceeded. For more information about limits and
3566
+ # how to request an increase, see [Amazon Kinesis Data Firehose
3567
+ # Limits][1].
3568
+ #
3569
+ #
3570
+ #
3571
+ # [1]: http://docs.aws.amazon.com/firehose/latest/dev/limits.html
3572
+ #
3573
+ # @!attribute [rw] message
3574
+ # A message that provides information about the error.
3575
+ # @return [String]
3576
+ #
3577
+ # @see http://docs.aws.amazon.com/goto/WebAPI/firehose-2015-08-04/ServiceUnavailableException AWS API Documentation
3578
+ #
3579
+ class ServiceUnavailableException < Struct.new(
3580
+ :message)
3581
+ include Aws::Structure
3582
+ end
3583
+
3497
3584
  # Details about a Kinesis data stream used as the source for a Kinesis
3498
3585
  # Data Firehose delivery stream.
3499
3586
  #
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.16.0
4
+ version: 1.17.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: 2019-05-15 00:00:00.000000000 Z
11
+ date: 2019-05-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.52.1
22
+ version: 3.53.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.52.1
32
+ version: 3.53.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement