Struct aws_sdk_nimble::operation::get_launch_profile_initialization::GetLaunchProfileInitializationInput
source · #[non_exhaustive]pub struct GetLaunchProfileInitializationInput {
pub launch_profile_id: Option<String>,
pub launch_profile_protocol_versions: Option<Vec<String>>,
pub launch_purpose: Option<String>,
pub platform: Option<String>,
pub studio_id: Option<String>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.launch_profile_id: Option<String>The ID of the launch profile used to control access from the streaming session.
launch_profile_protocol_versions: Option<Vec<String>>The launch profile protocol versions supported by the client.
launch_purpose: Option<String>The launch purpose.
platform: Option<String>The platform where this Launch Profile will be used, either Windows or Linux.
studio_id: Option<String>The studio ID.
Implementations§
source§impl GetLaunchProfileInitializationInput
impl GetLaunchProfileInitializationInput
sourcepub fn launch_profile_id(&self) -> Option<&str>
pub fn launch_profile_id(&self) -> Option<&str>
The ID of the launch profile used to control access from the streaming session.
sourcepub fn launch_profile_protocol_versions(&self) -> &[String]
pub fn launch_profile_protocol_versions(&self) -> &[String]
The launch profile protocol versions supported by the client.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .launch_profile_protocol_versions.is_none().
sourcepub fn launch_purpose(&self) -> Option<&str>
pub fn launch_purpose(&self) -> Option<&str>
The launch purpose.
source§impl GetLaunchProfileInitializationInput
impl GetLaunchProfileInitializationInput
sourcepub fn builder() -> GetLaunchProfileInitializationInputBuilder
pub fn builder() -> GetLaunchProfileInitializationInputBuilder
Creates a new builder-style object to manufacture GetLaunchProfileInitializationInput.
Trait Implementations§
source§impl Clone for GetLaunchProfileInitializationInput
impl Clone for GetLaunchProfileInitializationInput
source§fn clone(&self) -> GetLaunchProfileInitializationInput
fn clone(&self) -> GetLaunchProfileInitializationInput
Returns a copy 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 PartialEq for GetLaunchProfileInitializationInput
impl PartialEq for GetLaunchProfileInitializationInput
source§fn eq(&self, other: &GetLaunchProfileInitializationInput) -> bool
fn eq(&self, other: &GetLaunchProfileInitializationInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for GetLaunchProfileInitializationInput
Auto Trait Implementations§
impl RefUnwindSafe for GetLaunchProfileInitializationInput
impl Send for GetLaunchProfileInitializationInput
impl Sync for GetLaunchProfileInitializationInput
impl Unpin for GetLaunchProfileInitializationInput
impl UnwindSafe for GetLaunchProfileInitializationInput
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
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>
Creates a shared type from an unshared type.