Struct aws_sdk_amp::types::WorkspaceDescription
source · #[non_exhaustive]pub struct WorkspaceDescription { /* private fields */ }
Expand description
Represents the properties of a workspace.
Implementations§
source§impl WorkspaceDescription
impl WorkspaceDescription
sourcepub fn workspace_id(&self) -> Option<&str>
pub fn workspace_id(&self) -> Option<&str>
Unique string identifying this workspace.
sourcepub fn status(&self) -> Option<&WorkspaceStatus>
pub fn status(&self) -> Option<&WorkspaceStatus>
The status of this workspace.
sourcepub fn prometheus_endpoint(&self) -> Option<&str>
pub fn prometheus_endpoint(&self) -> Option<&str>
Prometheus endpoint URI.
sourcepub fn created_at(&self) -> Option<&DateTime>
pub fn created_at(&self) -> Option<&DateTime>
The time when the workspace was created.
The tags of this workspace.
source§impl WorkspaceDescription
impl WorkspaceDescription
sourcepub fn builder() -> WorkspaceDescriptionBuilder
pub fn builder() -> WorkspaceDescriptionBuilder
Creates a new builder-style object to manufacture WorkspaceDescription
.
Trait Implementations§
source§impl Clone for WorkspaceDescription
impl Clone for WorkspaceDescription
source§fn clone(&self) -> WorkspaceDescription
fn clone(&self) -> WorkspaceDescription
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 WorkspaceDescription
impl Debug for WorkspaceDescription
source§impl PartialEq<WorkspaceDescription> for WorkspaceDescription
impl PartialEq<WorkspaceDescription> for WorkspaceDescription
source§fn eq(&self, other: &WorkspaceDescription) -> bool
fn eq(&self, other: &WorkspaceDescription) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for WorkspaceDescription
Auto Trait Implementations§
impl RefUnwindSafe for WorkspaceDescription
impl Send for WorkspaceDescription
impl Sync for WorkspaceDescription
impl Unpin for WorkspaceDescription
impl UnwindSafe for WorkspaceDescription
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