1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`QuerySchemaVersionMetadata`](crate::operation::query_schema_version_metadata::builders::QuerySchemaVersionMetadataFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`schema_id(SchemaId)`](crate::operation::query_schema_version_metadata::builders::QuerySchemaVersionMetadataFluentBuilder::schema_id) / [`set_schema_id(Option<SchemaId>)`](crate::operation::query_schema_version_metadata::builders::QuerySchemaVersionMetadataFluentBuilder::set_schema_id):<br>required: **false**<br><p>A wrapper structure that may contain the schema name and Amazon Resource Name (ARN).</p><br>
    ///   - [`schema_version_number(SchemaVersionNumber)`](crate::operation::query_schema_version_metadata::builders::QuerySchemaVersionMetadataFluentBuilder::schema_version_number) / [`set_schema_version_number(Option<SchemaVersionNumber>)`](crate::operation::query_schema_version_metadata::builders::QuerySchemaVersionMetadataFluentBuilder::set_schema_version_number):<br>required: **false**<br><p>The version number of the schema.</p><br>
    ///   - [`schema_version_id(impl Into<String>)`](crate::operation::query_schema_version_metadata::builders::QuerySchemaVersionMetadataFluentBuilder::schema_version_id) / [`set_schema_version_id(Option<String>)`](crate::operation::query_schema_version_metadata::builders::QuerySchemaVersionMetadataFluentBuilder::set_schema_version_id):<br>required: **false**<br><p>The unique version ID of the schema version.</p><br>
    ///   - [`metadata_list(MetadataKeyValuePair)`](crate::operation::query_schema_version_metadata::builders::QuerySchemaVersionMetadataFluentBuilder::metadata_list) / [`set_metadata_list(Option<Vec::<MetadataKeyValuePair>>)`](crate::operation::query_schema_version_metadata::builders::QuerySchemaVersionMetadataFluentBuilder::set_metadata_list):<br>required: **false**<br><p>Search key-value pairs for metadata, if they are not provided all the metadata information will be fetched.</p><br>
    ///   - [`max_results(i32)`](crate::operation::query_schema_version_metadata::builders::QuerySchemaVersionMetadataFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::query_schema_version_metadata::builders::QuerySchemaVersionMetadataFluentBuilder::set_max_results):<br>required: **false**<br><p>Maximum number of results required per page. If the value is not supplied, this will be defaulted to 25 per page.</p><br>
    ///   - [`next_token(impl Into<String>)`](crate::operation::query_schema_version_metadata::builders::QuerySchemaVersionMetadataFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::query_schema_version_metadata::builders::QuerySchemaVersionMetadataFluentBuilder::set_next_token):<br>required: **false**<br><p>A continuation token, if this is a continuation call.</p><br>
    /// - On success, responds with [`QuerySchemaVersionMetadataOutput`](crate::operation::query_schema_version_metadata::QuerySchemaVersionMetadataOutput) with field(s):
    ///   - [`metadata_info_map(Option<HashMap::<String, MetadataInfo>>)`](crate::operation::query_schema_version_metadata::QuerySchemaVersionMetadataOutput::metadata_info_map): <p>A map of a metadata key and associated values.</p>
    ///   - [`schema_version_id(Option<String>)`](crate::operation::query_schema_version_metadata::QuerySchemaVersionMetadataOutput::schema_version_id): <p>The unique version ID of the schema version.</p>
    ///   - [`next_token(Option<String>)`](crate::operation::query_schema_version_metadata::QuerySchemaVersionMetadataOutput::next_token): <p>A continuation token for paginating the returned list of tokens, returned if the current segment of the list is not the last.</p>
    /// - On failure, responds with [`SdkError<QuerySchemaVersionMetadataError>`](crate::operation::query_schema_version_metadata::QuerySchemaVersionMetadataError)
    pub fn query_schema_version_metadata(
        &self,
    ) -> crate::operation::query_schema_version_metadata::builders::QuerySchemaVersionMetadataFluentBuilder {
        crate::operation::query_schema_version_metadata::builders::QuerySchemaVersionMetadataFluentBuilder::new(self.handle.clone())
    }
}