aws_sdk_workspaces/client/modify_account.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 [`ModifyAccount`](crate::operation::modify_account::builders::ModifyAccountFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`dedicated_tenancy_support(DedicatedTenancySupportEnum)`](crate::operation::modify_account::builders::ModifyAccountFluentBuilder::dedicated_tenancy_support) / [`set_dedicated_tenancy_support(Option<DedicatedTenancySupportEnum>)`](crate::operation::modify_account::builders::ModifyAccountFluentBuilder::set_dedicated_tenancy_support):<br>required: **false**<br><p>The status of BYOL.</p><br>
7 /// - [`dedicated_tenancy_management_cidr_range(impl Into<String>)`](crate::operation::modify_account::builders::ModifyAccountFluentBuilder::dedicated_tenancy_management_cidr_range) / [`set_dedicated_tenancy_management_cidr_range(Option<String>)`](crate::operation::modify_account::builders::ModifyAccountFluentBuilder::set_dedicated_tenancy_management_cidr_range):<br>required: **false**<br><p>The IP address range, specified as an IPv4 CIDR block, for the management network interface. Specify an IP address range that is compatible with your network and in CIDR notation (that is, specify the range as an IPv4 CIDR block). The CIDR block size must be /16 (for example, 203.0.113.25/16). It must also be specified as available by the <code>ListAvailableManagementCidrRanges</code> operation.</p><br>
8 /// - On success, responds with [`ModifyAccountOutput`](crate::operation::modify_account::ModifyAccountOutput) with field(s):
9 /// - [`message(Option<String>)`](crate::operation::modify_account::ModifyAccountOutput::message): <p>The text message to describe the status of BYOL modification.</p>
10 /// - On failure, responds with [`SdkError<ModifyAccountError>`](crate::operation::modify_account::ModifyAccountError)
11 pub fn modify_account(&self) -> crate::operation::modify_account::builders::ModifyAccountFluentBuilder {
12 crate::operation::modify_account::builders::ModifyAccountFluentBuilder::new(self.handle.clone())
13 }
14}