Class: Aws::EventBridge::Types::PutPartnerEventsResultEntry
- Inherits:
-
Struct
- Object
- Struct
- Aws::EventBridge::Types::PutPartnerEventsResultEntry
- Defined in:
- gems/aws-sdk-eventbridge/lib/aws-sdk-eventbridge/types.rb
Overview
The result of an event entry the partner submitted in this request. If the event was successfully submitted, 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.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#error_code ⇒ String
The error code that indicates why the event submission failed.
-
#error_message ⇒ String
The error message that explains why the event submission failed.
-
#event_id ⇒ String
The ID of the event.
Instance Attribute Details
#error_code ⇒ String
The error code that indicates why the event submission failed.
4074 4075 4076 4077 4078 4079 4080 |
# File 'gems/aws-sdk-eventbridge/lib/aws-sdk-eventbridge/types.rb', line 4074 class PutPartnerEventsResultEntry < Struct.new( :event_id, :error_code, :error_message) SENSITIVE = [] include Aws::Structure end |
#error_message ⇒ String
The error message that explains why the event submission failed.
4074 4075 4076 4077 4078 4079 4080 |
# File 'gems/aws-sdk-eventbridge/lib/aws-sdk-eventbridge/types.rb', line 4074 class PutPartnerEventsResultEntry < Struct.new( :event_id, :error_code, :error_message) SENSITIVE = [] include Aws::Structure end |
#event_id ⇒ String
The ID of the event.
4074 4075 4076 4077 4078 4079 4080 |
# File 'gems/aws-sdk-eventbridge/lib/aws-sdk-eventbridge/types.rb', line 4074 class PutPartnerEventsResultEntry < Struct.new( :event_id, :error_code, :error_message) SENSITIVE = [] include Aws::Structure end |