Interface EventInfoMap.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<EventInfoMap.Builder,EventInfoMap>,SdkBuilder<EventInfoMap.Builder,EventInfoMap>,SdkPojo
- Enclosing class:
- EventInfoMap
public static interface EventInfoMap.Builder extends SdkPojo, CopyableBuilder<EventInfoMap.Builder,EventInfoMap>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description EventInfoMap.BuildereventCategories(String... eventCategories)The category of an Amazon Redshift event.EventInfoMap.BuildereventCategories(Collection<String> eventCategories)The category of an Amazon Redshift event.EventInfoMap.BuildereventDescription(String eventDescription)The description of an Amazon Redshift event.EventInfoMap.BuildereventId(String eventId)The identifier of an Amazon Redshift event.EventInfoMap.Builderseverity(String severity)The severity of 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, sdkFields
-
-
-
-
Method Detail
-
eventId
EventInfoMap.Builder eventId(String eventId)
The identifier of an Amazon Redshift event.
- Parameters:
eventId- The identifier of an Amazon Redshift event.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
eventCategories
EventInfoMap.Builder eventCategories(Collection<String> eventCategories)
The category of an Amazon Redshift event.
- Parameters:
eventCategories- The category of an Amazon Redshift event.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
eventCategories
EventInfoMap.Builder eventCategories(String... eventCategories)
The category of an Amazon Redshift event.
- Parameters:
eventCategories- The category of an Amazon Redshift event.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
eventDescription
EventInfoMap.Builder eventDescription(String eventDescription)
The description of an Amazon Redshift event.
- Parameters:
eventDescription- The description of an Amazon Redshift event.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
severity
EventInfoMap.Builder severity(String severity)
The severity of the event.
Values: ERROR, INFO
- Parameters:
severity- The severity of the event.Values: ERROR, INFO
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-