pub struct TenantBuilder { /* private fields */ }
Expand description
Builder for Tenant
.
Implementations§
Source§impl TenantBuilder
impl TenantBuilder
Sourcepub fn id<VALUE: Into<String>>(&mut self, value: VALUE) -> &mut Self
pub fn id<VALUE: Into<String>>(&mut self, value: VALUE) -> &mut Self
Identifier that is generated by ECS when the resource is created. The resource Id is guaranteed to be unique and immutable across all virtual data centers for all time.
Sourcepub fn is_encryption_enabled(&mut self, value: bool) -> &mut Self
pub fn is_encryption_enabled(&mut self, value: bool) -> &mut Self
tag to enable encryption for the tenant
Sourcepub fn default_bucket_block_size(&mut self, value: i64) -> &mut Self
pub fn default_bucket_block_size(&mut self, value: i64) -> &mut Self
Default bucket quota size.
Sourcepub fn is_compliance_enabled(&mut self, value: bool) -> &mut Self
pub fn is_compliance_enabled(&mut self, value: bool) -> &mut Self
Tag to enable compliance compliance
Trait Implementations§
Source§impl Clone for TenantBuilder
impl Clone for TenantBuilder
Source§fn clone(&self) -> TenantBuilder
fn clone(&self) -> TenantBuilder
Returns a duplicate 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 moreAuto Trait Implementations§
impl Freeze for TenantBuilder
impl RefUnwindSafe for TenantBuilder
impl Send for TenantBuilder
impl Sync for TenantBuilder
impl Unpin for TenantBuilder
impl UnwindSafe for TenantBuilder
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