Struct aws_sdk_quicksight::types::builders::FolderBuilder
source · #[non_exhaustive]pub struct FolderBuilder { /* private fields */ }Expand description
A builder for Folder.
Implementations§
source§impl FolderBuilder
impl FolderBuilder
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 arn(self, input: impl Into<String>) -> Self
pub fn arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) for the folder.
sourcepub fn set_arn(self, input: Option<String>) -> Self
pub fn set_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) for the folder.
sourcepub fn folder_type(self, input: FolderType) -> Self
pub fn folder_type(self, input: FolderType) -> Self
The type of folder it is.
sourcepub fn set_folder_type(self, input: Option<FolderType>) -> Self
pub fn set_folder_type(self, input: Option<FolderType>) -> Self
The type of folder it is.
sourcepub fn get_folder_type(&self) -> &Option<FolderType>
pub fn get_folder_type(&self) -> &Option<FolderType>
The type of folder it is.
sourcepub fn folder_path(self, input: impl Into<String>) -> Self
pub fn folder_path(self, input: impl Into<String>) -> Self
Appends an item to folder_path.
To override the contents of this collection use set_folder_path.
An array of ancestor ARN strings for the folder.
sourcepub fn set_folder_path(self, input: Option<Vec<String>>) -> Self
pub fn set_folder_path(self, input: Option<Vec<String>>) -> Self
An array of ancestor ARN strings for the folder.
sourcepub fn get_folder_path(&self) -> &Option<Vec<String>>
pub fn get_folder_path(&self) -> &Option<Vec<String>>
An array of ancestor ARN strings for the folder.
sourcepub fn created_time(self, input: DateTime) -> Self
pub fn created_time(self, input: DateTime) -> Self
The time that the folder was created.
sourcepub fn set_created_time(self, input: Option<DateTime>) -> Self
pub fn set_created_time(self, input: Option<DateTime>) -> Self
The time that the folder was created.
sourcepub fn get_created_time(&self) -> &Option<DateTime>
pub fn get_created_time(&self) -> &Option<DateTime>
The time that the folder was created.
sourcepub fn last_updated_time(self, input: DateTime) -> Self
pub fn last_updated_time(self, input: DateTime) -> Self
The time that the folder was last updated.
sourcepub fn set_last_updated_time(self, input: Option<DateTime>) -> Self
pub fn set_last_updated_time(self, input: Option<DateTime>) -> Self
The time that the folder was last updated.
sourcepub fn get_last_updated_time(&self) -> &Option<DateTime>
pub fn get_last_updated_time(&self) -> &Option<DateTime>
The time that the folder was last updated.
sourcepub fn sharing_model(self, input: SharingModel) -> Self
pub fn sharing_model(self, input: SharingModel) -> Self
The sharing scope of the folder.
sourcepub fn set_sharing_model(self, input: Option<SharingModel>) -> Self
pub fn set_sharing_model(self, input: Option<SharingModel>) -> Self
The sharing scope of the folder.
sourcepub fn get_sharing_model(&self) -> &Option<SharingModel>
pub fn get_sharing_model(&self) -> &Option<SharingModel>
The sharing scope of the folder.
Trait Implementations§
source§impl Clone for FolderBuilder
impl Clone for FolderBuilder
source§fn clone(&self) -> FolderBuilder
fn clone(&self) -> FolderBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for FolderBuilder
impl Debug for FolderBuilder
source§impl Default for FolderBuilder
impl Default for FolderBuilder
source§fn default() -> FolderBuilder
fn default() -> FolderBuilder
source§impl PartialEq for FolderBuilder
impl PartialEq for FolderBuilder
source§fn eq(&self, other: &FolderBuilder) -> bool
fn eq(&self, other: &FolderBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for FolderBuilder
Auto Trait Implementations§
impl Freeze for FolderBuilder
impl RefUnwindSafe for FolderBuilder
impl Send for FolderBuilder
impl Sync for FolderBuilder
impl Unpin for FolderBuilder
impl UnwindSafe for FolderBuilder
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