wstrm / ahfdeploy

Arrowhead Framework deploy tool (part of D0022E course)
0 stars 0 forks source link

1.5 Add session handler #27

Closed wstrm closed 6 years ago

wstrm commented 6 years ago

Functional description

Create a session handler for retrieving an AWS ECS session. This handler should return an ahfdeploy.Session (probably, maybe session.Session etc.) wrapper for the AWS ECS session.

For now, something like:

import "github.com/aws/aws-sdk-go/aws/session"

type Session struct {
  session *session.Session
}

should suffice as a wrapper type.

See: https://docs.aws.amazon.com/sdk-for-go/api/aws/session/ for documentation.

Tests on this issue

wstrm commented 6 years ago

Done.