Struct aws_sdk_nimble::model::Studio[][src]

#[non_exhaustive]
pub struct Studio {
Show 16 fields pub admin_role_arn: Option<String>, pub arn: Option<String>, pub created_at: Option<DateTime>, pub display_name: Option<String>, pub home_region: Option<String>, pub sso_client_id: Option<String>, pub state: Option<StudioState>, pub status_code: Option<StudioStatusCode>, pub status_message: Option<String>, pub studio_encryption_configuration: Option<StudioEncryptionConfiguration>, pub studio_id: Option<String>, pub studio_name: Option<String>, pub studio_url: Option<String>, pub tags: Option<HashMap<String, String>>, pub updated_at: Option<DateTime>, pub user_role_arn: Option<String>,
}
Expand description

Represents a studio resource.

A studio is the core resource used with Nimble Studio. You must create a studio first, before any other resource type can be created. All other resources you create and manage in Nimble Studio are contained within a studio.

When creating a studio, you must provides two IAM roles for use with the Nimble Studio portal. These roles are assumed by your users when they log in to the Nimble Studio portal via Amazon Web Services SSO and your identity source.

The user role must have the AmazonNimbleStudio-StudioUser managed policy attached for the portal to function properly.

The admin role must have the AmazonNimbleStudio-StudioAdmin managed policy attached for the portal to function properly.

Your studio roles must trust the identity.nimble.amazonaws.com service principal to function properly.

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

The IAM role that studio admins assume when logging in to the Nimble Studio portal.

arn: Option<String>

The Amazon Resource Name (ARN) that is assigned to a studio resource and uniquely identifies it. ARNs are unique across all Regions.

created_at: Option<DateTime>

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

display_name: Option<String>

A friendly name for the studio.

home_region: Option<String>

The Amazon Web Services Region where the studio resource is located.

sso_client_id: Option<String>

The Amazon Web Services SSO application client ID used to integrate with Amazon Web Services SSO to enable Amazon Web Services SSO users to log in to Nimble Studio portal.

state: Option<StudioState>

The current state of the studio resource.

status_code: Option<StudioStatusCode>

Status codes that provide additional detail on the studio state.

status_message: Option<String>

Additional detail on the studio state.

studio_encryption_configuration: Option<StudioEncryptionConfiguration>

Configuration of the encryption method that is used for the studio.

studio_id: Option<String>

The unique identifier for a studio resource. In Nimble Studio, all other resources are contained in a studio resource.

studio_name: Option<String>

The name of the studio, as included in the URL when accessing it in the Nimble Studio portal.

studio_url: Option<String>

The address of the web page for the studio.

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.

user_role_arn: Option<String>

The IAM role that studio users assume when logging in to the Nimble Studio portal.

Implementations

The IAM role that studio admins assume when logging in to the Nimble Studio portal.

The Amazon Resource Name (ARN) that is assigned to a studio resource and uniquely identifies it. ARNs are unique across all Regions.

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

A friendly name for the studio.

The Amazon Web Services Region where the studio resource is located.

The Amazon Web Services SSO application client ID used to integrate with Amazon Web Services SSO to enable Amazon Web Services SSO users to log in to Nimble Studio portal.

The current state of the studio resource.

Status codes that provide additional detail on the studio state.

Additional detail on the studio state.

Configuration of the encryption method that is used for the studio.

The unique identifier for a studio resource. In Nimble Studio, all other resources are contained in a studio resource.

The name of the studio, as included in the URL when accessing it in the Nimble Studio portal.

The address of the web page for the studio.

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 IAM role that studio users assume when logging in to the Nimble Studio portal.

Creates a new builder-style object to manufacture Studio

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