Interface DescribeVaultResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<DescribeVaultResponse.Builder,DescribeVaultResponse>,GlacierResponse.Builder,SdkBuilder<DescribeVaultResponse.Builder,DescribeVaultResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- DescribeVaultResponse
public static interface DescribeVaultResponse.Builder extends GlacierResponse.Builder, SdkPojo, CopyableBuilder<DescribeVaultResponse.Builder,DescribeVaultResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DescribeVaultResponse.BuildercreationDate(String creationDate)The Universal Coordinated Time (UTC) date when the vault was created.DescribeVaultResponse.BuilderlastInventoryDate(String lastInventoryDate)The Universal Coordinated Time (UTC) date when Amazon S3 Glacier completed the last vault inventory.DescribeVaultResponse.BuildernumberOfArchives(Long numberOfArchives)The number of archives in the vault as of the last inventory date.DescribeVaultResponse.BuildersizeInBytes(Long sizeInBytes)Total size, in bytes, of the archives in the vault as of the last inventory date.DescribeVaultResponse.BuildervaultARN(String vaultARN)The Amazon Resource Name (ARN) of the vault.DescribeVaultResponse.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.services.glacier.model.GlacierResponse.Builder
build, responseMetadata, responseMetadata
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
vaultARN
DescribeVaultResponse.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
DescribeVaultResponse.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
DescribeVaultResponse.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
DescribeVaultResponse.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
DescribeVaultResponse.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
DescribeVaultResponse.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.
-
-