aws_sdk_quicksight/client/update_key_registration.rs
1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3 /// Constructs a fluent builder for the [`UpdateKeyRegistration`](crate::operation::update_key_registration::builders::UpdateKeyRegistrationFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`aws_account_id(impl Into<String>)`](crate::operation::update_key_registration::builders::UpdateKeyRegistrationFluentBuilder::aws_account_id) / [`set_aws_account_id(Option<String>)`](crate::operation::update_key_registration::builders::UpdateKeyRegistrationFluentBuilder::set_aws_account_id):<br>required: **true**<br><p>The ID of the Amazon Web Services account that contains the customer managed key registration that you want to update.</p><br>
7 /// - [`key_registration(RegisteredCustomerManagedKey)`](crate::operation::update_key_registration::builders::UpdateKeyRegistrationFluentBuilder::key_registration) / [`set_key_registration(Option<Vec::<RegisteredCustomerManagedKey>>)`](crate::operation::update_key_registration::builders::UpdateKeyRegistrationFluentBuilder::set_key_registration):<br>required: **true**<br><p>A list of <code>RegisteredCustomerManagedKey</code> objects to be updated to the Amazon QuickSight account.</p><br>
8 /// - On success, responds with [`UpdateKeyRegistrationOutput`](crate::operation::update_key_registration::UpdateKeyRegistrationOutput) with field(s):
9 /// - [`failed_key_registration(Option<Vec::<FailedKeyRegistrationEntry>>)`](crate::operation::update_key_registration::UpdateKeyRegistrationOutput::failed_key_registration): <p>A list of all customer managed key registrations that failed to update.</p>
10 /// - [`successful_key_registration(Option<Vec::<SuccessfulKeyRegistrationEntry>>)`](crate::operation::update_key_registration::UpdateKeyRegistrationOutput::successful_key_registration): <p>A list of all customer managed key registrations that were successfully updated.</p>
11 /// - [`request_id(Option<String>)`](crate::operation::update_key_registration::UpdateKeyRegistrationOutput::request_id): <p>The Amazon Web Services request ID for this operation.</p>
12 /// - On failure, responds with [`SdkError<UpdateKeyRegistrationError>`](crate::operation::update_key_registration::UpdateKeyRegistrationError)
13 pub fn update_key_registration(&self) -> crate::operation::update_key_registration::builders::UpdateKeyRegistrationFluentBuilder {
14 crate::operation::update_key_registration::builders::UpdateKeyRegistrationFluentBuilder::new(self.handle.clone())
15 }
16}