Struct rusoto_apigateway::UpdateVpcLinkRequest[][src]

pub struct UpdateVpcLinkRequest {
    pub patch_operations: Option<Vec<PatchOperation>>,
    pub vpc_link_id: String,
}

Updates an existing VpcLink of a specified identifier.

Fields

A list of update operations to be applied to the specified resource and in the order specified in this list.

[Required] The identifier of the VpcLink. It is used in an Integration to reference this VpcLink.

Trait Implementations

impl Default for UpdateVpcLinkRequest
[src]

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

impl Debug for UpdateVpcLinkRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for UpdateVpcLinkRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for UpdateVpcLinkRequest
[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