Struct aws_sdk_workmail::types::builders::ResourceBuilder
source · #[non_exhaustive]pub struct ResourceBuilder { /* private fields */ }Expand description
A builder for Resource.
Implementations§
source§impl ResourceBuilder
impl ResourceBuilder
sourcepub fn type(self, input: ResourceType) -> Self
pub fn type(self, input: ResourceType) -> Self
The type of the resource: equipment or room.
sourcepub fn set_type(self, input: Option<ResourceType>) -> Self
pub fn set_type(self, input: Option<ResourceType>) -> Self
The type of the resource: equipment or room.
sourcepub fn get_type(&self) -> &Option<ResourceType>
pub fn get_type(&self) -> &Option<ResourceType>
The type of the resource: equipment or room.
sourcepub fn state(self, input: EntityState) -> Self
pub fn state(self, input: EntityState) -> Self
The state of the resource, which can be ENABLED, DISABLED, or DELETED.
sourcepub fn set_state(self, input: Option<EntityState>) -> Self
pub fn set_state(self, input: Option<EntityState>) -> Self
The state of the resource, which can be ENABLED, DISABLED, or DELETED.
sourcepub fn get_state(&self) -> &Option<EntityState>
pub fn get_state(&self) -> &Option<EntityState>
The state of the resource, which can be ENABLED, DISABLED, or DELETED.
sourcepub fn enabled_date(self, input: DateTime) -> Self
pub fn enabled_date(self, input: DateTime) -> Self
The date indicating when the resource was enabled for WorkMail use.
sourcepub fn set_enabled_date(self, input: Option<DateTime>) -> Self
pub fn set_enabled_date(self, input: Option<DateTime>) -> Self
The date indicating when the resource was enabled for WorkMail use.
sourcepub fn get_enabled_date(&self) -> &Option<DateTime>
pub fn get_enabled_date(&self) -> &Option<DateTime>
The date indicating when the resource was enabled for WorkMail use.
sourcepub fn disabled_date(self, input: DateTime) -> Self
pub fn disabled_date(self, input: DateTime) -> Self
The date indicating when the resource was disabled from WorkMail use.
sourcepub fn set_disabled_date(self, input: Option<DateTime>) -> Self
pub fn set_disabled_date(self, input: Option<DateTime>) -> Self
The date indicating when the resource was disabled from WorkMail use.
sourcepub fn get_disabled_date(&self) -> &Option<DateTime>
pub fn get_disabled_date(&self) -> &Option<DateTime>
The date indicating when the resource was disabled from WorkMail use.
sourcepub fn description(self, input: impl Into<String>) -> Self
pub fn description(self, input: impl Into<String>) -> Self
Resource description.
sourcepub fn set_description(self, input: Option<String>) -> Self
pub fn set_description(self, input: Option<String>) -> Self
Resource description.
sourcepub fn get_description(&self) -> &Option<String>
pub fn get_description(&self) -> &Option<String>
Resource description.
Trait Implementations§
source§impl Clone for ResourceBuilder
impl Clone for ResourceBuilder
source§fn clone(&self) -> ResourceBuilder
fn clone(&self) -> ResourceBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for ResourceBuilder
impl Debug for ResourceBuilder
source§impl Default for ResourceBuilder
impl Default for ResourceBuilder
source§fn default() -> ResourceBuilder
fn default() -> ResourceBuilder
source§impl PartialEq for ResourceBuilder
impl PartialEq for ResourceBuilder
source§fn eq(&self, other: &ResourceBuilder) -> bool
fn eq(&self, other: &ResourceBuilder) -> bool
self and other values to be equal, and is used
by ==.