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