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
14
15
16
17
18
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`ListRegistryRecords`](crate::operation::list_registry_records::builders::ListRegistryRecordsFluentBuilder) operation.
    /// This operation supports pagination; See [`into_paginator()`](crate::operation::list_registry_records::builders::ListRegistryRecordsFluentBuilder::into_paginator).
    ///
    /// - The fluent builder is configurable:
    ///   - [`registry_id(impl Into<String>)`](crate::operation::list_registry_records::builders::ListRegistryRecordsFluentBuilder::registry_id) / [`set_registry_id(Option<String>)`](crate::operation::list_registry_records::builders::ListRegistryRecordsFluentBuilder::set_registry_id):<br>required: **true**<br><p>The identifier of the registry to list records from (ARN or ID)</p><br>
    ///   - [`max_results(i32)`](crate::operation::list_registry_records::builders::ListRegistryRecordsFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::list_registry_records::builders::ListRegistryRecordsFluentBuilder::set_max_results):<br>required: **false**<br><p>Maximum number of records to return</p><br>
    ///   - [`next_token(impl Into<String>)`](crate::operation::list_registry_records::builders::ListRegistryRecordsFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_registry_records::builders::ListRegistryRecordsFluentBuilder::set_next_token):<br>required: **false**<br><p>Token for pagination</p><br>
    ///   - [`filters(RegistryRecordFilter)`](crate::operation::list_registry_records::builders::ListRegistryRecordsFluentBuilder::filters) / [`set_filters(Option<Vec::<RegistryRecordFilter>>)`](crate::operation::list_registry_records::builders::ListRegistryRecordsFluentBuilder::set_filters):<br>required: **false**<br><p>Filters to apply to the registry record list</p><br>
    /// - On success, responds with [`ListRegistryRecordsOutput`](crate::operation::list_registry_records::ListRegistryRecordsOutput) with field(s):
    ///   - [`registry_records(Vec::<RegistryRecordSummary>)`](crate::operation::list_registry_records::ListRegistryRecordsOutput::registry_records): <p>List of registry record summaries</p>
    ///   - [`next_token(Option<String>)`](crate::operation::list_registry_records::ListRegistryRecordsOutput::next_token): <p>Token for next page of results</p>
    /// - On failure, responds with [`SdkError<ListRegistryRecordsError>`](crate::operation::list_registry_records::ListRegistryRecordsError)
    pub fn list_registry_records(&self) -> crate::operation::list_registry_records::builders::ListRegistryRecordsFluentBuilder {
        crate::operation::list_registry_records::builders::ListRegistryRecordsFluentBuilder::new(self.handle.clone())
    }
}