
com.pulumi.aws.efs.outputs.FileSystemSizeInByte 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.efs.outputs;
import com.pulumi.core.annotations.CustomType;
import java.lang.Integer;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class FileSystemSizeInByte {
/**
* @return The latest known metered size (in bytes) of data stored in the file system.
*
*/
private @Nullable Integer value;
/**
* @return The latest known metered size (in bytes) of data stored in the Infrequent Access storage class.
*
*/
private @Nullable Integer valueInIa;
/**
* @return The latest known metered size (in bytes) of data stored in the Standard storage class.
*
*/
private @Nullable Integer valueInStandard;
private FileSystemSizeInByte() {}
/**
* @return The latest known metered size (in bytes) of data stored in the file system.
*
*/
public Optional value() {
return Optional.ofNullable(this.value);
}
/**
* @return The latest known metered size (in bytes) of data stored in the Infrequent Access storage class.
*
*/
public Optional valueInIa() {
return Optional.ofNullable(this.valueInIa);
}
/**
* @return The latest known metered size (in bytes) of data stored in the Standard storage class.
*
*/
public Optional valueInStandard() {
return Optional.ofNullable(this.valueInStandard);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(FileSystemSizeInByte defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable Integer value;
private @Nullable Integer valueInIa;
private @Nullable Integer valueInStandard;
public Builder() {}
public Builder(FileSystemSizeInByte defaults) {
Objects.requireNonNull(defaults);
this.value = defaults.value;
this.valueInIa = defaults.valueInIa;
this.valueInStandard = defaults.valueInStandard;
}
@CustomType.Setter
public Builder value(@Nullable Integer value) {
this.value = value;
return this;
}
@CustomType.Setter
public Builder valueInIa(@Nullable Integer valueInIa) {
this.valueInIa = valueInIa;
return this;
}
@CustomType.Setter
public Builder valueInStandard(@Nullable Integer valueInStandard) {
this.valueInStandard = valueInStandard;
return this;
}
public FileSystemSizeInByte build() {
final var _resultValue = new FileSystemSizeInByte();
_resultValue.value = value;
_resultValue.valueInIa = valueInIa;
_resultValue.valueInStandard = valueInStandard;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy