You are viewing documentation for version 3 of the AWS SDK for Ruby. Version 2 documentation can be found here.
Class: Aws::EventBridge::Types::PutEventsResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::EventBridge::Types::PutEventsResponse
- Defined in:
- gems/aws-sdk-eventbridge/lib/aws-sdk-eventbridge/types.rb
Overview
Instance Attribute Summary collapse
-
#entries ⇒ Array<Types::PutEventsResultEntry>
The successfully and unsuccessfully ingested events results.
-
#failed_entry_count ⇒ Integer
The number of failed entries.
Instance Attribute Details
#entries ⇒ Array<Types::PutEventsResultEntry>
The successfully and unsuccessfully ingested events results. If the ingestion was successful, the entry has the event ID in it. Otherwise, you can use the error code and error message to identify the problem with the entry.
1515 1516 1517 1518 1519 |
# File 'gems/aws-sdk-eventbridge/lib/aws-sdk-eventbridge/types.rb', line 1515 class PutEventsResponse < Struct.new( :failed_entry_count, :entries) include Aws::Structure end |
#failed_entry_count ⇒ Integer
The number of failed entries.
1515 1516 1517 1518 1519 |
# File 'gems/aws-sdk-eventbridge/lib/aws-sdk-eventbridge/types.rb', line 1515 class PutEventsResponse < Struct.new( :failed_entry_count, :entries) include Aws::Structure end |