Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Client ¶
type Client interface { aws_ecs.ListTasksAPIClient aws_ecs.DescribeTasksAPIClient }
type Container ¶
type Container struct { // The name of the taks. Task string // The name of the container. Name string }
An object representing a container.
type ContainerFinder ¶
type ContainerFinder interface { Find(cluster string) ([]Container, error) FindByIdentifier(cluster, task, container string) ([]Container, error) }
func NewContainerFinder ¶
func NewContainerFinder(cfg *config.Config) ContainerFinder
Click to show internal directories.
Click to hide internal directories.