pub struct GetProvisionedConcurrencyConfigRequest {
pub function_name: String,
pub qualifier: String,
}
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.
qualifier: String
The version number or alias name.
Trait Implementations§
Source§impl Clone for GetProvisionedConcurrencyConfigRequest
impl Clone for GetProvisionedConcurrencyConfigRequest
Source§fn clone(&self) -> GetProvisionedConcurrencyConfigRequest
fn clone(&self) -> GetProvisionedConcurrencyConfigRequest
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 GetProvisionedConcurrencyConfigRequest
impl Default for GetProvisionedConcurrencyConfigRequest
Source§fn default() -> GetProvisionedConcurrencyConfigRequest
fn default() -> GetProvisionedConcurrencyConfigRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for GetProvisionedConcurrencyConfigRequest
impl PartialEq for GetProvisionedConcurrencyConfigRequest
Source§fn eq(&self, other: &GetProvisionedConcurrencyConfigRequest) -> bool
fn eq(&self, other: &GetProvisionedConcurrencyConfigRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for GetProvisionedConcurrencyConfigRequest
Auto Trait Implementations§
impl Freeze for GetProvisionedConcurrencyConfigRequest
impl RefUnwindSafe for GetProvisionedConcurrencyConfigRequest
impl Send for GetProvisionedConcurrencyConfigRequest
impl Sync for GetProvisionedConcurrencyConfigRequest
impl Unpin for GetProvisionedConcurrencyConfigRequest
impl UnwindSafe for GetProvisionedConcurrencyConfigRequest
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