Struct rusoto_apigateway::GetDeploymentRequest [] [src]

pub struct GetDeploymentRequest {
    pub deployment_id: String,
    pub embed: Option<Vec<String>>,
    pub rest_api_id: String,
}

Requests Amazon API Gateway to get information about a Deployment resource.

Fields

The identifier of the Deployment resource to get information about.

A query parameter to retrieve the specified embedded resources of the returned Deployment resource in the response. In a REST API call, this embed parameter value is a list of comma-separated strings, as in GET /restapis/{restapi_id}/deployments/{deployment_id}?embed=var1,var2. The SDK and other platform-dependent libraries might use a different format for the list. Currently, this request supports only retrieval of the embedded API summary this way. Hence, the parameter value must be a single-valued list containing only the "apisummary" string. For example, GET /restapis/{restapi_id}/deployments/{deployment_id}?embed=apisummary.

The string identifier of the associated RestApi.

Trait Implementations

impl Default for GetDeploymentRequest
[src]

[src]

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

impl Debug for GetDeploymentRequest
[src]

[src]

Formats the value using the given formatter.

impl Clone for GetDeploymentRequest
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more