com.pulumi.aws.sagemaker.outputs.SpaceSpaceSettingsCustomFileSystem 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.
The newest version!
// *** 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.sagemaker.outputs;
import com.pulumi.aws.sagemaker.outputs.SpaceSpaceSettingsCustomFileSystemEfsFileSystem;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.util.Objects;
@CustomType
public final class SpaceSpaceSettingsCustomFileSystem {
/**
* @return A custom file system in Amazon EFS. See `efs_file_system` Block below.
*
*/
private SpaceSpaceSettingsCustomFileSystemEfsFileSystem efsFileSystem;
private SpaceSpaceSettingsCustomFileSystem() {}
/**
* @return A custom file system in Amazon EFS. See `efs_file_system` Block below.
*
*/
public SpaceSpaceSettingsCustomFileSystemEfsFileSystem efsFileSystem() {
return this.efsFileSystem;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(SpaceSpaceSettingsCustomFileSystem defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private SpaceSpaceSettingsCustomFileSystemEfsFileSystem efsFileSystem;
public Builder() {}
public Builder(SpaceSpaceSettingsCustomFileSystem defaults) {
Objects.requireNonNull(defaults);
this.efsFileSystem = defaults.efsFileSystem;
}
@CustomType.Setter
public Builder efsFileSystem(SpaceSpaceSettingsCustomFileSystemEfsFileSystem efsFileSystem) {
if (efsFileSystem == null) {
throw new MissingRequiredPropertyException("SpaceSpaceSettingsCustomFileSystem", "efsFileSystem");
}
this.efsFileSystem = efsFileSystem;
return this;
}
public SpaceSpaceSettingsCustomFileSystem build() {
final var _resultValue = new SpaceSpaceSettingsCustomFileSystem();
_resultValue.efsFileSystem = efsFileSystem;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy