Struct aws_sdk_fsx::operation::update_shared_vpc_configuration::UpdateSharedVpcConfigurationInput
source · #[non_exhaustive]pub struct UpdateSharedVpcConfigurationInput {
pub enable_fsx_route_table_updates_from_participant_accounts: Option<String>,
pub client_request_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.enable_fsx_route_table_updates_from_participant_accounts: Option<String>Specifies whether participant accounts can create FSx for ONTAP Multi-AZ file systems in shared subnets. Set to true to enable or false to disable.
client_request_token: Option<String>(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.
Implementations§
sourcepub fn enable_fsx_route_table_updates_from_participant_accounts(
&self
) -> Option<&str>
pub fn enable_fsx_route_table_updates_from_participant_accounts( &self ) -> Option<&str>
Specifies whether participant accounts can create FSx for ONTAP Multi-AZ file systems in shared subnets. Set to true to enable or false to disable.
sourcepub fn client_request_token(&self) -> Option<&str>
pub fn client_request_token(&self) -> Option<&str>
(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.
sourcepub fn builder() -> UpdateSharedVpcConfigurationInputBuilder
pub fn builder() -> UpdateSharedVpcConfigurationInputBuilder
Creates a new builder-style object to manufacture UpdateSharedVpcConfigurationInput.
Trait Implementations§
source§fn clone(&self) -> UpdateSharedVpcConfigurationInput
fn clone(&self) -> UpdateSharedVpcConfigurationInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§fn eq(&self, other: &UpdateSharedVpcConfigurationInput) -> bool
fn eq(&self, other: &UpdateSharedVpcConfigurationInput) -> bool
self and other values to be equal, and is used
by ==.Auto Trait Implementations§
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more