Struct aws_sdk_ec2::operation::describe_scheduled_instance_availability::builders::DescribeScheduledInstanceAvailabilityOutputBuilder
source · #[non_exhaustive]pub struct DescribeScheduledInstanceAvailabilityOutputBuilder { /* private fields */ }Expand description
A builder for DescribeScheduledInstanceAvailabilityOutput.
Implementations§
source§impl DescribeScheduledInstanceAvailabilityOutputBuilder
impl DescribeScheduledInstanceAvailabilityOutputBuilder
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
The token required to retrieve the next set of results. This value is null when there are no more results to return.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
The token required to retrieve the next set of results. This value is null when there are no more results to return.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
The token required to retrieve the next set of results. This value is null when there are no more results to return.
sourcepub fn scheduled_instance_availability_set(
self,
input: ScheduledInstanceAvailability
) -> Self
pub fn scheduled_instance_availability_set( self, input: ScheduledInstanceAvailability ) -> Self
Appends an item to scheduled_instance_availability_set.
To override the contents of this collection use set_scheduled_instance_availability_set.
Information about the available Scheduled Instances.
sourcepub fn set_scheduled_instance_availability_set(
self,
input: Option<Vec<ScheduledInstanceAvailability>>
) -> Self
pub fn set_scheduled_instance_availability_set( self, input: Option<Vec<ScheduledInstanceAvailability>> ) -> Self
Information about the available Scheduled Instances.
sourcepub fn get_scheduled_instance_availability_set(
&self
) -> &Option<Vec<ScheduledInstanceAvailability>>
pub fn get_scheduled_instance_availability_set( &self ) -> &Option<Vec<ScheduledInstanceAvailability>>
Information about the available Scheduled Instances.
sourcepub fn build(self) -> DescribeScheduledInstanceAvailabilityOutput
pub fn build(self) -> DescribeScheduledInstanceAvailabilityOutput
Consumes the builder and constructs a DescribeScheduledInstanceAvailabilityOutput.
Trait Implementations§
source§impl Clone for DescribeScheduledInstanceAvailabilityOutputBuilder
impl Clone for DescribeScheduledInstanceAvailabilityOutputBuilder
source§fn clone(&self) -> DescribeScheduledInstanceAvailabilityOutputBuilder
fn clone(&self) -> DescribeScheduledInstanceAvailabilityOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for DescribeScheduledInstanceAvailabilityOutputBuilder
impl Default for DescribeScheduledInstanceAvailabilityOutputBuilder
source§fn default() -> DescribeScheduledInstanceAvailabilityOutputBuilder
fn default() -> DescribeScheduledInstanceAvailabilityOutputBuilder
source§impl PartialEq for DescribeScheduledInstanceAvailabilityOutputBuilder
impl PartialEq for DescribeScheduledInstanceAvailabilityOutputBuilder
source§fn eq(&self, other: &DescribeScheduledInstanceAvailabilityOutputBuilder) -> bool
fn eq(&self, other: &DescribeScheduledInstanceAvailabilityOutputBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DescribeScheduledInstanceAvailabilityOutputBuilder
Auto Trait Implementations§
impl Freeze for DescribeScheduledInstanceAvailabilityOutputBuilder
impl RefUnwindSafe for DescribeScheduledInstanceAvailabilityOutputBuilder
impl Send for DescribeScheduledInstanceAvailabilityOutputBuilder
impl Sync for DescribeScheduledInstanceAvailabilityOutputBuilder
impl Unpin for DescribeScheduledInstanceAvailabilityOutputBuilder
impl UnwindSafe for DescribeScheduledInstanceAvailabilityOutputBuilder
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more