Struct aws_sdk_nimble::operation::update_studio::UpdateStudioInput
source · #[non_exhaustive]pub struct UpdateStudioInput {
pub admin_role_arn: Option<String>,
pub client_token: Option<String>,
pub display_name: Option<String>,
pub studio_id: Option<String>,
pub user_role_arn: Option<String>,
}
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.admin_role_arn: Option<String>
The IAM role that Studio Admins will assume when logging in to the Nimble Studio portal.
client_token: Option<String>
Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If you don’t specify a client token, the Amazon Web Services SDK automatically generates a client token and uses it for the request to ensure idempotency.
display_name: Option<String>
A friendly name for the studio.
studio_id: Option<String>
The studio ID.
user_role_arn: Option<String>
The IAM role that Studio Users will assume when logging in to the Nimble Studio portal.
Implementations§
source§impl UpdateStudioInput
impl UpdateStudioInput
sourcepub fn admin_role_arn(&self) -> Option<&str>
pub fn admin_role_arn(&self) -> Option<&str>
The IAM role that Studio Admins will assume when logging in to the Nimble Studio portal.
sourcepub fn client_token(&self) -> Option<&str>
pub fn client_token(&self) -> Option<&str>
Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If you don’t specify a client token, the Amazon Web Services SDK automatically generates a client token and uses it for the request to ensure idempotency.
sourcepub fn display_name(&self) -> Option<&str>
pub fn display_name(&self) -> Option<&str>
A friendly name for the studio.
sourcepub fn user_role_arn(&self) -> Option<&str>
pub fn user_role_arn(&self) -> Option<&str>
The IAM role that Studio Users will assume when logging in to the Nimble Studio portal.
source§impl UpdateStudioInput
impl UpdateStudioInput
sourcepub fn builder() -> UpdateStudioInputBuilder
pub fn builder() -> UpdateStudioInputBuilder
Creates a new builder-style object to manufacture UpdateStudioInput
.
Trait Implementations§
source§impl Clone for UpdateStudioInput
impl Clone for UpdateStudioInput
source§fn clone(&self) -> UpdateStudioInput
fn clone(&self) -> UpdateStudioInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for UpdateStudioInput
impl Debug for UpdateStudioInput
source§impl PartialEq for UpdateStudioInput
impl PartialEq for UpdateStudioInput
source§fn eq(&self, other: &UpdateStudioInput) -> bool
fn eq(&self, other: &UpdateStudioInput) -> bool
self
and other
values to be equal, and is used
by ==
.