Struct aws_sdk_sagemaker::operation::create_space::CreateSpaceInput
source · #[non_exhaustive]pub struct CreateSpaceInput {
pub domain_id: Option<String>,
pub space_name: Option<String>,
pub tags: Option<Vec<Tag>>,
pub space_settings: Option<SpaceSettings>,
}
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.domain_id: Option<String>
The ID of the associated Domain.
space_name: Option<String>
The name of the space.
Tags to associated with the space. Each tag consists of a key and an optional value. Tag keys must be unique for each resource. Tags are searchable using the Search
API.
space_settings: Option<SpaceSettings>
A collection of space settings.
Implementations§
source§impl CreateSpaceInput
impl CreateSpaceInput
sourcepub fn space_name(&self) -> Option<&str>
pub fn space_name(&self) -> Option<&str>
The name of the space.
Tags to associated with the space. Each tag consists of a key and an optional value. Tag keys must be unique for each resource. Tags are searchable using the Search
API.
sourcepub fn space_settings(&self) -> Option<&SpaceSettings>
pub fn space_settings(&self) -> Option<&SpaceSettings>
A collection of space settings.
source§impl CreateSpaceInput
impl CreateSpaceInput
sourcepub fn builder() -> CreateSpaceInputBuilder
pub fn builder() -> CreateSpaceInputBuilder
Creates a new builder-style object to manufacture CreateSpaceInput
.
Trait Implementations§
source§impl Clone for CreateSpaceInput
impl Clone for CreateSpaceInput
source§fn clone(&self) -> CreateSpaceInput
fn clone(&self) -> CreateSpaceInput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for CreateSpaceInput
impl Debug for CreateSpaceInput
source§impl PartialEq<CreateSpaceInput> for CreateSpaceInput
impl PartialEq<CreateSpaceInput> for CreateSpaceInput
source§fn eq(&self, other: &CreateSpaceInput) -> bool
fn eq(&self, other: &CreateSpaceInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for CreateSpaceInput
Auto Trait Implementations§
impl RefUnwindSafe for CreateSpaceInput
impl Send for CreateSpaceInput
impl Sync for CreateSpaceInput
impl Unpin for CreateSpaceInput
impl UnwindSafe for CreateSpaceInput
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
Mutably borrows from an owned value. Read more