Struct aws_sdk_nimble::model::StreamConfiguration [−][src]
#[non_exhaustive]pub struct StreamConfiguration {
pub clipboard_mode: Option<StreamingClipboardMode>,
pub ec2_instance_types: Option<Vec<StreamingInstanceType>>,
pub max_session_length_in_minutes: i32,
pub streaming_image_ids: Option<Vec<String>>,
pub max_stopped_session_length_in_minutes: i32,
}Expand description
A configuration for a streaming session.
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.clipboard_mode: Option<StreamingClipboardMode>Enable or disable the use of the system clipboard to copy and paste between the streaming session and streaming client.
ec2_instance_types: Option<Vec<StreamingInstanceType>>The EC2 instance types that users can select from when launching a streaming session with this launch profile.
max_session_length_in_minutes: i32The length of time, in minutes, that a streaming session can be active before it is stopped or terminated. After this point, Nimble Studio automatically terminates or stops the session. The default length of time is 690 minutes, and the maximum length of time is 30 days.
streaming_image_ids: Option<Vec<String>>The streaming images that users can select from when launching a streaming session with this launch profile.
max_stopped_session_length_in_minutes: i32Integer that determines if you can start and stop your sessions and how long a session can stay in the STOPPED state. The default value is 0. The maximum value is 5760.
If the value is missing or set to 0, your sessions can’t be stopped. If you then call StopStreamingSession, the session fails. If the time that a session stays in the READY state exceeds the maxSessionLengthInMinutes value, the session will automatically be terminated by AWS (instead of stopped).
If the value is set to a positive number, the session can be stopped. You can call StopStreamingSession to stop sessions in the READY state. If the time that a session stays in the READY state exceeds the maxSessionLengthInMinutes value, the session will automatically be stopped by AWS (instead of terminated).
Implementations
Enable or disable the use of the system clipboard to copy and paste between the streaming session and streaming client.
The EC2 instance types that users can select from when launching a streaming session with this launch profile.
The length of time, in minutes, that a streaming session can be active before it is stopped or terminated. After this point, Nimble Studio automatically terminates or stops the session. The default length of time is 690 minutes, and the maximum length of time is 30 days.
The streaming images that users can select from when launching a streaming session with this launch profile.
Integer that determines if you can start and stop your sessions and how long a session can stay in the STOPPED state. The default value is 0. The maximum value is 5760.
If the value is missing or set to 0, your sessions can’t be stopped. If you then call StopStreamingSession, the session fails. If the time that a session stays in the READY state exceeds the maxSessionLengthInMinutes value, the session will automatically be terminated by AWS (instead of stopped).
If the value is set to a positive number, the session can be stopped. You can call StopStreamingSession to stop sessions in the READY state. If the time that a session stays in the READY state exceeds the maxSessionLengthInMinutes value, the session will automatically be stopped by AWS (instead of terminated).
Creates a new builder-style object to manufacture StreamConfiguration
Trait Implementations
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Auto Trait Implementations
impl RefUnwindSafe for StreamConfiguration
impl Send for StreamConfiguration
impl Sync for StreamConfiguration
impl Unpin for StreamConfiguration
impl UnwindSafe for StreamConfiguration
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more
