Struct aws_sdk_nimble::model::LaunchProfile[][src]

#[non_exhaustive]
pub struct LaunchProfile {
Show 16 fields pub arn: Option<String>, pub created_at: Option<DateTime>, pub created_by: Option<String>, pub description: Option<String>, pub ec2_subnet_ids: Option<Vec<String>>, pub launch_profile_id: Option<String>, pub launch_profile_protocol_versions: Option<Vec<String>>, pub name: Option<String>, pub state: Option<LaunchProfileState>, pub status_code: Option<LaunchProfileStatusCode>, pub status_message: Option<String>, pub stream_configuration: Option<StreamConfiguration>, pub studio_component_ids: Option<Vec<String>>, pub tags: Option<HashMap<String, String>>, pub updated_at: Option<DateTime>, pub updated_by: Option<String>,
}
Expand description

A launch profile controls your artist workforce’s access to studio components, like compute farms, shared file systems, managed file systems, and license server configurations, as well as instance types and Amazon Machine Images (AMIs).

Studio administrators create launch profiles in the Nimble Studio console. Artists can use their launch profiles to launch an instance from the Nimble Studio portal. Each user’s launch profile defines how they can launch a streaming session. By default, studio admins can use all launch profiles.

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 launch profile.

description: Option<String>

A human-readable description of the launch profile.

ec2_subnet_ids: Option<Vec<String>>

Unique identifiers for a collection of EC2 subnets.

launch_profile_id: Option<String>

The launch profile ID.

launch_profile_protocol_versions: Option<Vec<String>>

The version number of the protocol that is used by the launch profile. The only valid version is "2021-03-31".

name: Option<String>

A friendly name for the launch profile.

state: Option<LaunchProfileState>

The current state.

status_code: Option<LaunchProfileStatusCode>

The status code.

status_message: Option<String>

The status message for the launch profile.

stream_configuration: Option<StreamConfiguration>

A configuration for a streaming session.

studio_component_ids: Option<Vec<String>>

Unique identifiers for a collection of studio components that can be used with this launch profile.

tags: Option<HashMap<String, String>>

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

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.

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 launch profile.

A human-readable description of the launch profile.

Unique identifiers for a collection of EC2 subnets.

The launch profile ID.

The version number of the protocol that is used by the launch profile. The only valid version is "2021-03-31".

A friendly name for the launch profile.

The current state.

The status code.

The status message for the launch profile.

A configuration for a streaming session.

Unique identifiers for a collection of studio components that can be used with this launch profile.

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

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

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

Creates a new builder-style object to manufacture LaunchProfile

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