1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139
|
// Code generated by smithy-go-codegen DO NOT EDIT.
package types
type CreationMode string
// Enum values for CreationMode
const (
CreationModeDefault CreationMode = "DEFAULT"
CreationModeOverridden CreationMode = "OVERRIDDEN"
)
// Values returns all known values for CreationMode. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (CreationMode) Values() []CreationMode {
return []CreationMode{
"DEFAULT",
"OVERRIDDEN",
}
}
type InvocationType string
// Enum values for InvocationType
const (
InvocationTypeActionGroup InvocationType = "ACTION_GROUP"
InvocationTypeKnowledgeBase InvocationType = "KNOWLEDGE_BASE"
InvocationTypeFinish InvocationType = "FINISH"
)
// Values returns all known values for InvocationType. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (InvocationType) Values() []InvocationType {
return []InvocationType{
"ACTION_GROUP",
"KNOWLEDGE_BASE",
"FINISH",
}
}
type PromptType string
// Enum values for PromptType
const (
PromptTypePreProcessing PromptType = "PRE_PROCESSING"
PromptTypeOrchestration PromptType = "ORCHESTRATION"
PromptTypeKnowledgeBaseResponseGeneration PromptType = "KNOWLEDGE_BASE_RESPONSE_GENERATION"
PromptTypePostProcessing PromptType = "POST_PROCESSING"
)
// Values returns all known values for PromptType. Note that this can be expanded
// in the future, and so it is only as up to date as the client. The ordering of
// this slice is not guaranteed to be stable across updates.
func (PromptType) Values() []PromptType {
return []PromptType{
"PRE_PROCESSING",
"ORCHESTRATION",
"KNOWLEDGE_BASE_RESPONSE_GENERATION",
"POST_PROCESSING",
}
}
type RetrievalResultLocationType string
// Enum values for RetrievalResultLocationType
const (
RetrievalResultLocationTypeS3 RetrievalResultLocationType = "S3"
)
// Values returns all known values for RetrievalResultLocationType. Note that this
// can be expanded in the future, and so it is only as up to date as the client.
// The ordering of this slice is not guaranteed to be stable across updates.
func (RetrievalResultLocationType) Values() []RetrievalResultLocationType {
return []RetrievalResultLocationType{
"S3",
}
}
type RetrieveAndGenerateType string
// Enum values for RetrieveAndGenerateType
const (
RetrieveAndGenerateTypeKnowledgeBase RetrieveAndGenerateType = "KNOWLEDGE_BASE"
)
// Values returns all known values for RetrieveAndGenerateType. Note that this can
// be expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (RetrieveAndGenerateType) Values() []RetrieveAndGenerateType {
return []RetrieveAndGenerateType{
"KNOWLEDGE_BASE",
}
}
type Source string
// Enum values for Source
const (
SourceActionGroup Source = "ACTION_GROUP"
SourceKnowledgeBase Source = "KNOWLEDGE_BASE"
SourceParser Source = "PARSER"
)
// Values returns all known values for Source. Note that this can be expanded in
// the future, and so it is only as up to date as the client. The ordering of this
// slice is not guaranteed to be stable across updates.
func (Source) Values() []Source {
return []Source{
"ACTION_GROUP",
"KNOWLEDGE_BASE",
"PARSER",
}
}
type Type string
// Enum values for Type
const (
TypeActionGroup Type = "ACTION_GROUP"
TypeKnowledgeBase Type = "KNOWLEDGE_BASE"
TypeFinish Type = "FINISH"
TypeAskUser Type = "ASK_USER"
TypeReprompt Type = "REPROMPT"
)
// Values returns all known values for Type. Note that this can be expanded in the
// future, and so it is only as up to date as the client. The ordering of this
// slice is not guaranteed to be stable across updates.
func (Type) Values() []Type {
return []Type{
"ACTION_GROUP",
"KNOWLEDGE_BASE",
"FINISH",
"ASK_USER",
"REPROMPT",
}
}
|