Interface VpcOriginList.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<VpcOriginList.Builder,VpcOriginList>,SdkBuilder<VpcOriginList.Builder,VpcOriginList>,SdkPojo
- Enclosing class:
- VpcOriginList
@Mutable @NotThreadSafe public static interface VpcOriginList.Builder extends SdkPojo, CopyableBuilder<VpcOriginList.Builder,VpcOriginList>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description VpcOriginList.BuilderisTruncated(Boolean isTruncated)A flag that indicates whether more VPC origins remain to be listed.VpcOriginList.Builderitems(Collection<VpcOriginSummary> items)The items of the VPC origins list.VpcOriginList.Builderitems(Consumer<VpcOriginSummary.Builder>... items)The items of the VPC origins list.VpcOriginList.Builderitems(VpcOriginSummary... items)The items of the VPC origins list.VpcOriginList.Buildermarker(String marker)The marker associated with the VPC origins list.VpcOriginList.BuildermaxItems(Integer maxItems)The maximum number of items included in the list.VpcOriginList.BuildernextMarker(String nextMarker)The next marker associated with the VPC origins list.VpcOriginList.Builderquantity(Integer quantity)The number of VPC origins in the list.-
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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
marker
VpcOriginList.Builder marker(String marker)
The marker associated with the VPC origins list.
- Parameters:
marker- The marker associated with the VPC origins list.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
nextMarker
VpcOriginList.Builder nextMarker(String nextMarker)
The next marker associated with the VPC origins list.
- Parameters:
nextMarker- The next marker associated with the VPC origins list.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
maxItems
VpcOriginList.Builder maxItems(Integer maxItems)
The maximum number of items included in the list.
- Parameters:
maxItems- The maximum number of items included in the list.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
isTruncated
VpcOriginList.Builder isTruncated(Boolean isTruncated)
A flag that indicates whether more VPC origins remain to be listed. If your results were truncated, you can make a follow-up pagination request using the
Markerrequest parameter to retrieve more VPC origins in the list.- Parameters:
isTruncated- A flag that indicates whether more VPC origins remain to be listed. If your results were truncated, you can make a follow-up pagination request using theMarkerrequest parameter to retrieve more VPC origins in the list.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
quantity
VpcOriginList.Builder quantity(Integer quantity)
The number of VPC origins in the list.
- Parameters:
quantity- The number of VPC origins in the list.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
items
VpcOriginList.Builder items(Collection<VpcOriginSummary> items)
The items of the VPC origins list.
- Parameters:
items- The items of the VPC origins list.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
items
VpcOriginList.Builder items(VpcOriginSummary... items)
The items of the VPC origins list.
- Parameters:
items- The items of the VPC origins list.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
items
VpcOriginList.Builder items(Consumer<VpcOriginSummary.Builder>... items)
The items of the VPC origins list.
This is a convenience method that creates an instance of theVpcOriginSummary.Builderavoiding the need to create one manually viaVpcOriginSummary.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#items(List.) - Parameters:
items- a consumer that will call methods onVpcOriginSummary.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#items(java.util.Collection)
-
-