[][src]Struct rusoto_config::StoredQueryMetadata

pub struct StoredQueryMetadata {
    pub description: Option<String>,
    pub query_arn: String,
    pub query_id: String,
    pub query_name: String,
}

Returns details of a specific query.

Fields

description: Option<String>

A unique description for the query.

query_arn: String

Amazon Resource Name (ARN) of the query. For example, arn:partition:service:region:account-id:resource-type/resource-id.

query_id: String

The ID of the query.

query_name: String

The name of the query.

Trait Implementations

impl Clone for StoredQueryMetadata[src]

impl Debug for StoredQueryMetadata[src]

impl Default for StoredQueryMetadata[src]

impl<'de> Deserialize<'de> for StoredQueryMetadata[src]

impl PartialEq<StoredQueryMetadata> for StoredQueryMetadata[src]

impl StructuralPartialEq for StoredQueryMetadata[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.