Struct rusoto_apigateway::DeleteDeploymentRequest[][src]

pub struct DeleteDeploymentRequest {
    pub deployment_id: String,
    pub rest_api_id: String,
}

Requests API Gateway to delete a Deployment resource.

Fields

[Required] The identifier of the Deployment resource to delete.

[Required] The string identifier of the associated RestApi.

Trait Implementations

impl Default for DeleteDeploymentRequest
[src]

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

impl Debug for DeleteDeploymentRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for DeleteDeploymentRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for DeleteDeploymentRequest
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations