Interface SelectObjectContentEventStream
-
- All Superinterfaces:
SdkPojo
- All Known Implementing Classes:
ContinuationEvent,DefaultCont,DefaultEnd,DefaultProgress,DefaultRecords,DefaultStats,EndEvent,ProgressEvent,RecordsEvent,StatsEvent
@Generated("software.amazon.awssdk:codegen") public interface SelectObjectContentEventStream extends SdkPojo
Base interface for all event types in SelectObjectContentEventStream.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classSelectObjectContentEventStream.EventTypeThe known possible types of events forSelectObjectContentEventStream.
-
Field Summary
Fields Modifier and Type Field Description static SelectObjectContentEventStreamUNKNOWNSpecial type ofSelectObjectContentEventStreamfor unknown types of events that this version of the SDK does not know about
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description voidaccept(SelectObjectContentResponseHandler.Visitor visitor)Calls the appropriate visit method depending on the subtype ofSelectObjectContentEventStream.static ContinuationEvent.BuildercontBuilder()Create a builder for theContevent type for this stream.static EndEvent.BuilderendBuilder()Create a builder for theEndevent type for this stream.static ProgressEvent.BuilderprogressBuilder()Create a builder for theProgressevent type for this stream.static RecordsEvent.BuilderrecordsBuilder()Create a builder for theRecordsevent type for this stream.default SelectObjectContentEventStream.EventTypesdkEventType()The type of this event.static StatsEvent.BuilderstatsBuilder()Create a builder for theStatsevent type for this stream.-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Field Detail
-
UNKNOWN
static final SelectObjectContentEventStream UNKNOWN
Special type ofSelectObjectContentEventStreamfor unknown types of events that this version of the SDK does not know about
-
-
Method Detail
-
recordsBuilder
static RecordsEvent.Builder recordsBuilder()
Create a builder for theRecordsevent type for this stream.
-
statsBuilder
static StatsEvent.Builder statsBuilder()
Create a builder for theStatsevent type for this stream.
-
progressBuilder
static ProgressEvent.Builder progressBuilder()
Create a builder for theProgressevent type for this stream.
-
contBuilder
static ContinuationEvent.Builder contBuilder()
Create a builder for theContevent type for this stream.
-
endBuilder
static EndEvent.Builder endBuilder()
Create a builder for theEndevent type for this stream.
-
sdkEventType
default SelectObjectContentEventStream.EventType sdkEventType()
The type of this event. Corresponds to the:event-typeheader on the Message.
-
accept
void accept(SelectObjectContentResponseHandler.Visitor visitor)
Calls the appropriate visit method depending on the subtype ofSelectObjectContentEventStream.- Parameters:
visitor- Visitor to invoke.
-
-