com.pulumi.aws.datasync.FsxOpenZfsFileSystemArgs 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;
import com.pulumi.aws.datasync.inputs.FsxOpenZfsFileSystemProtocolArgs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.List;
import java.util.Map;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
public final class FsxOpenZfsFileSystemArgs extends com.pulumi.resources.ResourceArgs {
public static final FsxOpenZfsFileSystemArgs Empty = new FsxOpenZfsFileSystemArgs();
/**
* The Amazon Resource Name (ARN) for the FSx for OpenZfs file system.
*
*/
@Import(name="fsxFilesystemArn", required=true)
private Output fsxFilesystemArn;
/**
* @return The Amazon Resource Name (ARN) for the FSx for OpenZfs file system.
*
*/
public Output fsxFilesystemArn() {
return this.fsxFilesystemArn;
}
/**
* The type of protocol that DataSync uses to access your file system. See below.
*
*/
@Import(name="protocol", required=true)
private Output protocol;
/**
* @return The type of protocol that DataSync uses to access your file system. See below.
*
*/
public Output protocol() {
return this.protocol;
}
/**
* The Amazon Resource Names (ARNs) of the security groups that are to use to configure the FSx for openzfs file system.
*
*/
@Import(name="securityGroupArns", required=true)
private Output> securityGroupArns;
/**
* @return The Amazon Resource Names (ARNs) of the security groups that are to use to configure the FSx for openzfs file system.
*
*/
public Output> securityGroupArns() {
return this.securityGroupArns;
}
/**
* Subdirectory to perform actions as source or destination. Must start with `/fsx`.
*
*/
@Import(name="subdirectory")
private @Nullable Output subdirectory;
/**
* @return Subdirectory to perform actions as source or destination. Must start with `/fsx`.
*
*/
public Optional
© 2015 - 2025 Weber Informatics LLC | Privacy Policy