#[non_exhaustive]pub struct ProvisionedConcurrencyConfigListItem { /* private fields */ }
Expand description
Details about the provisioned concurrency configuration for a function alias or version.
Implementations§
source§impl ProvisionedConcurrencyConfigListItem
impl ProvisionedConcurrencyConfigListItem
sourcepub fn function_arn(&self) -> Option<&str>
pub fn function_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the alias or version.
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.
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 ProvisionedConcurrencyConfigListItem
impl ProvisionedConcurrencyConfigListItem
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ProvisionedConcurrencyConfigListItem
.
Trait Implementations§
source§impl Clone for ProvisionedConcurrencyConfigListItem
impl Clone for ProvisionedConcurrencyConfigListItem
source§fn clone(&self) -> ProvisionedConcurrencyConfigListItem
fn clone(&self) -> ProvisionedConcurrencyConfigListItem
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 more