aws-sdk-bedrock 1.143.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 [`DeleteAutomatedReasoningPolicyBuildWorkflow`](crate::operation::delete_automated_reasoning_policy_build_workflow::builders::DeleteAutomatedReasoningPolicyBuildWorkflowFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`policy_arn(impl Into<String>)`](crate::operation::delete_automated_reasoning_policy_build_workflow::builders::DeleteAutomatedReasoningPolicyBuildWorkflowFluentBuilder::policy_arn) / [`set_policy_arn(Option<String>)`](crate::operation::delete_automated_reasoning_policy_build_workflow::builders::DeleteAutomatedReasoningPolicyBuildWorkflowFluentBuilder::set_policy_arn):<br>required: **true**<br><p>The Amazon Resource Name (ARN) of the Automated Reasoning policy whose build workflow you want to delete.</p><br>
    ///   - [`build_workflow_id(impl Into<String>)`](crate::operation::delete_automated_reasoning_policy_build_workflow::builders::DeleteAutomatedReasoningPolicyBuildWorkflowFluentBuilder::build_workflow_id) / [`set_build_workflow_id(Option<String>)`](crate::operation::delete_automated_reasoning_policy_build_workflow::builders::DeleteAutomatedReasoningPolicyBuildWorkflowFluentBuilder::set_build_workflow_id):<br>required: **true**<br><p>The unique identifier of the build workflow to delete.</p><br>
    ///   - [`last_updated_at(DateTime)`](crate::operation::delete_automated_reasoning_policy_build_workflow::builders::DeleteAutomatedReasoningPolicyBuildWorkflowFluentBuilder::last_updated_at) / [`set_last_updated_at(Option<DateTime>)`](crate::operation::delete_automated_reasoning_policy_build_workflow::builders::DeleteAutomatedReasoningPolicyBuildWorkflowFluentBuilder::set_last_updated_at):<br>required: **true**<br><p>The timestamp when the build workflow was last updated. This is used for optimistic concurrency control to prevent accidental deletion of workflows that have been modified.</p><br>
    /// - On success, responds with [`DeleteAutomatedReasoningPolicyBuildWorkflowOutput`](crate::operation::delete_automated_reasoning_policy_build_workflow::DeleteAutomatedReasoningPolicyBuildWorkflowOutput)
    /// - On failure, responds with [`SdkError<DeleteAutomatedReasoningPolicyBuildWorkflowError>`](crate::operation::delete_automated_reasoning_policy_build_workflow::DeleteAutomatedReasoningPolicyBuildWorkflowError)
    pub fn delete_automated_reasoning_policy_build_workflow(
        &self,
    ) -> crate::operation::delete_automated_reasoning_policy_build_workflow::builders::DeleteAutomatedReasoningPolicyBuildWorkflowFluentBuilder {
        crate::operation::delete_automated_reasoning_policy_build_workflow::builders::DeleteAutomatedReasoningPolicyBuildWorkflowFluentBuilder::new(
            self.handle.clone(),
        )
    }
}