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 [`DeleteRegistryRecord`](crate::operation::delete_registry_record::builders::DeleteRegistryRecordFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`registry_id(impl Into<String>)`](crate::operation::delete_registry_record::builders::DeleteRegistryRecordFluentBuilder::registry_id) / [`set_registry_id(Option<String>)`](crate::operation::delete_registry_record::builders::DeleteRegistryRecordFluentBuilder::set_registry_id):<br>required: **true**<br><p>The identifier of the registry containing the record (ARN or ID)</p><br>
    ///   - [`record_id(impl Into<String>)`](crate::operation::delete_registry_record::builders::DeleteRegistryRecordFluentBuilder::record_id) / [`set_record_id(Option<String>)`](crate::operation::delete_registry_record::builders::DeleteRegistryRecordFluentBuilder::set_record_id):<br>required: **true**<br><p>The identifier of the registry record to delete (ARN or ID)</p><br>
    /// - On success, responds with [`DeleteRegistryRecordOutput`](crate::operation::delete_registry_record::DeleteRegistryRecordOutput)
    /// - On failure, responds with [`SdkError<DeleteRegistryRecordError>`](crate::operation::delete_registry_record::DeleteRegistryRecordError)
    pub fn delete_registry_record(&self) -> crate::operation::delete_registry_record::builders::DeleteRegistryRecordFluentBuilder {
        crate::operation::delete_registry_record::builders::DeleteRegistryRecordFluentBuilder::new(self.handle.clone())
    }
}