definition

package
v0.5.28 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Mar 4, 2021 License: Apache-2.0 Imports: 3 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func GetJobDefinitionSafeName

func GetJobDefinitionSafeName(jobName string) string

Replaces not allowed characters to ensure the resulting name conforms to: https://docs.aws.amazon.com/batch/latest/APIReference/API_RegisterJobDefinition.html. Specifically: The name of the job definition to register. Up to 128 letters (uppercase and lowercase), numbers, hyphens, and underscores are allowed.

Types

type Cache

type Cache interface {
	// Gets a JobDefinition if one is in memory. Otherwise found is set to false.
	Get(key CacheKey) (jobDefinition JobDefinitionArn, found bool)

	// Stores a definition in cache.
	Put(key CacheKey, definition JobDefinitionArn) error
}

An JobDefinition cache interface

func NewCache

func NewCache(jobDefinitionCacheSize int) Cache

Creates a new cache using cache size from aws config.

type CacheKey

type CacheKey interface {
	fmt.Stringer
}

A generic CacheKey interface

func NewCacheKey

func NewCacheKey(role, image string) CacheKey

Creates a new deterministic cache key.

type JobDefinitionArn

type JobDefinitionArn = string

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL