pub struct GetProvisionedConcurrencyConfigResponse {
pub allocated_provisioned_concurrent_executions: Option<i64>,
pub available_provisioned_concurrent_executions: Option<i64>,
pub last_modified: Option<String>,
pub requested_provisioned_concurrent_executions: Option<i64>,
pub status: Option<String>,
pub status_reason: Option<String>,
}
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.
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§
Source§impl Clone for GetProvisionedConcurrencyConfigResponse
impl Clone for GetProvisionedConcurrencyConfigResponse
Source§fn clone(&self) -> GetProvisionedConcurrencyConfigResponse
fn clone(&self) -> GetProvisionedConcurrencyConfigResponse
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 GetProvisionedConcurrencyConfigResponse
impl Default for GetProvisionedConcurrencyConfigResponse
Source§fn default() -> GetProvisionedConcurrencyConfigResponse
fn default() -> GetProvisionedConcurrencyConfigResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetProvisionedConcurrencyConfigResponse
impl<'de> Deserialize<'de> for GetProvisionedConcurrencyConfigResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for GetProvisionedConcurrencyConfigResponse
impl PartialEq for GetProvisionedConcurrencyConfigResponse
Source§fn eq(&self, other: &GetProvisionedConcurrencyConfigResponse) -> bool
fn eq(&self, other: &GetProvisionedConcurrencyConfigResponse) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for GetProvisionedConcurrencyConfigResponse
Auto Trait Implementations§
impl Freeze for GetProvisionedConcurrencyConfigResponse
impl RefUnwindSafe for GetProvisionedConcurrencyConfigResponse
impl Send for GetProvisionedConcurrencyConfigResponse
impl Sync for GetProvisionedConcurrencyConfigResponse
impl Unpin for GetProvisionedConcurrencyConfigResponse
impl UnwindSafe for GetProvisionedConcurrencyConfigResponse
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