// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT. package route53domains import ( "context" "time" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/internal/awsutil" ) // The ViewBilling request includes the following elements. type ViewBillingInput struct { _ struct{} `type:"structure"` // The end date and time for the time period for which you want a list of billing // records. Specify the date and time in Unix time format and Coordinated Universal // time (UTC). End *time.Time `type:"timestamp"` // For an initial request for a list of billing records, omit this element. // If the number of billing records that are associated with the current AWS // account during the specified period is greater than the value that you specified // for MaxItems, you can use Marker to return additional billing records. Get // the value of NextPageMarker from the previous response, and submit another // request that includes the value of NextPageMarker in the Marker element. // // Constraints: The marker must match the value of NextPageMarker that was returned // in the previous response. Marker *string `type:"string"` // The number of billing records to be returned. // // Default: 20 MaxItems *int64 `type:"integer"` // The beginning date and time for the time period for which you want a list // of billing records. Specify the date and time in Unix time format and Coordinated // Universal time (UTC). Start *time.Time `type:"timestamp"` } // String returns the string representation func (s ViewBillingInput) String() string { return awsutil.Prettify(s) } // The ViewBilling response includes the following elements. type ViewBillingOutput struct { _ struct{} `type:"structure"` // A summary of billing records. BillingRecords []BillingRecord `type:"list"` // If there are more billing records than you specified for MaxItems in the // request, submit another request and include the value of NextPageMarker in // the value of Marker. NextPageMarker *string `type:"string"` } // String returns the string representation func (s ViewBillingOutput) String() string { return awsutil.Prettify(s) } const opViewBilling = "ViewBilling" // ViewBillingRequest returns a request value for making API operation for // Amazon Route 53 Domains. // // Returns all the domain-related billing records for the current AWS account // for a specified period // // // Example sending a request using ViewBillingRequest. // req := client.ViewBillingRequest(params) // resp, err := req.Send(context.TODO()) // if err == nil { // fmt.Println(resp) // } // // Please also see https://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/ViewBilling func (c *Client) ViewBillingRequest(input *ViewBillingInput) ViewBillingRequest { op := &aws.Operation{ Name: opViewBilling, HTTPMethod: "POST", HTTPPath: "/", } if input == nil { input = &ViewBillingInput{} } req := c.newRequest(op, input, &ViewBillingOutput{}) return ViewBillingRequest{Request: req, Input: input, Copy: c.ViewBillingRequest} } // ViewBillingRequest is the request type for the // ViewBilling API operation. type ViewBillingRequest struct { *aws.Request Input *ViewBillingInput Copy func(*ViewBillingInput) ViewBillingRequest } // Send marshals and sends the ViewBilling API request. func (r ViewBillingRequest) Send(ctx context.Context) (*ViewBillingResponse, error) { r.Request.SetContext(ctx) err := r.Request.Send() if err != nil { return nil, err } resp := &ViewBillingResponse{ ViewBillingOutput: r.Request.Data.(*ViewBillingOutput), response: &aws.Response{Request: r.Request}, } return resp, nil } // ViewBillingResponse is the response type for the // ViewBilling API operation. type ViewBillingResponse struct { *ViewBillingOutput response *aws.Response } // SDKResponseMetdata returns the response metadata for the // ViewBilling request. func (r *ViewBillingResponse) SDKResponseMetdata() *aws.Response { return r.response }