Interface CreateTrustStoreResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<CreateTrustStoreResponse.Builder,CreateTrustStoreResponse>,ElasticLoadBalancingV2Response.Builder,SdkBuilder<CreateTrustStoreResponse.Builder,CreateTrustStoreResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- CreateTrustStoreResponse
public static interface CreateTrustStoreResponse.Builder extends ElasticLoadBalancingV2Response.Builder, SdkPojo, CopyableBuilder<CreateTrustStoreResponse.Builder,CreateTrustStoreResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CreateTrustStoreResponse.BuildertrustStores(Collection<TrustStore> trustStores)Information about the trust store created.CreateTrustStoreResponse.BuildertrustStores(Consumer<TrustStore.Builder>... trustStores)Information about the trust store created.CreateTrustStoreResponse.BuildertrustStores(TrustStore... trustStores)Information about the trust store created.-
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
CreateTrustStoreResponse.Builder trustStores(Collection<TrustStore> trustStores)
Information about the trust store created.
- Parameters:
trustStores- Information about the trust store created.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
trustStores
CreateTrustStoreResponse.Builder trustStores(TrustStore... trustStores)
Information about the trust store created.
- Parameters:
trustStores- Information about the trust store created.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
trustStores
CreateTrustStoreResponse.Builder trustStores(Consumer<TrustStore.Builder>... trustStores)
Information about the trust store created.
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)
-
-