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 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528
|
// Code generated by smithy-go-codegen DO NOT EDIT.
package types
type AssistantCapabilityType string
// Enum values for AssistantCapabilityType
const (
AssistantCapabilityTypeV1 AssistantCapabilityType = "V1"
AssistantCapabilityTypeV2 AssistantCapabilityType = "V2"
)
// Values returns all known values for AssistantCapabilityType. 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 (AssistantCapabilityType) Values() []AssistantCapabilityType {
return []AssistantCapabilityType{
"V1",
"V2",
}
}
type AssistantStatus string
// Enum values for AssistantStatus
const (
AssistantStatusCreateInProgress AssistantStatus = "CREATE_IN_PROGRESS"
AssistantStatusCreateFailed AssistantStatus = "CREATE_FAILED"
AssistantStatusActive AssistantStatus = "ACTIVE"
AssistantStatusDeleteInProgress AssistantStatus = "DELETE_IN_PROGRESS"
AssistantStatusDeleteFailed AssistantStatus = "DELETE_FAILED"
AssistantStatusDeleted AssistantStatus = "DELETED"
)
// Values returns all known values for AssistantStatus. 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 (AssistantStatus) Values() []AssistantStatus {
return []AssistantStatus{
"CREATE_IN_PROGRESS",
"CREATE_FAILED",
"ACTIVE",
"DELETE_IN_PROGRESS",
"DELETE_FAILED",
"DELETED",
}
}
type AssistantType string
// Enum values for AssistantType
const (
AssistantTypeAgent AssistantType = "AGENT"
)
// Values returns all known values for AssistantType. 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 (AssistantType) Values() []AssistantType {
return []AssistantType{
"AGENT",
}
}
type AssociationType string
// Enum values for AssociationType
const (
AssociationTypeKnowledgeBase AssociationType = "KNOWLEDGE_BASE"
)
// Values returns all known values for AssociationType. 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 (AssociationType) Values() []AssociationType {
return []AssociationType{
"KNOWLEDGE_BASE",
}
}
type ContentStatus string
// Enum values for ContentStatus
const (
ContentStatusCreateInProgress ContentStatus = "CREATE_IN_PROGRESS"
ContentStatusCreateFailed ContentStatus = "CREATE_FAILED"
ContentStatusActive ContentStatus = "ACTIVE"
ContentStatusDeleteInProgress ContentStatus = "DELETE_IN_PROGRESS"
ContentStatusDeleteFailed ContentStatus = "DELETE_FAILED"
ContentStatusDeleted ContentStatus = "DELETED"
ContentStatusUpdateFailed ContentStatus = "UPDATE_FAILED"
)
// Values returns all known values for ContentStatus. 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 (ContentStatus) Values() []ContentStatus {
return []ContentStatus{
"CREATE_IN_PROGRESS",
"CREATE_FAILED",
"ACTIVE",
"DELETE_IN_PROGRESS",
"DELETE_FAILED",
"DELETED",
"UPDATE_FAILED",
}
}
type ExternalSource string
// Enum values for ExternalSource
const (
ExternalSourceAmazonConnect ExternalSource = "AMAZON_CONNECT"
)
// Values returns all known values for ExternalSource. 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 (ExternalSource) Values() []ExternalSource {
return []ExternalSource{
"AMAZON_CONNECT",
}
}
type FilterField string
// Enum values for FilterField
const (
FilterFieldName FilterField = "NAME"
)
// Values returns all known values for FilterField. 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 (FilterField) Values() []FilterField {
return []FilterField{
"NAME",
}
}
type FilterOperator string
// Enum values for FilterOperator
const (
FilterOperatorEquals FilterOperator = "EQUALS"
)
// Values returns all known values for FilterOperator. 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 (FilterOperator) Values() []FilterOperator {
return []FilterOperator{
"EQUALS",
}
}
type ImportJobStatus string
// Enum values for ImportJobStatus
const (
ImportJobStatusStartInProgress ImportJobStatus = "START_IN_PROGRESS"
ImportJobStatusFailed ImportJobStatus = "FAILED"
ImportJobStatusComplete ImportJobStatus = "COMPLETE"
ImportJobStatusDeleteInProgress ImportJobStatus = "DELETE_IN_PROGRESS"
ImportJobStatusDeleteFailed ImportJobStatus = "DELETE_FAILED"
ImportJobStatusDeleted ImportJobStatus = "DELETED"
)
// Values returns all known values for ImportJobStatus. 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 (ImportJobStatus) Values() []ImportJobStatus {
return []ImportJobStatus{
"START_IN_PROGRESS",
"FAILED",
"COMPLETE",
"DELETE_IN_PROGRESS",
"DELETE_FAILED",
"DELETED",
}
}
type ImportJobType string
// Enum values for ImportJobType
const (
ImportJobTypeQuickResponses ImportJobType = "QUICK_RESPONSES"
)
// Values returns all known values for ImportJobType. 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 (ImportJobType) Values() []ImportJobType {
return []ImportJobType{
"QUICK_RESPONSES",
}
}
type KnowledgeBaseStatus string
// Enum values for KnowledgeBaseStatus
const (
KnowledgeBaseStatusCreateInProgress KnowledgeBaseStatus = "CREATE_IN_PROGRESS"
KnowledgeBaseStatusCreateFailed KnowledgeBaseStatus = "CREATE_FAILED"
KnowledgeBaseStatusActive KnowledgeBaseStatus = "ACTIVE"
KnowledgeBaseStatusDeleteInProgress KnowledgeBaseStatus = "DELETE_IN_PROGRESS"
KnowledgeBaseStatusDeleteFailed KnowledgeBaseStatus = "DELETE_FAILED"
KnowledgeBaseStatusDeleted KnowledgeBaseStatus = "DELETED"
)
// Values returns all known values for KnowledgeBaseStatus. 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 (KnowledgeBaseStatus) Values() []KnowledgeBaseStatus {
return []KnowledgeBaseStatus{
"CREATE_IN_PROGRESS",
"CREATE_FAILED",
"ACTIVE",
"DELETE_IN_PROGRESS",
"DELETE_FAILED",
"DELETED",
}
}
type KnowledgeBaseType string
// Enum values for KnowledgeBaseType
const (
KnowledgeBaseTypeExternal KnowledgeBaseType = "EXTERNAL"
KnowledgeBaseTypeCustom KnowledgeBaseType = "CUSTOM"
KnowledgeBaseTypeQuickResponses KnowledgeBaseType = "QUICK_RESPONSES"
)
// Values returns all known values for KnowledgeBaseType. 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 (KnowledgeBaseType) Values() []KnowledgeBaseType {
return []KnowledgeBaseType{
"EXTERNAL",
"CUSTOM",
"QUICK_RESPONSES",
}
}
type Order string
// Enum values for Order
const (
OrderAsc Order = "ASC"
OrderDesc Order = "DESC"
)
// Values returns all known values for Order. 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 (Order) Values() []Order {
return []Order{
"ASC",
"DESC",
}
}
type Priority string
// Enum values for Priority
const (
PriorityHigh Priority = "HIGH"
PriorityMedium Priority = "MEDIUM"
PriorityLow Priority = "LOW"
)
// Values returns all known values for Priority. 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 (Priority) Values() []Priority {
return []Priority{
"HIGH",
"MEDIUM",
"LOW",
}
}
type QueryConditionComparisonOperator string
// Enum values for QueryConditionComparisonOperator
const (
QueryConditionComparisonOperatorEquals QueryConditionComparisonOperator = "EQUALS"
)
// Values returns all known values for QueryConditionComparisonOperator. 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 (QueryConditionComparisonOperator) Values() []QueryConditionComparisonOperator {
return []QueryConditionComparisonOperator{
"EQUALS",
}
}
type QueryConditionFieldName string
// Enum values for QueryConditionFieldName
const (
QueryConditionFieldNameResultType QueryConditionFieldName = "RESULT_TYPE"
)
// Values returns all known values for QueryConditionFieldName. 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 (QueryConditionFieldName) Values() []QueryConditionFieldName {
return []QueryConditionFieldName{
"RESULT_TYPE",
}
}
type QueryResultType string
// Enum values for QueryResultType
const (
QueryResultTypeKnowledgeContent QueryResultType = "KNOWLEDGE_CONTENT"
QueryResultTypeGenerativeAnswer QueryResultType = "GENERATIVE_ANSWER"
)
// Values returns all known values for QueryResultType. 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 (QueryResultType) Values() []QueryResultType {
return []QueryResultType{
"KNOWLEDGE_CONTENT",
"GENERATIVE_ANSWER",
}
}
type QuickResponseFilterOperator string
// Enum values for QuickResponseFilterOperator
const (
QuickResponseFilterOperatorEquals QuickResponseFilterOperator = "EQUALS"
QuickResponseFilterOperatorPrefix QuickResponseFilterOperator = "PREFIX"
)
// Values returns all known values for QuickResponseFilterOperator. 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 (QuickResponseFilterOperator) Values() []QuickResponseFilterOperator {
return []QuickResponseFilterOperator{
"EQUALS",
"PREFIX",
}
}
type QuickResponseQueryOperator string
// Enum values for QuickResponseQueryOperator
const (
QuickResponseQueryOperatorContains QuickResponseQueryOperator = "CONTAINS"
QuickResponseQueryOperatorContainsAndPrefix QuickResponseQueryOperator = "CONTAINS_AND_PREFIX"
)
// Values returns all known values for QuickResponseQueryOperator. 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 (QuickResponseQueryOperator) Values() []QuickResponseQueryOperator {
return []QuickResponseQueryOperator{
"CONTAINS",
"CONTAINS_AND_PREFIX",
}
}
type QuickResponseStatus string
// Enum values for QuickResponseStatus
const (
QuickResponseStatusCreateInProgress QuickResponseStatus = "CREATE_IN_PROGRESS"
QuickResponseStatusCreateFailed QuickResponseStatus = "CREATE_FAILED"
QuickResponseStatusCreated QuickResponseStatus = "CREATED"
QuickResponseStatusDeleteInProgress QuickResponseStatus = "DELETE_IN_PROGRESS"
QuickResponseStatusDeleteFailed QuickResponseStatus = "DELETE_FAILED"
QuickResponseStatusDeleted QuickResponseStatus = "DELETED"
QuickResponseStatusUpdateInProgress QuickResponseStatus = "UPDATE_IN_PROGRESS"
QuickResponseStatusUpdateFailed QuickResponseStatus = "UPDATE_FAILED"
)
// Values returns all known values for QuickResponseStatus. 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 (QuickResponseStatus) Values() []QuickResponseStatus {
return []QuickResponseStatus{
"CREATE_IN_PROGRESS",
"CREATE_FAILED",
"CREATED",
"DELETE_IN_PROGRESS",
"DELETE_FAILED",
"DELETED",
"UPDATE_IN_PROGRESS",
"UPDATE_FAILED",
}
}
type RecommendationSourceType string
// Enum values for RecommendationSourceType
const (
RecommendationSourceTypeIssueDetection RecommendationSourceType = "ISSUE_DETECTION"
RecommendationSourceTypeRuleEvaluation RecommendationSourceType = "RULE_EVALUATION"
RecommendationSourceTypeOther RecommendationSourceType = "OTHER"
)
// Values returns all known values for RecommendationSourceType. 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 (RecommendationSourceType) Values() []RecommendationSourceType {
return []RecommendationSourceType{
"ISSUE_DETECTION",
"RULE_EVALUATION",
"OTHER",
}
}
type RecommendationTriggerType string
// Enum values for RecommendationTriggerType
const (
RecommendationTriggerTypeQuery RecommendationTriggerType = "QUERY"
RecommendationTriggerTypeGenerative RecommendationTriggerType = "GENERATIVE"
)
// Values returns all known values for RecommendationTriggerType. 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 (RecommendationTriggerType) Values() []RecommendationTriggerType {
return []RecommendationTriggerType{
"QUERY",
"GENERATIVE",
}
}
type RecommendationType string
// Enum values for RecommendationType
const (
RecommendationTypeKnowledgeContent RecommendationType = "KNOWLEDGE_CONTENT"
RecommendationTypeGenerativeResponse RecommendationType = "GENERATIVE_RESPONSE"
RecommendationTypeGenerativeAnswer RecommendationType = "GENERATIVE_ANSWER"
)
// Values returns all known values for RecommendationType. 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 (RecommendationType) Values() []RecommendationType {
return []RecommendationType{
"KNOWLEDGE_CONTENT",
"GENERATIVE_RESPONSE",
"GENERATIVE_ANSWER",
}
}
type Relevance string
// Enum values for Relevance
const (
RelevanceHelpful Relevance = "HELPFUL"
RelevanceNotHelpful Relevance = "NOT_HELPFUL"
)
// Values returns all known values for Relevance. 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 (Relevance) Values() []Relevance {
return []Relevance{
"HELPFUL",
"NOT_HELPFUL",
}
}
type RelevanceLevel string
// Enum values for RelevanceLevel
const (
RelevanceLevelHigh RelevanceLevel = "HIGH"
RelevanceLevelMedium RelevanceLevel = "MEDIUM"
RelevanceLevelLow RelevanceLevel = "LOW"
)
// Values returns all known values for RelevanceLevel. 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 (RelevanceLevel) Values() []RelevanceLevel {
return []RelevanceLevel{
"HIGH",
"MEDIUM",
"LOW",
}
}
type SourceContentType string
// Enum values for SourceContentType
const (
SourceContentTypeKnowledgeContent SourceContentType = "KNOWLEDGE_CONTENT"
)
// Values returns all known values for SourceContentType. 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 (SourceContentType) Values() []SourceContentType {
return []SourceContentType{
"KNOWLEDGE_CONTENT",
}
}
type TargetType string
// Enum values for TargetType
const (
TargetTypeRecommendation TargetType = "RECOMMENDATION"
TargetTypeResult TargetType = "RESULT"
)
// Values returns all known values for TargetType. 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 (TargetType) Values() []TargetType {
return []TargetType{
"RECOMMENDATION",
"RESULT",
}
}
|