Interface UpdateTrustStoreRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CopyableBuilder<UpdateTrustStoreRequest.Builder,UpdateTrustStoreRequest>,SdkBuilder<UpdateTrustStoreRequest.Builder,UpdateTrustStoreRequest>,SdkPojo,SdkRequest.Builder,WorkSpacesWebRequest.Builder
- Enclosing class:
- UpdateTrustStoreRequest
public static interface UpdateTrustStoreRequest.Builder extends WorkSpacesWebRequest.Builder, SdkPojo, CopyableBuilder<UpdateTrustStoreRequest.Builder,UpdateTrustStoreRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description UpdateTrustStoreRequest.BuildercertificatesToAdd(Collection<SdkBytes> certificatesToAdd)A list of CA certificates to add to the trust store.UpdateTrustStoreRequest.BuildercertificatesToAdd(SdkBytes... certificatesToAdd)A list of CA certificates to add to the trust store.UpdateTrustStoreRequest.BuildercertificatesToDelete(String... certificatesToDelete)A list of CA certificates to delete from a trust store.UpdateTrustStoreRequest.BuildercertificatesToDelete(Collection<String> certificatesToDelete)A list of CA certificates to delete from a trust store.UpdateTrustStoreRequest.BuilderclientToken(String clientToken)A unique, case-sensitive identifier that you provide to ensure the idempotency of the request.UpdateTrustStoreRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)UpdateTrustStoreRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)UpdateTrustStoreRequest.BuildertrustStoreArn(String trustStoreArn)The ARN of the trust store.-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
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, sdkFields
-
Methods inherited from interface software.amazon.awssdk.services.workspacesweb.model.WorkSpacesWebRequest.Builder
build
-
-
-
-
Method Detail
-
certificatesToAdd
UpdateTrustStoreRequest.Builder certificatesToAdd(Collection<SdkBytes> certificatesToAdd)
A list of CA certificates to add to the trust store.
- Parameters:
certificatesToAdd- A list of CA certificates to add to the trust store.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
certificatesToAdd
UpdateTrustStoreRequest.Builder certificatesToAdd(SdkBytes... certificatesToAdd)
A list of CA certificates to add to the trust store.
- Parameters:
certificatesToAdd- A list of CA certificates to add to the trust store.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
certificatesToDelete
UpdateTrustStoreRequest.Builder certificatesToDelete(Collection<String> certificatesToDelete)
A list of CA certificates to delete from a trust store.
- Parameters:
certificatesToDelete- A list of CA certificates to delete from a trust store.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
certificatesToDelete
UpdateTrustStoreRequest.Builder certificatesToDelete(String... certificatesToDelete)
A list of CA certificates to delete from a trust store.
- Parameters:
certificatesToDelete- A list of CA certificates to delete from a trust store.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
clientToken
UpdateTrustStoreRequest.Builder clientToken(String clientToken)
A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. Idempotency ensures that an API request completes only once. With an idempotent request, if the original request completes successfully, subsequent retries with the same client token return the result from the original successful request.
If you do not specify a client token, one is automatically generated by the AWS SDK.
- Parameters:
clientToken- A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. Idempotency ensures that an API request completes only once. With an idempotent request, if the original request completes successfully, subsequent retries with the same client token return the result from the original successful request.If you do not specify a client token, one is automatically generated by the AWS SDK.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
trustStoreArn
UpdateTrustStoreRequest.Builder trustStoreArn(String trustStoreArn)
The ARN of the trust store.
- Parameters:
trustStoreArn- The ARN of the trust store.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
overrideConfiguration
UpdateTrustStoreRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
UpdateTrustStoreRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-