Interface RealtimeLogConfigs.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<RealtimeLogConfigs.Builder,RealtimeLogConfigs>
,SdkBuilder<RealtimeLogConfigs.Builder,RealtimeLogConfigs>
,SdkPojo
- Enclosing class:
- RealtimeLogConfigs
public static interface RealtimeLogConfigs.Builder extends SdkPojo, CopyableBuilder<RealtimeLogConfigs.Builder,RealtimeLogConfigs>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RealtimeLogConfigs.Builder
isTruncated(Boolean isTruncated)
A flag that indicates whether there are more real-time log configurations than are contained in this list.RealtimeLogConfigs.Builder
items(Collection<RealtimeLogConfig> items)
Contains the list of real-time log configurations.RealtimeLogConfigs.Builder
items(Consumer<RealtimeLogConfig.Builder>... items)
Contains the list of real-time log configurations.RealtimeLogConfigs.Builder
items(RealtimeLogConfig... items)
Contains the list of real-time log configurations.RealtimeLogConfigs.Builder
marker(String marker)
This parameter indicates where this list of real-time log configurations begins.RealtimeLogConfigs.Builder
maxItems(Integer maxItems)
The maximum number of real-time log configurations requested.RealtimeLogConfigs.Builder
nextMarker(String nextMarker)
If there are more items in the list than are in this response, this element is present.-
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
-
maxItems
RealtimeLogConfigs.Builder maxItems(Integer maxItems)
The maximum number of real-time log configurations requested.
- Parameters:
maxItems
- The maximum number of real-time log configurations requested.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
items
RealtimeLogConfigs.Builder items(Collection<RealtimeLogConfig> items)
Contains the list of real-time log configurations.
- Parameters:
items
- Contains the list of real-time log configurations.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
items
RealtimeLogConfigs.Builder items(RealtimeLogConfig... items)
Contains the list of real-time log configurations.
- Parameters:
items
- Contains the list of real-time log configurations.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
items
RealtimeLogConfigs.Builder items(Consumer<RealtimeLogConfig.Builder>... items)
Contains the list of real-time log configurations.
This is a convenience method that creates an instance of theRealtimeLogConfig.Builder
avoiding the need to create one manually viaRealtimeLogConfig.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed to#items(List
.) - Parameters:
items
- a consumer that will call methods onRealtimeLogConfig.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#items(java.util.Collection
)
-
isTruncated
RealtimeLogConfigs.Builder isTruncated(Boolean isTruncated)
A flag that indicates whether there are more real-time log configurations than are contained in this list.
- Parameters:
isTruncated
- A flag that indicates whether there are more real-time log configurations than are contained in this list.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
marker
RealtimeLogConfigs.Builder marker(String marker)
This parameter indicates where this list of real-time log configurations begins. This list includes real-time log configurations that occur after the marker.
- Parameters:
marker
- This parameter indicates where this list of real-time log configurations begins. This list includes real-time log configurations that occur after the marker.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
nextMarker
RealtimeLogConfigs.Builder nextMarker(String nextMarker)
If there are more items in the list than are in this response, this element is present. It contains the value that you should use in the
Marker
field of a subsequent request to continue listing real-time log configurations where you left off.- Parameters:
nextMarker
- If there are more items in the list than are in this response, this element is present. It contains the value that you should use in theMarker
field of a subsequent request to continue listing real-time log configurations where you left off.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-