// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
pub use crate::operation::create_function::_create_function_input::CreateFunctionInputBuilder;
pub use crate::operation::create_function::_create_function_output::CreateFunctionOutputBuilder;
impl crate::operation::create_function::builders::CreateFunctionInputBuilder {
/// Sends a request with this input using the given client.
pub async fn send_with(
self,
client: &crate::Client,
) -> ::std::result::Result<
crate::operation::create_function::CreateFunctionOutput,
::aws_smithy_runtime_api::client::result::SdkError<
crate::operation::create_function::CreateFunctionError,
::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
>,
> {
let mut fluent_builder = client.create_function();
fluent_builder.inner = self;
fluent_builder.send().await
}
}
/// Fluent builder constructing a request to `CreateFunction`.
///
/// <p>Creates a Lambda function. To create a function, you need a <a href="https://docs.aws.amazon.com/lambda/latest/dg/gettingstarted-package.html">deployment package</a> and an <a href="https://docs.aws.amazon.com/lambda/latest/dg/intro-permission-model.html#lambda-intro-execution-role">execution role</a>. The deployment package is a .zip file archive or container image that contains your function code. The execution role grants the function permission to use Amazon Web Services services, such as Amazon CloudWatch Logs for log streaming and X-Ray for request tracing.</p>
/// <p>If the deployment package is a <a href="https://docs.aws.amazon.com/lambda/latest/dg/lambda-images.html">container image</a>, then you set the package type to <code>Image</code>. For a container image, the code property must include the URI of a container image in the Amazon ECR registry. You do not need to specify the handler and runtime properties.</p>
/// <p>If the deployment package is a <a href="https://docs.aws.amazon.com/lambda/latest/dg/gettingstarted-package.html#gettingstarted-package-zip">.zip file archive</a>, then you set the package type to <code>Zip</code>. For a .zip file archive, the code property specifies the location of the .zip file. You must also specify the handler and runtime properties. The code in the deployment package must be compatible with the target instruction set architecture of the function (<code>x86-64</code> or <code>arm64</code>). If you do not specify the architecture, then the default value is <code>x86-64</code>.</p>
/// <p>When you create a function, Lambda provisions an instance of the function and its supporting resources. If your function connects to a VPC, this process can take a minute or so. During this time, you can't invoke or modify the function. The <code>State</code>, <code>StateReason</code>, and <code>StateReasonCode</code> fields in the response from <code>GetFunctionConfiguration</code> indicate when the function is ready to invoke. For more information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/functions-states.html">Lambda function states</a>.</p>
/// <p>A function has an unpublished version, and can have published versions and aliases. The unpublished version changes when you update your function's code and configuration. A published version is a snapshot of your function code and configuration that can't be changed. An alias is a named resource that maps to a version, and can be changed to map to a different version. Use the <code>Publish</code> parameter to create version <code>1</code> of your function from its initial configuration.</p>
/// <p>The other parameters let you configure version-specific and function-level settings. You can modify version-specific settings later with <code>UpdateFunctionConfiguration</code>. Function-level settings apply to both the unpublished and published versions of the function, and include tags (<code>TagResource</code>) and per-function concurrency limits (<code>PutFunctionConcurrency</code>).</p>
/// <p>You can use code signing if your deployment package is a .zip file archive. To enable code signing for this function, specify the ARN of a code-signing configuration. When a user attempts to deploy a code package with <code>UpdateFunctionCode</code>, Lambda checks that the code package has a valid signature from a trusted publisher. The code-signing configuration includes set of signing profiles, which define the trusted publishers for this function.</p>
/// <p>If another Amazon Web Services account or an Amazon Web Services service invokes your function, use <code>AddPermission</code> to grant permission by creating a resource-based Identity and Access Management (IAM) policy. You can grant permissions at the function level, on a version, or on an alias.</p>
/// <p>To invoke your function directly, use <code>Invoke</code>. To invoke your function in response to events in other Amazon Web Services services, create an event source mapping (<code>CreateEventSourceMapping</code>), or configure a function trigger in the other service. For more information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/lambda-invocation.html">Invoking Lambda functions</a>.</p>
#[derive(::std::clone::Clone, ::std::fmt::Debug)]
pub struct CreateFunctionFluentBuilder {
handle: ::std::sync::Arc<crate::client::Handle>,
inner: crate::operation::create_function::builders::CreateFunctionInputBuilder,
config_override: ::std::option::Option<crate::config::Builder>,
}
impl
crate::client::customize::internal::CustomizableSend<
crate::operation::create_function::CreateFunctionOutput,
crate::operation::create_function::CreateFunctionError,
> for CreateFunctionFluentBuilder
{
fn send(
self,
config_override: crate::config::Builder,
) -> crate::client::customize::internal::BoxFuture<
crate::client::customize::internal::SendResult<
crate::operation::create_function::CreateFunctionOutput,
crate::operation::create_function::CreateFunctionError,
>,
> {
::std::boxed::Box::pin(async move { self.config_override(config_override).send().await })
}
}
impl CreateFunctionFluentBuilder {
/// Creates a new `CreateFunctionFluentBuilder`.
pub(crate) fn new(handle: ::std::sync::Arc<crate::client::Handle>) -> Self {
Self {
handle,
inner: ::std::default::Default::default(),
config_override: ::std::option::Option::None,
}
}
/// Access the CreateFunction as a reference.
pub fn as_input(&self) -> &crate::operation::create_function::builders::CreateFunctionInputBuilder {
&self.inner
}
/// Sends the request and returns the response.
///
/// If an error occurs, an `SdkError` will be returned with additional details that
/// can be matched against.
///
/// By default, any retryable failures will be retried twice. Retry behavior
/// is configurable with the [RetryConfig](aws_smithy_types::retry::RetryConfig), which can be
/// set when configuring the client.
pub async fn send(
self,
) -> ::std::result::Result<
crate::operation::create_function::CreateFunctionOutput,
::aws_smithy_runtime_api::client::result::SdkError<
crate::operation::create_function::CreateFunctionError,
::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
>,
> {
let input = self
.inner
.build()
.map_err(::aws_smithy_runtime_api::client::result::SdkError::construction_failure)?;
let runtime_plugins = crate::operation::create_function::CreateFunction::operation_runtime_plugins(
self.handle.runtime_plugins.clone(),
&self.handle.conf,
self.config_override,
);
crate::operation::create_function::CreateFunction::orchestrate(&runtime_plugins, input).await
}
/// Consumes this builder, creating a customizable operation that can be modified before being sent.
pub fn customize(
self,
) -> crate::client::customize::CustomizableOperation<
crate::operation::create_function::CreateFunctionOutput,
crate::operation::create_function::CreateFunctionError,
Self,
> {
crate::client::customize::CustomizableOperation::new(self)
}
pub(crate) fn config_override(mut self, config_override: impl ::std::convert::Into<crate::config::Builder>) -> Self {
self.set_config_override(::std::option::Option::Some(config_override.into()));
self
}
pub(crate) fn set_config_override(&mut self, config_override: ::std::option::Option<crate::config::Builder>) -> &mut Self {
self.config_override = config_override;
self
}
/// <p>The name or ARN of the Lambda function.</p>
/// <p class="title"><b>Name formats</b></p>
/// <ul>
/// <li>
/// <p><b>Function name</b> – <code>my-function</code>.</p></li>
/// <li>
/// <p><b>Function ARN</b> – <code>arn:aws:lambda:us-west-2:123456789012:function:my-function</code>.</p></li>
/// <li>
/// <p><b>Partial ARN</b> – <code>123456789012:function:my-function</code>.</p></li>
/// </ul>
/// <p>The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.</p>
pub fn function_name(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.inner = self.inner.function_name(input.into());
self
}
/// <p>The name or ARN of the Lambda function.</p>
/// <p class="title"><b>Name formats</b></p>
/// <ul>
/// <li>
/// <p><b>Function name</b> – <code>my-function</code>.</p></li>
/// <li>
/// <p><b>Function ARN</b> – <code>arn:aws:lambda:us-west-2:123456789012:function:my-function</code>.</p></li>
/// <li>
/// <p><b>Partial ARN</b> – <code>123456789012:function:my-function</code>.</p></li>
/// </ul>
/// <p>The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.</p>
pub fn set_function_name(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
self.inner = self.inner.set_function_name(input);
self
}
/// <p>The name or ARN of the Lambda function.</p>
/// <p class="title"><b>Name formats</b></p>
/// <ul>
/// <li>
/// <p><b>Function name</b> – <code>my-function</code>.</p></li>
/// <li>
/// <p><b>Function ARN</b> – <code>arn:aws:lambda:us-west-2:123456789012:function:my-function</code>.</p></li>
/// <li>
/// <p><b>Partial ARN</b> – <code>123456789012:function:my-function</code>.</p></li>
/// </ul>
/// <p>The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.</p>
pub fn get_function_name(&self) -> &::std::option::Option<::std::string::String> {
self.inner.get_function_name()
}
/// <p>The identifier of the function's <a href="https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html"> runtime</a>. Runtime is required if the deployment package is a .zip file archive. Specifying a runtime results in an error if you're deploying a function using a container image.</p>
/// <p>The following list includes deprecated runtimes. Lambda blocks creating new functions and updating existing functions shortly after each runtime is deprecated. For more information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html#runtime-deprecation-levels">Runtime use after deprecation</a>.</p>
/// <p>For a list of all currently supported runtimes, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html#runtimes-supported">Supported runtimes</a>.</p>
pub fn runtime(mut self, input: crate::types::Runtime) -> Self {
self.inner = self.inner.runtime(input);
self
}
/// <p>The identifier of the function's <a href="https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html"> runtime</a>. Runtime is required if the deployment package is a .zip file archive. Specifying a runtime results in an error if you're deploying a function using a container image.</p>
/// <p>The following list includes deprecated runtimes. Lambda blocks creating new functions and updating existing functions shortly after each runtime is deprecated. For more information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html#runtime-deprecation-levels">Runtime use after deprecation</a>.</p>
/// <p>For a list of all currently supported runtimes, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html#runtimes-supported">Supported runtimes</a>.</p>
pub fn set_runtime(mut self, input: ::std::option::Option<crate::types::Runtime>) -> Self {
self.inner = self.inner.set_runtime(input);
self
}
/// <p>The identifier of the function's <a href="https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html"> runtime</a>. Runtime is required if the deployment package is a .zip file archive. Specifying a runtime results in an error if you're deploying a function using a container image.</p>
/// <p>The following list includes deprecated runtimes. Lambda blocks creating new functions and updating existing functions shortly after each runtime is deprecated. For more information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html#runtime-deprecation-levels">Runtime use after deprecation</a>.</p>
/// <p>For a list of all currently supported runtimes, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html#runtimes-supported">Supported runtimes</a>.</p>
pub fn get_runtime(&self) -> &::std::option::Option<crate::types::Runtime> {
self.inner.get_runtime()
}
/// <p>The Amazon Resource Name (ARN) of the function's execution role.</p>
pub fn role(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.inner = self.inner.role(input.into());
self
}
/// <p>The Amazon Resource Name (ARN) of the function's execution role.</p>
pub fn set_role(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
self.inner = self.inner.set_role(input);
self
}
/// <p>The Amazon Resource Name (ARN) of the function's execution role.</p>
pub fn get_role(&self) -> &::std::option::Option<::std::string::String> {
self.inner.get_role()
}
/// <p>The name of the method within your code that Lambda calls to run your function. Handler is required if the deployment package is a .zip file archive. The format includes the file name. It can also include namespaces and other qualifiers, depending on the runtime. For more information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/foundation-progmodel.html">Lambda programming model</a>.</p>
pub fn handler(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.inner = self.inner.handler(input.into());
self
}
/// <p>The name of the method within your code that Lambda calls to run your function. Handler is required if the deployment package is a .zip file archive. The format includes the file name. It can also include namespaces and other qualifiers, depending on the runtime. For more information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/foundation-progmodel.html">Lambda programming model</a>.</p>
pub fn set_handler(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
self.inner = self.inner.set_handler(input);
self
}
/// <p>The name of the method within your code that Lambda calls to run your function. Handler is required if the deployment package is a .zip file archive. The format includes the file name. It can also include namespaces and other qualifiers, depending on the runtime. For more information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/foundation-progmodel.html">Lambda programming model</a>.</p>
pub fn get_handler(&self) -> &::std::option::Option<::std::string::String> {
self.inner.get_handler()
}
/// <p>The code for the function.</p>
pub fn code(mut self, input: crate::types::FunctionCode) -> Self {
self.inner = self.inner.code(input);
self
}
/// <p>The code for the function.</p>
pub fn set_code(mut self, input: ::std::option::Option<crate::types::FunctionCode>) -> Self {
self.inner = self.inner.set_code(input);
self
}
/// <p>The code for the function.</p>
pub fn get_code(&self) -> &::std::option::Option<crate::types::FunctionCode> {
self.inner.get_code()
}
/// <p>A description of the function.</p>
pub fn description(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.inner = self.inner.description(input.into());
self
}
/// <p>A description of the function.</p>
pub fn set_description(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
self.inner = self.inner.set_description(input);
self
}
/// <p>A description of the function.</p>
pub fn get_description(&self) -> &::std::option::Option<::std::string::String> {
self.inner.get_description()
}
/// <p>The amount of time (in seconds) that Lambda allows a function to run before stopping it. The default is 3 seconds. The maximum allowed value is 900 seconds. For more information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/runtimes-context.html">Lambda execution environment</a>.</p>
pub fn timeout(mut self, input: i32) -> Self {
self.inner = self.inner.timeout(input);
self
}
/// <p>The amount of time (in seconds) that Lambda allows a function to run before stopping it. The default is 3 seconds. The maximum allowed value is 900 seconds. For more information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/runtimes-context.html">Lambda execution environment</a>.</p>
pub fn set_timeout(mut self, input: ::std::option::Option<i32>) -> Self {
self.inner = self.inner.set_timeout(input);
self
}
/// <p>The amount of time (in seconds) that Lambda allows a function to run before stopping it. The default is 3 seconds. The maximum allowed value is 900 seconds. For more information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/runtimes-context.html">Lambda execution environment</a>.</p>
pub fn get_timeout(&self) -> &::std::option::Option<i32> {
self.inner.get_timeout()
}
/// <p>The amount of <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-function-common.html#configuration-memory-console">memory available to the function</a> at runtime. Increasing the function memory also increases its CPU allocation. The default value is 128 MB. The value can be any multiple of 1 MB.</p>
pub fn memory_size(mut self, input: i32) -> Self {
self.inner = self.inner.memory_size(input);
self
}
/// <p>The amount of <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-function-common.html#configuration-memory-console">memory available to the function</a> at runtime. Increasing the function memory also increases its CPU allocation. The default value is 128 MB. The value can be any multiple of 1 MB.</p>
pub fn set_memory_size(mut self, input: ::std::option::Option<i32>) -> Self {
self.inner = self.inner.set_memory_size(input);
self
}
/// <p>The amount of <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-function-common.html#configuration-memory-console">memory available to the function</a> at runtime. Increasing the function memory also increases its CPU allocation. The default value is 128 MB. The value can be any multiple of 1 MB.</p>
pub fn get_memory_size(&self) -> &::std::option::Option<i32> {
self.inner.get_memory_size()
}
/// <p>Set to true to publish the first version of the function during creation.</p>
pub fn publish(mut self, input: bool) -> Self {
self.inner = self.inner.publish(input);
self
}
/// <p>Set to true to publish the first version of the function during creation.</p>
pub fn set_publish(mut self, input: ::std::option::Option<bool>) -> Self {
self.inner = self.inner.set_publish(input);
self
}
/// <p>Set to true to publish the first version of the function during creation.</p>
pub fn get_publish(&self) -> &::std::option::Option<bool> {
self.inner.get_publish()
}
/// <p>For network connectivity to Amazon Web Services resources in a VPC, specify a list of security groups and subnets in the VPC. When you connect a function to a VPC, it can access resources and the internet only through that VPC. For more information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-vpc.html">Configuring a Lambda function to access resources in a VPC</a>.</p>
pub fn vpc_config(mut self, input: crate::types::VpcConfig) -> Self {
self.inner = self.inner.vpc_config(input);
self
}
/// <p>For network connectivity to Amazon Web Services resources in a VPC, specify a list of security groups and subnets in the VPC. When you connect a function to a VPC, it can access resources and the internet only through that VPC. For more information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-vpc.html">Configuring a Lambda function to access resources in a VPC</a>.</p>
pub fn set_vpc_config(mut self, input: ::std::option::Option<crate::types::VpcConfig>) -> Self {
self.inner = self.inner.set_vpc_config(input);
self
}
/// <p>For network connectivity to Amazon Web Services resources in a VPC, specify a list of security groups and subnets in the VPC. When you connect a function to a VPC, it can access resources and the internet only through that VPC. For more information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-vpc.html">Configuring a Lambda function to access resources in a VPC</a>.</p>
pub fn get_vpc_config(&self) -> &::std::option::Option<crate::types::VpcConfig> {
self.inner.get_vpc_config()
}
/// <p>The type of deployment package. Set to <code>Image</code> for container image and set to <code>Zip</code> for .zip file archive.</p>
pub fn package_type(mut self, input: crate::types::PackageType) -> Self {
self.inner = self.inner.package_type(input);
self
}
/// <p>The type of deployment package. Set to <code>Image</code> for container image and set to <code>Zip</code> for .zip file archive.</p>
pub fn set_package_type(mut self, input: ::std::option::Option<crate::types::PackageType>) -> Self {
self.inner = self.inner.set_package_type(input);
self
}
/// <p>The type of deployment package. Set to <code>Image</code> for container image and set to <code>Zip</code> for .zip file archive.</p>
pub fn get_package_type(&self) -> &::std::option::Option<crate::types::PackageType> {
self.inner.get_package_type()
}
/// <p>A dead-letter queue configuration that specifies the queue or topic where Lambda sends asynchronous events when they fail processing. For more information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/invocation-async.html#invocation-dlq">Dead-letter queues</a>.</p>
pub fn dead_letter_config(mut self, input: crate::types::DeadLetterConfig) -> Self {
self.inner = self.inner.dead_letter_config(input);
self
}
/// <p>A dead-letter queue configuration that specifies the queue or topic where Lambda sends asynchronous events when they fail processing. For more information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/invocation-async.html#invocation-dlq">Dead-letter queues</a>.</p>
pub fn set_dead_letter_config(mut self, input: ::std::option::Option<crate::types::DeadLetterConfig>) -> Self {
self.inner = self.inner.set_dead_letter_config(input);
self
}
/// <p>A dead-letter queue configuration that specifies the queue or topic where Lambda sends asynchronous events when they fail processing. For more information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/invocation-async.html#invocation-dlq">Dead-letter queues</a>.</p>
pub fn get_dead_letter_config(&self) -> &::std::option::Option<crate::types::DeadLetterConfig> {
self.inner.get_dead_letter_config()
}
/// <p>Environment variables that are accessible from function code during execution.</p>
pub fn environment(mut self, input: crate::types::Environment) -> Self {
self.inner = self.inner.environment(input);
self
}
/// <p>Environment variables that are accessible from function code during execution.</p>
pub fn set_environment(mut self, input: ::std::option::Option<crate::types::Environment>) -> Self {
self.inner = self.inner.set_environment(input);
self
}
/// <p>Environment variables that are accessible from function code during execution.</p>
pub fn get_environment(&self) -> &::std::option::Option<crate::types::Environment> {
self.inner.get_environment()
}
/// <p>The ARN of the Key Management Service (KMS) customer managed key that's used to encrypt the following resources:</p>
/// <ul>
/// <li>
/// <p>The function's <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-envvars.html#configuration-envvars-encryption">environment variables</a>.</p></li>
/// <li>
/// <p>The function's <a href="https://docs.aws.amazon.com/lambda/latest/dg/snapstart-security.html">Lambda SnapStart</a> snapshots.</p></li>
/// <li>
/// <p>When used with <code>SourceKMSKeyArn</code>, the unzipped version of the .zip deployment package that's used for function invocations. For more information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/encrypt-zip-package.html#enable-zip-custom-encryption"> Specifying a customer managed key for Lambda</a>.</p></li>
/// <li>
/// <p>The optimized version of the container image that's used for function invocations. Note that this is not the same key that's used to protect your container image in the Amazon Elastic Container Registry (Amazon ECR). For more information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/images-create.html#images-lifecycle">Function lifecycle</a>.</p></li>
/// </ul>
/// <p>If you don't provide a customer managed key, Lambda uses an <a href="https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#aws-owned-cmk">Amazon Web Services owned key</a> or an <a href="https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#aws-managed-cmk">Amazon Web Services managed key</a>.</p>
pub fn kms_key_arn(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.inner = self.inner.kms_key_arn(input.into());
self
}
/// <p>The ARN of the Key Management Service (KMS) customer managed key that's used to encrypt the following resources:</p>
/// <ul>
/// <li>
/// <p>The function's <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-envvars.html#configuration-envvars-encryption">environment variables</a>.</p></li>
/// <li>
/// <p>The function's <a href="https://docs.aws.amazon.com/lambda/latest/dg/snapstart-security.html">Lambda SnapStart</a> snapshots.</p></li>
/// <li>
/// <p>When used with <code>SourceKMSKeyArn</code>, the unzipped version of the .zip deployment package that's used for function invocations. For more information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/encrypt-zip-package.html#enable-zip-custom-encryption"> Specifying a customer managed key for Lambda</a>.</p></li>
/// <li>
/// <p>The optimized version of the container image that's used for function invocations. Note that this is not the same key that's used to protect your container image in the Amazon Elastic Container Registry (Amazon ECR). For more information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/images-create.html#images-lifecycle">Function lifecycle</a>.</p></li>
/// </ul>
/// <p>If you don't provide a customer managed key, Lambda uses an <a href="https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#aws-owned-cmk">Amazon Web Services owned key</a> or an <a href="https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#aws-managed-cmk">Amazon Web Services managed key</a>.</p>
pub fn set_kms_key_arn(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
self.inner = self.inner.set_kms_key_arn(input);
self
}
/// <p>The ARN of the Key Management Service (KMS) customer managed key that's used to encrypt the following resources:</p>
/// <ul>
/// <li>
/// <p>The function's <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-envvars.html#configuration-envvars-encryption">environment variables</a>.</p></li>
/// <li>
/// <p>The function's <a href="https://docs.aws.amazon.com/lambda/latest/dg/snapstart-security.html">Lambda SnapStart</a> snapshots.</p></li>
/// <li>
/// <p>When used with <code>SourceKMSKeyArn</code>, the unzipped version of the .zip deployment package that's used for function invocations. For more information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/encrypt-zip-package.html#enable-zip-custom-encryption"> Specifying a customer managed key for Lambda</a>.</p></li>
/// <li>
/// <p>The optimized version of the container image that's used for function invocations. Note that this is not the same key that's used to protect your container image in the Amazon Elastic Container Registry (Amazon ECR). For more information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/images-create.html#images-lifecycle">Function lifecycle</a>.</p></li>
/// </ul>
/// <p>If you don't provide a customer managed key, Lambda uses an <a href="https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#aws-owned-cmk">Amazon Web Services owned key</a> or an <a href="https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#aws-managed-cmk">Amazon Web Services managed key</a>.</p>
pub fn get_kms_key_arn(&self) -> &::std::option::Option<::std::string::String> {
self.inner.get_kms_key_arn()
}
/// <p>Set <code>Mode</code> to <code>Active</code> to sample and trace a subset of incoming requests with <a href="https://docs.aws.amazon.com/lambda/latest/dg/services-xray.html">X-Ray</a>.</p>
pub fn tracing_config(mut self, input: crate::types::TracingConfig) -> Self {
self.inner = self.inner.tracing_config(input);
self
}
/// <p>Set <code>Mode</code> to <code>Active</code> to sample and trace a subset of incoming requests with <a href="https://docs.aws.amazon.com/lambda/latest/dg/services-xray.html">X-Ray</a>.</p>
pub fn set_tracing_config(mut self, input: ::std::option::Option<crate::types::TracingConfig>) -> Self {
self.inner = self.inner.set_tracing_config(input);
self
}
/// <p>Set <code>Mode</code> to <code>Active</code> to sample and trace a subset of incoming requests with <a href="https://docs.aws.amazon.com/lambda/latest/dg/services-xray.html">X-Ray</a>.</p>
pub fn get_tracing_config(&self) -> &::std::option::Option<crate::types::TracingConfig> {
self.inner.get_tracing_config()
}
///
/// Adds a key-value pair to `Tags`.
///
/// To override the contents of this collection use [`set_tags`](Self::set_tags).
///
/// <p>A list of <a href="https://docs.aws.amazon.com/lambda/latest/dg/tagging.html">tags</a> to apply to the function.</p>
pub fn tags(mut self, k: impl ::std::convert::Into<::std::string::String>, v: impl ::std::convert::Into<::std::string::String>) -> Self {
self.inner = self.inner.tags(k.into(), v.into());
self
}
/// <p>A list of <a href="https://docs.aws.amazon.com/lambda/latest/dg/tagging.html">tags</a> to apply to the function.</p>
pub fn set_tags(mut self, input: ::std::option::Option<::std::collections::HashMap<::std::string::String, ::std::string::String>>) -> Self {
self.inner = self.inner.set_tags(input);
self
}
/// <p>A list of <a href="https://docs.aws.amazon.com/lambda/latest/dg/tagging.html">tags</a> to apply to the function.</p>
pub fn get_tags(&self) -> &::std::option::Option<::std::collections::HashMap<::std::string::String, ::std::string::String>> {
self.inner.get_tags()
}
///
/// Appends an item to `Layers`.
///
/// To override the contents of this collection use [`set_layers`](Self::set_layers).
///
/// <p>A list of <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-layers.html">function layers</a> to add to the function's execution environment. Specify each layer by its ARN, including the version.</p>
pub fn layers(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.inner = self.inner.layers(input.into());
self
}
/// <p>A list of <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-layers.html">function layers</a> to add to the function's execution environment. Specify each layer by its ARN, including the version.</p>
pub fn set_layers(mut self, input: ::std::option::Option<::std::vec::Vec<::std::string::String>>) -> Self {
self.inner = self.inner.set_layers(input);
self
}
/// <p>A list of <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-layers.html">function layers</a> to add to the function's execution environment. Specify each layer by its ARN, including the version.</p>
pub fn get_layers(&self) -> &::std::option::Option<::std::vec::Vec<::std::string::String>> {
self.inner.get_layers()
}
///
/// Appends an item to `FileSystemConfigs`.
///
/// To override the contents of this collection use [`set_file_system_configs`](Self::set_file_system_configs).
///
/// <p>Connection settings for an Amazon EFS file system.</p>
pub fn file_system_configs(mut self, input: crate::types::FileSystemConfig) -> Self {
self.inner = self.inner.file_system_configs(input);
self
}
/// <p>Connection settings for an Amazon EFS file system.</p>
pub fn set_file_system_configs(mut self, input: ::std::option::Option<::std::vec::Vec<crate::types::FileSystemConfig>>) -> Self {
self.inner = self.inner.set_file_system_configs(input);
self
}
/// <p>Connection settings for an Amazon EFS file system.</p>
pub fn get_file_system_configs(&self) -> &::std::option::Option<::std::vec::Vec<crate::types::FileSystemConfig>> {
self.inner.get_file_system_configs()
}
/// <p>Container image <a href="https://docs.aws.amazon.com/lambda/latest/dg/images-create.html#images-parms">configuration values</a> that override the values in the container image Dockerfile.</p>
pub fn image_config(mut self, input: crate::types::ImageConfig) -> Self {
self.inner = self.inner.image_config(input);
self
}
/// <p>Container image <a href="https://docs.aws.amazon.com/lambda/latest/dg/images-create.html#images-parms">configuration values</a> that override the values in the container image Dockerfile.</p>
pub fn set_image_config(mut self, input: ::std::option::Option<crate::types::ImageConfig>) -> Self {
self.inner = self.inner.set_image_config(input);
self
}
/// <p>Container image <a href="https://docs.aws.amazon.com/lambda/latest/dg/images-create.html#images-parms">configuration values</a> that override the values in the container image Dockerfile.</p>
pub fn get_image_config(&self) -> &::std::option::Option<crate::types::ImageConfig> {
self.inner.get_image_config()
}
/// <p>To enable code signing for this function, specify the ARN of a code-signing configuration. A code-signing configuration includes a set of signing profiles, which define the trusted publishers for this function.</p>
pub fn code_signing_config_arn(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.inner = self.inner.code_signing_config_arn(input.into());
self
}
/// <p>To enable code signing for this function, specify the ARN of a code-signing configuration. A code-signing configuration includes a set of signing profiles, which define the trusted publishers for this function.</p>
pub fn set_code_signing_config_arn(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
self.inner = self.inner.set_code_signing_config_arn(input);
self
}
/// <p>To enable code signing for this function, specify the ARN of a code-signing configuration. A code-signing configuration includes a set of signing profiles, which define the trusted publishers for this function.</p>
pub fn get_code_signing_config_arn(&self) -> &::std::option::Option<::std::string::String> {
self.inner.get_code_signing_config_arn()
}
///
/// Appends an item to `Architectures`.
///
/// To override the contents of this collection use [`set_architectures`](Self::set_architectures).
///
/// <p>The instruction set architecture that the function supports. Enter a string array with one of the valid values (arm64 or x86_64). The default value is <code>x86_64</code>.</p>
pub fn architectures(mut self, input: crate::types::Architecture) -> Self {
self.inner = self.inner.architectures(input);
self
}
/// <p>The instruction set architecture that the function supports. Enter a string array with one of the valid values (arm64 or x86_64). The default value is <code>x86_64</code>.</p>
pub fn set_architectures(mut self, input: ::std::option::Option<::std::vec::Vec<crate::types::Architecture>>) -> Self {
self.inner = self.inner.set_architectures(input);
self
}
/// <p>The instruction set architecture that the function supports. Enter a string array with one of the valid values (arm64 or x86_64). The default value is <code>x86_64</code>.</p>
pub fn get_architectures(&self) -> &::std::option::Option<::std::vec::Vec<crate::types::Architecture>> {
self.inner.get_architectures()
}
/// <p>The size of the function's <code>/tmp</code> directory in MB. The default value is 512, but can be any whole number between 512 and 10,240 MB. For more information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-function-common.html#configuration-ephemeral-storage">Configuring ephemeral storage (console)</a>.</p>
pub fn ephemeral_storage(mut self, input: crate::types::EphemeralStorage) -> Self {
self.inner = self.inner.ephemeral_storage(input);
self
}
/// <p>The size of the function's <code>/tmp</code> directory in MB. The default value is 512, but can be any whole number between 512 and 10,240 MB. For more information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-function-common.html#configuration-ephemeral-storage">Configuring ephemeral storage (console)</a>.</p>
pub fn set_ephemeral_storage(mut self, input: ::std::option::Option<crate::types::EphemeralStorage>) -> Self {
self.inner = self.inner.set_ephemeral_storage(input);
self
}
/// <p>The size of the function's <code>/tmp</code> directory in MB. The default value is 512, but can be any whole number between 512 and 10,240 MB. For more information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-function-common.html#configuration-ephemeral-storage">Configuring ephemeral storage (console)</a>.</p>
pub fn get_ephemeral_storage(&self) -> &::std::option::Option<crate::types::EphemeralStorage> {
self.inner.get_ephemeral_storage()
}
/// <p>The function's <a href="https://docs.aws.amazon.com/lambda/latest/dg/snapstart.html">SnapStart</a> setting.</p>
pub fn snap_start(mut self, input: crate::types::SnapStart) -> Self {
self.inner = self.inner.snap_start(input);
self
}
/// <p>The function's <a href="https://docs.aws.amazon.com/lambda/latest/dg/snapstart.html">SnapStart</a> setting.</p>
pub fn set_snap_start(mut self, input: ::std::option::Option<crate::types::SnapStart>) -> Self {
self.inner = self.inner.set_snap_start(input);
self
}
/// <p>The function's <a href="https://docs.aws.amazon.com/lambda/latest/dg/snapstart.html">SnapStart</a> setting.</p>
pub fn get_snap_start(&self) -> &::std::option::Option<crate::types::SnapStart> {
self.inner.get_snap_start()
}
/// <p>The function's Amazon CloudWatch Logs configuration settings.</p>
pub fn logging_config(mut self, input: crate::types::LoggingConfig) -> Self {
self.inner = self.inner.logging_config(input);
self
}
/// <p>The function's Amazon CloudWatch Logs configuration settings.</p>
pub fn set_logging_config(mut self, input: ::std::option::Option<crate::types::LoggingConfig>) -> Self {
self.inner = self.inner.set_logging_config(input);
self
}
/// <p>The function's Amazon CloudWatch Logs configuration settings.</p>
pub fn get_logging_config(&self) -> &::std::option::Option<crate::types::LoggingConfig> {
self.inner.get_logging_config()
}
/// <p>Configuration for the capacity provider that manages compute resources for Lambda functions.</p>
pub fn capacity_provider_config(mut self, input: crate::types::CapacityProviderConfig) -> Self {
self.inner = self.inner.capacity_provider_config(input);
self
}
/// <p>Configuration for the capacity provider that manages compute resources for Lambda functions.</p>
pub fn set_capacity_provider_config(mut self, input: ::std::option::Option<crate::types::CapacityProviderConfig>) -> Self {
self.inner = self.inner.set_capacity_provider_config(input);
self
}
/// <p>Configuration for the capacity provider that manages compute resources for Lambda functions.</p>
pub fn get_capacity_provider_config(&self) -> &::std::option::Option<crate::types::CapacityProviderConfig> {
self.inner.get_capacity_provider_config()
}
/// <p>Specifies where to publish the function version or configuration.</p>
pub fn publish_to(mut self, input: crate::types::FunctionVersionLatestPublished) -> Self {
self.inner = self.inner.publish_to(input);
self
}
/// <p>Specifies where to publish the function version or configuration.</p>
pub fn set_publish_to(mut self, input: ::std::option::Option<crate::types::FunctionVersionLatestPublished>) -> Self {
self.inner = self.inner.set_publish_to(input);
self
}
/// <p>Specifies where to publish the function version or configuration.</p>
pub fn get_publish_to(&self) -> &::std::option::Option<crate::types::FunctionVersionLatestPublished> {
self.inner.get_publish_to()
}
/// <p>Configuration settings for durable functions. Enables creating functions with durability that can remember their state and continue execution even after interruptions.</p>
pub fn durable_config(mut self, input: crate::types::DurableConfig) -> Self {
self.inner = self.inner.durable_config(input);
self
}
/// <p>Configuration settings for durable functions. Enables creating functions with durability that can remember their state and continue execution even after interruptions.</p>
pub fn set_durable_config(mut self, input: ::std::option::Option<crate::types::DurableConfig>) -> Self {
self.inner = self.inner.set_durable_config(input);
self
}
/// <p>Configuration settings for durable functions. Enables creating functions with durability that can remember their state and continue execution even after interruptions.</p>
pub fn get_durable_config(&self) -> &::std::option::Option<crate::types::DurableConfig> {
self.inner.get_durable_config()
}
/// <p>Configuration for multi-tenant applications that use Lambda functions. Defines tenant isolation settings and resource allocations. Required for functions supporting multiple tenants.</p>
pub fn tenancy_config(mut self, input: crate::types::TenancyConfig) -> Self {
self.inner = self.inner.tenancy_config(input);
self
}
/// <p>Configuration for multi-tenant applications that use Lambda functions. Defines tenant isolation settings and resource allocations. Required for functions supporting multiple tenants.</p>
pub fn set_tenancy_config(mut self, input: ::std::option::Option<crate::types::TenancyConfig>) -> Self {
self.inner = self.inner.set_tenancy_config(input);
self
}
/// <p>Configuration for multi-tenant applications that use Lambda functions. Defines tenant isolation settings and resource allocations. Required for functions supporting multiple tenants.</p>
pub fn get_tenancy_config(&self) -> &::std::option::Option<crate::types::TenancyConfig> {
self.inner.get_tenancy_config()
}
}