Struct aws_sdk_nimble::model::StreamingSession[][src]

#[non_exhaustive]
pub struct StreamingSession {
Show 20 fields pub arn: Option<String>, pub created_at: Option<DateTime>, pub created_by: Option<String>, pub ec2_instance_type: Option<String>, pub launch_profile_id: Option<String>, pub owned_by: Option<String>, pub session_id: Option<String>, pub state: Option<StreamingSessionState>, pub status_code: Option<StreamingSessionStatusCode>, pub status_message: Option<String>, pub streaming_image_id: Option<String>, pub tags: Option<HashMap<String, String>>, pub terminate_at: Option<DateTime>, pub updated_at: Option<DateTime>, pub updated_by: Option<String>, pub stopped_at: Option<DateTime>, pub stopped_by: Option<String>, pub started_at: Option<DateTime>, pub started_by: Option<String>, pub stop_at: Option<DateTime>,
}
Expand description

A streaming session is a virtual workstation created using a particular launch profile.

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.
arn: Option<String>

The ARN of the resource.

created_at: Option<DateTime>

The Unix epoch timestamp in seconds for when the resource was created.

created_by: Option<String>

The user ID of the user that created the streaming session.

ec2_instance_type: Option<String>

The EC2 Instance type used for the streaming session.

launch_profile_id: Option<String>

The ID of the launch profile used to control access from the streaming session.

owned_by: Option<String>

The user ID of the user that owns the streaming session.

session_id: Option<String>

The session ID.

state: Option<StreamingSessionState>

The current state.

status_code: Option<StreamingSessionStatusCode>

The status code.

status_message: Option<String>

The status message for the streaming session.

streaming_image_id: Option<String>

The ID of the streaming image.

tags: Option<HashMap<String, String>>

A collection of labels, in the form of key:value pairs, that apply to this resource.

terminate_at: Option<DateTime>

The time the streaming session will automatically terminate if not terminated by the user.

updated_at: Option<DateTime>

The Unix epoch timestamp in seconds for when the resource was updated.

updated_by: Option<String>

The user ID of the user that most recently updated the resource.

stopped_at: Option<DateTime>

The time the session entered STOP_IN_PROGRESS state.

stopped_by: Option<String>

The user ID of the user that stopped the streaming session.

started_at: Option<DateTime>

The time the session entered START_IN_PROGRESS state.

started_by: Option<String>

The user ID of the user that started the streaming session.

stop_at: Option<DateTime>

The time the streaming session will automatically be stopped if the user doesn’t stop the session themselves.

Implementations

The ARN of the resource.

The Unix epoch timestamp in seconds for when the resource was created.

The user ID of the user that created the streaming session.

The EC2 Instance type used for the streaming session.

The ID of the launch profile used to control access from the streaming session.

The user ID of the user that owns the streaming session.

The session ID.

The current state.

The status code.

The status message for the streaming session.

The ID of the streaming image.

A collection of labels, in the form of key:value pairs, that apply to this resource.

The time the streaming session will automatically terminate if not terminated by the user.

The Unix epoch timestamp in seconds for when the resource was updated.

The user ID of the user that most recently updated the resource.

The time the session entered STOP_IN_PROGRESS state.

The user ID of the user that stopped the streaming session.

The time the session entered START_IN_PROGRESS state.

The user ID of the user that started the streaming session.

The time the streaming session will automatically be stopped if the user doesn’t stop the session themselves.

Creates a new builder-style object to manufacture StreamingSession

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

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