#[non_exhaustive]pub struct InstanceFleetResizingSpecificationsBuilder { /* private fields */ }Expand description
A builder for InstanceFleetResizingSpecifications.
Implementations§
source§impl InstanceFleetResizingSpecificationsBuilder
impl InstanceFleetResizingSpecificationsBuilder
sourcepub fn spot_resize_specification(self, input: SpotResizingSpecification) -> Self
pub fn spot_resize_specification(self, input: SpotResizingSpecification) -> Self
The resize specification for Spot Instances in the instance fleet, which contains the resize timeout period.
sourcepub fn set_spot_resize_specification(
self,
input: Option<SpotResizingSpecification>
) -> Self
pub fn set_spot_resize_specification( self, input: Option<SpotResizingSpecification> ) -> Self
The resize specification for Spot Instances in the instance fleet, which contains the resize timeout period.
sourcepub fn on_demand_resize_specification(
self,
input: OnDemandResizingSpecification
) -> Self
pub fn on_demand_resize_specification( self, input: OnDemandResizingSpecification ) -> Self
The resize specification for On-Demand Instances in the instance fleet, which contains the resize timeout period.
sourcepub fn set_on_demand_resize_specification(
self,
input: Option<OnDemandResizingSpecification>
) -> Self
pub fn set_on_demand_resize_specification( self, input: Option<OnDemandResizingSpecification> ) -> Self
The resize specification for On-Demand Instances in the instance fleet, which contains the resize timeout period.
sourcepub fn build(self) -> InstanceFleetResizingSpecifications
pub fn build(self) -> InstanceFleetResizingSpecifications
Consumes the builder and constructs a InstanceFleetResizingSpecifications.
Trait Implementations§
source§impl Clone for InstanceFleetResizingSpecificationsBuilder
impl Clone for InstanceFleetResizingSpecificationsBuilder
source§fn clone(&self) -> InstanceFleetResizingSpecificationsBuilder
fn clone(&self) -> InstanceFleetResizingSpecificationsBuilder
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 Default for InstanceFleetResizingSpecificationsBuilder
impl Default for InstanceFleetResizingSpecificationsBuilder
source§fn default() -> InstanceFleetResizingSpecificationsBuilder
fn default() -> InstanceFleetResizingSpecificationsBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<InstanceFleetResizingSpecificationsBuilder> for InstanceFleetResizingSpecificationsBuilder
impl PartialEq<InstanceFleetResizingSpecificationsBuilder> for InstanceFleetResizingSpecificationsBuilder
source§fn eq(&self, other: &InstanceFleetResizingSpecificationsBuilder) -> bool
fn eq(&self, other: &InstanceFleetResizingSpecificationsBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for InstanceFleetResizingSpecificationsBuilder
Auto Trait Implementations§
impl RefUnwindSafe for InstanceFleetResizingSpecificationsBuilder
impl Send for InstanceFleetResizingSpecificationsBuilder
impl Sync for InstanceFleetResizingSpecificationsBuilder
impl Unpin for InstanceFleetResizingSpecificationsBuilder
impl UnwindSafe for InstanceFleetResizingSpecificationsBuilder
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