Skip to content
This repository has been archived by the owner on Oct 15, 2024. It is now read-only.

Commit

Permalink
Add ElasticTranscoder Pipeline cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
tomvachon committed Mar 2, 2018
1 parent 2c7afae commit b4fbec8
Showing 1 changed file with 57 additions and 0 deletions.
57 changes: 57 additions & 0 deletions resources/elastictranscoder-pipelines.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
package resources

import (
"github.com/aws/aws-sdk-go/aws/session"
"github.com/aws/aws-sdk-go/service/elastictranscoder"
)

type ElasticTranscoderPipeline struct {
svc *elastictranscoder.ElasticTranscoder
pipelineID *string
}

func init() {
register("ElasticTranscoderPipeline", ListElasticTranscoderPipelines)
}

func ListElasticTranscoderPipelines(sess *session.Session) ([]Resource, error) {
svc := elastictranscoder.New(sess)
resources := []Resource{}

params := &elastictranscoder.ListPipelinesInput{}

for {
resp, err := svc.ListPipelines(params)
if err != nil {
return nil, err
}

for _, pipeline := range resp.Pipelines {
resources = append(resources, &ElasticTranscoderPipeline{
svc: svc,
pipelineID: pipeline.Id,
})
}

if resp.NextPageToken == nil {
break
}

params.PageToken = resp.NextPageToken
}

return resources, nil
}

func (f *ElasticTranscoderPipeline) Remove() error {

_, err := f.svc.DeletePipeline(&elastictranscoder.DeletePipelineInput{
Id: f.pipelineID,
})

return err
}

func (f *ElasticTranscoderPipeline) String() string {
return *f.pipelineID
}

0 comments on commit b4fbec8

Please sign in to comment.