Interface DescribeTrustStoresResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<DescribeTrustStoresResponse.Builder,DescribeTrustStoresResponse>,ElasticLoadBalancingV2Response.Builder,SdkBuilder<DescribeTrustStoresResponse.Builder,DescribeTrustStoresResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- DescribeTrustStoresResponse
public static interface DescribeTrustStoresResponse.Builder extends ElasticLoadBalancingV2Response.Builder, SdkPojo, CopyableBuilder<DescribeTrustStoresResponse.Builder,DescribeTrustStoresResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DescribeTrustStoresResponse.BuildernextMarker(String nextMarker)If there are additional results, this is the marker for the next set of results.DescribeTrustStoresResponse.BuildertrustStores(Collection<TrustStore> trustStores)Information about the trust stores.DescribeTrustStoresResponse.BuildertrustStores(Consumer<TrustStore.Builder>... trustStores)Information about the trust stores.DescribeTrustStoresResponse.BuildertrustStores(TrustStore... trustStores)Information about the trust stores.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.elasticloadbalancingv2.model.ElasticLoadBalancingV2Response.Builder
build, responseMetadata, responseMetadata
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
trustStores
DescribeTrustStoresResponse.Builder trustStores(Collection<TrustStore> trustStores)
Information about the trust stores.
- Parameters:
trustStores- Information about the trust stores.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
trustStores
DescribeTrustStoresResponse.Builder trustStores(TrustStore... trustStores)
Information about the trust stores.
- Parameters:
trustStores- Information about the trust stores.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
trustStores
DescribeTrustStoresResponse.Builder trustStores(Consumer<TrustStore.Builder>... trustStores)
Information about the trust stores.
This is a convenience method that creates an instance of theTrustStore.Builderavoiding the need to create one manually viaTrustStore.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#trustStores(List.) - Parameters:
trustStores- a consumer that will call methods onTrustStore.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#trustStores(java.util.Collection)
-
nextMarker
DescribeTrustStoresResponse.Builder nextMarker(String nextMarker)
If there are additional results, this is the marker for the next set of results. Otherwise, this is null.
- Parameters:
nextMarker- If there are additional results, this is the marker for the next set of results. Otherwise, this is null.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-