// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT. package apigatewayv2 import ( "context" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/internal/awsutil" "github.com/aws/aws-sdk-go-v2/private/protocol" ) type DeleteVpcLinkInput struct { _ struct{} `type:"structure"` // VpcLinkId is a required field VpcLinkId *string `location:"uri" locationName:"vpcLinkId" type:"string" required:"true"` } // String returns the string representation func (s DeleteVpcLinkInput) String() string { return awsutil.Prettify(s) } // Validate inspects the fields of the type to determine if they are valid. func (s *DeleteVpcLinkInput) Validate() error { invalidParams := aws.ErrInvalidParams{Context: "DeleteVpcLinkInput"} if s.VpcLinkId == nil { invalidParams.Add(aws.NewErrParamRequired("VpcLinkId")) } if invalidParams.Len() > 0 { return invalidParams } return nil } // MarshalFields encodes the AWS API shape using the passed in protocol encoder. func (s DeleteVpcLinkInput) MarshalFields(e protocol.FieldEncoder) error { e.SetValue(protocol.HeaderTarget, "Content-Type", protocol.StringValue("application/json"), protocol.Metadata{}) if s.VpcLinkId != nil { v := *s.VpcLinkId metadata := protocol.Metadata{} e.SetValue(protocol.PathTarget, "vpcLinkId", protocol.QuotedValue{ValueMarshaler: protocol.StringValue(v)}, metadata) } return nil } type DeleteVpcLinkOutput struct { _ struct{} `type:"structure"` } // String returns the string representation func (s DeleteVpcLinkOutput) String() string { return awsutil.Prettify(s) } // MarshalFields encodes the AWS API shape using the passed in protocol encoder. func (s DeleteVpcLinkOutput) MarshalFields(e protocol.FieldEncoder) error { return nil } const opDeleteVpcLink = "DeleteVpcLink" // DeleteVpcLinkRequest returns a request value for making API operation for // AmazonApiGatewayV2. // // Deletes a VPC link. // // // Example sending a request using DeleteVpcLinkRequest. // req := client.DeleteVpcLinkRequest(params) // resp, err := req.Send(context.TODO()) // if err == nil { // fmt.Println(resp) // } // // Please also see https://docs.aws.amazon.com/goto/WebAPI/apigatewayv2-2018-11-29/DeleteVpcLink func (c *Client) DeleteVpcLinkRequest(input *DeleteVpcLinkInput) DeleteVpcLinkRequest { op := &aws.Operation{ Name: opDeleteVpcLink, HTTPMethod: "DELETE", HTTPPath: "/v2/vpclinks/{vpcLinkId}", } if input == nil { input = &DeleteVpcLinkInput{} } req := c.newRequest(op, input, &DeleteVpcLinkOutput{}) return DeleteVpcLinkRequest{Request: req, Input: input, Copy: c.DeleteVpcLinkRequest} } // DeleteVpcLinkRequest is the request type for the // DeleteVpcLink API operation. type DeleteVpcLinkRequest struct { *aws.Request Input *DeleteVpcLinkInput Copy func(*DeleteVpcLinkInput) DeleteVpcLinkRequest } // Send marshals and sends the DeleteVpcLink API request. func (r DeleteVpcLinkRequest) Send(ctx context.Context) (*DeleteVpcLinkResponse, error) { r.Request.SetContext(ctx) err := r.Request.Send() if err != nil { return nil, err } resp := &DeleteVpcLinkResponse{ DeleteVpcLinkOutput: r.Request.Data.(*DeleteVpcLinkOutput), response: &aws.Response{Request: r.Request}, } return resp, nil } // DeleteVpcLinkResponse is the response type for the // DeleteVpcLink API operation. type DeleteVpcLinkResponse struct { *DeleteVpcLinkOutput response *aws.Response } // SDKResponseMetdata returns the response metadata for the // DeleteVpcLink request. func (r *DeleteVpcLinkResponse) SDKResponseMetdata() *aws.Response { return r.response }