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
|
// Code generated by smithy-go-codegen DO NOT EDIT.
package types
type AdminStatus string
// Enum values for AdminStatus
const (
AdminStatusEnabled AdminStatus = "ENABLED"
AdminStatusDisablingInProgress AdminStatus = "DISABLING_IN_PROGRESS"
)
// Values returns all known values for AdminStatus. 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 (AdminStatus) Values() []AdminStatus {
return []AdminStatus{
"ENABLED",
"DISABLING_IN_PROGRESS",
}
}
type AllowListStatusCode string
// Enum values for AllowListStatusCode
const (
AllowListStatusCodeOk AllowListStatusCode = "OK"
AllowListStatusCodeS3ObjectNotFound AllowListStatusCode = "S3_OBJECT_NOT_FOUND"
AllowListStatusCodeS3UserAccessDenied AllowListStatusCode = "S3_USER_ACCESS_DENIED"
AllowListStatusCodeS3ObjectAccessDenied AllowListStatusCode = "S3_OBJECT_ACCESS_DENIED"
AllowListStatusCodeS3Throttled AllowListStatusCode = "S3_THROTTLED"
AllowListStatusCodeS3ObjectOversize AllowListStatusCode = "S3_OBJECT_OVERSIZE"
AllowListStatusCodeS3ObjectEmpty AllowListStatusCode = "S3_OBJECT_EMPTY"
AllowListStatusCodeUnknownError AllowListStatusCode = "UNKNOWN_ERROR"
)
// Values returns all known values for AllowListStatusCode. 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 (AllowListStatusCode) Values() []AllowListStatusCode {
return []AllowListStatusCode{
"OK",
"S3_OBJECT_NOT_FOUND",
"S3_USER_ACCESS_DENIED",
"S3_OBJECT_ACCESS_DENIED",
"S3_THROTTLED",
"S3_OBJECT_OVERSIZE",
"S3_OBJECT_EMPTY",
"UNKNOWN_ERROR",
}
}
type AllowsUnencryptedObjectUploads string
// Enum values for AllowsUnencryptedObjectUploads
const (
AllowsUnencryptedObjectUploadsTrue AllowsUnencryptedObjectUploads = "TRUE"
AllowsUnencryptedObjectUploadsFalse AllowsUnencryptedObjectUploads = "FALSE"
AllowsUnencryptedObjectUploadsUnknown AllowsUnencryptedObjectUploads = "UNKNOWN"
)
// Values returns all known values for AllowsUnencryptedObjectUploads. 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 (AllowsUnencryptedObjectUploads) Values() []AllowsUnencryptedObjectUploads {
return []AllowsUnencryptedObjectUploads{
"TRUE",
"FALSE",
"UNKNOWN",
}
}
type AutomatedDiscoveryStatus string
// Enum values for AutomatedDiscoveryStatus
const (
AutomatedDiscoveryStatusEnabled AutomatedDiscoveryStatus = "ENABLED"
AutomatedDiscoveryStatusDisabled AutomatedDiscoveryStatus = "DISABLED"
)
// Values returns all known values for AutomatedDiscoveryStatus. 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 (AutomatedDiscoveryStatus) Values() []AutomatedDiscoveryStatus {
return []AutomatedDiscoveryStatus{
"ENABLED",
"DISABLED",
}
}
type AvailabilityCode string
// Enum values for AvailabilityCode
const (
AvailabilityCodeAvailable AvailabilityCode = "AVAILABLE"
AvailabilityCodeUnavailable AvailabilityCode = "UNAVAILABLE"
)
// Values returns all known values for AvailabilityCode. 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 (AvailabilityCode) Values() []AvailabilityCode {
return []AvailabilityCode{
"AVAILABLE",
"UNAVAILABLE",
}
}
type BucketMetadataErrorCode string
// Enum values for BucketMetadataErrorCode
const (
BucketMetadataErrorCodeAccessDenied BucketMetadataErrorCode = "ACCESS_DENIED"
)
// Values returns all known values for BucketMetadataErrorCode. 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 (BucketMetadataErrorCode) Values() []BucketMetadataErrorCode {
return []BucketMetadataErrorCode{
"ACCESS_DENIED",
}
}
type ClassificationScopeUpdateOperation string
// Enum values for ClassificationScopeUpdateOperation
const (
ClassificationScopeUpdateOperationAdd ClassificationScopeUpdateOperation = "ADD"
ClassificationScopeUpdateOperationReplace ClassificationScopeUpdateOperation = "REPLACE"
ClassificationScopeUpdateOperationRemove ClassificationScopeUpdateOperation = "REMOVE"
)
// Values returns all known values for ClassificationScopeUpdateOperation. 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 (ClassificationScopeUpdateOperation) Values() []ClassificationScopeUpdateOperation {
return []ClassificationScopeUpdateOperation{
"ADD",
"REPLACE",
"REMOVE",
}
}
type Currency string
// Enum values for Currency
const (
CurrencyUsd Currency = "USD"
)
// Values returns all known values for Currency. 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 (Currency) Values() []Currency {
return []Currency{
"USD",
}
}
type DataIdentifierSeverity string
// Enum values for DataIdentifierSeverity
const (
DataIdentifierSeverityLow DataIdentifierSeverity = "LOW"
DataIdentifierSeverityMedium DataIdentifierSeverity = "MEDIUM"
DataIdentifierSeverityHigh DataIdentifierSeverity = "HIGH"
)
// Values returns all known values for DataIdentifierSeverity. 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 (DataIdentifierSeverity) Values() []DataIdentifierSeverity {
return []DataIdentifierSeverity{
"LOW",
"MEDIUM",
"HIGH",
}
}
type DataIdentifierType string
// Enum values for DataIdentifierType
const (
DataIdentifierTypeCustom DataIdentifierType = "CUSTOM"
DataIdentifierTypeManaged DataIdentifierType = "MANAGED"
)
// Values returns all known values for DataIdentifierType. 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 (DataIdentifierType) Values() []DataIdentifierType {
return []DataIdentifierType{
"CUSTOM",
"MANAGED",
}
}
type DayOfWeek string
// Enum values for DayOfWeek
const (
DayOfWeekSunday DayOfWeek = "SUNDAY"
DayOfWeekMonday DayOfWeek = "MONDAY"
DayOfWeekTuesday DayOfWeek = "TUESDAY"
DayOfWeekWednesday DayOfWeek = "WEDNESDAY"
DayOfWeekThursday DayOfWeek = "THURSDAY"
DayOfWeekFriday DayOfWeek = "FRIDAY"
DayOfWeekSaturday DayOfWeek = "SATURDAY"
)
// Values returns all known values for DayOfWeek. 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 (DayOfWeek) Values() []DayOfWeek {
return []DayOfWeek{
"SUNDAY",
"MONDAY",
"TUESDAY",
"WEDNESDAY",
"THURSDAY",
"FRIDAY",
"SATURDAY",
}
}
type EffectivePermission string
// Enum values for EffectivePermission
const (
EffectivePermissionPublic EffectivePermission = "PUBLIC"
EffectivePermissionNotPublic EffectivePermission = "NOT_PUBLIC"
EffectivePermissionUnknown EffectivePermission = "UNKNOWN"
)
// Values returns all known values for EffectivePermission. 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 (EffectivePermission) Values() []EffectivePermission {
return []EffectivePermission{
"PUBLIC",
"NOT_PUBLIC",
"UNKNOWN",
}
}
type EncryptionType string
// Enum values for EncryptionType
const (
EncryptionTypeNone EncryptionType = "NONE"
EncryptionTypeAes256 EncryptionType = "AES256"
EncryptionTypeAwsKms EncryptionType = "aws:kms"
EncryptionTypeUnknown EncryptionType = "UNKNOWN"
)
// Values returns all known values for EncryptionType. 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 (EncryptionType) Values() []EncryptionType {
return []EncryptionType{
"NONE",
"AES256",
"aws:kms",
"UNKNOWN",
}
}
type ErrorCode string
// Enum values for ErrorCode
const (
ErrorCodeClientError ErrorCode = "ClientError"
ErrorCodeInternalError ErrorCode = "InternalError"
)
// Values returns all known values for ErrorCode. 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 (ErrorCode) Values() []ErrorCode {
return []ErrorCode{
"ClientError",
"InternalError",
}
}
type FindingActionType string
// Enum values for FindingActionType
const (
FindingActionTypeAwsApiCall FindingActionType = "AWS_API_CALL"
)
// Values returns all known values for FindingActionType. 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 (FindingActionType) Values() []FindingActionType {
return []FindingActionType{
"AWS_API_CALL",
}
}
type FindingCategory string
// Enum values for FindingCategory
const (
FindingCategoryClassification FindingCategory = "CLASSIFICATION"
FindingCategoryPolicy FindingCategory = "POLICY"
)
// Values returns all known values for FindingCategory. 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 (FindingCategory) Values() []FindingCategory {
return []FindingCategory{
"CLASSIFICATION",
"POLICY",
}
}
type FindingPublishingFrequency string
// Enum values for FindingPublishingFrequency
const (
FindingPublishingFrequencyFifteenMinutes FindingPublishingFrequency = "FIFTEEN_MINUTES"
FindingPublishingFrequencyOneHour FindingPublishingFrequency = "ONE_HOUR"
FindingPublishingFrequencySixHours FindingPublishingFrequency = "SIX_HOURS"
)
// Values returns all known values for FindingPublishingFrequency. 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 (FindingPublishingFrequency) Values() []FindingPublishingFrequency {
return []FindingPublishingFrequency{
"FIFTEEN_MINUTES",
"ONE_HOUR",
"SIX_HOURS",
}
}
type FindingsFilterAction string
// Enum values for FindingsFilterAction
const (
FindingsFilterActionArchive FindingsFilterAction = "ARCHIVE"
FindingsFilterActionNoop FindingsFilterAction = "NOOP"
)
// Values returns all known values for FindingsFilterAction. 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 (FindingsFilterAction) Values() []FindingsFilterAction {
return []FindingsFilterAction{
"ARCHIVE",
"NOOP",
}
}
type FindingStatisticsSortAttributeName string
// Enum values for FindingStatisticsSortAttributeName
const (
FindingStatisticsSortAttributeNameGroupKey FindingStatisticsSortAttributeName = "groupKey"
FindingStatisticsSortAttributeNameCount FindingStatisticsSortAttributeName = "count"
)
// Values returns all known values for FindingStatisticsSortAttributeName. 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 (FindingStatisticsSortAttributeName) Values() []FindingStatisticsSortAttributeName {
return []FindingStatisticsSortAttributeName{
"groupKey",
"count",
}
}
type FindingType string
// Enum values for FindingType
const (
FindingTypeSensitiveDataS3ObjectMultiple FindingType = "SensitiveData:S3Object/Multiple"
FindingTypeSensitiveDataS3ObjectFinancial FindingType = "SensitiveData:S3Object/Financial"
FindingTypeSensitiveDataS3ObjectPersonal FindingType = "SensitiveData:S3Object/Personal"
FindingTypeSensitiveDataS3ObjectCredentials FindingType = "SensitiveData:S3Object/Credentials"
FindingTypeSensitiveDataS3ObjectCustomIdentifier FindingType = "SensitiveData:S3Object/CustomIdentifier"
FindingTypePolicyIAMUserS3BucketPublic FindingType = "Policy:IAMUser/S3BucketPublic"
FindingTypePolicyIAMUserS3BucketSharedExternally FindingType = "Policy:IAMUser/S3BucketSharedExternally"
FindingTypePolicyIAMUserS3BucketReplicatedExternally FindingType = "Policy:IAMUser/S3BucketReplicatedExternally"
FindingTypePolicyIAMUserS3BucketEncryptionDisabled FindingType = "Policy:IAMUser/S3BucketEncryptionDisabled"
FindingTypePolicyIAMUserS3BlockPublicAccessDisabled FindingType = "Policy:IAMUser/S3BlockPublicAccessDisabled"
FindingTypePolicyIAMUserS3BucketSharedWithCloudFront FindingType = "Policy:IAMUser/S3BucketSharedWithCloudFront"
)
// Values returns all known values for FindingType. 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 (FindingType) Values() []FindingType {
return []FindingType{
"SensitiveData:S3Object/Multiple",
"SensitiveData:S3Object/Financial",
"SensitiveData:S3Object/Personal",
"SensitiveData:S3Object/Credentials",
"SensitiveData:S3Object/CustomIdentifier",
"Policy:IAMUser/S3BucketPublic",
"Policy:IAMUser/S3BucketSharedExternally",
"Policy:IAMUser/S3BucketReplicatedExternally",
"Policy:IAMUser/S3BucketEncryptionDisabled",
"Policy:IAMUser/S3BlockPublicAccessDisabled",
"Policy:IAMUser/S3BucketSharedWithCloudFront",
}
}
type GroupBy string
// Enum values for GroupBy
const (
GroupByResourcesAffectedS3BucketName GroupBy = "resourcesAffected.s3Bucket.name"
GroupByType GroupBy = "type"
GroupByClassificationDetailsJobId GroupBy = "classificationDetails.jobId"
GroupBySeverityDescription GroupBy = "severity.description"
)
// Values returns all known values for GroupBy. 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 (GroupBy) Values() []GroupBy {
return []GroupBy{
"resourcesAffected.s3Bucket.name",
"type",
"classificationDetails.jobId",
"severity.description",
}
}
type IsDefinedInJob string
// Enum values for IsDefinedInJob
const (
IsDefinedInJobTrue IsDefinedInJob = "TRUE"
IsDefinedInJobFalse IsDefinedInJob = "FALSE"
IsDefinedInJobUnknown IsDefinedInJob = "UNKNOWN"
)
// Values returns all known values for IsDefinedInJob. 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 (IsDefinedInJob) Values() []IsDefinedInJob {
return []IsDefinedInJob{
"TRUE",
"FALSE",
"UNKNOWN",
}
}
type IsMonitoredByJob string
// Enum values for IsMonitoredByJob
const (
IsMonitoredByJobTrue IsMonitoredByJob = "TRUE"
IsMonitoredByJobFalse IsMonitoredByJob = "FALSE"
IsMonitoredByJobUnknown IsMonitoredByJob = "UNKNOWN"
)
// Values returns all known values for IsMonitoredByJob. 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 (IsMonitoredByJob) Values() []IsMonitoredByJob {
return []IsMonitoredByJob{
"TRUE",
"FALSE",
"UNKNOWN",
}
}
type JobComparator string
// Enum values for JobComparator
const (
JobComparatorEq JobComparator = "EQ"
JobComparatorGt JobComparator = "GT"
JobComparatorGte JobComparator = "GTE"
JobComparatorLt JobComparator = "LT"
JobComparatorLte JobComparator = "LTE"
JobComparatorNe JobComparator = "NE"
JobComparatorContains JobComparator = "CONTAINS"
JobComparatorStartsWith JobComparator = "STARTS_WITH"
)
// Values returns all known values for JobComparator. 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 (JobComparator) Values() []JobComparator {
return []JobComparator{
"EQ",
"GT",
"GTE",
"LT",
"LTE",
"NE",
"CONTAINS",
"STARTS_WITH",
}
}
type JobStatus string
// Enum values for JobStatus
const (
JobStatusRunning JobStatus = "RUNNING"
JobStatusPaused JobStatus = "PAUSED"
JobStatusCancelled JobStatus = "CANCELLED"
JobStatusComplete JobStatus = "COMPLETE"
JobStatusIdle JobStatus = "IDLE"
JobStatusUserPaused JobStatus = "USER_PAUSED"
)
// Values returns all known values for JobStatus. 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 (JobStatus) Values() []JobStatus {
return []JobStatus{
"RUNNING",
"PAUSED",
"CANCELLED",
"COMPLETE",
"IDLE",
"USER_PAUSED",
}
}
type JobType string
// Enum values for JobType
const (
JobTypeOneTime JobType = "ONE_TIME"
JobTypeScheduled JobType = "SCHEDULED"
)
// Values returns all known values for JobType. 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 (JobType) Values() []JobType {
return []JobType{
"ONE_TIME",
"SCHEDULED",
}
}
type LastRunErrorStatusCode string
// Enum values for LastRunErrorStatusCode
const (
LastRunErrorStatusCodeNone LastRunErrorStatusCode = "NONE"
LastRunErrorStatusCodeError LastRunErrorStatusCode = "ERROR"
)
// Values returns all known values for LastRunErrorStatusCode. 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 (LastRunErrorStatusCode) Values() []LastRunErrorStatusCode {
return []LastRunErrorStatusCode{
"NONE",
"ERROR",
}
}
type ListJobsFilterKey string
// Enum values for ListJobsFilterKey
const (
ListJobsFilterKeyJobType ListJobsFilterKey = "jobType"
ListJobsFilterKeyJobStatus ListJobsFilterKey = "jobStatus"
ListJobsFilterKeyCreatedAt ListJobsFilterKey = "createdAt"
ListJobsFilterKeyName ListJobsFilterKey = "name"
)
// Values returns all known values for ListJobsFilterKey. 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 (ListJobsFilterKey) Values() []ListJobsFilterKey {
return []ListJobsFilterKey{
"jobType",
"jobStatus",
"createdAt",
"name",
}
}
type ListJobsSortAttributeName string
// Enum values for ListJobsSortAttributeName
const (
ListJobsSortAttributeNameCreatedAt ListJobsSortAttributeName = "createdAt"
ListJobsSortAttributeNameJobStatus ListJobsSortAttributeName = "jobStatus"
ListJobsSortAttributeNameName ListJobsSortAttributeName = "name"
ListJobsSortAttributeNameJobType ListJobsSortAttributeName = "jobType"
)
// Values returns all known values for ListJobsSortAttributeName. 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 (ListJobsSortAttributeName) Values() []ListJobsSortAttributeName {
return []ListJobsSortAttributeName{
"createdAt",
"jobStatus",
"name",
"jobType",
}
}
type MacieStatus string
// Enum values for MacieStatus
const (
MacieStatusPaused MacieStatus = "PAUSED"
MacieStatusEnabled MacieStatus = "ENABLED"
)
// Values returns all known values for MacieStatus. 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 (MacieStatus) Values() []MacieStatus {
return []MacieStatus{
"PAUSED",
"ENABLED",
}
}
type ManagedDataIdentifierSelector string
// Enum values for ManagedDataIdentifierSelector
const (
ManagedDataIdentifierSelectorAll ManagedDataIdentifierSelector = "ALL"
ManagedDataIdentifierSelectorExclude ManagedDataIdentifierSelector = "EXCLUDE"
ManagedDataIdentifierSelectorInclude ManagedDataIdentifierSelector = "INCLUDE"
ManagedDataIdentifierSelectorNone ManagedDataIdentifierSelector = "NONE"
ManagedDataIdentifierSelectorRecommended ManagedDataIdentifierSelector = "RECOMMENDED"
)
// Values returns all known values for ManagedDataIdentifierSelector. 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 (ManagedDataIdentifierSelector) Values() []ManagedDataIdentifierSelector {
return []ManagedDataIdentifierSelector{
"ALL",
"EXCLUDE",
"INCLUDE",
"NONE",
"RECOMMENDED",
}
}
type OrderBy string
// Enum values for OrderBy
const (
OrderByAsc OrderBy = "ASC"
OrderByDesc OrderBy = "DESC"
)
// Values returns all known values for OrderBy. 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 (OrderBy) Values() []OrderBy {
return []OrderBy{
"ASC",
"DESC",
}
}
type OriginType string
// Enum values for OriginType
const (
OriginTypeSensitiveDataDiscoveryJob OriginType = "SENSITIVE_DATA_DISCOVERY_JOB"
OriginTypeAutomatedSensitiveDataDiscovery OriginType = "AUTOMATED_SENSITIVE_DATA_DISCOVERY"
)
// Values returns all known values for OriginType. 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 (OriginType) Values() []OriginType {
return []OriginType{
"SENSITIVE_DATA_DISCOVERY_JOB",
"AUTOMATED_SENSITIVE_DATA_DISCOVERY",
}
}
type RelationshipStatus string
// Enum values for RelationshipStatus
const (
RelationshipStatusEnabled RelationshipStatus = "Enabled"
RelationshipStatusPaused RelationshipStatus = "Paused"
RelationshipStatusInvited RelationshipStatus = "Invited"
RelationshipStatusCreated RelationshipStatus = "Created"
RelationshipStatusRemoved RelationshipStatus = "Removed"
RelationshipStatusResigned RelationshipStatus = "Resigned"
RelationshipStatusEmailVerificationInProgress RelationshipStatus = "EmailVerificationInProgress"
RelationshipStatusEmailVerificationFailed RelationshipStatus = "EmailVerificationFailed"
RelationshipStatusRegionDisabled RelationshipStatus = "RegionDisabled"
RelationshipStatusAccountSuspended RelationshipStatus = "AccountSuspended"
)
// Values returns all known values for RelationshipStatus. 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 (RelationshipStatus) Values() []RelationshipStatus {
return []RelationshipStatus{
"Enabled",
"Paused",
"Invited",
"Created",
"Removed",
"Resigned",
"EmailVerificationInProgress",
"EmailVerificationFailed",
"RegionDisabled",
"AccountSuspended",
}
}
type RetrievalMode string
// Enum values for RetrievalMode
const (
RetrievalModeCallerCredentials RetrievalMode = "CALLER_CREDENTIALS"
RetrievalModeAssumeRole RetrievalMode = "ASSUME_ROLE"
)
// Values returns all known values for RetrievalMode. 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 (RetrievalMode) Values() []RetrievalMode {
return []RetrievalMode{
"CALLER_CREDENTIALS",
"ASSUME_ROLE",
}
}
type RevealRequestStatus string
// Enum values for RevealRequestStatus
const (
RevealRequestStatusSuccess RevealRequestStatus = "SUCCESS"
RevealRequestStatusProcessing RevealRequestStatus = "PROCESSING"
RevealRequestStatusError RevealRequestStatus = "ERROR"
)
// Values returns all known values for RevealRequestStatus. 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 (RevealRequestStatus) Values() []RevealRequestStatus {
return []RevealRequestStatus{
"SUCCESS",
"PROCESSING",
"ERROR",
}
}
type RevealStatus string
// Enum values for RevealStatus
const (
RevealStatusEnabled RevealStatus = "ENABLED"
RevealStatusDisabled RevealStatus = "DISABLED"
)
// Values returns all known values for RevealStatus. 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 (RevealStatus) Values() []RevealStatus {
return []RevealStatus{
"ENABLED",
"DISABLED",
}
}
type ScopeFilterKey string
// Enum values for ScopeFilterKey
const (
ScopeFilterKeyObjectExtension ScopeFilterKey = "OBJECT_EXTENSION"
ScopeFilterKeyObjectLastModifiedDate ScopeFilterKey = "OBJECT_LAST_MODIFIED_DATE"
ScopeFilterKeyObjectSize ScopeFilterKey = "OBJECT_SIZE"
ScopeFilterKeyObjectKey ScopeFilterKey = "OBJECT_KEY"
)
// Values returns all known values for ScopeFilterKey. 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 (ScopeFilterKey) Values() []ScopeFilterKey {
return []ScopeFilterKey{
"OBJECT_EXTENSION",
"OBJECT_LAST_MODIFIED_DATE",
"OBJECT_SIZE",
"OBJECT_KEY",
}
}
type SearchResourcesComparator string
// Enum values for SearchResourcesComparator
const (
SearchResourcesComparatorEq SearchResourcesComparator = "EQ"
SearchResourcesComparatorNe SearchResourcesComparator = "NE"
)
// Values returns all known values for SearchResourcesComparator. 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 (SearchResourcesComparator) Values() []SearchResourcesComparator {
return []SearchResourcesComparator{
"EQ",
"NE",
}
}
type SearchResourcesSimpleCriterionKey string
// Enum values for SearchResourcesSimpleCriterionKey
const (
SearchResourcesSimpleCriterionKeyAccountId SearchResourcesSimpleCriterionKey = "ACCOUNT_ID"
SearchResourcesSimpleCriterionKeyS3BucketName SearchResourcesSimpleCriterionKey = "S3_BUCKET_NAME"
SearchResourcesSimpleCriterionKeyS3BucketEffectivePermission SearchResourcesSimpleCriterionKey = "S3_BUCKET_EFFECTIVE_PERMISSION"
SearchResourcesSimpleCriterionKeyS3BucketSharedAccess SearchResourcesSimpleCriterionKey = "S3_BUCKET_SHARED_ACCESS"
)
// Values returns all known values for SearchResourcesSimpleCriterionKey. 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 (SearchResourcesSimpleCriterionKey) Values() []SearchResourcesSimpleCriterionKey {
return []SearchResourcesSimpleCriterionKey{
"ACCOUNT_ID",
"S3_BUCKET_NAME",
"S3_BUCKET_EFFECTIVE_PERMISSION",
"S3_BUCKET_SHARED_ACCESS",
}
}
type SearchResourcesSortAttributeName string
// Enum values for SearchResourcesSortAttributeName
const (
SearchResourcesSortAttributeNameAccountId SearchResourcesSortAttributeName = "ACCOUNT_ID"
SearchResourcesSortAttributeNameResourceName SearchResourcesSortAttributeName = "RESOURCE_NAME"
SearchResourcesSortAttributeNameS3ClassifiableObjectCount SearchResourcesSortAttributeName = "S3_CLASSIFIABLE_OBJECT_COUNT"
SearchResourcesSortAttributeNameS3ClassifiableSizeInBytes SearchResourcesSortAttributeName = "S3_CLASSIFIABLE_SIZE_IN_BYTES"
)
// Values returns all known values for SearchResourcesSortAttributeName. 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 (SearchResourcesSortAttributeName) Values() []SearchResourcesSortAttributeName {
return []SearchResourcesSortAttributeName{
"ACCOUNT_ID",
"RESOURCE_NAME",
"S3_CLASSIFIABLE_OBJECT_COUNT",
"S3_CLASSIFIABLE_SIZE_IN_BYTES",
}
}
type SensitiveDataItemCategory string
// Enum values for SensitiveDataItemCategory
const (
SensitiveDataItemCategoryFinancialInformation SensitiveDataItemCategory = "FINANCIAL_INFORMATION"
SensitiveDataItemCategoryPersonalInformation SensitiveDataItemCategory = "PERSONAL_INFORMATION"
SensitiveDataItemCategoryCredentials SensitiveDataItemCategory = "CREDENTIALS"
SensitiveDataItemCategoryCustomIdentifier SensitiveDataItemCategory = "CUSTOM_IDENTIFIER"
)
// Values returns all known values for SensitiveDataItemCategory. 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 (SensitiveDataItemCategory) Values() []SensitiveDataItemCategory {
return []SensitiveDataItemCategory{
"FINANCIAL_INFORMATION",
"PERSONAL_INFORMATION",
"CREDENTIALS",
"CUSTOM_IDENTIFIER",
}
}
type SeverityDescription string
// Enum values for SeverityDescription
const (
SeverityDescriptionLow SeverityDescription = "Low"
SeverityDescriptionMedium SeverityDescription = "Medium"
SeverityDescriptionHigh SeverityDescription = "High"
)
// Values returns all known values for SeverityDescription. 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 (SeverityDescription) Values() []SeverityDescription {
return []SeverityDescription{
"Low",
"Medium",
"High",
}
}
type SharedAccess string
// Enum values for SharedAccess
const (
SharedAccessExternal SharedAccess = "EXTERNAL"
SharedAccessInternal SharedAccess = "INTERNAL"
SharedAccessNotShared SharedAccess = "NOT_SHARED"
SharedAccessUnknown SharedAccess = "UNKNOWN"
)
// Values returns all known values for SharedAccess. 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 (SharedAccess) Values() []SharedAccess {
return []SharedAccess{
"EXTERNAL",
"INTERNAL",
"NOT_SHARED",
"UNKNOWN",
}
}
type SimpleCriterionKeyForJob string
// Enum values for SimpleCriterionKeyForJob
const (
SimpleCriterionKeyForJobAccountId SimpleCriterionKeyForJob = "ACCOUNT_ID"
SimpleCriterionKeyForJobS3BucketName SimpleCriterionKeyForJob = "S3_BUCKET_NAME"
SimpleCriterionKeyForJobS3BucketEffectivePermission SimpleCriterionKeyForJob = "S3_BUCKET_EFFECTIVE_PERMISSION"
SimpleCriterionKeyForJobS3BucketSharedAccess SimpleCriterionKeyForJob = "S3_BUCKET_SHARED_ACCESS"
)
// Values returns all known values for SimpleCriterionKeyForJob. 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 (SimpleCriterionKeyForJob) Values() []SimpleCriterionKeyForJob {
return []SimpleCriterionKeyForJob{
"ACCOUNT_ID",
"S3_BUCKET_NAME",
"S3_BUCKET_EFFECTIVE_PERMISSION",
"S3_BUCKET_SHARED_ACCESS",
}
}
type StorageClass string
// Enum values for StorageClass
const (
StorageClassStandard StorageClass = "STANDARD"
StorageClassReducedRedundancy StorageClass = "REDUCED_REDUNDANCY"
StorageClassStandardIa StorageClass = "STANDARD_IA"
StorageClassIntelligentTiering StorageClass = "INTELLIGENT_TIERING"
StorageClassDeepArchive StorageClass = "DEEP_ARCHIVE"
StorageClassOnezoneIa StorageClass = "ONEZONE_IA"
StorageClassGlacier StorageClass = "GLACIER"
StorageClassGlacierIr StorageClass = "GLACIER_IR"
StorageClassOutposts StorageClass = "OUTPOSTS"
)
// Values returns all known values for StorageClass. 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 (StorageClass) Values() []StorageClass {
return []StorageClass{
"STANDARD",
"REDUCED_REDUNDANCY",
"STANDARD_IA",
"INTELLIGENT_TIERING",
"DEEP_ARCHIVE",
"ONEZONE_IA",
"GLACIER",
"GLACIER_IR",
"OUTPOSTS",
}
}
type TagTarget string
// Enum values for TagTarget
const (
TagTargetS3Object TagTarget = "S3_OBJECT"
)
// Values returns all known values for TagTarget. 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 (TagTarget) Values() []TagTarget {
return []TagTarget{
"S3_OBJECT",
}
}
type TimeRange string
// Enum values for TimeRange
const (
TimeRangeMonthToDate TimeRange = "MONTH_TO_DATE"
TimeRangePast30Days TimeRange = "PAST_30_DAYS"
)
// Values returns all known values for TimeRange. 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 (TimeRange) Values() []TimeRange {
return []TimeRange{
"MONTH_TO_DATE",
"PAST_30_DAYS",
}
}
type Type string
// Enum values for Type
const (
TypeNone Type = "NONE"
TypeAes256 Type = "AES256"
TypeAwsKms Type = "aws:kms"
)
// 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{
"NONE",
"AES256",
"aws:kms",
}
}
type UnavailabilityReasonCode string
// Enum values for UnavailabilityReasonCode
const (
UnavailabilityReasonCodeObjectExceedsSizeQuota UnavailabilityReasonCode = "OBJECT_EXCEEDS_SIZE_QUOTA"
UnavailabilityReasonCodeUnsupportedObjectType UnavailabilityReasonCode = "UNSUPPORTED_OBJECT_TYPE"
UnavailabilityReasonCodeUnsupportedFindingType UnavailabilityReasonCode = "UNSUPPORTED_FINDING_TYPE"
UnavailabilityReasonCodeInvalidClassificationResult UnavailabilityReasonCode = "INVALID_CLASSIFICATION_RESULT"
UnavailabilityReasonCodeObjectUnavailable UnavailabilityReasonCode = "OBJECT_UNAVAILABLE"
UnavailabilityReasonCodeAccountNotInOrganization UnavailabilityReasonCode = "ACCOUNT_NOT_IN_ORGANIZATION"
UnavailabilityReasonCodeMissingGetMemberPermission UnavailabilityReasonCode = "MISSING_GET_MEMBER_PERMISSION"
UnavailabilityReasonCodeRoleTooPermissive UnavailabilityReasonCode = "ROLE_TOO_PERMISSIVE"
UnavailabilityReasonCodeMemberRoleTooPermissive UnavailabilityReasonCode = "MEMBER_ROLE_TOO_PERMISSIVE"
UnavailabilityReasonCodeInvalidResultSignature UnavailabilityReasonCode = "INVALID_RESULT_SIGNATURE"
UnavailabilityReasonCodeResultNotSigned UnavailabilityReasonCode = "RESULT_NOT_SIGNED"
)
// Values returns all known values for UnavailabilityReasonCode. 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 (UnavailabilityReasonCode) Values() []UnavailabilityReasonCode {
return []UnavailabilityReasonCode{
"OBJECT_EXCEEDS_SIZE_QUOTA",
"UNSUPPORTED_OBJECT_TYPE",
"UNSUPPORTED_FINDING_TYPE",
"INVALID_CLASSIFICATION_RESULT",
"OBJECT_UNAVAILABLE",
"ACCOUNT_NOT_IN_ORGANIZATION",
"MISSING_GET_MEMBER_PERMISSION",
"ROLE_TOO_PERMISSIVE",
"MEMBER_ROLE_TOO_PERMISSIVE",
"INVALID_RESULT_SIGNATURE",
"RESULT_NOT_SIGNED",
}
}
type Unit string
// Enum values for Unit
const (
UnitTerabytes Unit = "TERABYTES"
)
// Values returns all known values for Unit. 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 (Unit) Values() []Unit {
return []Unit{
"TERABYTES",
}
}
type UsageStatisticsFilterComparator string
// Enum values for UsageStatisticsFilterComparator
const (
UsageStatisticsFilterComparatorGt UsageStatisticsFilterComparator = "GT"
UsageStatisticsFilterComparatorGte UsageStatisticsFilterComparator = "GTE"
UsageStatisticsFilterComparatorLt UsageStatisticsFilterComparator = "LT"
UsageStatisticsFilterComparatorLte UsageStatisticsFilterComparator = "LTE"
UsageStatisticsFilterComparatorEq UsageStatisticsFilterComparator = "EQ"
UsageStatisticsFilterComparatorNe UsageStatisticsFilterComparator = "NE"
UsageStatisticsFilterComparatorContains UsageStatisticsFilterComparator = "CONTAINS"
)
// Values returns all known values for UsageStatisticsFilterComparator. 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 (UsageStatisticsFilterComparator) Values() []UsageStatisticsFilterComparator {
return []UsageStatisticsFilterComparator{
"GT",
"GTE",
"LT",
"LTE",
"EQ",
"NE",
"CONTAINS",
}
}
type UsageStatisticsFilterKey string
// Enum values for UsageStatisticsFilterKey
const (
UsageStatisticsFilterKeyAccountId UsageStatisticsFilterKey = "accountId"
UsageStatisticsFilterKeyServiceLimit UsageStatisticsFilterKey = "serviceLimit"
UsageStatisticsFilterKeyFreeTrialStartDate UsageStatisticsFilterKey = "freeTrialStartDate"
UsageStatisticsFilterKeyTotal UsageStatisticsFilterKey = "total"
)
// Values returns all known values for UsageStatisticsFilterKey. 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 (UsageStatisticsFilterKey) Values() []UsageStatisticsFilterKey {
return []UsageStatisticsFilterKey{
"accountId",
"serviceLimit",
"freeTrialStartDate",
"total",
}
}
type UsageStatisticsSortKey string
// Enum values for UsageStatisticsSortKey
const (
UsageStatisticsSortKeyAccountId UsageStatisticsSortKey = "accountId"
UsageStatisticsSortKeyTotal UsageStatisticsSortKey = "total"
UsageStatisticsSortKeyServiceLimitValue UsageStatisticsSortKey = "serviceLimitValue"
UsageStatisticsSortKeyFreeTrialStartDate UsageStatisticsSortKey = "freeTrialStartDate"
)
// Values returns all known values for UsageStatisticsSortKey. 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 (UsageStatisticsSortKey) Values() []UsageStatisticsSortKey {
return []UsageStatisticsSortKey{
"accountId",
"total",
"serviceLimitValue",
"freeTrialStartDate",
}
}
type UsageType string
// Enum values for UsageType
const (
UsageTypeDataInventoryEvaluation UsageType = "DATA_INVENTORY_EVALUATION"
UsageTypeSensitiveDataDiscovery UsageType = "SENSITIVE_DATA_DISCOVERY"
UsageTypeAutomatedSensitiveDataDiscovery UsageType = "AUTOMATED_SENSITIVE_DATA_DISCOVERY"
UsageTypeAutomatedObjectMonitoring UsageType = "AUTOMATED_OBJECT_MONITORING"
)
// Values returns all known values for UsageType. 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 (UsageType) Values() []UsageType {
return []UsageType{
"DATA_INVENTORY_EVALUATION",
"SENSITIVE_DATA_DISCOVERY",
"AUTOMATED_SENSITIVE_DATA_DISCOVERY",
"AUTOMATED_OBJECT_MONITORING",
}
}
type UserIdentityType string
// Enum values for UserIdentityType
const (
UserIdentityTypeAssumedRole UserIdentityType = "AssumedRole"
UserIdentityTypeIAMUser UserIdentityType = "IAMUser"
UserIdentityTypeFederatedUser UserIdentityType = "FederatedUser"
UserIdentityTypeRoot UserIdentityType = "Root"
UserIdentityTypeAWSAccount UserIdentityType = "AWSAccount"
UserIdentityTypeAWSService UserIdentityType = "AWSService"
)
// Values returns all known values for UserIdentityType. 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 (UserIdentityType) Values() []UserIdentityType {
return []UserIdentityType{
"AssumedRole",
"IAMUser",
"FederatedUser",
"Root",
"AWSAccount",
"AWSService",
}
}
|