aws_sdk_networkflowmonitor/client/
delete_scope.rs

1
2
3
4
5
6
7
8
9
10
11
12
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DeleteScope`](crate::operation::delete_scope::builders::DeleteScopeFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`scope_id(impl Into<String>)`](crate::operation::delete_scope::builders::DeleteScopeFluentBuilder::scope_id) / [`set_scope_id(Option<String>)`](crate::operation::delete_scope::builders::DeleteScopeFluentBuilder::set_scope_id):<br>required: **true**<br><p>The identifier for the scope that includes the resources you want to get data results for. A scope ID is an internally-generated identifier that includes all the resources for a specific root account.</p><br>
    /// - On success, responds with [`DeleteScopeOutput`](crate::operation::delete_scope::DeleteScopeOutput)
    /// - On failure, responds with [`SdkError<DeleteScopeError>`](crate::operation::delete_scope::DeleteScopeError)
    pub fn delete_scope(&self) -> crate::operation::delete_scope::builders::DeleteScopeFluentBuilder {
        crate::operation::delete_scope::builders::DeleteScopeFluentBuilder::new(self.handle.clone())
    }
}