aws_sdk_iotmanagedintegrations/client/
start_account_association_refresh.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 [`StartAccountAssociationRefresh`](crate::operation::start_account_association_refresh::builders::StartAccountAssociationRefreshFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`account_association_id(impl Into<String>)`](crate::operation::start_account_association_refresh::builders::StartAccountAssociationRefreshFluentBuilder::account_association_id) / [`set_account_association_id(Option<String>)`](crate::operation::start_account_association_refresh::builders::StartAccountAssociationRefreshFluentBuilder::set_account_association_id):<br>required: **true**<br><p>The unique identifier of the account association to refresh.</p><br>
7    /// - On success, responds with [`StartAccountAssociationRefreshOutput`](crate::operation::start_account_association_refresh::StartAccountAssociationRefreshOutput) with field(s):
8    ///   - [`o_auth_authorization_url(String)`](crate::operation::start_account_association_refresh::StartAccountAssociationRefreshOutput::o_auth_authorization_url): <p>Third-party IoT platform OAuth authorization server URL with all required parameters to perform end-user authentication during the refresh process.</p>
9    /// - On failure, responds with [`SdkError<StartAccountAssociationRefreshError>`](crate::operation::start_account_association_refresh::StartAccountAssociationRefreshError)
10    pub fn start_account_association_refresh(
11        &self,
12    ) -> crate::operation::start_account_association_refresh::builders::StartAccountAssociationRefreshFluentBuilder {
13        crate::operation::start_account_association_refresh::builders::StartAccountAssociationRefreshFluentBuilder::new(self.handle.clone())
14    }
15}