[][src]Struct rusoto_apigateway::GetResourceRequest

pub struct GetResourceRequest {
    pub embed: Option<Vec<String>>,
    pub resource_id: String,
    pub rest_api_id: String,
}

Request to list information about a resource.

Fields

embed: Option<Vec<String>>

A query parameter to retrieve the specified resources embedded in the returned Resource representation in the response. This embed parameter value is a list of comma-separated strings. Currently, the request supports only retrieval of the embedded Method resources this way. The query parameter value must be a single-valued list and contain the "methods" string. For example, GET /restapis/{restapi_id}/resources/{resource_id}?embed=methods.

resource_id: String

[Required] The identifier for the Resource resource.

rest_api_id: String

[Required] The string identifier of the associated RestApi.

Trait Implementations

impl Clone for GetResourceRequest[src]

impl Debug for GetResourceRequest[src]

impl Default for GetResourceRequest[src]

impl PartialEq<GetResourceRequest> for GetResourceRequest[src]

impl Serialize for GetResourceRequest[src]

impl StructuralPartialEq for GetResourceRequest[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> From<T> for T[src]

impl<T> Instrument 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.