Table of Contents

Class PutEventsRequestEntry

Namespace
Amazon.EventBridge.Model
Assembly
AWSSDK.EventBridge.dll

Represents an event to be submitted.

public class PutEventsRequestEntry
Inheritance
PutEventsRequestEntry
Inherited Members

Constructors

PutEventsRequestEntry()

public PutEventsRequestEntry()

Properties

Detail

Gets and sets the property Detail.

A valid JSON object. There is no other schema imposed. The JSON object may contain fields and nested sub-objects.

note

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.

public string Detail { get; set; }

Property Value

string

DetailType

Gets and sets the property DetailType.

Free-form string, with a maximum of 128 characters, used to decide what fields to expect in the event detail.

note

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.

public string DetailType { get; set; }

Property Value

string

EventBusName

Gets and sets the property EventBusName.

The name or ARN of the event bus to receive the event. Only the rules that are associated with this event bus are used to match the event. If you omit this, the default event bus is used.

note

If you're using a global endpoint with a custom bus, you can enter either the name or Amazon Resource Name (ARN) of the event bus in either the primary or secondary Region here. EventBridge then determines the corresponding event bus in the other Region based on the endpoint referenced by the EndpointId. Specifying the event bus ARN is preferred.

public string EventBusName { get; set; }

Property Value

string

Resources

Gets and sets the property Resources.

Amazon Web Services resources, identified by Amazon Resource Name (ARN), which the event primarily concerns. Any number, including zero, may be present.

public List<string> Resources { get; set; }

Property Value

List<string>

Source

Gets and sets the property Source.

The source of the event.

note

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.

public string Source { get; set; }

Property Value

string

Time

Gets and sets the property Time.

The time stamp of the event, per RFC3339. If no time stamp is provided, the time stamp of the PutEvents call is used.

public DateTime Time { get; set; }

Property Value

DateTime

TraceHeader

Gets and sets the property TraceHeader.

An X-Ray trace header, which is an http header (X-Amzn-Trace-Id) that contains the trace-id associated with the event.

To learn more about X-Ray trace headers, see Tracing header in the X-Ray Developer Guide.

public string TraceHeader { get; set; }

Property Value

string