Interface DistributionIdList.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<DistributionIdList.Builder,DistributionIdList>
,SdkBuilder<DistributionIdList.Builder,DistributionIdList>
,SdkPojo
- Enclosing class:
- DistributionIdList
public static interface DistributionIdList.Builder extends SdkPojo, CopyableBuilder<DistributionIdList.Builder,DistributionIdList>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DistributionIdList.Builder
isTruncated(Boolean isTruncated)
A flag that indicates whether more distribution IDs remain to be listed.DistributionIdList.Builder
items(String... items)
Contains the distribution IDs in the list.DistributionIdList.Builder
items(Collection<String> items)
Contains the distribution IDs in the list.DistributionIdList.Builder
marker(String marker)
The value provided in theMarker
request field.DistributionIdList.Builder
maxItems(Integer maxItems)
The maximum number of distribution IDs requested.DistributionIdList.Builder
nextMarker(String nextMarker)
Contains the value that you should use in theMarker
field of a subsequent request to continue listing distribution IDs where you left off.DistributionIdList.Builder
quantity(Integer quantity)
The total number of distribution IDs returned in the response.-
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
-
marker
DistributionIdList.Builder marker(String marker)
The value provided in the
Marker
request field.- Parameters:
marker
- The value provided in theMarker
request field.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
nextMarker
DistributionIdList.Builder nextMarker(String nextMarker)
Contains the value that you should use in the
Marker
field of a subsequent request to continue listing distribution IDs where you left off.- Parameters:
nextMarker
- Contains the value that you should use in theMarker
field of a subsequent request to continue listing distribution IDs where you left off.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
maxItems
DistributionIdList.Builder maxItems(Integer maxItems)
The maximum number of distribution IDs requested.
- Parameters:
maxItems
- The maximum number of distribution IDs requested.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
isTruncated
DistributionIdList.Builder isTruncated(Boolean isTruncated)
A flag that indicates whether more distribution IDs remain to be listed. If your results were truncated, you can make a subsequent request using the
Marker
request field to retrieve more distribution IDs in the list.- Parameters:
isTruncated
- A flag that indicates whether more distribution IDs remain to be listed. If your results were truncated, you can make a subsequent request using theMarker
request field to retrieve more distribution IDs in the list.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
quantity
DistributionIdList.Builder quantity(Integer quantity)
The total number of distribution IDs returned in the response.
- Parameters:
quantity
- The total number of distribution IDs returned in the response.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
items
DistributionIdList.Builder items(Collection<String> items)
Contains the distribution IDs in the list.
- Parameters:
items
- Contains the distribution IDs in the list.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
items
DistributionIdList.Builder items(String... items)
Contains the distribution IDs in the list.
- Parameters:
items
- Contains the distribution IDs in the list.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-