pub struct Builder { /* private fields */ }Expand description
A builder for PutFunctionConcurrencyInput.
Implementations
sourceimpl Builder
impl Builder
sourcepub fn function_name(self, input: impl Into<String>) -> Self
pub fn function_name(self, input: impl Into<String>) -> Self
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.
sourcepub fn set_function_name(self, input: Option<String>) -> Self
pub fn set_function_name(self, input: Option<String>) -> Self
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.
sourcepub fn reserved_concurrent_executions(self, input: i32) -> Self
pub fn reserved_concurrent_executions(self, input: i32) -> Self
The number of simultaneous executions to reserve for the function.
sourcepub fn set_reserved_concurrent_executions(self, input: Option<i32>) -> Self
pub fn set_reserved_concurrent_executions(self, input: Option<i32>) -> Self
The number of simultaneous executions to reserve for the function.
sourcepub fn build(self) -> Result<PutFunctionConcurrencyInput, BuildError>
pub fn build(self) -> Result<PutFunctionConcurrencyInput, BuildError>
Consumes the builder and constructs a PutFunctionConcurrencyInput.