Class: Aws::Firehose::Types::PutRecordBatchOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::Firehose::Types::PutRecordBatchOutput
- Defined in:
- gems/aws-sdk-firehose/lib/aws-sdk-firehose/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#encrypted ⇒ Boolean
Indicates whether server-side encryption (SSE) was enabled during this operation.
-
#failed_put_count ⇒ Integer
The number of records that might have failed processing.
-
#request_responses ⇒ Array<Types::PutRecordBatchResponseEntry>
The results array.
Instance Attribute Details
#encrypted ⇒ Boolean
Indicates whether server-side encryption (SSE) was enabled during this operation.
3778 3779 3780 3781 3782 3783 3784 |
# File 'gems/aws-sdk-firehose/lib/aws-sdk-firehose/types.rb', line 3778 class PutRecordBatchOutput < Struct.new( :failed_put_count, :encrypted, :request_responses) SENSITIVE = [] include Aws::Structure end |
#failed_put_count ⇒ Integer
The number of records that might have failed processing. This number
might be greater than 0 even if the PutRecordBatch call succeeds.
Check FailedPutCount
to determine whether there are records that
you need to resend.
3778 3779 3780 3781 3782 3783 3784 |
# File 'gems/aws-sdk-firehose/lib/aws-sdk-firehose/types.rb', line 3778 class PutRecordBatchOutput < Struct.new( :failed_put_count, :encrypted, :request_responses) SENSITIVE = [] include Aws::Structure end |
#request_responses ⇒ Array<Types::PutRecordBatchResponseEntry>
The results array. For each record, the index of the response element is the same as the index used in the request array.
3778 3779 3780 3781 3782 3783 3784 |
# File 'gems/aws-sdk-firehose/lib/aws-sdk-firehose/types.rb', line 3778 class PutRecordBatchOutput < Struct.new( :failed_put_count, :encrypted, :request_responses) SENSITIVE = [] include Aws::Structure end |