aws-sdk-agentregistrycontrol 1.0.0

AWS SDK for Agent Registry Control
Documentation
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 [`DeleteRegistry`](crate::operation::delete_registry::builders::DeleteRegistryFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`registry_id(impl Into<String>)`](crate::operation::delete_registry::builders::DeleteRegistryFluentBuilder::registry_id) / [`set_registry_id(Option<String>)`](crate::operation::delete_registry::builders::DeleteRegistryFluentBuilder::set_registry_id):<br>required: **true**<br><p>The identifier of the registry to delete (ARN or ID)</p><br>
    /// - On success, responds with [`DeleteRegistryOutput`](crate::operation::delete_registry::DeleteRegistryOutput) with field(s):
    ///   - [`status(RegistryStatus)`](crate::operation::delete_registry::DeleteRegistryOutput::status): <p>Current status of the registry, set to DELETING when deletion is initiated</p>
    /// - On failure, responds with [`SdkError<DeleteRegistryError>`](crate::operation::delete_registry::DeleteRegistryError)
    pub fn delete_registry(&self) -> crate::operation::delete_registry::builders::DeleteRegistryFluentBuilder {
        crate::operation::delete_registry::builders::DeleteRegistryFluentBuilder::new(self.handle.clone())
    }
}