[][src]Struct rusoto_lambda::ProvisionedConcurrencyConfigListItem

pub struct ProvisionedConcurrencyConfigListItem {
    pub allocated_provisioned_concurrent_executions: Option<i64>,
    pub available_provisioned_concurrent_executions: Option<i64>,
    pub function_arn: Option<String>,
    pub last_modified: Option<String>,
    pub requested_provisioned_concurrent_executions: Option<i64>,
    pub status: Option<String>,
    pub status_reason: Option<String>,
}

Details about the provisioned concurrency configuration for a function alias or version.

Fields

allocated_provisioned_concurrent_executions: Option<i64>

The amount of provisioned concurrency allocated.

available_provisioned_concurrent_executions: Option<i64>

The amount of provisioned concurrency available.

function_arn: Option<String>

The Amazon Resource Name (ARN) of the alias or version.

last_modified: Option<String>

The date and time that a user last updated the configuration, in ISO 8601 format.

requested_provisioned_concurrent_executions: Option<i64>

The amount of provisioned concurrency requested.

status: Option<String>

The status of the allocation process.

status_reason: Option<String>

For failed allocations, the reason that provisioned concurrency could not be allocated.

Trait Implementations

impl Clone for ProvisionedConcurrencyConfigListItem[src]

impl Debug for ProvisionedConcurrencyConfigListItem[src]

impl Default for ProvisionedConcurrencyConfigListItem[src]

impl<'de> Deserialize<'de> for ProvisionedConcurrencyConfigListItem[src]

impl PartialEq<ProvisionedConcurrencyConfigListItem> for ProvisionedConcurrencyConfigListItem[src]

impl StructuralPartialEq for ProvisionedConcurrencyConfigListItem[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.