A data store is an abstraction describing a connection to a data store, examples might be a Simple Storage System (S3) connection, Elastic Block Storage (EBS) mount, or a traditional file mount. DataStores are initialized by the SDK via environment variables segregated by the DsProfile parameter as a prefix on the environment variables.

DataStore

type DataStore struct {
	Name      string
	ID        *uuid.UUID
	StoreType StoreType
	DsProfile string
	Parameters PayloadAttributes
	Session    interface{}
}
CODE