Class: Aws::EventBridge::Types::PutEventsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::EventBridge::Types::PutEventsRequest
- Defined in:
- gems/aws-sdk-eventbridge/lib/aws-sdk-eventbridge/types.rb
Overview
Note:
When making an API call, you may pass PutEventsRequest data as a hash:
{
entries: [ # required
{
time: Time.now,
source: "String",
resources: ["EventResource"],
detail_type: "String",
detail: "String",
event_bus_name: "NonPartnerEventBusNameOrArn",
trace_header: "TraceHeader",
},
],
endpoint_id: "EndpointId",
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#endpoint_id ⇒ String
The URL subdomain of the endpoint.
-
#entries ⇒ Array<Types::PutEventsRequestEntry>
The entry that defines an event in your system.
Instance Attribute Details
#endpoint_id ⇒ String
The URL subdomain of the endpoint. For example, if the URL for
Endpoint is abcde.veo.endpoints.event.amazonaws.com, then the
EndpointId is abcde.veo
.
When using Java, you must include auth-crt
on the class path.
4085 4086 4087 4088 4089 4090 |
# File 'gems/aws-sdk-eventbridge/lib/aws-sdk-eventbridge/types.rb', line 4085 class PutEventsRequest < Struct.new( :entries, :endpoint_id) SENSITIVE = [] include Aws::Structure end |
#entries ⇒ Array<Types::PutEventsRequestEntry>
The entry that defines an event in your system. You can specify several parameters for the entry such as the source and type of the event, resources associated with the event, and so on.
4085 4086 4087 4088 4089 4090 |
# File 'gems/aws-sdk-eventbridge/lib/aws-sdk-eventbridge/types.rb', line 4085 class PutEventsRequest < Struct.new( :entries, :endpoint_id) SENSITIVE = [] include Aws::Structure end |