Struct aws_sdk_amp::model::WorkspaceDescription
source · [−]#[non_exhaustive]pub struct WorkspaceDescription {
pub workspace_id: Option<String>,
pub alias: Option<String>,
pub arn: Option<String>,
pub status: Option<WorkspaceStatus>,
pub prometheus_endpoint: Option<String>,
pub created_at: Option<DateTime>,
pub tags: Option<HashMap<String, String>>,
}
Expand description
Represents the properties of a workspace.
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.workspace_id: Option<String>
Unique string identifying this workspace.
alias: Option<String>
Alias of this workspace.
arn: Option<String>
The Amazon Resource Name (ARN) of this workspace.
status: Option<WorkspaceStatus>
The status of this workspace.
prometheus_endpoint: Option<String>
Prometheus endpoint URI.
created_at: Option<DateTime>
The time when the workspace was created.
The tags of this workspace.
Implementations
Unique string identifying this workspace.
The status of this workspace.
Prometheus endpoint URI.
The time when the workspace was created.
The tags of this workspace.
Creates a new builder-style object to manufacture WorkspaceDescription
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
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
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more