#[non_exhaustive]pub struct CreateWorkspaceInput {
pub alias: Option<String>,
pub client_token: Option<String>,
pub tags: Option<HashMap<String, String>>,
pub kms_key_arn: Option<String>,
}
Expand description
Represents the input of a CreateWorkspace operation.
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.alias: Option<String>
An optional user-assigned alias for this workspace. This alias is for user reference and does not need to be unique.
client_token: Option<String>
Optional, unique, case-sensitive, user-provided identifier to ensure the idempotency of the request.
Optional, user-provided tags for this workspace.
kms_key_arn: Option<String>
Optional, customer managed KMS key used to encrypt data for this workspace
Implementations§
source§impl CreateWorkspaceInput
impl CreateWorkspaceInput
sourcepub fn alias(&self) -> Option<&str>
pub fn alias(&self) -> Option<&str>
An optional user-assigned alias for this workspace. This alias is for user reference and does not need to be unique.
sourcepub fn client_token(&self) -> Option<&str>
pub fn client_token(&self) -> Option<&str>
Optional, unique, case-sensitive, user-provided identifier to ensure the idempotency of the request.
Optional, user-provided tags for this workspace.
sourcepub fn kms_key_arn(&self) -> Option<&str>
pub fn kms_key_arn(&self) -> Option<&str>
Optional, customer managed KMS key used to encrypt data for this workspace
source§impl CreateWorkspaceInput
impl CreateWorkspaceInput
sourcepub fn builder() -> CreateWorkspaceInputBuilder
pub fn builder() -> CreateWorkspaceInputBuilder
Creates a new builder-style object to manufacture CreateWorkspaceInput
.
Trait Implementations§
source§impl Clone for CreateWorkspaceInput
impl Clone for CreateWorkspaceInput
source§fn clone(&self) -> CreateWorkspaceInput
fn clone(&self) -> CreateWorkspaceInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for CreateWorkspaceInput
impl Debug for CreateWorkspaceInput
source§impl PartialEq for CreateWorkspaceInput
impl PartialEq for CreateWorkspaceInput
source§fn eq(&self, other: &CreateWorkspaceInput) -> bool
fn eq(&self, other: &CreateWorkspaceInput) -> bool
self
and other
values to be equal, and is used
by ==
.