Struct aws_sdk_quicksight::operation::create_folder_membership::builders::CreateFolderMembershipInputBuilder
source · #[non_exhaustive]pub struct CreateFolderMembershipInputBuilder { /* private fields */ }Expand description
A builder for CreateFolderMembershipInput.
Implementations§
source§impl CreateFolderMembershipInputBuilder
impl CreateFolderMembershipInputBuilder
sourcepub fn aws_account_id(self, input: impl Into<String>) -> Self
pub fn aws_account_id(self, input: impl Into<String>) -> Self
The ID for the Amazon Web Services account that contains the folder.
This field is required.sourcepub fn set_aws_account_id(self, input: Option<String>) -> Self
pub fn set_aws_account_id(self, input: Option<String>) -> Self
The ID for the Amazon Web Services account that contains the folder.
sourcepub fn get_aws_account_id(&self) -> &Option<String>
pub fn get_aws_account_id(&self) -> &Option<String>
The ID for the Amazon Web Services account that contains the folder.
sourcepub fn folder_id(self, input: impl Into<String>) -> Self
pub fn folder_id(self, input: impl Into<String>) -> Self
The ID of the folder.
This field is required.sourcepub fn set_folder_id(self, input: Option<String>) -> Self
pub fn set_folder_id(self, input: Option<String>) -> Self
The ID of the folder.
sourcepub fn get_folder_id(&self) -> &Option<String>
pub fn get_folder_id(&self) -> &Option<String>
The ID of the folder.
sourcepub fn member_id(self, input: impl Into<String>) -> Self
pub fn member_id(self, input: impl Into<String>) -> Self
The ID of the asset that you want to add to the folder.
This field is required.sourcepub fn set_member_id(self, input: Option<String>) -> Self
pub fn set_member_id(self, input: Option<String>) -> Self
The ID of the asset that you want to add to the folder.
sourcepub fn get_member_id(&self) -> &Option<String>
pub fn get_member_id(&self) -> &Option<String>
The ID of the asset that you want to add to the folder.
sourcepub fn member_type(self, input: MemberType) -> Self
pub fn member_type(self, input: MemberType) -> Self
The member type of the asset that you want to add to a folder.
This field is required.sourcepub fn set_member_type(self, input: Option<MemberType>) -> Self
pub fn set_member_type(self, input: Option<MemberType>) -> Self
The member type of the asset that you want to add to a folder.
sourcepub fn get_member_type(&self) -> &Option<MemberType>
pub fn get_member_type(&self) -> &Option<MemberType>
The member type of the asset that you want to add to a folder.
sourcepub fn build(self) -> Result<CreateFolderMembershipInput, BuildError>
pub fn build(self) -> Result<CreateFolderMembershipInput, BuildError>
Consumes the builder and constructs a CreateFolderMembershipInput.
source§impl CreateFolderMembershipInputBuilder
impl CreateFolderMembershipInputBuilder
sourcepub async fn send_with(
self,
client: &Client,
) -> Result<CreateFolderMembershipOutput, SdkError<CreateFolderMembershipError, HttpResponse>>
pub async fn send_with( self, client: &Client, ) -> Result<CreateFolderMembershipOutput, SdkError<CreateFolderMembershipError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for CreateFolderMembershipInputBuilder
impl Clone for CreateFolderMembershipInputBuilder
source§fn clone(&self) -> CreateFolderMembershipInputBuilder
fn clone(&self) -> CreateFolderMembershipInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for CreateFolderMembershipInputBuilder
impl Default for CreateFolderMembershipInputBuilder
source§fn default() -> CreateFolderMembershipInputBuilder
fn default() -> CreateFolderMembershipInputBuilder
source§impl PartialEq for CreateFolderMembershipInputBuilder
impl PartialEq for CreateFolderMembershipInputBuilder
source§fn eq(&self, other: &CreateFolderMembershipInputBuilder) -> bool
fn eq(&self, other: &CreateFolderMembershipInputBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for CreateFolderMembershipInputBuilder
Auto Trait Implementations§
impl Freeze for CreateFolderMembershipInputBuilder
impl RefUnwindSafe for CreateFolderMembershipInputBuilder
impl Send for CreateFolderMembershipInputBuilder
impl Sync for CreateFolderMembershipInputBuilder
impl Unpin for CreateFolderMembershipInputBuilder
impl UnwindSafe for CreateFolderMembershipInputBuilder
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)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