com.pulumi.aws.lambda.outputs.GetFunctionFileSystemConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aws Show documentation
Show all versions of aws Show documentation
A Pulumi package for creating and managing Amazon Web Services (AWS) cloud resources.
// *** 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.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
@CustomType
public final class GetFunctionFileSystemConfig {
/**
* @return Unqualified (no `:QUALIFIER` or `:VERSION` suffix) ARN identifying your Lambda Function. See also `qualified_arn`.
*
*/
private String arn;
private String localMountPath;
private GetFunctionFileSystemConfig() {}
/**
* @return Unqualified (no `:QUALIFIER` or `:VERSION` suffix) ARN identifying your Lambda Function. See also `qualified_arn`.
*
*/
public String arn() {
return this.arn;
}
public String localMountPath() {
return this.localMountPath;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetFunctionFileSystemConfig defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String arn;
private String localMountPath;
public Builder() {}
public Builder(GetFunctionFileSystemConfig defaults) {
Objects.requireNonNull(defaults);
this.arn = defaults.arn;
this.localMountPath = defaults.localMountPath;
}
@CustomType.Setter
public Builder arn(String arn) {
if (arn == null) {
throw new MissingRequiredPropertyException("GetFunctionFileSystemConfig", "arn");
}
this.arn = arn;
return this;
}
@CustomType.Setter
public Builder localMountPath(String localMountPath) {
if (localMountPath == null) {
throw new MissingRequiredPropertyException("GetFunctionFileSystemConfig", "localMountPath");
}
this.localMountPath = localMountPath;
return this;
}
public GetFunctionFileSystemConfig build() {
final var _resultValue = new GetFunctionFileSystemConfig();
_resultValue.arn = arn;
_resultValue.localMountPath = localMountPath;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy