aws_sdk_bedrock/client/delete_automated_reasoning_policy_build_workflow.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 [`DeleteAutomatedReasoningPolicyBuildWorkflow`](crate::operation::delete_automated_reasoning_policy_build_workflow::builders::DeleteAutomatedReasoningPolicyBuildWorkflowFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`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>
7 /// - [`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>
8 /// - [`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>
9 /// - On success, responds with [`DeleteAutomatedReasoningPolicyBuildWorkflowOutput`](crate::operation::delete_automated_reasoning_policy_build_workflow::DeleteAutomatedReasoningPolicyBuildWorkflowOutput)
10 /// - On failure, responds with [`SdkError<DeleteAutomatedReasoningPolicyBuildWorkflowError>`](crate::operation::delete_automated_reasoning_policy_build_workflow::DeleteAutomatedReasoningPolicyBuildWorkflowError)
11 pub fn delete_automated_reasoning_policy_build_workflow(
12 &self,
13 ) -> crate::operation::delete_automated_reasoning_policy_build_workflow::builders::DeleteAutomatedReasoningPolicyBuildWorkflowFluentBuilder {
14 crate::operation::delete_automated_reasoning_policy_build_workflow::builders::DeleteAutomatedReasoningPolicyBuildWorkflowFluentBuilder::new(
15 self.handle.clone(),
16 )
17 }
18}