Interface EventDetails.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<EventDetails.Builder,EventDetails>,SdkBuilder<EventDetails.Builder,EventDetails>,SdkPojo
- Enclosing class:
- EventDetails
public static interface EventDetails.Builder extends SdkPojo, CopyableBuilder<EventDetails.Builder,EventDetails>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default EventDetails.Builderevent(Consumer<Event.Builder> event)Summary information about the event.EventDetails.Builderevent(Event event)Summary information about the event.default EventDetails.BuildereventDescription(Consumer<EventDescription.Builder> eventDescription)The most recent description of the event.EventDetails.BuildereventDescription(EventDescription eventDescription)The most recent description of the event.EventDetails.BuildereventMetadata(Map<String,String> eventMetadata)Additional metadata about the event.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
event
EventDetails.Builder event(Event event)
Summary information about the event.
- Parameters:
event- Summary information about the event.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
event
default EventDetails.Builder event(Consumer<Event.Builder> event)
Summary information about the event.
This is a convenience method that creates an instance of theEvent.Builderavoiding the need to create one manually viaEvent.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toevent(Event).- Parameters:
event- a consumer that will call methods onEvent.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
event(Event)
-
eventDescription
EventDetails.Builder eventDescription(EventDescription eventDescription)
The most recent description of the event.
- Parameters:
eventDescription- The most recent description of the event.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
eventDescription
default EventDetails.Builder eventDescription(Consumer<EventDescription.Builder> eventDescription)
The most recent description of the event.
This is a convenience method that creates an instance of theEventDescription.Builderavoiding the need to create one manually viaEventDescription.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toeventDescription(EventDescription).- Parameters:
eventDescription- a consumer that will call methods onEventDescription.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
eventDescription(EventDescription)
-
eventMetadata
EventDetails.Builder eventMetadata(Map<String,String> eventMetadata)
Additional metadata about the event.
- Parameters:
eventMetadata- Additional metadata about the event.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-