Struct aws_sdk_nimble::operation::create_studio::CreateStudioInput
source · #[non_exhaustive]pub struct CreateStudioInput {
pub admin_role_arn: Option<String>,
pub client_token: Option<String>,
pub display_name: Option<String>,
pub studio_encryption_configuration: Option<StudioEncryptionConfiguration>,
pub studio_name: Option<String>,
pub tags: Option<HashMap<String, 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_encryption_configuration: Option<StudioEncryptionConfiguration>The studio encryption configuration.
studio_name: Option<String>The studio name that is used in the URL of the Nimble Studio portal when accessed by Nimble Studio users.
A collection of labels, in the form of key-value pairs, that apply to this resource.
user_role_arn: Option<String>The IAM role that studio users will assume when logging in to the Nimble Studio portal.
Implementations§
source§impl CreateStudioInput
impl CreateStudioInput
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 studio_encryption_configuration(
&self,
) -> Option<&StudioEncryptionConfiguration>
pub fn studio_encryption_configuration( &self, ) -> Option<&StudioEncryptionConfiguration>
The studio encryption configuration.
sourcepub fn studio_name(&self) -> Option<&str>
pub fn studio_name(&self) -> Option<&str>
The studio name that is used in the URL of the Nimble Studio portal when accessed by Nimble Studio users.
A collection of labels, in the form of key-value pairs, that apply to this resource.
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 CreateStudioInput
impl CreateStudioInput
sourcepub fn builder() -> CreateStudioInputBuilder
pub fn builder() -> CreateStudioInputBuilder
Creates a new builder-style object to manufacture CreateStudioInput.
Trait Implementations§
source§impl Clone for CreateStudioInput
impl Clone for CreateStudioInput
source§fn clone(&self) -> CreateStudioInput
fn clone(&self) -> CreateStudioInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for CreateStudioInput
impl Debug for CreateStudioInput
source§impl PartialEq for CreateStudioInput
impl PartialEq for CreateStudioInput
impl StructuralPartialEq for CreateStudioInput
Auto Trait Implementations§
impl Freeze for CreateStudioInput
impl RefUnwindSafe for CreateStudioInput
impl Send for CreateStudioInput
impl Sync for CreateStudioInput
impl Unpin for CreateStudioInput
impl UnwindSafe for CreateStudioInput
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