Struct aws_sdk_elasticbeanstalk::operation::create_platform_version::builders::CreatePlatformVersionOutputBuilder
source · #[non_exhaustive]pub struct CreatePlatformVersionOutputBuilder { /* private fields */ }
Expand description
A builder for CreatePlatformVersionOutput
.
Implementations§
source§impl CreatePlatformVersionOutputBuilder
impl CreatePlatformVersionOutputBuilder
sourcepub fn platform_summary(self, input: PlatformSummary) -> Self
pub fn platform_summary(self, input: PlatformSummary) -> Self
Detailed information about the new version of the custom platform.
sourcepub fn set_platform_summary(self, input: Option<PlatformSummary>) -> Self
pub fn set_platform_summary(self, input: Option<PlatformSummary>) -> Self
Detailed information about the new version of the custom platform.
sourcepub fn get_platform_summary(&self) -> &Option<PlatformSummary>
pub fn get_platform_summary(&self) -> &Option<PlatformSummary>
Detailed information about the new version of the custom platform.
sourcepub fn builder_value(self, input: Builder) -> Self
pub fn builder_value(self, input: Builder) -> Self
The builder used to create the custom platform.
sourcepub fn set_builder(self, input: Option<Builder>) -> Self
pub fn set_builder(self, input: Option<Builder>) -> Self
The builder used to create the custom platform.
sourcepub fn get_builder(&self) -> &Option<Builder>
pub fn get_builder(&self) -> &Option<Builder>
The builder used to create the custom platform.
sourcepub fn build(self) -> CreatePlatformVersionOutput
pub fn build(self) -> CreatePlatformVersionOutput
Consumes the builder and constructs a CreatePlatformVersionOutput
.
Trait Implementations§
source§impl Clone for CreatePlatformVersionOutputBuilder
impl Clone for CreatePlatformVersionOutputBuilder
source§fn clone(&self) -> CreatePlatformVersionOutputBuilder
fn clone(&self) -> CreatePlatformVersionOutputBuilder
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 CreatePlatformVersionOutputBuilder
impl Default for CreatePlatformVersionOutputBuilder
source§fn default() -> CreatePlatformVersionOutputBuilder
fn default() -> CreatePlatformVersionOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for CreatePlatformVersionOutputBuilder
impl PartialEq for CreatePlatformVersionOutputBuilder
source§fn eq(&self, other: &CreatePlatformVersionOutputBuilder) -> bool
fn eq(&self, other: &CreatePlatformVersionOutputBuilder) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for CreatePlatformVersionOutputBuilder
Auto Trait Implementations§
impl Freeze for CreatePlatformVersionOutputBuilder
impl RefUnwindSafe for CreatePlatformVersionOutputBuilder
impl Send for CreatePlatformVersionOutputBuilder
impl Sync for CreatePlatformVersionOutputBuilder
impl Unpin for CreatePlatformVersionOutputBuilder
impl UnwindSafe for CreatePlatformVersionOutputBuilder
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)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.