Interface EventStreamSummary.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<EventStreamSummary.Builder,EventStreamSummary>,SdkBuilder<EventStreamSummary.Builder,EventStreamSummary>,SdkPojo
- Enclosing class:
- EventStreamSummary
public static interface EventStreamSummary.Builder extends SdkPojo, CopyableBuilder<EventStreamSummary.Builder,EventStreamSummary>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default EventStreamSummary.BuilderdestinationSummary(Consumer<DestinationSummary.Builder> destinationSummary)Summary information about the Kinesis data stream.EventStreamSummary.BuilderdestinationSummary(DestinationSummary destinationSummary)Summary information about the Kinesis data stream.EventStreamSummary.BuilderdomainName(String domainName)The unique name of the domain.EventStreamSummary.BuildereventStreamArn(String eventStreamArn)A unique identifier for the event stream.EventStreamSummary.BuildereventStreamName(String eventStreamName)The name of the event stream.EventStreamSummary.Builderstate(String state)The operational state of destination stream for export.EventStreamSummary.Builderstate(EventStreamState state)The operational state of destination stream for export.EventStreamSummary.BuilderstoppedSince(Instant stoppedSince)The timestamp when theStatechanged toSTOPPED.EventStreamSummary.Buildertags(Map<String,String> tags)The tags used to organize, track, or control access for this resource.-
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
-
domainName
EventStreamSummary.Builder domainName(String domainName)
The unique name of the domain.
- Parameters:
domainName- The unique name of the domain.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
eventStreamName
EventStreamSummary.Builder eventStreamName(String eventStreamName)
The name of the event stream.
- Parameters:
eventStreamName- The name of the event stream.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
eventStreamArn
EventStreamSummary.Builder eventStreamArn(String eventStreamArn)
A unique identifier for the event stream.
- Parameters:
eventStreamArn- A unique identifier for the event stream.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
state
EventStreamSummary.Builder state(String state)
The operational state of destination stream for export.
- Parameters:
state- The operational state of destination stream for export.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
EventStreamState,EventStreamState
-
state
EventStreamSummary.Builder state(EventStreamState state)
The operational state of destination stream for export.
- Parameters:
state- The operational state of destination stream for export.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
EventStreamState,EventStreamState
-
stoppedSince
EventStreamSummary.Builder stoppedSince(Instant stoppedSince)
The timestamp when the
Statechanged toSTOPPED.- Parameters:
stoppedSince- The timestamp when theStatechanged toSTOPPED.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
destinationSummary
EventStreamSummary.Builder destinationSummary(DestinationSummary destinationSummary)
Summary information about the Kinesis data stream.
- Parameters:
destinationSummary- Summary information about the Kinesis data stream.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
destinationSummary
default EventStreamSummary.Builder destinationSummary(Consumer<DestinationSummary.Builder> destinationSummary)
Summary information about the Kinesis data stream.
This is a convenience method that creates an instance of theDestinationSummary.Builderavoiding the need to create one manually viaDestinationSummary.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed todestinationSummary(DestinationSummary).- Parameters:
destinationSummary- a consumer that will call methods onDestinationSummary.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
destinationSummary(DestinationSummary)
-
tags
EventStreamSummary.Builder tags(Map<String,String> tags)
The tags used to organize, track, or control access for this resource.
- Parameters:
tags- The tags used to organize, track, or control access for this resource.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-