Struct rusoto_apigateway::GetDocumentationPartsRequest [] [src]

pub struct GetDocumentationPartsRequest {
    pub limit: Option<i64>,
    pub location_status: Option<String>,
    pub name_query: Option<String>,
    pub path: Option<String>,
    pub position: Option<String>,
    pub rest_api_id: String,
    pub type_: Option<String>,
}

Gets the documentation parts of an API. The result may be filtered by the type, name, or path of API entities (targets).

Fields

The maximum number of returned results per page.

The status of the API documentation parts to retrieve. Valid values are DOCUMENTED for retrieving DocumentationPart resources with content and UNDOCUMENTED for DocumentationPart resources without content.

The name of API entities of the to-be-retrieved documentation parts.

The path of API entities of the to-be-retrieved documentation parts.

The current pagination position in the paged result set.

[Required] The string identifier of the associated RestApi.

The type of API entities of the to-be-retrieved documentation parts.

Trait Implementations

impl Default for GetDocumentationPartsRequest
[src]

[src]

Returns the "default value" for a type. Read more

impl Debug for GetDocumentationPartsRequest
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for GetDocumentationPartsRequest
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations