Interface ListDistributionTenantsByCustomizationResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CloudFrontResponse.Builder,CopyableBuilder<ListDistributionTenantsByCustomizationResponse.Builder,ListDistributionTenantsByCustomizationResponse>,SdkBuilder<ListDistributionTenantsByCustomizationResponse.Builder,ListDistributionTenantsByCustomizationResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListDistributionTenantsByCustomizationResponse
@Mutable @NotThreadSafe public static interface ListDistributionTenantsByCustomizationResponse.Builder extends CloudFrontResponse.Builder, SdkPojo, CopyableBuilder<ListDistributionTenantsByCustomizationResponse.Builder,ListDistributionTenantsByCustomizationResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListDistributionTenantsByCustomizationResponse.BuilderdistributionTenantList(Collection<DistributionTenantSummary> distributionTenantList)A list of distribution tenants with the specified customization.ListDistributionTenantsByCustomizationResponse.BuilderdistributionTenantList(Consumer<DistributionTenantSummary.Builder>... distributionTenantList)A list of distribution tenants with the specified customization.ListDistributionTenantsByCustomizationResponse.BuilderdistributionTenantList(DistributionTenantSummary... distributionTenantList)A list of distribution tenants with the specified customization.ListDistributionTenantsByCustomizationResponse.BuildernextMarker(String nextMarker)A token used for pagination of results returned in the response.-
Methods inherited from interface software.amazon.awssdk.services.cloudfront.model.CloudFrontResponse.Builder
build, responseMetadata, responseMetadata
-
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
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
nextMarker
ListDistributionTenantsByCustomizationResponse.Builder nextMarker(String nextMarker)
A token used for pagination of results returned in the response. You can use the token from the previous request to define where the current request should begin.
- Parameters:
nextMarker- A token used for pagination of results returned in the response. You can use the token from the previous request to define where the current request should begin.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
distributionTenantList
ListDistributionTenantsByCustomizationResponse.Builder distributionTenantList(Collection<DistributionTenantSummary> distributionTenantList)
A list of distribution tenants with the specified customization.
- Parameters:
distributionTenantList- A list of distribution tenants with the specified customization.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
distributionTenantList
ListDistributionTenantsByCustomizationResponse.Builder distributionTenantList(DistributionTenantSummary... distributionTenantList)
A list of distribution tenants with the specified customization.
- Parameters:
distributionTenantList- A list of distribution tenants with the specified customization.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
distributionTenantList
ListDistributionTenantsByCustomizationResponse.Builder distributionTenantList(Consumer<DistributionTenantSummary.Builder>... distributionTenantList)
A list of distribution tenants with the specified customization.
This is a convenience method that creates an instance of theDistributionTenantSummary.Builderavoiding the need to create one manually viaDistributionTenantSummary.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#distributionTenantList(List.) - Parameters:
distributionTenantList- a consumer that will call methods onDistributionTenantSummary.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#distributionTenantList(java.util.Collection)
-
-