#[non_exhaustive]pub struct GetBlueprintRunsOutputBuilder { /* private fields */ }Expand description
A builder for GetBlueprintRunsOutput.
Implementations§
Source§impl GetBlueprintRunsOutputBuilder
impl GetBlueprintRunsOutputBuilder
Sourcepub fn blueprint_runs(self, input: BlueprintRun) -> Self
pub fn blueprint_runs(self, input: BlueprintRun) -> Self
Appends an item to blueprint_runs.
To override the contents of this collection use set_blueprint_runs.
Returns a list of BlueprintRun objects.
Sourcepub fn set_blueprint_runs(self, input: Option<Vec<BlueprintRun>>) -> Self
pub fn set_blueprint_runs(self, input: Option<Vec<BlueprintRun>>) -> Self
Returns a list of BlueprintRun objects.
Sourcepub fn get_blueprint_runs(&self) -> &Option<Vec<BlueprintRun>>
pub fn get_blueprint_runs(&self) -> &Option<Vec<BlueprintRun>>
Returns a list of BlueprintRun objects.
Sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
A continuation token, if not all blueprint runs have been returned.
Sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
A continuation token, if not all blueprint runs have been returned.
Sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
A continuation token, if not all blueprint runs have been returned.
Sourcepub fn build(self) -> GetBlueprintRunsOutput
pub fn build(self) -> GetBlueprintRunsOutput
Consumes the builder and constructs a GetBlueprintRunsOutput.
Trait Implementations§
Source§impl Clone for GetBlueprintRunsOutputBuilder
impl Clone for GetBlueprintRunsOutputBuilder
Source§fn clone(&self) -> GetBlueprintRunsOutputBuilder
fn clone(&self) -> GetBlueprintRunsOutputBuilder
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 GetBlueprintRunsOutputBuilder
impl Default for GetBlueprintRunsOutputBuilder
Source§fn default() -> GetBlueprintRunsOutputBuilder
fn default() -> GetBlueprintRunsOutputBuilder
Returns the “default value” for a type. Read more
Source§impl PartialEq for GetBlueprintRunsOutputBuilder
impl PartialEq for GetBlueprintRunsOutputBuilder
Source§fn eq(&self, other: &GetBlueprintRunsOutputBuilder) -> bool
fn eq(&self, other: &GetBlueprintRunsOutputBuilder) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GetBlueprintRunsOutputBuilder
Auto Trait Implementations§
impl Freeze for GetBlueprintRunsOutputBuilder
impl RefUnwindSafe for GetBlueprintRunsOutputBuilder
impl Send for GetBlueprintRunsOutputBuilder
impl Sync for GetBlueprintRunsOutputBuilder
impl Unpin for GetBlueprintRunsOutputBuilder
impl UnsafeUnpin for GetBlueprintRunsOutputBuilder
impl UnwindSafe for GetBlueprintRunsOutputBuilder
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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>
Converts
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>
Converts
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 moreCreates a shared type from an unshared type.