com.pulumi.aws.datasync.outputs.FsxOpenZfsFileSystemProtocol 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.datasync.outputs;
import com.pulumi.aws.datasync.outputs.FsxOpenZfsFileSystemProtocolNfs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.util.Objects;
@CustomType
public final class FsxOpenZfsFileSystemProtocol {
/**
* @return Represents the Network File System (NFS) protocol that DataSync uses to access your FSx for OpenZFS file system. See below.
*
*/
private FsxOpenZfsFileSystemProtocolNfs nfs;
private FsxOpenZfsFileSystemProtocol() {}
/**
* @return Represents the Network File System (NFS) protocol that DataSync uses to access your FSx for OpenZFS file system. See below.
*
*/
public FsxOpenZfsFileSystemProtocolNfs nfs() {
return this.nfs;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(FsxOpenZfsFileSystemProtocol defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private FsxOpenZfsFileSystemProtocolNfs nfs;
public Builder() {}
public Builder(FsxOpenZfsFileSystemProtocol defaults) {
Objects.requireNonNull(defaults);
this.nfs = defaults.nfs;
}
@CustomType.Setter
public Builder nfs(FsxOpenZfsFileSystemProtocolNfs nfs) {
if (nfs == null) {
throw new MissingRequiredPropertyException("FsxOpenZfsFileSystemProtocol", "nfs");
}
this.nfs = nfs;
return this;
}
public FsxOpenZfsFileSystemProtocol build() {
final var _resultValue = new FsxOpenZfsFileSystemProtocol();
_resultValue.nfs = nfs;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy