// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT. package amplify 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" ) // Describes the request structure for the list artifacts request. type ListArtifactsInput struct { _ struct{} `type:"structure"` // The unique ID for an Amplify app. // // AppId is a required field AppId *string `location:"uri" locationName:"appId" min:"1" type:"string" required:"true"` // The name of a branch that is part of an Amplify app. // // BranchName is a required field BranchName *string `location:"uri" locationName:"branchName" min:"1" type:"string" required:"true"` // The unique ID for a job. // // JobId is a required field JobId *string `location:"uri" locationName:"jobId" type:"string" required:"true"` // The maximum number of records to list in a single response. MaxResults *int64 `location:"querystring" locationName:"maxResults" min:"1" type:"integer"` // A pagination token. Set to null to start listing artifacts from start. If // a non-null pagination token is returned in a result, pass its value in here // to list more artifacts. NextToken *string `location:"querystring" locationName:"nextToken" type:"string"` } // String returns the string representation func (s ListArtifactsInput) String() string { return awsutil.Prettify(s) } // Validate inspects the fields of the type to determine if they are valid. func (s *ListArtifactsInput) Validate() error { invalidParams := aws.ErrInvalidParams{Context: "ListArtifactsInput"} if s.AppId == nil { invalidParams.Add(aws.NewErrParamRequired("AppId")) } if s.AppId != nil && len(*s.AppId) < 1 { invalidParams.Add(aws.NewErrParamMinLen("AppId", 1)) } if s.BranchName == nil { invalidParams.Add(aws.NewErrParamRequired("BranchName")) } if s.BranchName != nil && len(*s.BranchName) < 1 { invalidParams.Add(aws.NewErrParamMinLen("BranchName", 1)) } if s.JobId == nil { invalidParams.Add(aws.NewErrParamRequired("JobId")) } if s.MaxResults != nil && *s.MaxResults < 1 { invalidParams.Add(aws.NewErrParamMinValue("MaxResults", 1)) } if invalidParams.Len() > 0 { return invalidParams } return nil } // MarshalFields encodes the AWS API shape using the passed in protocol encoder. func (s ListArtifactsInput) MarshalFields(e protocol.FieldEncoder) error { e.SetValue(protocol.HeaderTarget, "Content-Type", protocol.StringValue("application/json"), protocol.Metadata{}) if s.AppId != nil { v := *s.AppId metadata := protocol.Metadata{} e.SetValue(protocol.PathTarget, "appId", protocol.QuotedValue{ValueMarshaler: protocol.StringValue(v)}, metadata) } if s.BranchName != nil { v := *s.BranchName metadata := protocol.Metadata{} e.SetValue(protocol.PathTarget, "branchName", protocol.QuotedValue{ValueMarshaler: protocol.StringValue(v)}, metadata) } if s.JobId != nil { v := *s.JobId metadata := protocol.Metadata{} e.SetValue(protocol.PathTarget, "jobId", protocol.QuotedValue{ValueMarshaler: protocol.StringValue(v)}, metadata) } if s.MaxResults != nil { v := *s.MaxResults metadata := protocol.Metadata{} e.SetValue(protocol.QueryTarget, "maxResults", protocol.Int64Value(v), metadata) } if s.NextToken != nil { v := *s.NextToken metadata := protocol.Metadata{} e.SetValue(protocol.QueryTarget, "nextToken", protocol.QuotedValue{ValueMarshaler: protocol.StringValue(v)}, metadata) } return nil } // The result structure for the list artifacts request. type ListArtifactsOutput struct { _ struct{} `type:"structure"` // A list of artifacts. // // Artifacts is a required field Artifacts []Artifact `locationName:"artifacts" type:"list" required:"true"` // A pagination token. If a non-null pagination token is returned in a result, // pass its value in another request to retrieve more entries. NextToken *string `locationName:"nextToken" type:"string"` } // String returns the string representation func (s ListArtifactsOutput) String() string { return awsutil.Prettify(s) } // MarshalFields encodes the AWS API shape using the passed in protocol encoder. func (s ListArtifactsOutput) MarshalFields(e protocol.FieldEncoder) error { if s.Artifacts != nil { v := s.Artifacts metadata := protocol.Metadata{} ls0 := e.List(protocol.BodyTarget, "artifacts", metadata) ls0.Start() for _, v1 := range v { ls0.ListAddFields(v1) } ls0.End() } if s.NextToken != nil { v := *s.NextToken metadata := protocol.Metadata{} e.SetValue(protocol.BodyTarget, "nextToken", protocol.QuotedValue{ValueMarshaler: protocol.StringValue(v)}, metadata) } return nil } const opListArtifacts = "ListArtifacts" // ListArtifactsRequest returns a request value for making API operation for // AWS Amplify. // // Returns a list of artifacts for a specified app, branch, and job. // // // Example sending a request using ListArtifactsRequest. // req := client.ListArtifactsRequest(params) // resp, err := req.Send(context.TODO()) // if err == nil { // fmt.Println(resp) // } // // Please also see https://docs.aws.amazon.com/goto/WebAPI/amplify-2017-07-25/ListArtifacts func (c *Client) ListArtifactsRequest(input *ListArtifactsInput) ListArtifactsRequest { op := &aws.Operation{ Name: opListArtifacts, HTTPMethod: "GET", HTTPPath: "/apps/{appId}/branches/{branchName}/jobs/{jobId}/artifacts", } if input == nil { input = &ListArtifactsInput{} } req := c.newRequest(op, input, &ListArtifactsOutput{}) return ListArtifactsRequest{Request: req, Input: input, Copy: c.ListArtifactsRequest} } // ListArtifactsRequest is the request type for the // ListArtifacts API operation. type ListArtifactsRequest struct { *aws.Request Input *ListArtifactsInput Copy func(*ListArtifactsInput) ListArtifactsRequest } // Send marshals and sends the ListArtifacts API request. func (r ListArtifactsRequest) Send(ctx context.Context) (*ListArtifactsResponse, error) { r.Request.SetContext(ctx) err := r.Request.Send() if err != nil { return nil, err } resp := &ListArtifactsResponse{ ListArtifactsOutput: r.Request.Data.(*ListArtifactsOutput), response: &aws.Response{Request: r.Request}, } return resp, nil } // ListArtifactsResponse is the response type for the // ListArtifacts API operation. type ListArtifactsResponse struct { *ListArtifactsOutput response *aws.Response } // SDKResponseMetdata returns the response metadata for the // ListArtifacts request. func (r *ListArtifactsResponse) SDKResponseMetdata() *aws.Response { return r.response }