
com.pulumi.aws.lambda.RuntimeManagementConfigArgs Maven / Gradle / Ivy
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
package com.pulumi.aws.lambda;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
public final class RuntimeManagementConfigArgs extends com.pulumi.resources.ResourceArgs {
public static final RuntimeManagementConfigArgs Empty = new RuntimeManagementConfigArgs();
/**
* Name or ARN of the Lambda function.
*
* The following arguments are optional:
*
*/
@Import(name="functionName", required=true)
private Output functionName;
/**
* @return Name or ARN of the Lambda function.
*
* The following arguments are optional:
*
*/
public Output functionName() {
return this.functionName;
}
/**
* Version of the function. This can be `$LATEST` or a published version number. If omitted, this resource will manage the runtime configuration for `$LATEST`.
*
*/
@Import(name="qualifier")
private @Nullable Output qualifier;
/**
* @return Version of the function. This can be `$LATEST` or a published version number. If omitted, this resource will manage the runtime configuration for `$LATEST`.
*
*/
public Optional
© 2015 - 2025 Weber Informatics LLC | Privacy Policy