Method: Aws::EventBridge::Types::PutEventsRequestEntry#source

Defined in:
lib/aws-sdk-eventbridge/types.rb

#sourceString

The source of the event.

<note markdown=“1”> Detail, DetailType, and Source are required for EventBridge to successfully send an event to an event bus. If you include event entries in a request that do not include each of those properties, EventBridge fails that entry. If you submit a request in which none of the entries have each of these properties, EventBridge fails the entire request.

</note>

Returns:



4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
# File 'lib/aws-sdk-eventbridge/types.rb', line 4004

class PutEventsRequestEntry < Struct.new(
  :time,
  :source,
  :resources,
  :detail_type,
  :detail,
  :event_bus_name,
  :trace_header)
  SENSITIVE = []
  include Aws::Structure
end