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
|
// Code generated by smithy-go-codegen DO NOT EDIT.
package types
type AccountStatus string
// Enum values for AccountStatus
const (
AccountStatusActive AccountStatus = "ACTIVE"
AccountStatusInactive AccountStatus = "INACTIVE"
AccountStatusPendingActivation AccountStatus = "PENDING_ACTIVATION"
)
// Values returns all known values for AccountStatus. 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 (AccountStatus) Values() []AccountStatus {
return []AccountStatus{
"ACTIVE",
"INACTIVE",
"PENDING_ACTIVATION",
}
}
type ActionEnum string
// Enum values for ActionEnum
const (
ActionEnumCreate ActionEnum = "CREATE"
ActionEnumUpdateMetadata ActionEnum = "UPDATE_METADATA"
ActionEnumActive ActionEnum = "ACTIVE"
ActionEnumInactive ActionEnum = "INACTIVE"
ActionEnumDelete ActionEnum = "DELETE"
ActionEnumUnderReview ActionEnum = "UNDER_REVIEW"
ActionEnumReviewed ActionEnum = "REVIEWED"
ActionEnumImportEvidence ActionEnum = "IMPORT_EVIDENCE"
)
// Values returns all known values for ActionEnum. 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 (ActionEnum) Values() []ActionEnum {
return []ActionEnum{
"CREATE",
"UPDATE_METADATA",
"ACTIVE",
"INACTIVE",
"DELETE",
"UNDER_REVIEW",
"REVIEWED",
"IMPORT_EVIDENCE",
}
}
type AssessmentReportDestinationType string
// Enum values for AssessmentReportDestinationType
const (
AssessmentReportDestinationTypeS3 AssessmentReportDestinationType = "S3"
)
// Values returns all known values for AssessmentReportDestinationType. 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 (AssessmentReportDestinationType) Values() []AssessmentReportDestinationType {
return []AssessmentReportDestinationType{
"S3",
}
}
type AssessmentReportStatus string
// Enum values for AssessmentReportStatus
const (
AssessmentReportStatusComplete AssessmentReportStatus = "COMPLETE"
AssessmentReportStatusInProgress AssessmentReportStatus = "IN_PROGRESS"
AssessmentReportStatusFailed AssessmentReportStatus = "FAILED"
)
// Values returns all known values for AssessmentReportStatus. 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 (AssessmentReportStatus) Values() []AssessmentReportStatus {
return []AssessmentReportStatus{
"COMPLETE",
"IN_PROGRESS",
"FAILED",
}
}
type AssessmentStatus string
// Enum values for AssessmentStatus
const (
AssessmentStatusActive AssessmentStatus = "ACTIVE"
AssessmentStatusInactive AssessmentStatus = "INACTIVE"
)
// Values returns all known values for AssessmentStatus. 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 (AssessmentStatus) Values() []AssessmentStatus {
return []AssessmentStatus{
"ACTIVE",
"INACTIVE",
}
}
type ControlResponse string
// Enum values for ControlResponse
const (
ControlResponseManual ControlResponse = "MANUAL"
ControlResponseAutomate ControlResponse = "AUTOMATE"
ControlResponseDefer ControlResponse = "DEFER"
ControlResponseIgnore ControlResponse = "IGNORE"
)
// Values returns all known values for ControlResponse. 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 (ControlResponse) Values() []ControlResponse {
return []ControlResponse{
"MANUAL",
"AUTOMATE",
"DEFER",
"IGNORE",
}
}
type ControlSetStatus string
// Enum values for ControlSetStatus
const (
ControlSetStatusActive ControlSetStatus = "ACTIVE"
ControlSetStatusUnderReview ControlSetStatus = "UNDER_REVIEW"
ControlSetStatusReviewed ControlSetStatus = "REVIEWED"
)
// Values returns all known values for ControlSetStatus. 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 (ControlSetStatus) Values() []ControlSetStatus {
return []ControlSetStatus{
"ACTIVE",
"UNDER_REVIEW",
"REVIEWED",
}
}
type ControlStatus string
// Enum values for ControlStatus
const (
ControlStatusUnderReview ControlStatus = "UNDER_REVIEW"
ControlStatusReviewed ControlStatus = "REVIEWED"
ControlStatusInactive ControlStatus = "INACTIVE"
)
// Values returns all known values for ControlStatus. 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 (ControlStatus) Values() []ControlStatus {
return []ControlStatus{
"UNDER_REVIEW",
"REVIEWED",
"INACTIVE",
}
}
type ControlType string
// Enum values for ControlType
const (
ControlTypeStandard ControlType = "Standard"
ControlTypeCustom ControlType = "Custom"
)
// Values returns all known values for ControlType. 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 (ControlType) Values() []ControlType {
return []ControlType{
"Standard",
"Custom",
}
}
type DelegationStatus string
// Enum values for DelegationStatus
const (
DelegationStatusInProgress DelegationStatus = "IN_PROGRESS"
DelegationStatusUnderReview DelegationStatus = "UNDER_REVIEW"
DelegationStatusComplete DelegationStatus = "COMPLETE"
)
// Values returns all known values for DelegationStatus. 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 (DelegationStatus) Values() []DelegationStatus {
return []DelegationStatus{
"IN_PROGRESS",
"UNDER_REVIEW",
"COMPLETE",
}
}
type DeleteResources string
// Enum values for DeleteResources
const (
DeleteResourcesAll DeleteResources = "ALL"
DeleteResourcesDefault DeleteResources = "DEFAULT"
)
// Values returns all known values for DeleteResources. 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 (DeleteResources) Values() []DeleteResources {
return []DeleteResources{
"ALL",
"DEFAULT",
}
}
type EvidenceFinderBackfillStatus string
// Enum values for EvidenceFinderBackfillStatus
const (
EvidenceFinderBackfillStatusNotStarted EvidenceFinderBackfillStatus = "NOT_STARTED"
EvidenceFinderBackfillStatusInProgress EvidenceFinderBackfillStatus = "IN_PROGRESS"
EvidenceFinderBackfillStatusCompleted EvidenceFinderBackfillStatus = "COMPLETED"
)
// Values returns all known values for EvidenceFinderBackfillStatus. 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 (EvidenceFinderBackfillStatus) Values() []EvidenceFinderBackfillStatus {
return []EvidenceFinderBackfillStatus{
"NOT_STARTED",
"IN_PROGRESS",
"COMPLETED",
}
}
type EvidenceFinderEnablementStatus string
// Enum values for EvidenceFinderEnablementStatus
const (
EvidenceFinderEnablementStatusEnabled EvidenceFinderEnablementStatus = "ENABLED"
EvidenceFinderEnablementStatusDisabled EvidenceFinderEnablementStatus = "DISABLED"
EvidenceFinderEnablementStatusEnableInProgress EvidenceFinderEnablementStatus = "ENABLE_IN_PROGRESS"
EvidenceFinderEnablementStatusDisableInProgress EvidenceFinderEnablementStatus = "DISABLE_IN_PROGRESS"
)
// Values returns all known values for EvidenceFinderEnablementStatus. 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 (EvidenceFinderEnablementStatus) Values() []EvidenceFinderEnablementStatus {
return []EvidenceFinderEnablementStatus{
"ENABLED",
"DISABLED",
"ENABLE_IN_PROGRESS",
"DISABLE_IN_PROGRESS",
}
}
type ExportDestinationType string
// Enum values for ExportDestinationType
const (
ExportDestinationTypeS3 ExportDestinationType = "S3"
)
// Values returns all known values for ExportDestinationType. 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 (ExportDestinationType) Values() []ExportDestinationType {
return []ExportDestinationType{
"S3",
}
}
type FrameworkType string
// Enum values for FrameworkType
const (
FrameworkTypeStandard FrameworkType = "Standard"
FrameworkTypeCustom FrameworkType = "Custom"
)
// Values returns all known values for FrameworkType. 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 (FrameworkType) Values() []FrameworkType {
return []FrameworkType{
"Standard",
"Custom",
}
}
type KeywordInputType string
// Enum values for KeywordInputType
const (
KeywordInputTypeSelectFromList KeywordInputType = "SELECT_FROM_LIST"
KeywordInputTypeUploadFile KeywordInputType = "UPLOAD_FILE"
KeywordInputTypeInputText KeywordInputType = "INPUT_TEXT"
)
// Values returns all known values for KeywordInputType. 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 (KeywordInputType) Values() []KeywordInputType {
return []KeywordInputType{
"SELECT_FROM_LIST",
"UPLOAD_FILE",
"INPUT_TEXT",
}
}
type ObjectTypeEnum string
// Enum values for ObjectTypeEnum
const (
ObjectTypeEnumAssessment ObjectTypeEnum = "ASSESSMENT"
ObjectTypeEnumControlSet ObjectTypeEnum = "CONTROL_SET"
ObjectTypeEnumControl ObjectTypeEnum = "CONTROL"
ObjectTypeEnumDelegation ObjectTypeEnum = "DELEGATION"
ObjectTypeEnumAssessmentReport ObjectTypeEnum = "ASSESSMENT_REPORT"
)
// Values returns all known values for ObjectTypeEnum. 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 (ObjectTypeEnum) Values() []ObjectTypeEnum {
return []ObjectTypeEnum{
"ASSESSMENT",
"CONTROL_SET",
"CONTROL",
"DELEGATION",
"ASSESSMENT_REPORT",
}
}
type RoleType string
// Enum values for RoleType
const (
RoleTypeProcessOwner RoleType = "PROCESS_OWNER"
RoleTypeResourceOwner RoleType = "RESOURCE_OWNER"
)
// Values returns all known values for RoleType. 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 (RoleType) Values() []RoleType {
return []RoleType{
"PROCESS_OWNER",
"RESOURCE_OWNER",
}
}
type SettingAttribute string
// Enum values for SettingAttribute
const (
SettingAttributeAll SettingAttribute = "ALL"
SettingAttributeIsAwsOrgEnabled SettingAttribute = "IS_AWS_ORG_ENABLED"
SettingAttributeSnsTopic SettingAttribute = "SNS_TOPIC"
SettingAttributeDefaultAssessmentReportsDestination SettingAttribute = "DEFAULT_ASSESSMENT_REPORTS_DESTINATION"
SettingAttributeDefaultProcessOwners SettingAttribute = "DEFAULT_PROCESS_OWNERS"
SettingAttributeEvidenceFinderEnablement SettingAttribute = "EVIDENCE_FINDER_ENABLEMENT"
SettingAttributeDeregistrationPolicy SettingAttribute = "DEREGISTRATION_POLICY"
SettingAttributeDefaultExportDestination SettingAttribute = "DEFAULT_EXPORT_DESTINATION"
)
// Values returns all known values for SettingAttribute. 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 (SettingAttribute) Values() []SettingAttribute {
return []SettingAttribute{
"ALL",
"IS_AWS_ORG_ENABLED",
"SNS_TOPIC",
"DEFAULT_ASSESSMENT_REPORTS_DESTINATION",
"DEFAULT_PROCESS_OWNERS",
"EVIDENCE_FINDER_ENABLEMENT",
"DEREGISTRATION_POLICY",
"DEFAULT_EXPORT_DESTINATION",
}
}
type ShareRequestAction string
// Enum values for ShareRequestAction
const (
ShareRequestActionAccept ShareRequestAction = "ACCEPT"
ShareRequestActionDecline ShareRequestAction = "DECLINE"
ShareRequestActionRevoke ShareRequestAction = "REVOKE"
)
// Values returns all known values for ShareRequestAction. 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 (ShareRequestAction) Values() []ShareRequestAction {
return []ShareRequestAction{
"ACCEPT",
"DECLINE",
"REVOKE",
}
}
type ShareRequestStatus string
// Enum values for ShareRequestStatus
const (
ShareRequestStatusActive ShareRequestStatus = "ACTIVE"
ShareRequestStatusReplicating ShareRequestStatus = "REPLICATING"
ShareRequestStatusShared ShareRequestStatus = "SHARED"
ShareRequestStatusExpiring ShareRequestStatus = "EXPIRING"
ShareRequestStatusFailed ShareRequestStatus = "FAILED"
ShareRequestStatusExpired ShareRequestStatus = "EXPIRED"
ShareRequestStatusDeclined ShareRequestStatus = "DECLINED"
ShareRequestStatusRevoked ShareRequestStatus = "REVOKED"
)
// Values returns all known values for ShareRequestStatus. 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 (ShareRequestStatus) Values() []ShareRequestStatus {
return []ShareRequestStatus{
"ACTIVE",
"REPLICATING",
"SHARED",
"EXPIRING",
"FAILED",
"EXPIRED",
"DECLINED",
"REVOKED",
}
}
type ShareRequestType string
// Enum values for ShareRequestType
const (
ShareRequestTypeSent ShareRequestType = "SENT"
ShareRequestTypeReceived ShareRequestType = "RECEIVED"
)
// Values returns all known values for ShareRequestType. 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 (ShareRequestType) Values() []ShareRequestType {
return []ShareRequestType{
"SENT",
"RECEIVED",
}
}
type SourceFrequency string
// Enum values for SourceFrequency
const (
SourceFrequencyDaily SourceFrequency = "DAILY"
SourceFrequencyWeekly SourceFrequency = "WEEKLY"
SourceFrequencyMonthly SourceFrequency = "MONTHLY"
)
// Values returns all known values for SourceFrequency. 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 (SourceFrequency) Values() []SourceFrequency {
return []SourceFrequency{
"DAILY",
"WEEKLY",
"MONTHLY",
}
}
type SourceSetUpOption string
// Enum values for SourceSetUpOption
const (
SourceSetUpOptionSystemControlsMapping SourceSetUpOption = "System_Controls_Mapping"
SourceSetUpOptionProceduralControlsMapping SourceSetUpOption = "Procedural_Controls_Mapping"
)
// Values returns all known values for SourceSetUpOption. 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 (SourceSetUpOption) Values() []SourceSetUpOption {
return []SourceSetUpOption{
"System_Controls_Mapping",
"Procedural_Controls_Mapping",
}
}
type SourceType string
// Enum values for SourceType
const (
SourceTypeAwsCloudtrail SourceType = "AWS_Cloudtrail"
SourceTypeAwsConfig SourceType = "AWS_Config"
SourceTypeAwsSecurityHub SourceType = "AWS_Security_Hub"
SourceTypeAwsApiCall SourceType = "AWS_API_Call"
SourceTypeManual SourceType = "MANUAL"
)
// Values returns all known values for SourceType. 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 (SourceType) Values() []SourceType {
return []SourceType{
"AWS_Cloudtrail",
"AWS_Config",
"AWS_Security_Hub",
"AWS_API_Call",
"MANUAL",
}
}
type ValidationExceptionReason string
// Enum values for ValidationExceptionReason
const (
ValidationExceptionReasonUnknownOperation ValidationExceptionReason = "unknownOperation"
ValidationExceptionReasonCannotParse ValidationExceptionReason = "cannotParse"
ValidationExceptionReasonFieldValidationFailed ValidationExceptionReason = "fieldValidationFailed"
ValidationExceptionReasonOther ValidationExceptionReason = "other"
)
// Values returns all known values for ValidationExceptionReason. 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 (ValidationExceptionReason) Values() []ValidationExceptionReason {
return []ValidationExceptionReason{
"unknownOperation",
"cannotParse",
"fieldValidationFailed",
"other",
}
}
|