Struct aws_sdk_lambda::operation::put_provisioned_concurrency_config::PutProvisionedConcurrencyConfigOutput
source · #[non_exhaustive]pub struct PutProvisionedConcurrencyConfigOutput { /* private fields */ }
Implementations§
source§impl PutProvisionedConcurrencyConfigOutput
impl PutProvisionedConcurrencyConfigOutput
sourcepub fn requested_provisioned_concurrent_executions(&self) -> Option<i32>
pub fn requested_provisioned_concurrent_executions(&self) -> Option<i32>
The amount of provisioned concurrency requested.
sourcepub fn available_provisioned_concurrent_executions(&self) -> Option<i32>
pub fn available_provisioned_concurrent_executions(&self) -> Option<i32>
The amount of provisioned concurrency available.
sourcepub fn allocated_provisioned_concurrent_executions(&self) -> Option<i32>
pub fn allocated_provisioned_concurrent_executions(&self) -> Option<i32>
The amount of provisioned concurrency allocated. When a weighted alias is used during linear and canary deployments, this value fluctuates depending on the amount of concurrency that is provisioned for the function versions.
sourcepub fn status(&self) -> Option<&ProvisionedConcurrencyStatusEnum>
pub fn status(&self) -> Option<&ProvisionedConcurrencyStatusEnum>
The status of the allocation process.
sourcepub fn status_reason(&self) -> Option<&str>
pub fn status_reason(&self) -> Option<&str>
For failed allocations, the reason that provisioned concurrency could not be allocated.
sourcepub fn last_modified(&self) -> Option<&str>
pub fn last_modified(&self) -> Option<&str>
The date and time that a user last updated the configuration, in ISO 8601 format.
source§impl PutProvisionedConcurrencyConfigOutput
impl PutProvisionedConcurrencyConfigOutput
sourcepub fn builder() -> PutProvisionedConcurrencyConfigOutputBuilder
pub fn builder() -> PutProvisionedConcurrencyConfigOutputBuilder
Creates a new builder-style object to manufacture PutProvisionedConcurrencyConfigOutput
.
Trait Implementations§
source§impl Clone for PutProvisionedConcurrencyConfigOutput
impl Clone for PutProvisionedConcurrencyConfigOutput
source§fn clone(&self) -> PutProvisionedConcurrencyConfigOutput
fn clone(&self) -> PutProvisionedConcurrencyConfigOutput
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 PartialEq for PutProvisionedConcurrencyConfigOutput
impl PartialEq for PutProvisionedConcurrencyConfigOutput
source§fn eq(&self, other: &PutProvisionedConcurrencyConfigOutput) -> bool
fn eq(&self, other: &PutProvisionedConcurrencyConfigOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for PutProvisionedConcurrencyConfigOutput
impl RequestId for PutProvisionedConcurrencyConfigOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None
if the service could not be reached.impl StructuralPartialEq for PutProvisionedConcurrencyConfigOutput
Auto Trait Implementations§
impl Freeze for PutProvisionedConcurrencyConfigOutput
impl RefUnwindSafe for PutProvisionedConcurrencyConfigOutput
impl Send for PutProvisionedConcurrencyConfigOutput
impl Sync for PutProvisionedConcurrencyConfigOutput
impl Unpin for PutProvisionedConcurrencyConfigOutput
impl UnwindSafe for PutProvisionedConcurrencyConfigOutput
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