com.pulumi.aws.lambda.inputs.GetFunctionPlainArgs 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.inputs;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Map;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
public final class GetFunctionPlainArgs extends com.pulumi.resources.InvokeArgs {
public static final GetFunctionPlainArgs Empty = new GetFunctionPlainArgs();
/**
* Name of the lambda function.
*
*/
@Import(name="functionName", required=true)
private String functionName;
/**
* @return Name of the lambda function.
*
*/
public String functionName() {
return this.functionName;
}
/**
* Alias name or version number of the lambda functionE.g., `$LATEST`, `my-alias`, or `1`. When not included: the data source resolves to the most recent published version; if no published version exists: it resolves to the most recent unpublished version.
*
*/
@Import(name="qualifier")
private @Nullable String qualifier;
/**
* @return Alias name or version number of the lambda functionE.g., `$LATEST`, `my-alias`, or `1`. When not included: the data source resolves to the most recent published version; if no published version exists: it resolves to the most recent unpublished version.
*
*/
public Optional qualifier() {
return Optional.ofNullable(this.qualifier);
}
@Import(name="tags")
private @Nullable Map tags;
public Optional
© 2015 - 2025 Weber Informatics LLC | Privacy Policy