Struct aws_sdk_emr::operation::list_studio_session_mappings::builders::ListStudioSessionMappingsInputBuilder
source · #[non_exhaustive]pub struct ListStudioSessionMappingsInputBuilder { /* private fields */ }Expand description
A builder for ListStudioSessionMappingsInput.
Implementations§
source§impl ListStudioSessionMappingsInputBuilder
impl ListStudioSessionMappingsInputBuilder
sourcepub fn set_studio_id(self, input: Option<String>) -> Self
pub fn set_studio_id(self, input: Option<String>) -> Self
The ID of the Amazon EMR Studio.
sourcepub fn get_studio_id(&self) -> &Option<String>
pub fn get_studio_id(&self) -> &Option<String>
The ID of the Amazon EMR Studio.
sourcepub fn identity_type(self, input: IdentityType) -> Self
pub fn identity_type(self, input: IdentityType) -> Self
Specifies whether to return session mappings for users or groups. If not specified, the results include session mapping details for both users and groups.
sourcepub fn set_identity_type(self, input: Option<IdentityType>) -> Self
pub fn set_identity_type(self, input: Option<IdentityType>) -> Self
Specifies whether to return session mappings for users or groups. If not specified, the results include session mapping details for both users and groups.
sourcepub fn get_identity_type(&self) -> &Option<IdentityType>
pub fn get_identity_type(&self) -> &Option<IdentityType>
Specifies whether to return session mappings for users or groups. If not specified, the results include session mapping details for both users and groups.
sourcepub fn marker(self, input: impl Into<String>) -> Self
pub fn marker(self, input: impl Into<String>) -> Self
The pagination token that indicates the set of results to retrieve.
sourcepub fn set_marker(self, input: Option<String>) -> Self
pub fn set_marker(self, input: Option<String>) -> Self
The pagination token that indicates the set of results to retrieve.
sourcepub fn get_marker(&self) -> &Option<String>
pub fn get_marker(&self) -> &Option<String>
The pagination token that indicates the set of results to retrieve.
sourcepub fn build(self) -> Result<ListStudioSessionMappingsInput, BuildError>
pub fn build(self) -> Result<ListStudioSessionMappingsInput, BuildError>
Consumes the builder and constructs a ListStudioSessionMappingsInput.
source§impl ListStudioSessionMappingsInputBuilder
impl ListStudioSessionMappingsInputBuilder
sourcepub async fn send_with(
self,
client: &Client,
) -> Result<ListStudioSessionMappingsOutput, SdkError<ListStudioSessionMappingsError, HttpResponse>>
pub async fn send_with( self, client: &Client, ) -> Result<ListStudioSessionMappingsOutput, SdkError<ListStudioSessionMappingsError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for ListStudioSessionMappingsInputBuilder
impl Clone for ListStudioSessionMappingsInputBuilder
source§fn clone(&self) -> ListStudioSessionMappingsInputBuilder
fn clone(&self) -> ListStudioSessionMappingsInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for ListStudioSessionMappingsInputBuilder
impl Default for ListStudioSessionMappingsInputBuilder
source§fn default() -> ListStudioSessionMappingsInputBuilder
fn default() -> ListStudioSessionMappingsInputBuilder
source§impl PartialEq for ListStudioSessionMappingsInputBuilder
impl PartialEq for ListStudioSessionMappingsInputBuilder
source§fn eq(&self, other: &ListStudioSessionMappingsInputBuilder) -> bool
fn eq(&self, other: &ListStudioSessionMappingsInputBuilder) -> bool
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ListStudioSessionMappingsInputBuilder
Auto Trait Implementations§
impl Freeze for ListStudioSessionMappingsInputBuilder
impl RefUnwindSafe for ListStudioSessionMappingsInputBuilder
impl Send for ListStudioSessionMappingsInputBuilder
impl Sync for ListStudioSessionMappingsInputBuilder
impl Unpin for ListStudioSessionMappingsInputBuilder
impl UnwindSafe for ListStudioSessionMappingsInputBuilder
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