pub struct CreateStreamingURLRequest {
pub application_id: Option<String>,
pub fleet_name: String,
pub session_context: Option<String>,
pub stack_name: String,
pub user_id: String,
pub validity: Option<i64>,
}
Fields§
§application_id: Option<String>
The name of the application to launch after the session starts. This is the name that you specified as Name in the Image Assistant.
fleet_name: String
The name of the fleet.
session_context: Option<String>
The session context. For more information, see Session Context in the Amazon AppStream 2.0 Administration Guide.
stack_name: String
The name of the stack.
user_id: String
The identifier of the user.
validity: Option<i64>
The time that the streaming URL will be valid, in seconds. Specify a value between 1 and 604800 seconds. The default is 60 seconds.
Trait Implementations§
Source§impl Clone for CreateStreamingURLRequest
impl Clone for CreateStreamingURLRequest
Source§fn clone(&self) -> CreateStreamingURLRequest
fn clone(&self) -> CreateStreamingURLRequest
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 Debug for CreateStreamingURLRequest
impl Debug for CreateStreamingURLRequest
Source§impl Default for CreateStreamingURLRequest
impl Default for CreateStreamingURLRequest
Source§fn default() -> CreateStreamingURLRequest
fn default() -> CreateStreamingURLRequest
Returns the “default value” for a type. Read more
impl StructuralPartialEq for CreateStreamingURLRequest
Auto Trait Implementations§
impl Freeze for CreateStreamingURLRequest
impl RefUnwindSafe for CreateStreamingURLRequest
impl Send for CreateStreamingURLRequest
impl Sync for CreateStreamingURLRequest
impl Unpin for CreateStreamingURLRequest
impl UnwindSafe for CreateStreamingURLRequest
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