Struct aws_sdk_lambda::operation::put_runtime_management_config::builders::PutRuntimeManagementConfigOutputBuilder
source · #[non_exhaustive]pub struct PutRuntimeManagementConfigOutputBuilder { /* private fields */ }
Expand description
A builder for PutRuntimeManagementConfigOutput
.
Implementations§
source§impl PutRuntimeManagementConfigOutputBuilder
impl PutRuntimeManagementConfigOutputBuilder
sourcepub fn update_runtime_on(self, input: UpdateRuntimeOn) -> Self
pub fn update_runtime_on(self, input: UpdateRuntimeOn) -> Self
The runtime update mode.
sourcepub fn set_update_runtime_on(self, input: Option<UpdateRuntimeOn>) -> Self
pub fn set_update_runtime_on(self, input: Option<UpdateRuntimeOn>) -> Self
The runtime update mode.
sourcepub fn function_arn(self, input: impl Into<String>) -> Self
pub fn function_arn(self, input: impl Into<String>) -> Self
The ARN of the function
sourcepub fn set_function_arn(self, input: Option<String>) -> Self
pub fn set_function_arn(self, input: Option<String>) -> Self
The ARN of the function
sourcepub fn runtime_version_arn(self, input: impl Into<String>) -> Self
pub fn runtime_version_arn(self, input: impl Into<String>) -> Self
The ARN of the runtime the function is configured to use. If the runtime update mode is manual, the ARN is returned, otherwise null
is returned.
sourcepub fn set_runtime_version_arn(self, input: Option<String>) -> Self
pub fn set_runtime_version_arn(self, input: Option<String>) -> Self
The ARN of the runtime the function is configured to use. If the runtime update mode is manual, the ARN is returned, otherwise null
is returned.
sourcepub fn build(self) -> PutRuntimeManagementConfigOutput
pub fn build(self) -> PutRuntimeManagementConfigOutput
Consumes the builder and constructs a PutRuntimeManagementConfigOutput
.
Trait Implementations§
source§impl Clone for PutRuntimeManagementConfigOutputBuilder
impl Clone for PutRuntimeManagementConfigOutputBuilder
source§fn clone(&self) -> PutRuntimeManagementConfigOutputBuilder
fn clone(&self) -> PutRuntimeManagementConfigOutputBuilder
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 PutRuntimeManagementConfigOutputBuilder
impl Default for PutRuntimeManagementConfigOutputBuilder
source§fn default() -> PutRuntimeManagementConfigOutputBuilder
fn default() -> PutRuntimeManagementConfigOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for PutRuntimeManagementConfigOutputBuilder
impl PartialEq for PutRuntimeManagementConfigOutputBuilder
source§fn eq(&self, other: &PutRuntimeManagementConfigOutputBuilder) -> bool
fn eq(&self, other: &PutRuntimeManagementConfigOutputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for PutRuntimeManagementConfigOutputBuilder
Auto Trait Implementations§
impl Freeze for PutRuntimeManagementConfigOutputBuilder
impl RefUnwindSafe for PutRuntimeManagementConfigOutputBuilder
impl Send for PutRuntimeManagementConfigOutputBuilder
impl Sync for PutRuntimeManagementConfigOutputBuilder
impl Unpin for PutRuntimeManagementConfigOutputBuilder
impl UnwindSafe for PutRuntimeManagementConfigOutputBuilder
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> 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 more