pub struct GetStudioSessionMappingInput {
pub identity_id: Option<String>,
pub identity_name: Option<String>,
pub identity_type: String,
pub studio_id: String,
}
Fields§
§identity_id: Option<String>
The globally unique identifier (GUID) of the user or group. For more information, see UserId and GroupId in the AWS SSO Identity Store API Reference. Either IdentityName
or IdentityId
must be specified.
identity_name: Option<String>
The name of the user or group to fetch. For more information, see UserName and DisplayName in the AWS SSO Identity Store API Reference. Either IdentityName
or IdentityId
must be specified.
identity_type: String
Specifies whether the identity to fetch is a user or a group.
studio_id: String
The ID of the Amazon EMR Studio.
Trait Implementations§
Source§impl Clone for GetStudioSessionMappingInput
impl Clone for GetStudioSessionMappingInput
Source§fn clone(&self) -> GetStudioSessionMappingInput
fn clone(&self) -> GetStudioSessionMappingInput
Returns a duplicate 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 Debug for GetStudioSessionMappingInput
impl Debug for GetStudioSessionMappingInput
Source§impl Default for GetStudioSessionMappingInput
impl Default for GetStudioSessionMappingInput
Source§fn default() -> GetStudioSessionMappingInput
fn default() -> GetStudioSessionMappingInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for GetStudioSessionMappingInput
impl PartialEq for GetStudioSessionMappingInput
Source§fn eq(&self, other: &GetStudioSessionMappingInput) -> bool
fn eq(&self, other: &GetStudioSessionMappingInput) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for GetStudioSessionMappingInput
Auto Trait Implementations§
impl Freeze for GetStudioSessionMappingInput
impl RefUnwindSafe for GetStudioSessionMappingInput
impl Send for GetStudioSessionMappingInput
impl Sync for GetStudioSessionMappingInput
impl Unpin for GetStudioSessionMappingInput
impl UnwindSafe for GetStudioSessionMappingInput
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