pub struct ListProvisionedConcurrencyConfigsRequest {
pub function_name: String,
pub marker: Option<String>,
pub max_items: Option<i64>,
}
Fields§
§function_name: String
The name of the Lambda function.
Name formats
-
Function name -
my-function
. -
Function ARN -
arn:aws:lambda:us-west-2:123456789012:function:my-function
. -
Partial ARN -
123456789012:function:my-function
.
The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.
marker: Option<String>
Specify the pagination token that's returned by a previous request to retrieve the next page of results.
max_items: Option<i64>
Specify a number to limit the number of configurations returned.
Trait Implementations§
Source§impl Clone for ListProvisionedConcurrencyConfigsRequest
impl Clone for ListProvisionedConcurrencyConfigsRequest
Source§fn clone(&self) -> ListProvisionedConcurrencyConfigsRequest
fn clone(&self) -> ListProvisionedConcurrencyConfigsRequest
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 ListProvisionedConcurrencyConfigsRequest
impl Default for ListProvisionedConcurrencyConfigsRequest
Source§fn default() -> ListProvisionedConcurrencyConfigsRequest
fn default() -> ListProvisionedConcurrencyConfigsRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListProvisionedConcurrencyConfigsRequest
impl PartialEq for ListProvisionedConcurrencyConfigsRequest
Source§fn eq(&self, other: &ListProvisionedConcurrencyConfigsRequest) -> bool
fn eq(&self, other: &ListProvisionedConcurrencyConfigsRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ListProvisionedConcurrencyConfigsRequest
Auto Trait Implementations§
impl Freeze for ListProvisionedConcurrencyConfigsRequest
impl RefUnwindSafe for ListProvisionedConcurrencyConfigsRequest
impl Send for ListProvisionedConcurrencyConfigsRequest
impl Sync for ListProvisionedConcurrencyConfigsRequest
impl Unpin for ListProvisionedConcurrencyConfigsRequest
impl UnwindSafe for ListProvisionedConcurrencyConfigsRequest
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