Struct aws_sdk_workspacesweb::input::UpdateTrustStoreInput [−][src]
#[non_exhaustive]pub struct UpdateTrustStoreInput {
pub trust_store_arn: Option<String>,
pub certificates_to_add: Option<Vec<Blob>>,
pub certificates_to_delete: Option<Vec<String>>,
pub client_token: Option<String>,
}
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.trust_store_arn: Option<String>
The ARN of the trust store.
certificates_to_add: Option<Vec<Blob>>
A list of CA certificates to add to the trust store.
certificates_to_delete: Option<Vec<String>>
A list of CA certificates to delete from a trust store.
client_token: Option<String>
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.
Implementations
pub async fn make_operation(
self,
_config: &Config
) -> Result<Operation<UpdateTrustStore, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
self,
_config: &Config
) -> Result<Operation<UpdateTrustStore, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<UpdateTrustStore
>
Creates a new builder-style object to manufacture UpdateTrustStoreInput
The ARN of the trust store.
A list of CA certificates to add to the trust store.
A list of CA certificates to delete from a trust store.
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.
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for UpdateTrustStoreInput
impl Send for UpdateTrustStoreInput
impl Sync for UpdateTrustStoreInput
impl Unpin for UpdateTrustStoreInput
impl UnwindSafe for UpdateTrustStoreInput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more