com.pulumi.aws.transfer.outputs.AccessHomeDirectoryMapping 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.transfer.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
@CustomType
public final class AccessHomeDirectoryMapping {
/**
* @return Represents an entry and a target.
*
*/
private String entry;
/**
* @return Represents the map target.
*
*/
private String target;
private AccessHomeDirectoryMapping() {}
/**
* @return Represents an entry and a target.
*
*/
public String entry() {
return this.entry;
}
/**
* @return Represents the map target.
*
*/
public String target() {
return this.target;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(AccessHomeDirectoryMapping defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String entry;
private String target;
public Builder() {}
public Builder(AccessHomeDirectoryMapping defaults) {
Objects.requireNonNull(defaults);
this.entry = defaults.entry;
this.target = defaults.target;
}
@CustomType.Setter
public Builder entry(String entry) {
if (entry == null) {
throw new MissingRequiredPropertyException("AccessHomeDirectoryMapping", "entry");
}
this.entry = entry;
return this;
}
@CustomType.Setter
public Builder target(String target) {
if (target == null) {
throw new MissingRequiredPropertyException("AccessHomeDirectoryMapping", "target");
}
this.target = target;
return this;
}
public AccessHomeDirectoryMapping build() {
final var _resultValue = new AccessHomeDirectoryMapping();
_resultValue.entry = entry;
_resultValue.target = target;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy