Interface DescribeVaultOutput.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<DescribeVaultOutput.Builder,DescribeVaultOutput>,SdkBuilder<DescribeVaultOutput.Builder,DescribeVaultOutput>,SdkPojo
- Enclosing class:
- DescribeVaultOutput
public static interface DescribeVaultOutput.Builder extends SdkPojo, CopyableBuilder<DescribeVaultOutput.Builder,DescribeVaultOutput>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DescribeVaultOutput.BuildercreationDate(String creationDate)The Universal Coordinated Time (UTC) date when the vault was created.DescribeVaultOutput.BuilderlastInventoryDate(String lastInventoryDate)The Universal Coordinated Time (UTC) date when Amazon S3 Glacier completed the last vault inventory.DescribeVaultOutput.BuildernumberOfArchives(Long numberOfArchives)The number of archives in the vault as of the last inventory date.DescribeVaultOutput.BuildersizeInBytes(Long sizeInBytes)Total size, in bytes, of the archives in the vault as of the last inventory date.DescribeVaultOutput.BuildervaultARN(String vaultARN)The Amazon Resource Name (ARN) of the vault.DescribeVaultOutput.BuildervaultName(String vaultName)The name of the vault.-
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
-
vaultARN
DescribeVaultOutput.Builder vaultARN(String vaultARN)
The Amazon Resource Name (ARN) of the vault.
- Parameters:
vaultARN- The Amazon Resource Name (ARN) of the vault.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
vaultName
DescribeVaultOutput.Builder vaultName(String vaultName)
The name of the vault.
- Parameters:
vaultName- The name of the vault.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
creationDate
DescribeVaultOutput.Builder creationDate(String creationDate)
The Universal Coordinated Time (UTC) date when the vault was created. This value should be a string in the ISO 8601 date format, for example
2012-03-20T17:03:43.221Z.- Parameters:
creationDate- The Universal Coordinated Time (UTC) date when the vault was created. This value should be a string in the ISO 8601 date format, for example2012-03-20T17:03:43.221Z.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lastInventoryDate
DescribeVaultOutput.Builder lastInventoryDate(String lastInventoryDate)
The Universal Coordinated Time (UTC) date when Amazon S3 Glacier completed the last vault inventory. This value should be a string in the ISO 8601 date format, for example
2012-03-20T17:03:43.221Z.- Parameters:
lastInventoryDate- The Universal Coordinated Time (UTC) date when Amazon S3 Glacier completed the last vault inventory. This value should be a string in the ISO 8601 date format, for example2012-03-20T17:03:43.221Z.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
numberOfArchives
DescribeVaultOutput.Builder numberOfArchives(Long numberOfArchives)
The number of archives in the vault as of the last inventory date. This field will return
nullif an inventory has not yet run on the vault, for example if you just created the vault.- Parameters:
numberOfArchives- The number of archives in the vault as of the last inventory date. This field will returnnullif an inventory has not yet run on the vault, for example if you just created the vault.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sizeInBytes
DescribeVaultOutput.Builder sizeInBytes(Long sizeInBytes)
Total size, in bytes, of the archives in the vault as of the last inventory date. This field will return null if an inventory has not yet run on the vault, for example if you just created the vault.
- Parameters:
sizeInBytes- Total size, in bytes, of the archives in the vault as of the last inventory date. This field will return null if an inventory has not yet run on the vault, for example if you just created the vault.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-