Class: Aws::EventBridge::Types::PutPartnerEventsRequestEntry
- Inherits:
-
Struct
- Object
- Struct
- Aws::EventBridge::Types::PutPartnerEventsRequestEntry
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-eventbridge/types.rb
Overview
The details about an event generated by an SaaS partner.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#detail ⇒ String
A valid JSON string.
-
#detail_type ⇒ String
A free-form string, with a maximum of 128 characters, used to decide what fields to expect in the event detail.
-
#resources ⇒ Array<String>
Amazon Web Services resources, identified by Amazon Resource Name (ARN), which the event primarily concerns.
-
#source ⇒ String
The event source that is generating the entry.
-
#time ⇒ Time
The date and time of the event.
Instance Attribute Details
#detail ⇒ String
A valid JSON string. There is no other schema imposed. The JSON string may contain fields and nested sub-objects.
<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>
4021 4022 4023 4024 4025 4026 4027 4028 4029 |
# File 'lib/aws-sdk-eventbridge/types.rb', line 4021 class PutPartnerEventsRequestEntry < Struct.new( :time, :source, :resources, :detail_type, :detail) SENSITIVE = [] include Aws::Structure end |
#detail_type ⇒ String
A free-form string, with a maximum of 128 characters, used to decide what fields to expect in the event detail.
<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>
4021 4022 4023 4024 4025 4026 4027 4028 4029 |
# File 'lib/aws-sdk-eventbridge/types.rb', line 4021 class PutPartnerEventsRequestEntry < Struct.new( :time, :source, :resources, :detail_type, :detail) SENSITIVE = [] include Aws::Structure end |
#resources ⇒ Array<String>
Amazon Web Services resources, identified by Amazon Resource Name (ARN), which the event primarily concerns. Any number, including zero, may be present.
4021 4022 4023 4024 4025 4026 4027 4028 4029 |
# File 'lib/aws-sdk-eventbridge/types.rb', line 4021 class PutPartnerEventsRequestEntry < Struct.new( :time, :source, :resources, :detail_type, :detail) SENSITIVE = [] include Aws::Structure end |
#source ⇒ String
The event source that is generating the entry.
<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>
4021 4022 4023 4024 4025 4026 4027 4028 4029 |
# File 'lib/aws-sdk-eventbridge/types.rb', line 4021 class PutPartnerEventsRequestEntry < Struct.new( :time, :source, :resources, :detail_type, :detail) SENSITIVE = [] include Aws::Structure end |
#time ⇒ Time
The date and time of the event.
4021 4022 4023 4024 4025 4026 4027 4028 4029 |
# File 'lib/aws-sdk-eventbridge/types.rb', line 4021 class PutPartnerEventsRequestEntry < Struct.new( :time, :source, :resources, :detail_type, :detail) SENSITIVE = [] include Aws::Structure end |