You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::EventBridge::Types::PutPartnerEventsRequestEntry

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing PutPartnerEventsRequestEntry as input to an Aws::Client method, you can use a vanilla Hash:

{
  time: Time.now,
  source: "EventSourceName",
  resources: ["EventResource"],
  detail_type: "String",
  detail: "String",
}

The details about an event generated by an SaaS partner.

Instance Attribute Summary collapse

Instance Attribute Details

#detailString

A valid JSON string. There is no other schema imposed. The JSON string may contain fields and nested subobjects.

Returns:

  • (String)

    A valid JSON string.

#detail_typeString

A free-form string used to decide what fields to expect in the event detail.

Returns:

  • (String)

    A free-form string used to decide what fields to expect in the event detail.

#resourcesArray<String>

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

Returns:

  • (Array<String>)

    AWS resources, identified by Amazon Resource Name (ARN), which the event primarily concerns.

#sourceString

The event source that is generating the evntry.

Returns:

  • (String)

    The event source that is generating the evntry.

#timeTime

The date and time of the event.

Returns:

  • (Time)

    The date and time of the event.