Interface FileSystemSize.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<FileSystemSize.Builder,FileSystemSize>
,SdkBuilder<FileSystemSize.Builder,FileSystemSize>
,SdkPojo
- Enclosing class:
- FileSystemSize
public static interface FileSystemSize.Builder extends SdkPojo, CopyableBuilder<FileSystemSize.Builder,FileSystemSize>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description FileSystemSize.Builder
timestamp(Instant timestamp)
The time at which the size of data, returned in theValue
field, was determined.FileSystemSize.Builder
value(Long value)
The latest known metered size (in bytes) of data stored in the file system.FileSystemSize.Builder
valueInArchive(Long valueInArchive)
The latest known metered size (in bytes) of data stored in the Archive storage class.FileSystemSize.Builder
valueInIA(Long valueInIA)
The latest known metered size (in bytes) of data stored in the Infrequent Access storage class.FileSystemSize.Builder
valueInStandard(Long valueInStandard)
The latest known metered size (in bytes) of data stored in the Standard storage class.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
value
FileSystemSize.Builder value(Long value)
The latest known metered size (in bytes) of data stored in the file system.
- Parameters:
value
- The latest known metered size (in bytes) of data stored in the file system.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
timestamp
FileSystemSize.Builder timestamp(Instant timestamp)
The time at which the size of data, returned in the
Value
field, was determined. The value is the integer number of seconds since 1970-01-01T00:00:00Z.- Parameters:
timestamp
- The time at which the size of data, returned in theValue
field, was determined. The value is the integer number of seconds since 1970-01-01T00:00:00Z.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
valueInIA
FileSystemSize.Builder valueInIA(Long valueInIA)
The latest known metered size (in bytes) of data stored in the Infrequent Access storage class.
- Parameters:
valueInIA
- The latest known metered size (in bytes) of data stored in the Infrequent Access storage class.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
valueInStandard
FileSystemSize.Builder valueInStandard(Long valueInStandard)
The latest known metered size (in bytes) of data stored in the Standard storage class.
- Parameters:
valueInStandard
- The latest known metered size (in bytes) of data stored in the Standard storage class.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
valueInArchive
FileSystemSize.Builder valueInArchive(Long valueInArchive)
The latest known metered size (in bytes) of data stored in the Archive storage class.
- Parameters:
valueInArchive
- The latest known metered size (in bytes) of data stored in the Archive storage class.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-