pub struct ListProvisionedConcurrencyConfigsResponse {
pub next_marker: Option<String>,
pub provisioned_concurrency_configs: Option<Vec<ProvisionedConcurrencyConfigListItem>>,
}
Fields§
§next_marker: Option<String>
The pagination token that's included if more results are available.
provisioned_concurrency_configs: Option<Vec<ProvisionedConcurrencyConfigListItem>>
A list of provisioned concurrency configurations.
Trait Implementations§
Source§impl Clone for ListProvisionedConcurrencyConfigsResponse
impl Clone for ListProvisionedConcurrencyConfigsResponse
Source§fn clone(&self) -> ListProvisionedConcurrencyConfigsResponse
fn clone(&self) -> ListProvisionedConcurrencyConfigsResponse
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 ListProvisionedConcurrencyConfigsResponse
impl Default for ListProvisionedConcurrencyConfigsResponse
Source§fn default() -> ListProvisionedConcurrencyConfigsResponse
fn default() -> ListProvisionedConcurrencyConfigsResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListProvisionedConcurrencyConfigsResponse
impl<'de> Deserialize<'de> for ListProvisionedConcurrencyConfigsResponse
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 ListProvisionedConcurrencyConfigsResponse
impl PartialEq for ListProvisionedConcurrencyConfigsResponse
Source§fn eq(&self, other: &ListProvisionedConcurrencyConfigsResponse) -> bool
fn eq(&self, other: &ListProvisionedConcurrencyConfigsResponse) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ListProvisionedConcurrencyConfigsResponse
Auto Trait Implementations§
impl Freeze for ListProvisionedConcurrencyConfigsResponse
impl RefUnwindSafe for ListProvisionedConcurrencyConfigsResponse
impl Send for ListProvisionedConcurrencyConfigsResponse
impl Sync for ListProvisionedConcurrencyConfigsResponse
impl Unpin for ListProvisionedConcurrencyConfigsResponse
impl UnwindSafe for ListProvisionedConcurrencyConfigsResponse
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