
com.pulumi.aws.efs.inputs.GetFileSystemPlainArgs Maven / Gradle / Ivy
// *** 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.efs.inputs;
import com.pulumi.core.annotations.Import;
import java.lang.String;
import java.util.Map;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
public final class GetFileSystemPlainArgs extends com.pulumi.resources.InvokeArgs {
public static final GetFileSystemPlainArgs Empty = new GetFileSystemPlainArgs();
/**
* Restricts the list to the file system with this creation token.
*
*/
@Import(name="creationToken")
private @Nullable String creationToken;
/**
* @return Restricts the list to the file system with this creation token.
*
*/
public Optional creationToken() {
return Optional.ofNullable(this.creationToken);
}
/**
* ID that identifies the file system (e.g., fs-ccfc0d65).
*
*/
@Import(name="fileSystemId")
private @Nullable String fileSystemId;
/**
* @return ID that identifies the file system (e.g., fs-ccfc0d65).
*
*/
public Optional fileSystemId() {
return Optional.ofNullable(this.fileSystemId);
}
/**
* Restricts the list to the file system with these tags.
*
*/
@Import(name="tags")
private @Nullable Map tags;
/**
* @return Restricts the list to the file system with these tags.
*
*/
public Optional
© 2015 - 2025 Weber Informatics LLC | Privacy Policy