aws_sdk_backup/client/disassociate_recovery_point.rs
1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3 /// Constructs a fluent builder for the [`DisassociateRecoveryPoint`](crate::operation::disassociate_recovery_point::builders::DisassociateRecoveryPointFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`backup_vault_name(impl Into<String>)`](crate::operation::disassociate_recovery_point::builders::DisassociateRecoveryPointFluentBuilder::backup_vault_name) / [`set_backup_vault_name(Option<String>)`](crate::operation::disassociate_recovery_point::builders::DisassociateRecoveryPointFluentBuilder::set_backup_vault_name):<br>required: **true**<br><p>The unique name of an Backup vault.</p><br>
7 /// - [`recovery_point_arn(impl Into<String>)`](crate::operation::disassociate_recovery_point::builders::DisassociateRecoveryPointFluentBuilder::recovery_point_arn) / [`set_recovery_point_arn(Option<String>)`](crate::operation::disassociate_recovery_point::builders::DisassociateRecoveryPointFluentBuilder::set_recovery_point_arn):<br>required: **true**<br><p>An Amazon Resource Name (ARN) that uniquely identifies an Backup recovery point.</p><br>
8 /// - On success, responds with [`DisassociateRecoveryPointOutput`](crate::operation::disassociate_recovery_point::DisassociateRecoveryPointOutput)
9 /// - On failure, responds with [`SdkError<DisassociateRecoveryPointError>`](crate::operation::disassociate_recovery_point::DisassociateRecoveryPointError)
10 pub fn disassociate_recovery_point(&self) -> crate::operation::disassociate_recovery_point::builders::DisassociateRecoveryPointFluentBuilder {
11 crate::operation::disassociate_recovery_point::builders::DisassociateRecoveryPointFluentBuilder::new(self.handle.clone())
12 }
13}