aws-sdk-bedrockagentcorecontrol 1.47.0

AWS SDK for Amazon Bedrock AgentCore 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. You can specify either the Amazon Resource Name (ARN) or the ID of the registry.</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. You can specify either the Amazon Resource Name (ARN) or the ID of the record.</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())
    }
}