#[non_exhaustive]pub struct StartStreamingSessionInput {
pub client_token: Option<String>,
pub session_id: Option<String>,
pub studio_id: Option<String>,
pub backup_id: Option<String>,
}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.client_token: Option<String>Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If you don’t specify a client token, the Amazon Web Services SDK automatically generates a client token and uses it for the request to ensure idempotency.
session_id: Option<String>The streaming session ID for the StartStreamingSessionRequest.
studio_id: Option<String>The studio ID for the StartStreamingSessionRequest.
backup_id: Option<String>The ID of the backup.
Implementations§
source§impl StartStreamingSessionInput
impl StartStreamingSessionInput
sourcepub fn client_token(&self) -> Option<&str>
pub fn client_token(&self) -> Option<&str>
Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If you don’t specify a client token, the Amazon Web Services SDK automatically generates a client token and uses it for the request to ensure idempotency.
sourcepub fn session_id(&self) -> Option<&str>
pub fn session_id(&self) -> Option<&str>
The streaming session ID for the StartStreamingSessionRequest.
source§impl StartStreamingSessionInput
impl StartStreamingSessionInput
sourcepub fn builder() -> StartStreamingSessionInputBuilder
pub fn builder() -> StartStreamingSessionInputBuilder
Creates a new builder-style object to manufacture StartStreamingSessionInput.
Trait Implementations§
source§impl Clone for StartStreamingSessionInput
impl Clone for StartStreamingSessionInput
source§fn clone(&self) -> StartStreamingSessionInput
fn clone(&self) -> StartStreamingSessionInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for StartStreamingSessionInput
impl Debug for StartStreamingSessionInput
source§impl PartialEq for StartStreamingSessionInput
impl PartialEq for StartStreamingSessionInput
source§fn eq(&self, other: &StartStreamingSessionInput) -> bool
fn eq(&self, other: &StartStreamingSessionInput) -> bool
self and other values to be equal, and is used
by ==.