pub struct PutProvisionedConcurrencyConfigResponse {
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 PutProvisionedConcurrencyConfigResponse
impl Clone for PutProvisionedConcurrencyConfigResponse
Source§fn clone(&self) -> PutProvisionedConcurrencyConfigResponse
fn clone(&self) -> PutProvisionedConcurrencyConfigResponse
Returns a duplicate 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 PutProvisionedConcurrencyConfigResponse
impl Default for PutProvisionedConcurrencyConfigResponse
Source§fn default() -> PutProvisionedConcurrencyConfigResponse
fn default() -> PutProvisionedConcurrencyConfigResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PutProvisionedConcurrencyConfigResponse
impl<'de> Deserialize<'de> for PutProvisionedConcurrencyConfigResponse
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 PutProvisionedConcurrencyConfigResponse
impl PartialEq for PutProvisionedConcurrencyConfigResponse
Source§fn eq(&self, other: &PutProvisionedConcurrencyConfigResponse) -> bool
fn eq(&self, other: &PutProvisionedConcurrencyConfigResponse) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for PutProvisionedConcurrencyConfigResponse
Auto Trait Implementations§
impl Freeze for PutProvisionedConcurrencyConfigResponse
impl RefUnwindSafe for PutProvisionedConcurrencyConfigResponse
impl Send for PutProvisionedConcurrencyConfigResponse
impl Sync for PutProvisionedConcurrencyConfigResponse
impl Unpin for PutProvisionedConcurrencyConfigResponse
impl UnwindSafe for PutProvisionedConcurrencyConfigResponse
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