Struct aws_sdk_glue::operation::query_schema_version_metadata::QuerySchemaVersionMetadataInput
source · #[non_exhaustive]pub struct QuerySchemaVersionMetadataInput {
pub schema_id: Option<SchemaId>,
pub schema_version_number: Option<SchemaVersionNumber>,
pub schema_version_id: Option<String>,
pub metadata_list: Option<Vec<MetadataKeyValuePair>>,
pub max_results: Option<i32>,
pub next_token: Option<String>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.schema_id: Option<SchemaId>A wrapper structure that may contain the schema name and Amazon Resource Name (ARN).
schema_version_number: Option<SchemaVersionNumber>The version number of the schema.
schema_version_id: Option<String>The unique version ID of the schema version.
metadata_list: Option<Vec<MetadataKeyValuePair>>Search key-value pairs for metadata, if they are not provided all the metadata information will be fetched.
max_results: Option<i32>Maximum number of results required per page. If the value is not supplied, this will be defaulted to 25 per page.
next_token: Option<String>A continuation token, if this is a continuation call.
Implementations§
source§impl QuerySchemaVersionMetadataInput
impl QuerySchemaVersionMetadataInput
sourcepub fn schema_id(&self) -> Option<&SchemaId>
pub fn schema_id(&self) -> Option<&SchemaId>
A wrapper structure that may contain the schema name and Amazon Resource Name (ARN).
sourcepub fn schema_version_number(&self) -> Option<&SchemaVersionNumber>
pub fn schema_version_number(&self) -> Option<&SchemaVersionNumber>
The version number of the schema.
sourcepub fn schema_version_id(&self) -> Option<&str>
pub fn schema_version_id(&self) -> Option<&str>
The unique version ID of the schema version.
sourcepub fn metadata_list(&self) -> Option<&[MetadataKeyValuePair]>
pub fn metadata_list(&self) -> Option<&[MetadataKeyValuePair]>
Search key-value pairs for metadata, if they are not provided all the metadata information will be fetched.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
Maximum number of results required per page. If the value is not supplied, this will be defaulted to 25 per page.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
A continuation token, if this is a continuation call.
source§impl QuerySchemaVersionMetadataInput
impl QuerySchemaVersionMetadataInput
sourcepub fn builder() -> QuerySchemaVersionMetadataInputBuilder
pub fn builder() -> QuerySchemaVersionMetadataInputBuilder
Creates a new builder-style object to manufacture QuerySchemaVersionMetadataInput.
Trait Implementations§
source§impl Clone for QuerySchemaVersionMetadataInput
impl Clone for QuerySchemaVersionMetadataInput
source§fn clone(&self) -> QuerySchemaVersionMetadataInput
fn clone(&self) -> QuerySchemaVersionMetadataInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl PartialEq<QuerySchemaVersionMetadataInput> for QuerySchemaVersionMetadataInput
impl PartialEq<QuerySchemaVersionMetadataInput> for QuerySchemaVersionMetadataInput
source§fn eq(&self, other: &QuerySchemaVersionMetadataInput) -> bool
fn eq(&self, other: &QuerySchemaVersionMetadataInput) -> bool
self and other values to be equal, and is used
by ==.