1// Code generated by smithy-go-codegen DO NOT EDIT.
2
3package types
4
5type RecipeProvider string
6
7// Enum values for RecipeProvider
8const (
9	RecipeProviderService RecipeProvider = "SERVICE"
10)
11
12// Values returns all known values for RecipeProvider. Note that this can be
13// expanded in the future, and so it is only as up to date as the client. The
14// ordering of this slice is not guaranteed to be stable across updates.
15func (RecipeProvider) Values() []RecipeProvider {
16	return []RecipeProvider{
17		"SERVICE",
18	}
19}
20
21type TrainingMode string
22
23// Enum values for TrainingMode
24const (
25	TrainingModeFull   TrainingMode = "FULL"
26	TrainingModeUpdate TrainingMode = "UPDATE"
27)
28
29// Values returns all known values for TrainingMode. Note that this can be expanded
30// in the future, and so it is only as up to date as the client. The ordering of
31// this slice is not guaranteed to be stable across updates.
32func (TrainingMode) Values() []TrainingMode {
33	return []TrainingMode{
34		"FULL",
35		"UPDATE",
36	}
37}
38