aws-sdk-bedrock 1.129.0

AWS SDK for Amazon Bedrock
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DeleteAutomatedReasoningPolicyTestCase`](crate::operation::delete_automated_reasoning_policy_test_case::builders::DeleteAutomatedReasoningPolicyTestCaseFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`policy_arn(impl Into<String>)`](crate::operation::delete_automated_reasoning_policy_test_case::builders::DeleteAutomatedReasoningPolicyTestCaseFluentBuilder::policy_arn) / [`set_policy_arn(Option<String>)`](crate::operation::delete_automated_reasoning_policy_test_case::builders::DeleteAutomatedReasoningPolicyTestCaseFluentBuilder::set_policy_arn):<br>required: **true**<br><p>The Amazon Resource Name (ARN) of the Automated Reasoning policy that contains the test.</p><br>
    ///   - [`test_case_id(impl Into<String>)`](crate::operation::delete_automated_reasoning_policy_test_case::builders::DeleteAutomatedReasoningPolicyTestCaseFluentBuilder::test_case_id) / [`set_test_case_id(Option<String>)`](crate::operation::delete_automated_reasoning_policy_test_case::builders::DeleteAutomatedReasoningPolicyTestCaseFluentBuilder::set_test_case_id):<br>required: **true**<br><p>The unique identifier of the test to delete.</p><br>
    ///   - [`last_updated_at(DateTime)`](crate::operation::delete_automated_reasoning_policy_test_case::builders::DeleteAutomatedReasoningPolicyTestCaseFluentBuilder::last_updated_at) / [`set_last_updated_at(Option<DateTime>)`](crate::operation::delete_automated_reasoning_policy_test_case::builders::DeleteAutomatedReasoningPolicyTestCaseFluentBuilder::set_last_updated_at):<br>required: **true**<br><p>The timestamp when the test was last updated. This is used as a concurrency token to prevent conflicting modifications.</p><br>
    /// - On success, responds with [`DeleteAutomatedReasoningPolicyTestCaseOutput`](crate::operation::delete_automated_reasoning_policy_test_case::DeleteAutomatedReasoningPolicyTestCaseOutput)
    /// - On failure, responds with [`SdkError<DeleteAutomatedReasoningPolicyTestCaseError>`](crate::operation::delete_automated_reasoning_policy_test_case::DeleteAutomatedReasoningPolicyTestCaseError)
    pub fn delete_automated_reasoning_policy_test_case(
        &self,
    ) -> crate::operation::delete_automated_reasoning_policy_test_case::builders::DeleteAutomatedReasoningPolicyTestCaseFluentBuilder {
        crate::operation::delete_automated_reasoning_policy_test_case::builders::DeleteAutomatedReasoningPolicyTestCaseFluentBuilder::new(
            self.handle.clone(),
        )
    }
}