// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT. package swf import ( "context" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/internal/awsutil" ) type ListOpenWorkflowExecutionsInput struct { _ struct{} `type:"structure"` // The name of the domain that contains the workflow executions to list. // // Domain is a required field Domain *string `locationName:"domain" min:"1" type:"string" required:"true"` // If specified, only workflow executions matching the workflow ID specified // in the filter are returned. // // executionFilter, typeFilter and tagFilter are mutually exclusive. You can // specify at most one of these in a request. ExecutionFilter *WorkflowExecutionFilter `locationName:"executionFilter" type:"structure"` // The maximum number of results that are returned per call. Use nextPageToken // to obtain further pages of results. MaximumPageSize *int64 `locationName:"maximumPageSize" type:"integer"` // If NextPageToken is returned there are more results available. The value // of NextPageToken is a unique pagination token for each page. Make the call // again using the returned token to retrieve the next page. Keep all other // arguments unchanged. Each pagination token expires after 60 seconds. Using // an expired pagination token will return a 400 error: "Specified token has // exceeded its maximum lifetime". // // The configured maximumPageSize determines how many results can be returned // in a single call. NextPageToken *string `locationName:"nextPageToken" type:"string"` // When set to true, returns the results in reverse order. By default the results // are returned in descending order of the start time of the executions. ReverseOrder *bool `locationName:"reverseOrder" type:"boolean"` // Workflow executions are included in the returned results based on whether // their start times are within the range specified by this filter. // // StartTimeFilter is a required field StartTimeFilter *ExecutionTimeFilter `locationName:"startTimeFilter" type:"structure" required:"true"` // If specified, only executions that have the matching tag are listed. // // executionFilter, typeFilter and tagFilter are mutually exclusive. You can // specify at most one of these in a request. TagFilter *TagFilter `locationName:"tagFilter" type:"structure"` // If specified, only executions of the type specified in the filter are returned. // // executionFilter, typeFilter and tagFilter are mutually exclusive. You can // specify at most one of these in a request. TypeFilter *WorkflowTypeFilter `locationName:"typeFilter" type:"structure"` } // String returns the string representation func (s ListOpenWorkflowExecutionsInput) String() string { return awsutil.Prettify(s) } // Validate inspects the fields of the type to determine if they are valid. func (s *ListOpenWorkflowExecutionsInput) Validate() error { invalidParams := aws.ErrInvalidParams{Context: "ListOpenWorkflowExecutionsInput"} if s.Domain == nil { invalidParams.Add(aws.NewErrParamRequired("Domain")) } if s.Domain != nil && len(*s.Domain) < 1 { invalidParams.Add(aws.NewErrParamMinLen("Domain", 1)) } if s.StartTimeFilter == nil { invalidParams.Add(aws.NewErrParamRequired("StartTimeFilter")) } if s.ExecutionFilter != nil { if err := s.ExecutionFilter.Validate(); err != nil { invalidParams.AddNested("ExecutionFilter", err.(aws.ErrInvalidParams)) } } if s.StartTimeFilter != nil { if err := s.StartTimeFilter.Validate(); err != nil { invalidParams.AddNested("StartTimeFilter", err.(aws.ErrInvalidParams)) } } if s.TagFilter != nil { if err := s.TagFilter.Validate(); err != nil { invalidParams.AddNested("TagFilter", err.(aws.ErrInvalidParams)) } } if s.TypeFilter != nil { if err := s.TypeFilter.Validate(); err != nil { invalidParams.AddNested("TypeFilter", err.(aws.ErrInvalidParams)) } } if invalidParams.Len() > 0 { return invalidParams } return nil } // Contains a paginated list of information about workflow executions. type ListOpenWorkflowExecutionsOutput struct { _ struct{} `type:"structure"` // The list of workflow information structures. // // ExecutionInfos is a required field ExecutionInfos []WorkflowExecutionInfo `locationName:"executionInfos" type:"list" required:"true"` // If a NextPageToken was returned by a previous call, there are more results // available. To retrieve the next page of results, make the call again using // the returned token in nextPageToken. Keep all other arguments unchanged. // // The configured maximumPageSize determines how many results can be returned // in a single call. NextPageToken *string `locationName:"nextPageToken" type:"string"` } // String returns the string representation func (s ListOpenWorkflowExecutionsOutput) String() string { return awsutil.Prettify(s) } const opListOpenWorkflowExecutions = "ListOpenWorkflowExecutions" // ListOpenWorkflowExecutionsRequest returns a request value for making API operation for // Amazon Simple Workflow Service. // // Returns a list of open workflow executions in the specified domain that meet // the filtering criteria. The results may be split into multiple pages. To // retrieve subsequent pages, make the call again using the nextPageToken returned // by the initial call. // // This operation is eventually consistent. The results are best effort and // may not exactly reflect recent updates and changes. // // Access Control // // You can use IAM policies to control this action's access to Amazon SWF resources // as follows: // // * Use a Resource element with the domain name to limit the action to only // specified domains. // // * Use an Action element to allow or deny permission to call this action. // // * Constrain the following parameters by using a Condition element with // the appropriate keys. tagFilter.tag: String constraint. The key is swf:tagFilter.tag. // typeFilter.name: String constraint. The key is swf:typeFilter.name. typeFilter.version: // String constraint. The key is swf:typeFilter.version. // // If the caller doesn't have sufficient permissions to invoke the action, or // the parameter values fall outside the specified constraints, the action fails. // The associated event attribute's cause parameter is set to OPERATION_NOT_PERMITTED. // For details and example IAM policies, see Using IAM to Manage Access to Amazon // SWF Workflows (https://docs.aws.amazon.com/amazonswf/latest/developerguide/swf-dev-iam.html) // in the Amazon SWF Developer Guide. // // // Example sending a request using ListOpenWorkflowExecutionsRequest. // req := client.ListOpenWorkflowExecutionsRequest(params) // resp, err := req.Send(context.TODO()) // if err == nil { // fmt.Println(resp) // } func (c *Client) ListOpenWorkflowExecutionsRequest(input *ListOpenWorkflowExecutionsInput) ListOpenWorkflowExecutionsRequest { op := &aws.Operation{ Name: opListOpenWorkflowExecutions, HTTPMethod: "POST", HTTPPath: "/", Paginator: &aws.Paginator{ InputTokens: []string{"nextPageToken"}, OutputTokens: []string{"nextPageToken"}, LimitToken: "maximumPageSize", TruncationToken: "", }, } if input == nil { input = &ListOpenWorkflowExecutionsInput{} } req := c.newRequest(op, input, &ListOpenWorkflowExecutionsOutput{}) return ListOpenWorkflowExecutionsRequest{Request: req, Input: input, Copy: c.ListOpenWorkflowExecutionsRequest} } // ListOpenWorkflowExecutionsRequest is the request type for the // ListOpenWorkflowExecutions API operation. type ListOpenWorkflowExecutionsRequest struct { *aws.Request Input *ListOpenWorkflowExecutionsInput Copy func(*ListOpenWorkflowExecutionsInput) ListOpenWorkflowExecutionsRequest } // Send marshals and sends the ListOpenWorkflowExecutions API request. func (r ListOpenWorkflowExecutionsRequest) Send(ctx context.Context) (*ListOpenWorkflowExecutionsResponse, error) { r.Request.SetContext(ctx) err := r.Request.Send() if err != nil { return nil, err } resp := &ListOpenWorkflowExecutionsResponse{ ListOpenWorkflowExecutionsOutput: r.Request.Data.(*ListOpenWorkflowExecutionsOutput), response: &aws.Response{Request: r.Request}, } return resp, nil } // NewListOpenWorkflowExecutionsRequestPaginator returns a paginator for ListOpenWorkflowExecutions. // Use Next method to get the next page, and CurrentPage to get the current // response page from the paginator. Next will return false, if there are // no more pages, or an error was encountered. // // Note: This operation can generate multiple requests to a service. // // // Example iterating over pages. // req := client.ListOpenWorkflowExecutionsRequest(input) // p := swf.NewListOpenWorkflowExecutionsRequestPaginator(req) // // for p.Next(context.TODO()) { // page := p.CurrentPage() // } // // if err := p.Err(); err != nil { // return err // } // func NewListOpenWorkflowExecutionsPaginator(req ListOpenWorkflowExecutionsRequest) ListOpenWorkflowExecutionsPaginator { return ListOpenWorkflowExecutionsPaginator{ Pager: aws.Pager{ NewRequest: func(ctx context.Context) (*aws.Request, error) { var inCpy *ListOpenWorkflowExecutionsInput if req.Input != nil { tmp := *req.Input inCpy = &tmp } newReq := req.Copy(inCpy) newReq.SetContext(ctx) return newReq.Request, nil }, }, } } // ListOpenWorkflowExecutionsPaginator is used to paginate the request. This can be done by // calling Next and CurrentPage. type ListOpenWorkflowExecutionsPaginator struct { aws.Pager } func (p *ListOpenWorkflowExecutionsPaginator) CurrentPage() *ListOpenWorkflowExecutionsOutput { return p.Pager.CurrentPage().(*ListOpenWorkflowExecutionsOutput) } // ListOpenWorkflowExecutionsResponse is the response type for the // ListOpenWorkflowExecutions API operation. type ListOpenWorkflowExecutionsResponse struct { *ListOpenWorkflowExecutionsOutput response *aws.Response } // SDKResponseMetdata returns the response metadata for the // ListOpenWorkflowExecutions request. func (r *ListOpenWorkflowExecutionsResponse) SDKResponseMetdata() *aws.Response { return r.response }