1
2
3
4
5
6
7
8
9
10
11
12
13
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DeleteContext`](crate::operation::delete_context::builders::DeleteContextFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`context_name(impl Into<String>)`](crate::operation::delete_context::builders::DeleteContextFluentBuilder::context_name) / [`set_context_name(Option<String>)`](crate::operation::delete_context::builders::DeleteContextFluentBuilder::set_context_name):<br>required: **true**<br><p>The name of the context to delete.</p><br>
    /// - On success, responds with [`DeleteContextOutput`](crate::operation::delete_context::DeleteContextOutput) with field(s):
    ///   - [`context_arn(Option<String>)`](crate::operation::delete_context::DeleteContextOutput::context_arn): <p>The Amazon Resource Name (ARN) of the context.</p>
    /// - On failure, responds with [`SdkError<DeleteContextError>`](crate::operation::delete_context::DeleteContextError)
    pub fn delete_context(&self) -> crate::operation::delete_context::builders::DeleteContextFluentBuilder {
        crate::operation::delete_context::builders::DeleteContextFluentBuilder::new(self.handle.clone())
    }
}