Struct aws_sdk_nimble::types::LaunchProfileMembership
source · #[non_exhaustive]pub struct LaunchProfileMembership {
pub identity_store_id: Option<String>,
pub persona: Option<LaunchProfilePersona>,
pub principal_id: Option<String>,
pub sid: Option<String>,
}Expand description
Studio admins can use launch profile membership to delegate launch profile access to studio users in the Nimble Studio portal without writing or maintaining complex IAM policies. A launch profile member is a user association from your studio identity source who is granted permissions to a launch profile.
A launch profile member (type USER) provides the following permissions to that launch profile:
-
GetLaunchProfile
-
GetLaunchProfileInitialization
-
GetLaunchProfileMembers
-
GetLaunchProfileMember
-
CreateStreamingSession
-
GetLaunchProfileDetails
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.identity_store_id: Option<String>The ID of the identity store.
persona: Option<LaunchProfilePersona>The persona.
principal_id: Option<String>The principal ID.
sid: Option<String>The Active Directory Security Identifier for this user, if available.
Implementations§
source§impl LaunchProfileMembership
impl LaunchProfileMembership
sourcepub fn identity_store_id(&self) -> Option<&str>
pub fn identity_store_id(&self) -> Option<&str>
The ID of the identity store.
sourcepub fn persona(&self) -> Option<&LaunchProfilePersona>
pub fn persona(&self) -> Option<&LaunchProfilePersona>
The persona.
sourcepub fn principal_id(&self) -> Option<&str>
pub fn principal_id(&self) -> Option<&str>
The principal ID.
source§impl LaunchProfileMembership
impl LaunchProfileMembership
sourcepub fn builder() -> LaunchProfileMembershipBuilder
pub fn builder() -> LaunchProfileMembershipBuilder
Creates a new builder-style object to manufacture LaunchProfileMembership.
Trait Implementations§
source§impl Clone for LaunchProfileMembership
impl Clone for LaunchProfileMembership
source§fn clone(&self) -> LaunchProfileMembership
fn clone(&self) -> LaunchProfileMembership
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for LaunchProfileMembership
impl Debug for LaunchProfileMembership
source§impl PartialEq for LaunchProfileMembership
impl PartialEq for LaunchProfileMembership
source§fn eq(&self, other: &LaunchProfileMembership) -> bool
fn eq(&self, other: &LaunchProfileMembership) -> bool
self and other values to be equal, and is used
by ==.