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
impl StructuralPartialEq for UpdateStudioInput
Auto Trait Implementations§
impl Freeze for UpdateStudioInput
impl RefUnwindSafe for UpdateStudioInput
impl Send for UpdateStudioInput
impl Sync for UpdateStudioInput
impl Unpin for UpdateStudioInput
impl UnwindSafe for UpdateStudioInput
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more