Struct aws_sdk_workspaces::operation::modify_client_properties::builders::ModifyClientPropertiesInputBuilder
source · #[non_exhaustive]pub struct ModifyClientPropertiesInputBuilder { /* private fields */ }
Expand description
A builder for ModifyClientPropertiesInput
.
Implementations§
source§impl ModifyClientPropertiesInputBuilder
impl ModifyClientPropertiesInputBuilder
sourcepub fn resource_id(self, input: impl Into<String>) -> Self
pub fn resource_id(self, input: impl Into<String>) -> Self
The resource identifiers, in the form of directory IDs.
This field is required.sourcepub fn set_resource_id(self, input: Option<String>) -> Self
pub fn set_resource_id(self, input: Option<String>) -> Self
The resource identifiers, in the form of directory IDs.
sourcepub fn get_resource_id(&self) -> &Option<String>
pub fn get_resource_id(&self) -> &Option<String>
The resource identifiers, in the form of directory IDs.
sourcepub fn client_properties(self, input: ClientProperties) -> Self
pub fn client_properties(self, input: ClientProperties) -> Self
Information about the Amazon WorkSpaces client.
This field is required.sourcepub fn set_client_properties(self, input: Option<ClientProperties>) -> Self
pub fn set_client_properties(self, input: Option<ClientProperties>) -> Self
Information about the Amazon WorkSpaces client.
sourcepub fn get_client_properties(&self) -> &Option<ClientProperties>
pub fn get_client_properties(&self) -> &Option<ClientProperties>
Information about the Amazon WorkSpaces client.
sourcepub fn build(self) -> Result<ModifyClientPropertiesInput, BuildError>
pub fn build(self) -> Result<ModifyClientPropertiesInput, BuildError>
Consumes the builder and constructs a ModifyClientPropertiesInput
.
source§impl ModifyClientPropertiesInputBuilder
impl ModifyClientPropertiesInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<ModifyClientPropertiesOutput, SdkError<ModifyClientPropertiesError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<ModifyClientPropertiesOutput, SdkError<ModifyClientPropertiesError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for ModifyClientPropertiesInputBuilder
impl Clone for ModifyClientPropertiesInputBuilder
source§fn clone(&self) -> ModifyClientPropertiesInputBuilder
fn clone(&self) -> ModifyClientPropertiesInputBuilder
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Default for ModifyClientPropertiesInputBuilder
impl Default for ModifyClientPropertiesInputBuilder
source§fn default() -> ModifyClientPropertiesInputBuilder
fn default() -> ModifyClientPropertiesInputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for ModifyClientPropertiesInputBuilder
impl PartialEq for ModifyClientPropertiesInputBuilder
source§fn eq(&self, other: &ModifyClientPropertiesInputBuilder) -> bool
fn eq(&self, other: &ModifyClientPropertiesInputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ModifyClientPropertiesInputBuilder
Auto Trait Implementations§
impl Freeze for ModifyClientPropertiesInputBuilder
impl RefUnwindSafe for ModifyClientPropertiesInputBuilder
impl Send for ModifyClientPropertiesInputBuilder
impl Sync for ModifyClientPropertiesInputBuilder
impl Unpin for ModifyClientPropertiesInputBuilder
impl UnwindSafe for ModifyClientPropertiesInputBuilder
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
Mutably borrows from an owned value. Read more
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>
Converts
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>
Converts
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 moreCreates a shared type from an unshared type.