#[non_exhaustive]pub struct GetWorkspaceOutputBuilder { /* private fields */ }Expand description
A builder for GetWorkspaceOutput.
Implementations§
source§impl GetWorkspaceOutputBuilder
impl GetWorkspaceOutputBuilder
sourcepub fn workspace_id(self, input: impl Into<String>) -> Self
pub fn workspace_id(self, input: impl Into<String>) -> Self
The ID of the workspace.
sourcepub fn set_workspace_id(self, input: Option<String>) -> Self
pub fn set_workspace_id(self, input: Option<String>) -> Self
The ID of the workspace.
sourcepub fn description(self, input: impl Into<String>) -> Self
pub fn description(self, input: impl Into<String>) -> Self
The description of the workspace.
sourcepub fn set_description(self, input: Option<String>) -> Self
pub fn set_description(self, input: Option<String>) -> Self
The description of the workspace.
sourcepub fn s3_location(self, input: impl Into<String>) -> Self
pub fn s3_location(self, input: impl Into<String>) -> Self
The ARN of the S3 bucket where resources associated with the workspace are stored.
sourcepub fn set_s3_location(self, input: Option<String>) -> Self
pub fn set_s3_location(self, input: Option<String>) -> Self
The ARN of the S3 bucket where resources associated with the workspace are stored.
sourcepub fn role(self, input: impl Into<String>) -> Self
pub fn role(self, input: impl Into<String>) -> Self
The ARN of the execution role associated with the workspace.
sourcepub fn set_role(self, input: Option<String>) -> Self
pub fn set_role(self, input: Option<String>) -> Self
The ARN of the execution role associated with the workspace.
sourcepub fn creation_date_time(self, input: DateTime) -> Self
pub fn creation_date_time(self, input: DateTime) -> Self
The date and time when the workspace was created.
sourcepub fn set_creation_date_time(self, input: Option<DateTime>) -> Self
pub fn set_creation_date_time(self, input: Option<DateTime>) -> Self
The date and time when the workspace was created.
sourcepub fn update_date_time(self, input: DateTime) -> Self
pub fn update_date_time(self, input: DateTime) -> Self
The date and time when the workspace was last updated.
sourcepub fn set_update_date_time(self, input: Option<DateTime>) -> Self
pub fn set_update_date_time(self, input: Option<DateTime>) -> Self
The date and time when the workspace was last updated.
sourcepub fn build(self) -> GetWorkspaceOutput
pub fn build(self) -> GetWorkspaceOutput
Consumes the builder and constructs a GetWorkspaceOutput.
Trait Implementations§
source§impl Clone for GetWorkspaceOutputBuilder
impl Clone for GetWorkspaceOutputBuilder
source§fn clone(&self) -> GetWorkspaceOutputBuilder
fn clone(&self) -> GetWorkspaceOutputBuilder
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 GetWorkspaceOutputBuilder
impl Debug for GetWorkspaceOutputBuilder
source§impl Default for GetWorkspaceOutputBuilder
impl Default for GetWorkspaceOutputBuilder
source§fn default() -> GetWorkspaceOutputBuilder
fn default() -> GetWorkspaceOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<GetWorkspaceOutputBuilder> for GetWorkspaceOutputBuilder
impl PartialEq<GetWorkspaceOutputBuilder> for GetWorkspaceOutputBuilder
source§fn eq(&self, other: &GetWorkspaceOutputBuilder) -> bool
fn eq(&self, other: &GetWorkspaceOutputBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.