Struct aws_sdk_lambda::operation::get_runtime_management_config::builders::GetRuntimeManagementConfigOutputBuilder
source · #[non_exhaustive]pub struct GetRuntimeManagementConfigOutputBuilder { /* private fields */ }
Expand description
A builder for GetRuntimeManagementConfigOutput
.
Implementations§
source§impl GetRuntimeManagementConfigOutputBuilder
impl GetRuntimeManagementConfigOutputBuilder
sourcepub fn update_runtime_on(self, input: UpdateRuntimeOn) -> Self
pub fn update_runtime_on(self, input: UpdateRuntimeOn) -> Self
The current runtime update mode of the function.
sourcepub fn set_update_runtime_on(self, input: Option<UpdateRuntimeOn>) -> Self
pub fn set_update_runtime_on(self, input: Option<UpdateRuntimeOn>) -> Self
The current runtime update mode of the function.
sourcepub fn get_update_runtime_on(&self) -> &Option<UpdateRuntimeOn>
pub fn get_update_runtime_on(&self) -> &Option<UpdateRuntimeOn>
The current runtime update mode 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 get_runtime_version_arn(&self) -> &Option<String>
pub fn get_runtime_version_arn(&self) -> &Option<String>
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 function_arn(self, input: impl Into<String>) -> Self
pub fn function_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of your function.
sourcepub fn set_function_arn(self, input: Option<String>) -> Self
pub fn set_function_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of your function.
sourcepub fn get_function_arn(&self) -> &Option<String>
pub fn get_function_arn(&self) -> &Option<String>
The Amazon Resource Name (ARN) of your function.
sourcepub fn build(self) -> GetRuntimeManagementConfigOutput
pub fn build(self) -> GetRuntimeManagementConfigOutput
Consumes the builder and constructs a GetRuntimeManagementConfigOutput
.
Trait Implementations§
source§impl Clone for GetRuntimeManagementConfigOutputBuilder
impl Clone for GetRuntimeManagementConfigOutputBuilder
source§fn clone(&self) -> GetRuntimeManagementConfigOutputBuilder
fn clone(&self) -> GetRuntimeManagementConfigOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for GetRuntimeManagementConfigOutputBuilder
impl Default for GetRuntimeManagementConfigOutputBuilder
source§fn default() -> GetRuntimeManagementConfigOutputBuilder
fn default() -> GetRuntimeManagementConfigOutputBuilder
source§impl PartialEq for GetRuntimeManagementConfigOutputBuilder
impl PartialEq for GetRuntimeManagementConfigOutputBuilder
source§fn eq(&self, other: &GetRuntimeManagementConfigOutputBuilder) -> bool
fn eq(&self, other: &GetRuntimeManagementConfigOutputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for GetRuntimeManagementConfigOutputBuilder
Auto Trait Implementations§
impl Freeze for GetRuntimeManagementConfigOutputBuilder
impl RefUnwindSafe for GetRuntimeManagementConfigOutputBuilder
impl Send for GetRuntimeManagementConfigOutputBuilder
impl Sync for GetRuntimeManagementConfigOutputBuilder
impl Unpin for GetRuntimeManagementConfigOutputBuilder
impl UnwindSafe for GetRuntimeManagementConfigOutputBuilder
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
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>
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