// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT. package sagemaker 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" "github.com/aws/aws-sdk-go-v2/private/protocol/jsonrpc" ) type DeleteEndpointInput struct { _ struct{} `type:"structure"` // The name of the endpoint that you want to delete. // // EndpointName is a required field EndpointName *string `type:"string" required:"true"` } // String returns the string representation func (s DeleteEndpointInput) String() string { return awsutil.Prettify(s) } // Validate inspects the fields of the type to determine if they are valid. func (s *DeleteEndpointInput) Validate() error { invalidParams := aws.ErrInvalidParams{Context: "DeleteEndpointInput"} if s.EndpointName == nil { invalidParams.Add(aws.NewErrParamRequired("EndpointName")) } if invalidParams.Len() > 0 { return invalidParams } return nil } type DeleteEndpointOutput struct { _ struct{} `type:"structure"` } // String returns the string representation func (s DeleteEndpointOutput) String() string { return awsutil.Prettify(s) } const opDeleteEndpoint = "DeleteEndpoint" // DeleteEndpointRequest returns a request value for making API operation for // Amazon SageMaker Service. // // Deletes an endpoint. Amazon SageMaker frees up all of the resources that // were deployed when the endpoint was created. // // Amazon SageMaker retires any custom KMS key grants associated with the endpoint, // meaning you don't need to use the RevokeGrant (http://docs.aws.amazon.com/kms/latest/APIReference/API_RevokeGrant.html) // API call. // // // Example sending a request using DeleteEndpointRequest. // req := client.DeleteEndpointRequest(params) // resp, err := req.Send(context.TODO()) // if err == nil { // fmt.Println(resp) // } // // Please also see https://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DeleteEndpoint func (c *Client) DeleteEndpointRequest(input *DeleteEndpointInput) DeleteEndpointRequest { op := &aws.Operation{ Name: opDeleteEndpoint, HTTPMethod: "POST", HTTPPath: "/", } if input == nil { input = &DeleteEndpointInput{} } req := c.newRequest(op, input, &DeleteEndpointOutput{}) req.Handlers.Unmarshal.Remove(jsonrpc.UnmarshalHandler) req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) return DeleteEndpointRequest{Request: req, Input: input, Copy: c.DeleteEndpointRequest} } // DeleteEndpointRequest is the request type for the // DeleteEndpoint API operation. type DeleteEndpointRequest struct { *aws.Request Input *DeleteEndpointInput Copy func(*DeleteEndpointInput) DeleteEndpointRequest } // Send marshals and sends the DeleteEndpoint API request. func (r DeleteEndpointRequest) Send(ctx context.Context) (*DeleteEndpointResponse, error) { r.Request.SetContext(ctx) err := r.Request.Send() if err != nil { return nil, err } resp := &DeleteEndpointResponse{ DeleteEndpointOutput: r.Request.Data.(*DeleteEndpointOutput), response: &aws.Response{Request: r.Request}, } return resp, nil } // DeleteEndpointResponse is the response type for the // DeleteEndpoint API operation. type DeleteEndpointResponse struct { *DeleteEndpointOutput response *aws.Response } // SDKResponseMetdata returns the response metadata for the // DeleteEndpoint request. func (r *DeleteEndpointResponse) SDKResponseMetdata() *aws.Response { return r.response }