1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`UpdateSharedVpcConfiguration`](crate::operation::update_shared_vpc_configuration::builders::UpdateSharedVpcConfigurationFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`enable_fsx_route_table_updates_from_participant_accounts(impl Into<String>)`](crate::operation::update_shared_vpc_configuration::builders::UpdateSharedVpcConfigurationFluentBuilder::enable_fsx_route_table_updates_from_participant_accounts) / [`set_enable_fsx_route_table_updates_from_participant_accounts(Option<String>)`](crate::operation::update_shared_vpc_configuration::builders::UpdateSharedVpcConfigurationFluentBuilder::set_enable_fsx_route_table_updates_from_participant_accounts):<br>required: **false**<br><p>Specifies whether participant accounts can create FSx for ONTAP Multi-AZ file systems in shared subnets. Set to <code>true</code> to enable or <code>false</code> to disable.</p><br>
    ///   - [`client_request_token(impl Into<String>)`](crate::operation::update_shared_vpc_configuration::builders::UpdateSharedVpcConfigurationFluentBuilder::client_request_token) / [`set_client_request_token(Option<String>)`](crate::operation::update_shared_vpc_configuration::builders::UpdateSharedVpcConfigurationFluentBuilder::set_client_request_token):<br>required: **false**<br><p>(Optional) An idempotency token for resource creation, in a string of up to 63 ASCII characters. This token is automatically filled on your behalf when you use the Command Line Interface (CLI) or an Amazon Web Services SDK.</p><br>
    /// - On success, responds with [`UpdateSharedVpcConfigurationOutput`](crate::operation::update_shared_vpc_configuration::UpdateSharedVpcConfigurationOutput) with field(s):
    ///   - [`enable_fsx_route_table_updates_from_participant_accounts(Option<String>)`](crate::operation::update_shared_vpc_configuration::UpdateSharedVpcConfigurationOutput::enable_fsx_route_table_updates_from_participant_accounts): <p>Indicates whether participant accounts can create FSx for ONTAP Multi-AZ file systems in shared subnets.</p>
    /// - On failure, responds with [`SdkError<UpdateSharedVpcConfigurationError>`](crate::operation::update_shared_vpc_configuration::UpdateSharedVpcConfigurationError)
    pub fn update_shared_vpc_configuration(
        &self,
    ) -> crate::operation::update_shared_vpc_configuration::builders::UpdateSharedVpcConfigurationFluentBuilder {
        crate::operation::update_shared_vpc_configuration::builders::UpdateSharedVpcConfigurationFluentBuilder::new(self.handle.clone())
    }
}