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 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433
|
// Code generated by smithy-go-codegen DO NOT EDIT.
package types
import (
smithydocument "github.com/aws/smithy-go/document"
"time"
)
// Use to specify a automatic model evaluation job. The
// EvaluationDatasetMetricConfig object is used to specify the prompt datasets,
// task type, and metric names.
type AutomatedEvaluationConfig struct {
// Specifies the required elements for an automatic model evaluation job.
//
// This member is required.
DatasetMetricConfigs []EvaluationDatasetMetricConfig
noSmithyDocumentSerde
}
// CloudWatch logging configuration.
type CloudWatchConfig struct {
// The log group name.
//
// This member is required.
LogGroupName *string
// The role Amazon Resource Name (ARN).
//
// This member is required.
RoleArn *string
// S3 configuration for delivering a large amount of data.
LargeDataDeliveryS3Config *S3Config
noSmithyDocumentSerde
}
// Summary information for a custom model.
type CustomModelSummary struct {
// The base model Amazon Resource Name (ARN).
//
// This member is required.
BaseModelArn *string
// The base model name.
//
// This member is required.
BaseModelName *string
// Creation time of the model.
//
// This member is required.
CreationTime *time.Time
// The Amazon Resource Name (ARN) of the custom model.
//
// This member is required.
ModelArn *string
// The name of the custom model.
//
// This member is required.
ModelName *string
// Specifies whether to carry out continued pre-training of a model or whether to
// fine-tune it. For more information, see [Custom models].
//
// [Custom models]: https://docs.aws.amazon.com/bedrock/latest/userguide/custom-models.html
CustomizationType CustomizationType
noSmithyDocumentSerde
}
// Contains the ARN of the Amazon Bedrock models specified in your model
// evaluation job. Each Amazon Bedrock model supports different inferenceParams .
// To learn more about supported inference parameters for Amazon Bedrock models,
// see [Inference parameters for foundation models].
//
// The inferenceParams are specified using JSON. To successfully insert JSON as
// string make sure that all quotations are properly escaped. For example,
// "temperature":"0.25" key value pair would need to be formatted as
// \"temperature\":\"0.25\" to successfully accepted in the request.
//
// [Inference parameters for foundation models]: https://docs.aws.amazon.com/bedrock/latest/userguide/model-evaluation-prompt-datasets-custom.html
type EvaluationBedrockModel struct {
// Each Amazon Bedrock support different inference parameters that change how the
// model behaves during inference.
//
// This member is required.
InferenceParams *string
// The ARN of the Amazon Bedrock model specified.
//
// This member is required.
ModelIdentifier *string
noSmithyDocumentSerde
}
// Used to specify either a AutomatedEvaluationConfig or HumanEvaluationConfig
// object.
//
// The following types satisfy this interface:
//
// EvaluationConfigMemberAutomated
// EvaluationConfigMemberHuman
type EvaluationConfig interface {
isEvaluationConfig()
}
// Used to specify an automated model evaluation job. See AutomatedEvaluationConfig
// to view the required parameters.
type EvaluationConfigMemberAutomated struct {
Value AutomatedEvaluationConfig
noSmithyDocumentSerde
}
func (*EvaluationConfigMemberAutomated) isEvaluationConfig() {}
// Used to specify a model evaluation job that uses human workers.See
// HumanEvaluationConfig to view the required parameters.
type EvaluationConfigMemberHuman struct {
Value HumanEvaluationConfig
noSmithyDocumentSerde
}
func (*EvaluationConfigMemberHuman) isEvaluationConfig() {}
// Used to specify the name of a built-in prompt dataset and optionally, the
// Amazon S3 bucket where a custom prompt dataset is saved.
type EvaluationDataset struct {
// Used to specify supported built-in prompt datasets. Valid values are
// Builtin.Bold , Builtin.BoolQ , Builtin.NaturalQuestions , Builtin.Gigaword ,
// Builtin.RealToxicityPrompts , Builtin.TriviaQa , Builtin.T-Rex ,
// Builtin.WomensEcommerceClothingReviews and Builtin.Wikitext2 .
//
// This member is required.
Name *string
// For custom prompt datasets, you must specify the location in Amazon S3 where
// the prompt dataset is saved.
DatasetLocation EvaluationDatasetLocation
noSmithyDocumentSerde
}
// The location in Amazon S3 where your prompt dataset is stored.
//
// The following types satisfy this interface:
//
// EvaluationDatasetLocationMemberS3Uri
type EvaluationDatasetLocation interface {
isEvaluationDatasetLocation()
}
// The S3 URI of the S3 bucket specified in the job.
type EvaluationDatasetLocationMemberS3Uri struct {
Value string
noSmithyDocumentSerde
}
func (*EvaluationDatasetLocationMemberS3Uri) isEvaluationDatasetLocation() {}
// Defines the built-in prompt datasets, built-in metric names and custom metric
// names, and the task type.
type EvaluationDatasetMetricConfig struct {
// Specifies the prompt dataset.
//
// This member is required.
Dataset *EvaluationDataset
// The names of the metrics used. For automated model evaluation jobs valid values
// are "Builtin.Accuracy" , "Builtin.Robustness" , and "Builtin.Toxicity" . In
// human-based model evaluation jobs the array of strings must match the name
// parameter specified in HumanEvaluationCustomMetric .
//
// This member is required.
MetricNames []string
// The task type you want the model to carry out.
//
// This member is required.
TaskType EvaluationTaskType
noSmithyDocumentSerde
}
// Used to define the models you want used in your model evaluation job. Automated
// model evaluation jobs support only a single model. In a human-based model
// evaluation job, your annotator can compare the responses for up to two different
// models.
//
// The following types satisfy this interface:
//
// EvaluationInferenceConfigMemberModels
type EvaluationInferenceConfig interface {
isEvaluationInferenceConfig()
}
// Used to specify the models.
type EvaluationInferenceConfigMemberModels struct {
Value []EvaluationModelConfig
noSmithyDocumentSerde
}
func (*EvaluationInferenceConfigMemberModels) isEvaluationInferenceConfig() {}
// Defines the models used in the model evaluation job.
//
// The following types satisfy this interface:
//
// EvaluationModelConfigMemberBedrockModel
type EvaluationModelConfig interface {
isEvaluationModelConfig()
}
// Defines the Amazon Bedrock model and inference parameters you want used.
type EvaluationModelConfigMemberBedrockModel struct {
Value EvaluationBedrockModel
noSmithyDocumentSerde
}
func (*EvaluationModelConfigMemberBedrockModel) isEvaluationModelConfig() {}
// The Amazon S3 location where the results of your model evaluation job are saved.
type EvaluationOutputDataConfig struct {
// The Amazon S3 URI where the results of model evaluation job are saved.
//
// This member is required.
S3Uri *string
noSmithyDocumentSerde
}
// A summary of the model evaluation job.
type EvaluationSummary struct {
// When the model evaluation job was created.
//
// This member is required.
CreationTime *time.Time
// What task type was used in the model evaluation job.
//
// This member is required.
EvaluationTaskTypes []EvaluationTaskType
// The Amazon Resource Name (ARN) of the model evaluation job.
//
// This member is required.
JobArn *string
// The name of the model evaluation job.
//
// This member is required.
JobName *string
// The type, either human or automatic, of model evaluation job.
//
// This member is required.
JobType EvaluationJobType
// The Amazon Resource Names (ARNs) of the model(s) used in the model evaluation
// job.
//
// This member is required.
ModelIdentifiers []string
// The current status of the model evaluation job.
//
// This member is required.
Status EvaluationJobStatus
noSmithyDocumentSerde
}
// Information about a foundation model.
type FoundationModelDetails struct {
// The model Amazon Resource Name (ARN).
//
// This member is required.
ModelArn *string
// The model identifier.
//
// This member is required.
ModelId *string
// The customization that the model supports.
CustomizationsSupported []ModelCustomization
// The inference types that the model supports.
InferenceTypesSupported []InferenceType
// The input modalities that the model supports.
InputModalities []ModelModality
// Contains details about whether a model version is available or deprecated
ModelLifecycle *FoundationModelLifecycle
// The model name.
ModelName *string
// The output modalities that the model supports.
OutputModalities []ModelModality
// The model's provider name.
ProviderName *string
// Indicates whether the model supports streaming.
ResponseStreamingSupported *bool
noSmithyDocumentSerde
}
// Details about whether a model version is available or deprecated.
type FoundationModelLifecycle struct {
// Specifies whether a model version is available ( ACTIVE ) or deprecated ( LEGACY
// .
//
// This member is required.
Status FoundationModelLifecycleStatus
noSmithyDocumentSerde
}
// Summary information for a foundation model.
type FoundationModelSummary struct {
// The Amazon Resource Name (ARN) of the foundation model.
//
// This member is required.
ModelArn *string
// The model ID of the foundation model.
//
// This member is required.
ModelId *string
// Whether the model supports fine-tuning or continual pre-training.
CustomizationsSupported []ModelCustomization
// The inference types that the model supports.
InferenceTypesSupported []InferenceType
// The input modalities that the model supports.
InputModalities []ModelModality
// Contains details about whether a model version is available or deprecated.
ModelLifecycle *FoundationModelLifecycle
// The name of the model.
ModelName *string
// The output modalities that the model supports.
OutputModalities []ModelModality
// The model's provider name.
ProviderName *string
// Indicates whether the model supports streaming.
ResponseStreamingSupported *bool
noSmithyDocumentSerde
}
// Contains filter strengths for harmful content. Guardrails support the following
// content filters to detect and filter harmful user inputs and FM-generated
// outputs.
//
// - Hate – Describes language or a statement that discriminates, criticizes,
// insults, denounces, or dehumanizes a person or group on the basis of an identity
// (such as race, ethnicity, gender, religion, sexual orientation, ability, and
// national origin).
//
// - Insults – Describes language or a statement that includes demeaning,
// humiliating, mocking, insulting, or belittling language. This type of language
// is also labeled as bullying.
//
// - Sexual – Describes language or a statement that indicates sexual interest,
// activity, or arousal using direct or indirect references to body parts, physical
// traits, or sex.
//
// - Violence – Describes language or a statement that includes glorification of
// or threats to inflict physical pain, hurt, or injury toward a person, group or
// thing.
//
// Content filtering depends on the confidence classification of user inputs and
// FM responses across each of the four harmful categories. All input and output
// statements are classified into one of four confidence levels (NONE, LOW, MEDIUM,
// HIGH) for each harmful category. For example, if a statement is classified as
// Hate with HIGH confidence, the likelihood of the statement representing hateful
// content is high. A single statement can be classified across multiple categories
// with varying confidence levels. For example, a single statement can be
// classified as Hate with HIGH confidence, Insults with LOW confidence, Sexual
// with NONE confidence, and Violence with MEDIUM confidence.
//
// For more information, see [Guardrails content filters].
//
// This data type is used in the following API operations:
//
// [GetGuardrail response body]
//
// [GetGuardrail response body]: https://docs.aws.amazon.com/bedrock/latest/APIReference/API_GetGuardrail.html#API_GetGuardrail_ResponseSyntax
// [Guardrails content filters]: https://docs.aws.amazon.com/bedrock/latest/userguide/guardrails-filters.html
type GuardrailContentFilter struct {
// The strength of the content filter to apply to prompts. As you increase the
// filter strength, the likelihood of filtering harmful content increases and the
// probability of seeing harmful content in your application reduces.
//
// This member is required.
InputStrength GuardrailFilterStrength
// The strength of the content filter to apply to model responses. As you increase
// the filter strength, the likelihood of filtering harmful content increases and
// the probability of seeing harmful content in your application reduces.
//
// This member is required.
OutputStrength GuardrailFilterStrength
// The harmful category that the content filter is applied to.
//
// This member is required.
Type GuardrailContentFilterType
noSmithyDocumentSerde
}
// Contains filter strengths for harmful content. Guardrails support the following
// content filters to detect and filter harmful user inputs and FM-generated
// outputs.
//
// - Hate – Describes language or a statement that discriminates, criticizes,
// insults, denounces, or dehumanizes a person or group on the basis of an identity
// (such as race, ethnicity, gender, religion, sexual orientation, ability, and
// national origin).
//
// - Insults – Describes language or a statement that includes demeaning,
// humiliating, mocking, insulting, or belittling language. This type of language
// is also labeled as bullying.
//
// - Sexual – Describes language or a statement that indicates sexual interest,
// activity, or arousal using direct or indirect references to body parts, physical
// traits, or sex.
//
// - Violence – Describes language or a statement that includes glorification of
// or threats to inflict physical pain, hurt, or injury toward a person, group or
// thing.
//
// Content filtering depends on the confidence classification of user inputs and
// FM responses across each of the four harmful categories. All input and output
// statements are classified into one of four confidence levels (NONE, LOW, MEDIUM,
// HIGH) for each harmful category. For example, if a statement is classified as
// Hate with HIGH confidence, the likelihood of the statement representing hateful
// content is high. A single statement can be classified across multiple categories
// with varying confidence levels. For example, a single statement can be
// classified as Hate with HIGH confidence, Insults with LOW confidence, Sexual
// with NONE confidence, and Violence with MEDIUM confidence.
//
// For more information, see [Guardrails content filters].
//
// [Guardrails content filters]: https://docs.aws.amazon.com/bedrock/latest/userguide/guardrails-filters.html
type GuardrailContentFilterConfig struct {
// The strength of the content filter to apply to prompts. As you increase the
// filter strength, the likelihood of filtering harmful content increases and the
// probability of seeing harmful content in your application reduces.
//
// This member is required.
InputStrength GuardrailFilterStrength
// The strength of the content filter to apply to model responses. As you increase
// the filter strength, the likelihood of filtering harmful content increases and
// the probability of seeing harmful content in your application reduces.
//
// This member is required.
OutputStrength GuardrailFilterStrength
// The harmful category that the content filter is applied to.
//
// This member is required.
Type GuardrailContentFilterType
noSmithyDocumentSerde
}
// Contains details about how to handle harmful content.
//
// This data type is used in the following API operations:
//
// [GetGuardrail response body]
//
// [GetGuardrail response body]: https://docs.aws.amazon.com/bedrock/latest/APIReference/API_GetGuardrail.html#API_GetGuardrail_ResponseSyntax
type GuardrailContentPolicy struct {
// Contains the type of the content filter and how strongly it should apply to
// prompts and model responses.
Filters []GuardrailContentFilter
noSmithyDocumentSerde
}
// Contains details about how to handle harmful content.
type GuardrailContentPolicyConfig struct {
// Contains the type of the content filter and how strongly it should apply to
// prompts and model responses.
//
// This member is required.
FiltersConfig []GuardrailContentFilterConfig
noSmithyDocumentSerde
}
// The details for the guardrails contextual grounding filter.
type GuardrailContextualGroundingFilter struct {
// The threshold details for the guardrails contextual grounding filter.
//
// This member is required.
Threshold *float64
// The filter type details for the guardrails contextual grounding filter.
//
// This member is required.
Type GuardrailContextualGroundingFilterType
noSmithyDocumentSerde
}
// The filter configuration details for the guardrails contextual grounding filter.
type GuardrailContextualGroundingFilterConfig struct {
// The threshold details for the guardrails contextual grounding filter.
//
// This member is required.
Threshold *float64
// The filter details for the guardrails contextual grounding filter.
//
// This member is required.
Type GuardrailContextualGroundingFilterType
noSmithyDocumentSerde
}
// The details for the guardrails contextual grounding policy.
type GuardrailContextualGroundingPolicy struct {
// The filter details for the guardrails contextual grounding policy.
//
// This member is required.
Filters []GuardrailContextualGroundingFilter
noSmithyDocumentSerde
}
// The policy configuration details for the guardrails contextual grounding policy.
type GuardrailContextualGroundingPolicyConfig struct {
// The filter configuration details for the guardrails contextual grounding policy.
//
// This member is required.
FiltersConfig []GuardrailContextualGroundingFilterConfig
noSmithyDocumentSerde
}
// The managed word list that was configured for the guardrail. (This is a list of
// words that are pre-defined and managed by guardrails only.)
type GuardrailManagedWords struct {
// ManagedWords$type The managed word type that was configured for the guardrail.
// (For now, we only offer profanity word list)
//
// This member is required.
Type GuardrailManagedWordsType
noSmithyDocumentSerde
}
// The managed word list to configure for the guardrail.
type GuardrailManagedWordsConfig struct {
// The managed word type to configure for the guardrail.
//
// This member is required.
Type GuardrailManagedWordsType
noSmithyDocumentSerde
}
// The PII entity configured for the guardrail.
type GuardrailPiiEntity struct {
// The configured guardrail action when PII entity is detected.
//
// This member is required.
Action GuardrailSensitiveInformationAction
// The type of PII entity. For example, Social Security Number.
//
// This member is required.
Type GuardrailPiiEntityType
noSmithyDocumentSerde
}
// The PII entity to configure for the guardrail.
type GuardrailPiiEntityConfig struct {
// Configure guardrail action when the PII entity is detected.
//
// This member is required.
Action GuardrailSensitiveInformationAction
// Configure guardrail type when the PII entity is detected.
//
// The following PIIs are used to block or mask sensitive information:
//
// - General
//
// - ADDRESS
//
// A physical address, such as "100 Main Street, Anytown, USA" or "Suite #12,
// Building 123". An address can include information such as the street, building,
// location, city, state, country, county, zip code, precinct, and neighborhood.
//
// - AGE
//
// An individual's age, including the quantity and unit of time. For example, in
// the phrase "I am 40 years old," Guarrails recognizes "40 years" as an age.
//
// - NAME
//
// An individual's name. This entity type does not include titles, such as Dr.,
// Mr., Mrs., or Miss. guardrails doesn't apply this entity type to names that are
// part of organizations or addresses. For example, guardrails recognizes the "John
// Doe Organization" as an organization, and it recognizes "Jane Doe Street" as an
// address.
//
// - EMAIL
//
// An email address, such as marymajor@email.com.
//
// - PHONE
//
// A phone number. This entity type also includes fax and pager numbers.
//
// - USERNAME
//
// A user name that identifies an account, such as a login name, screen name, nick
// name, or handle.
//
// - PASSWORD
//
// An alphanumeric string that is used as a password, such as
// "*very20special#pass*".
//
// - DRIVER_ID
//
// The number assigned to a driver's license, which is an official document
// permitting an individual to operate one or more motorized vehicles on a public
// road. A driver's license number consists of alphanumeric characters.
//
// - LICENSE_PLATE
//
// A license plate for a vehicle is issued by the state or country where the
// vehicle is registered. The format for passenger vehicles is typically five to
// eight digits, consisting of upper-case letters and numbers. The format varies
// depending on the location of the issuing state or country.
//
// - VEHICLE_IDENTIFICATION_NUMBER
//
// A Vehicle Identification Number (VIN) uniquely identifies a vehicle. VIN
// content and format are defined in the ISO 3779 specification. Each country has
// specific codes and formats for VINs.
//
// - Finance
//
// - REDIT_DEBIT_CARD_CVV
//
// A three-digit card verification code (CVV) that is present on VISA, MasterCard,
// and Discover credit and debit cards. For American Express credit or debit cards,
// the CVV is a four-digit numeric code.
//
// - CREDIT_DEBIT_CARD_EXPIRY
//
// The expiration date for a credit or debit card. This number is usually four
// digits long and is often formatted as month/year or MM/YY. Guardrails recognizes
// expiration dates such as 01/21, 01/2021, and Jan 2021.
//
// - CREDIT_DEBIT_CARD_NUMBER
//
// The number for a credit or debit card. These numbers can vary from 13 to 16
// digits in length. However, Amazon Comprehend also recognizes credit or debit
// card numbers when only the last four digits are present.
//
// - PIN
//
// A four-digit personal identification number (PIN) with which you can access
// your bank account.
//
// - INTERNATIONAL_BANK_ACCOUNT_NUMBER
//
// An International Bank Account Number has specific formats in each country. For
// more information, see [www.iban.com/structure].
//
// - SWIFT_CODE
//
// A SWIFT code is a standard format of Bank Identifier Code (BIC) used to specify
// a particular bank or branch. Banks use these codes for money transfers such as
// international wire transfers.
//
// SWIFT codes consist of eight or 11 characters. The 11-digit codes refer to
// specific branches, while eight-digit codes (or 11-digit codes ending in 'XXX')
// refer to the head or primary office.
//
// - IT
//
// - IP_ADDRESS
//
// An IPv4 address, such as 198.51.100.0.
//
// - MAC_ADDRESS
//
// A media access control (MAC) address is a unique identifier assigned to a
// network interface controller (NIC).
//
// - URL
//
// A web address, such as www.example.com.
//
// - AWS_ACCESS_KEY
//
// A unique identifier that's associated with a secret access key; you use the
// access key ID and secret access key to sign programmatic Amazon Web Services
// requests cryptographically.
//
// - AWS_SECRET_KEY
//
// A unique identifier that's associated with an access key. You use the access
// key ID and secret access key to sign programmatic Amazon Web Services requests
// cryptographically.
//
// - USA specific
//
// - US_BANK_ACCOUNT_NUMBER
//
// A US bank account number, which is typically 10 to 12 digits long.
//
// - US_BANK_ROUTING_NUMBER
//
// A US bank account routing number. These are typically nine digits long,
//
// - US_INDIVIDUAL_TAX_IDENTIFICATION_NUMBER
//
// A US Individual Taxpayer Identification Number (ITIN) is a nine-digit number
// that starts with a "9" and contain a "7" or "8" as the fourth digit. An ITIN can
// be formatted with a space or a dash after the third and forth digits.
//
// - US_PASSPORT_NUMBER
//
// A US passport number. Passport numbers range from six to nine alphanumeric
// characters.
//
// - US_SOCIAL_SECURITY_NUMBER
//
// A US Social Security Number (SSN) is a nine-digit number that is issued to US
// citizens, permanent residents, and temporary working residents.
//
// - Canada specific
//
// - CA_HEALTH_NUMBER
//
// A Canadian Health Service Number is a 10-digit unique identifier, required for
// individuals to access healthcare benefits.
//
// - CA_SOCIAL_INSURANCE_NUMBER
//
// A Canadian Social Insurance Number (SIN) is a nine-digit unique identifier,
// required for individuals to access government programs and benefits.
//
// The SIN is formatted as three groups of three digits, such as 123-456-789. A
// SIN can be validated through a simple check-digit process called the [Luhn algorithm].
//
// - UK Specific
//
// - UK_NATIONAL_HEALTH_SERVICE_NUMBER
//
// A UK National Health Service Number is a 10-17 digit number, such as 485 777
// 3456. The current system formats the 10-digit number with spaces after the third
// and sixth digits. The final digit is an error-detecting checksum.
//
// - UK_NATIONAL_INSURANCE_NUMBER
//
// A UK National Insurance Number (NINO) provides individuals with access to
// National Insurance (social security) benefits. It is also used for some purposes
// in the UK tax system.
//
// The number is nine digits long and starts with two letters, followed by six
// numbers and one letter. A NINO can be formatted with a space or a dash after the
// two letters and after the second, forth, and sixth digits.
//
// - UK_UNIQUE_TAXPAYER_REFERENCE_NUMBER
//
// A UK Unique Taxpayer Reference (UTR) is a 10-digit number that identifies a
// taxpayer or a business.
//
// - Custom
//
// - Regex filter - You can use a regular expressions to define patterns for a
// guardrail to recognize and act upon such as serial number, booking ID etc..
//
// [Luhn algorithm]: https://www.wikipedia.org/wiki/Luhn_algorithm
// [www.iban.com/structure]: https://www.iban.com/structure
//
// This member is required.
Type GuardrailPiiEntityType
noSmithyDocumentSerde
}
// The regular expression configured for the guardrail.
type GuardrailRegex struct {
// The action taken when a match to the regular expression is detected.
//
// This member is required.
Action GuardrailSensitiveInformationAction
// The name of the regular expression for the guardrail.
//
// This member is required.
Name *string
// The pattern of the regular expression configured for the guardrail.
//
// This member is required.
Pattern *string
// The description of the regular expression for the guardrail.
Description *string
noSmithyDocumentSerde
}
// The regular expression to configure for the guardrail.
type GuardrailRegexConfig struct {
// The guardrail action to configure when matching regular expression is detected.
//
// This member is required.
Action GuardrailSensitiveInformationAction
// The name of the regular expression to configure for the guardrail.
//
// This member is required.
Name *string
// The regular expression pattern to configure for the guardrail.
//
// This member is required.
Pattern *string
// The description of the regular expression to configure for the guardrail.
Description *string
noSmithyDocumentSerde
}
// Contains details about PII entities and regular expressions configured for the
// guardrail.
type GuardrailSensitiveInformationPolicy struct {
// The list of PII entities configured for the guardrail.
PiiEntities []GuardrailPiiEntity
// The list of regular expressions configured for the guardrail.
Regexes []GuardrailRegex
noSmithyDocumentSerde
}
// Contains details about PII entities and regular expressions to configure for
// the guardrail.
type GuardrailSensitiveInformationPolicyConfig struct {
// A list of PII entities to configure to the guardrail.
PiiEntitiesConfig []GuardrailPiiEntityConfig
// A list of regular expressions to configure to the guardrail.
RegexesConfig []GuardrailRegexConfig
noSmithyDocumentSerde
}
// Contains details about a guardrail.
//
// This data type is used in the following API operations:
//
// [ListGuardrails response body]
//
// [ListGuardrails response body]: https://docs.aws.amazon.com/bedrock/latest/APIReference/API_ListGuardrails.html#API_ListGuardrails_ResponseSyntax
type GuardrailSummary struct {
// The ARN of the guardrail.
//
// This member is required.
Arn *string
// The date and time at which the guardrail was created.
//
// This member is required.
CreatedAt *time.Time
// The unique identifier of the guardrail.
//
// This member is required.
Id *string
// The name of the guardrail.
//
// This member is required.
Name *string
// The status of the guardrail.
//
// This member is required.
Status GuardrailStatus
// The date and time at which the guardrail was last updated.
//
// This member is required.
UpdatedAt *time.Time
// The version of the guardrail.
//
// This member is required.
Version *string
// A description of the guardrail.
Description *string
noSmithyDocumentSerde
}
// Details about topics for the guardrail to identify and deny.
//
// This data type is used in the following API operations:
//
// [GetGuardrail response body]
//
// [GetGuardrail response body]: https://docs.aws.amazon.com/bedrock/latest/APIReference/API_GetGuardrail.html#API_GetGuardrail_ResponseSyntax
type GuardrailTopic struct {
// A definition of the topic to deny.
//
// This member is required.
Definition *string
// The name of the topic to deny.
//
// This member is required.
Name *string
// A list of prompts, each of which is an example of a prompt that can be
// categorized as belonging to the topic.
Examples []string
// Specifies to deny the topic.
Type GuardrailTopicType
noSmithyDocumentSerde
}
// Details about topics for the guardrail to identify and deny.
type GuardrailTopicConfig struct {
// A definition of the topic to deny.
//
// This member is required.
Definition *string
// The name of the topic to deny.
//
// This member is required.
Name *string
// Specifies to deny the topic.
//
// This member is required.
Type GuardrailTopicType
// A list of prompts, each of which is an example of a prompt that can be
// categorized as belonging to the topic.
Examples []string
noSmithyDocumentSerde
}
// Contains details about topics that the guardrail should identify and deny.
//
// This data type is used in the following API operations:
//
// [GetGuardrail response body]
//
// [GetGuardrail response body]: https://docs.aws.amazon.com/bedrock/latest/APIReference/API_GetGuardrail.html#API_GetGuardrail_ResponseSyntax
type GuardrailTopicPolicy struct {
// A list of policies related to topics that the guardrail should deny.
//
// This member is required.
Topics []GuardrailTopic
noSmithyDocumentSerde
}
// Contains details about topics that the guardrail should identify and deny.
type GuardrailTopicPolicyConfig struct {
// A list of policies related to topics that the guardrail should deny.
//
// This member is required.
TopicsConfig []GuardrailTopicConfig
noSmithyDocumentSerde
}
// A word configured for the guardrail.
type GuardrailWord struct {
// Text of the word configured for the guardrail to block.
//
// This member is required.
Text *string
noSmithyDocumentSerde
}
// A word to configure for the guardrail.
type GuardrailWordConfig struct {
// Text of the word configured for the guardrail to block.
//
// This member is required.
Text *string
noSmithyDocumentSerde
}
// Contains details about the word policy configured for the guardrail.
type GuardrailWordPolicy struct {
// A list of managed words configured for the guardrail.
ManagedWordLists []GuardrailManagedWords
// A list of words configured for the guardrail.
Words []GuardrailWord
noSmithyDocumentSerde
}
// Contains details about the word policy to configured for the guardrail.
type GuardrailWordPolicyConfig struct {
// A list of managed words to configure for the guardrail.
ManagedWordListsConfig []GuardrailManagedWordsConfig
// A list of words to configure for the guardrail.
WordsConfig []GuardrailWordConfig
noSmithyDocumentSerde
}
// Specifies the custom metrics, how tasks will be rated, the flow definition ARN,
// and your custom prompt datasets. Model evaluation jobs use human workers only
// support the use of custom prompt datasets. To learn more about custom prompt
// datasets and the required format, see [Custom prompt datasets].
//
// When you create custom metrics in HumanEvaluationCustomMetric you must specify
// the metric's name . The list of names specified in the
// HumanEvaluationCustomMetric array, must match the metricNames array of strings
// specified in EvaluationDatasetMetricConfig . For example, if in the
// HumanEvaluationCustomMetric array your specified the names "accuracy",
// "toxicity", "readability" as custom metrics then the metricNames array would
// need to look like the following ["accuracy", "toxicity", "readability"] in
// EvaluationDatasetMetricConfig .
//
// [Custom prompt datasets]: https://docs.aws.amazon.com/bedrock/latest/userguide/model-evaluation-prompt-datasets-custom.html
type HumanEvaluationConfig struct {
// Use to specify the metrics, task, and prompt dataset to be used in your model
// evaluation job.
//
// This member is required.
DatasetMetricConfigs []EvaluationDatasetMetricConfig
// A HumanEvaluationCustomMetric object. It contains the names the metrics, how
// the metrics are to be evaluated, an optional description.
CustomMetrics []HumanEvaluationCustomMetric
// The parameters of the human workflow.
HumanWorkflowConfig *HumanWorkflowConfig
noSmithyDocumentSerde
}
// In a model evaluation job that uses human workers you must define the name of
// the metric, and how you want that metric rated ratingMethod , and an optional
// description of the metric.
type HumanEvaluationCustomMetric struct {
// The name of the metric. Your human evaluators will see this name in the
// evaluation UI.
//
// This member is required.
Name *string
// Choose how you want your human workers to evaluation your model. Valid values
// for rating methods are ThumbsUpDown , IndividualLikertScale ,
// ComparisonLikertScale , ComparisonChoice , and ComparisonRank
//
// This member is required.
RatingMethod *string
// An optional description of the metric. Use this parameter to provide more
// details about the metric.
Description *string
noSmithyDocumentSerde
}
// Contains SageMakerFlowDefinition object. The object is used to specify the
// prompt dataset, task type, rating method and metric names.
type HumanWorkflowConfig struct {
// The Amazon Resource Number (ARN) for the flow definition
//
// This member is required.
FlowDefinitionArn *string
// Instructions for the flow definition
Instructions *string
noSmithyDocumentSerde
}
// Configuration fields for invocation logging.
type LoggingConfig struct {
// CloudWatch logging configuration.
CloudWatchConfig *CloudWatchConfig
// Set to include embeddings data in the log delivery.
EmbeddingDataDeliveryEnabled *bool
// Set to include image data in the log delivery.
ImageDataDeliveryEnabled *bool
// S3 configuration for storing log data.
S3Config *S3Config
// Set to include text data in the log delivery.
TextDataDeliveryEnabled *bool
noSmithyDocumentSerde
}
// Information about one customization job
type ModelCustomizationJobSummary struct {
// Amazon Resource Name (ARN) of the base model.
//
// This member is required.
BaseModelArn *string
// Creation time of the custom model.
//
// This member is required.
CreationTime *time.Time
// Amazon Resource Name (ARN) of the customization job.
//
// This member is required.
JobArn *string
// Name of the customization job.
//
// This member is required.
JobName *string
// Status of the customization job.
//
// This member is required.
Status ModelCustomizationJobStatus
// Amazon Resource Name (ARN) of the custom model.
CustomModelArn *string
// Name of the custom model.
CustomModelName *string
// Specifies whether to carry out continued pre-training of a model or whether to
// fine-tune it. For more information, see [Custom models].
//
// [Custom models]: https://docs.aws.amazon.com/bedrock/latest/userguide/custom-models.html
CustomizationType CustomizationType
// Time that the customization job ended.
EndTime *time.Time
// Time that the customization job was last modified.
LastModifiedTime *time.Time
noSmithyDocumentSerde
}
// S3 Location of the output data.
type OutputDataConfig struct {
// The S3 URI where the output data is stored.
//
// This member is required.
S3Uri *string
noSmithyDocumentSerde
}
// A summary of information about a Provisioned Throughput.
//
// This data type is used in the following API operations:
//
// [ListProvisionedThroughputs response]
//
// [ListProvisionedThroughputs response]: https://docs.aws.amazon.com/bedrock/latest/APIReference/API_ListProvisionedModelThroughputs.html#API_ListProvisionedModelThroughputs_ResponseSyntax
type ProvisionedModelSummary struct {
// The time that the Provisioned Throughput was created.
//
// This member is required.
CreationTime *time.Time
// The Amazon Resource Name (ARN) of the model requested to be associated to this
// Provisioned Throughput. This value differs from the modelArn if updating hasn't
// completed.
//
// This member is required.
DesiredModelArn *string
// The number of model units that was requested to be allocated to the Provisioned
// Throughput.
//
// This member is required.
DesiredModelUnits *int32
// The Amazon Resource Name (ARN) of the base model for which the Provisioned
// Throughput was created, or of the base model that the custom model for which the
// Provisioned Throughput was created was customized.
//
// This member is required.
FoundationModelArn *string
// The time that the Provisioned Throughput was last modified.
//
// This member is required.
LastModifiedTime *time.Time
// The Amazon Resource Name (ARN) of the model associated with the Provisioned
// Throughput.
//
// This member is required.
ModelArn *string
// The number of model units allocated to the Provisioned Throughput.
//
// This member is required.
ModelUnits *int32
// The Amazon Resource Name (ARN) of the Provisioned Throughput.
//
// This member is required.
ProvisionedModelArn *string
// The name of the Provisioned Throughput.
//
// This member is required.
ProvisionedModelName *string
// The status of the Provisioned Throughput.
//
// This member is required.
Status ProvisionedModelStatus
// The duration for which the Provisioned Throughput was committed.
CommitmentDuration CommitmentDuration
// The timestamp for when the commitment term of the Provisioned Throughput
// expires.
CommitmentExpirationTime *time.Time
noSmithyDocumentSerde
}
// S3 configuration for storing log data.
type S3Config struct {
// S3 bucket name.
//
// This member is required.
BucketName *string
// S3 prefix.
KeyPrefix *string
noSmithyDocumentSerde
}
// Definition of the key/value pair for a tag.
type Tag struct {
// Key for the tag.
//
// This member is required.
Key *string
// Value for the tag.
//
// This member is required.
Value *string
noSmithyDocumentSerde
}
// S3 Location of the training data.
type TrainingDataConfig struct {
// The S3 URI where the training data is stored.
//
// This member is required.
S3Uri *string
noSmithyDocumentSerde
}
// Metrics associated with the custom job.
type TrainingMetrics struct {
// Loss metric associated with the custom job.
TrainingLoss *float32
noSmithyDocumentSerde
}
// Array of up to 10 validators.
type ValidationDataConfig struct {
// Information about the validators.
//
// This member is required.
Validators []Validator
noSmithyDocumentSerde
}
// Information about a validator.
type Validator struct {
// The S3 URI where the validation data is stored.
//
// This member is required.
S3Uri *string
noSmithyDocumentSerde
}
// The metric for the validator.
type ValidatorMetric struct {
// The validation loss associated with this validator.
ValidationLoss *float32
noSmithyDocumentSerde
}
// VPC configuration.
type VpcConfig struct {
// VPC configuration security group Ids.
//
// This member is required.
SecurityGroupIds []string
// VPC configuration subnets.
//
// This member is required.
SubnetIds []string
noSmithyDocumentSerde
}
type noSmithyDocumentSerde = smithydocument.NoSerde
// UnknownUnionMember is returned when a union member is returned over the wire,
// but has an unknown tag.
type UnknownUnionMember struct {
Tag string
Value []byte
noSmithyDocumentSerde
}
func (*UnknownUnionMember) isEvaluationConfig() {}
func (*UnknownUnionMember) isEvaluationDatasetLocation() {}
func (*UnknownUnionMember) isEvaluationInferenceConfig() {}
func (*UnknownUnionMember) isEvaluationModelConfig() {}
|