Interface GetLegalHoldResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,BackupResponse.Builder,Buildable,CopyableBuilder<GetLegalHoldResponse.Builder,GetLegalHoldResponse>,SdkBuilder<GetLegalHoldResponse.Builder,GetLegalHoldResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- GetLegalHoldResponse
public static interface GetLegalHoldResponse.Builder extends BackupResponse.Builder, SdkPojo, CopyableBuilder<GetLegalHoldResponse.Builder,GetLegalHoldResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description GetLegalHoldResponse.BuildercancelDescription(String cancelDescription)The reason for removing the legal hold.GetLegalHoldResponse.BuildercancellationDate(Instant cancellationDate)The time when the legal hold was cancelled.GetLegalHoldResponse.BuildercreationDate(Instant creationDate)The time when the legal hold was created.GetLegalHoldResponse.Builderdescription(String description)The description of the legal hold.GetLegalHoldResponse.BuilderlegalHoldArn(String legalHoldArn)The framework ARN for the specified legal hold.GetLegalHoldResponse.BuilderlegalHoldId(String legalHoldId)The ID of the legal hold.default GetLegalHoldResponse.BuilderrecoveryPointSelection(Consumer<RecoveryPointSelection.Builder> recoveryPointSelection)The criteria to assign a set of resources, such as resource types or backup vaults.GetLegalHoldResponse.BuilderrecoveryPointSelection(RecoveryPointSelection recoveryPointSelection)The criteria to assign a set of resources, such as resource types or backup vaults.GetLegalHoldResponse.BuilderretainRecordUntil(Instant retainRecordUntil)The date and time until which the legal hold record is retained.GetLegalHoldResponse.Builderstatus(String status)The status of the legal hold.GetLegalHoldResponse.Builderstatus(LegalHoldStatus status)The status of the legal hold.GetLegalHoldResponse.Buildertitle(String title)The title of the legal hold.-
Methods inherited from interface software.amazon.awssdk.services.backup.model.BackupResponse.Builder
build, responseMetadata, responseMetadata
-
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, sdkFieldNameToField, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
title
GetLegalHoldResponse.Builder title(String title)
The title of the legal hold.
- Parameters:
title- The title of the legal hold.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
status
GetLegalHoldResponse.Builder status(String status)
The status of the legal hold.
- Parameters:
status- The status of the legal hold.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
LegalHoldStatus,LegalHoldStatus
-
status
GetLegalHoldResponse.Builder status(LegalHoldStatus status)
The status of the legal hold.
- Parameters:
status- The status of the legal hold.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
LegalHoldStatus,LegalHoldStatus
-
description
GetLegalHoldResponse.Builder description(String description)
The description of the legal hold.
- Parameters:
description- The description of the legal hold.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
cancelDescription
GetLegalHoldResponse.Builder cancelDescription(String cancelDescription)
The reason for removing the legal hold.
- Parameters:
cancelDescription- The reason for removing the legal hold.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
legalHoldId
GetLegalHoldResponse.Builder legalHoldId(String legalHoldId)
The ID of the legal hold.
- Parameters:
legalHoldId- The ID of the legal hold.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
legalHoldArn
GetLegalHoldResponse.Builder legalHoldArn(String legalHoldArn)
The framework ARN for the specified legal hold. The format of the ARN depends on the resource type.
- Parameters:
legalHoldArn- The framework ARN for the specified legal hold. The format of the ARN depends on the resource type.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
creationDate
GetLegalHoldResponse.Builder creationDate(Instant creationDate)
The time when the legal hold was created.
- Parameters:
creationDate- The time when the legal hold was created.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
cancellationDate
GetLegalHoldResponse.Builder cancellationDate(Instant cancellationDate)
The time when the legal hold was cancelled.
- Parameters:
cancellationDate- The time when the legal hold was cancelled.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
retainRecordUntil
GetLegalHoldResponse.Builder retainRecordUntil(Instant retainRecordUntil)
The date and time until which the legal hold record is retained.
- Parameters:
retainRecordUntil- The date and time until which the legal hold record is retained.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
recoveryPointSelection
GetLegalHoldResponse.Builder recoveryPointSelection(RecoveryPointSelection recoveryPointSelection)
The criteria to assign a set of resources, such as resource types or backup vaults.
- Parameters:
recoveryPointSelection- The criteria to assign a set of resources, such as resource types or backup vaults.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
recoveryPointSelection
default GetLegalHoldResponse.Builder recoveryPointSelection(Consumer<RecoveryPointSelection.Builder> recoveryPointSelection)
The criteria to assign a set of resources, such as resource types or backup vaults.
This is a convenience method that creates an instance of theRecoveryPointSelection.Builderavoiding the need to create one manually viaRecoveryPointSelection.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed torecoveryPointSelection(RecoveryPointSelection).- Parameters:
recoveryPointSelection- a consumer that will call methods onRecoveryPointSelection.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
recoveryPointSelection(RecoveryPointSelection)
-
-