#[non_exhaustive]pub struct DeploymentPropertiesBuilder { /* private fields */ }
Expand description
A builder for DeploymentProperties
.
Implementations§
source§impl DeploymentPropertiesBuilder
impl DeploymentPropertiesBuilder
sourcepub fn start_timeout_minutes(self, input: i32) -> Self
pub fn start_timeout_minutes(self, input: i32) -> Self
The start timeout of the environment blueprint deployment.
sourcepub fn set_start_timeout_minutes(self, input: Option<i32>) -> Self
pub fn set_start_timeout_minutes(self, input: Option<i32>) -> Self
The start timeout of the environment blueprint deployment.
sourcepub fn get_start_timeout_minutes(&self) -> &Option<i32>
pub fn get_start_timeout_minutes(&self) -> &Option<i32>
The start timeout of the environment blueprint deployment.
sourcepub fn end_timeout_minutes(self, input: i32) -> Self
pub fn end_timeout_minutes(self, input: i32) -> Self
The end timeout of the environment blueprint deployment.
sourcepub fn set_end_timeout_minutes(self, input: Option<i32>) -> Self
pub fn set_end_timeout_minutes(self, input: Option<i32>) -> Self
The end timeout of the environment blueprint deployment.
sourcepub fn get_end_timeout_minutes(&self) -> &Option<i32>
pub fn get_end_timeout_minutes(&self) -> &Option<i32>
The end timeout of the environment blueprint deployment.
sourcepub fn build(self) -> DeploymentProperties
pub fn build(self) -> DeploymentProperties
Consumes the builder and constructs a DeploymentProperties
.
Trait Implementations§
source§impl Clone for DeploymentPropertiesBuilder
impl Clone for DeploymentPropertiesBuilder
source§fn clone(&self) -> DeploymentPropertiesBuilder
fn clone(&self) -> DeploymentPropertiesBuilder
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 DeploymentPropertiesBuilder
impl Debug for DeploymentPropertiesBuilder
source§impl Default for DeploymentPropertiesBuilder
impl Default for DeploymentPropertiesBuilder
source§fn default() -> DeploymentPropertiesBuilder
fn default() -> DeploymentPropertiesBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for DeploymentPropertiesBuilder
impl PartialEq for DeploymentPropertiesBuilder
source§fn eq(&self, other: &DeploymentPropertiesBuilder) -> bool
fn eq(&self, other: &DeploymentPropertiesBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for DeploymentPropertiesBuilder
Auto Trait Implementations§
impl RefUnwindSafe for DeploymentPropertiesBuilder
impl Send for DeploymentPropertiesBuilder
impl Sync for DeploymentPropertiesBuilder
impl Unpin for DeploymentPropertiesBuilder
impl UnwindSafe for DeploymentPropertiesBuilder
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