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
|
// Code generated by smithy-go-codegen DO NOT EDIT.
package types
type AgentUpdateStatus string
// Enum values for AgentUpdateStatus
const (
AgentUpdateStatusPending AgentUpdateStatus = "PENDING"
AgentUpdateStatusStaging AgentUpdateStatus = "STAGING"
AgentUpdateStatusStaged AgentUpdateStatus = "STAGED"
AgentUpdateStatusUpdating AgentUpdateStatus = "UPDATING"
AgentUpdateStatusUpdated AgentUpdateStatus = "UPDATED"
AgentUpdateStatusFailed AgentUpdateStatus = "FAILED"
)
// Values returns all known values for AgentUpdateStatus. 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 (AgentUpdateStatus) Values() []AgentUpdateStatus {
return []AgentUpdateStatus{
"PENDING",
"STAGING",
"STAGED",
"UPDATING",
"UPDATED",
"FAILED",
}
}
type ApplicationProtocol string
// Enum values for ApplicationProtocol
const (
ApplicationProtocolHttp ApplicationProtocol = "http"
ApplicationProtocolHttp2 ApplicationProtocol = "http2"
ApplicationProtocolGrpc ApplicationProtocol = "grpc"
)
// Values returns all known values for ApplicationProtocol. 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 (ApplicationProtocol) Values() []ApplicationProtocol {
return []ApplicationProtocol{
"http",
"http2",
"grpc",
}
}
type AssignPublicIp string
// Enum values for AssignPublicIp
const (
AssignPublicIpEnabled AssignPublicIp = "ENABLED"
AssignPublicIpDisabled AssignPublicIp = "DISABLED"
)
// Values returns all known values for AssignPublicIp. 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 (AssignPublicIp) Values() []AssignPublicIp {
return []AssignPublicIp{
"ENABLED",
"DISABLED",
}
}
type CapacityProviderField string
// Enum values for CapacityProviderField
const (
CapacityProviderFieldTags CapacityProviderField = "TAGS"
)
// Values returns all known values for CapacityProviderField. 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 (CapacityProviderField) Values() []CapacityProviderField {
return []CapacityProviderField{
"TAGS",
}
}
type CapacityProviderStatus string
// Enum values for CapacityProviderStatus
const (
CapacityProviderStatusActive CapacityProviderStatus = "ACTIVE"
CapacityProviderStatusInactive CapacityProviderStatus = "INACTIVE"
)
// Values returns all known values for CapacityProviderStatus. 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 (CapacityProviderStatus) Values() []CapacityProviderStatus {
return []CapacityProviderStatus{
"ACTIVE",
"INACTIVE",
}
}
type CapacityProviderUpdateStatus string
// Enum values for CapacityProviderUpdateStatus
const (
CapacityProviderUpdateStatusDeleteInProgress CapacityProviderUpdateStatus = "DELETE_IN_PROGRESS"
CapacityProviderUpdateStatusDeleteComplete CapacityProviderUpdateStatus = "DELETE_COMPLETE"
CapacityProviderUpdateStatusDeleteFailed CapacityProviderUpdateStatus = "DELETE_FAILED"
CapacityProviderUpdateStatusUpdateInProgress CapacityProviderUpdateStatus = "UPDATE_IN_PROGRESS"
CapacityProviderUpdateStatusUpdateComplete CapacityProviderUpdateStatus = "UPDATE_COMPLETE"
CapacityProviderUpdateStatusUpdateFailed CapacityProviderUpdateStatus = "UPDATE_FAILED"
)
// Values returns all known values for CapacityProviderUpdateStatus. 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 (CapacityProviderUpdateStatus) Values() []CapacityProviderUpdateStatus {
return []CapacityProviderUpdateStatus{
"DELETE_IN_PROGRESS",
"DELETE_COMPLETE",
"DELETE_FAILED",
"UPDATE_IN_PROGRESS",
"UPDATE_COMPLETE",
"UPDATE_FAILED",
}
}
type ClusterField string
// Enum values for ClusterField
const (
ClusterFieldAttachments ClusterField = "ATTACHMENTS"
ClusterFieldConfigurations ClusterField = "CONFIGURATIONS"
ClusterFieldSettings ClusterField = "SETTINGS"
ClusterFieldStatistics ClusterField = "STATISTICS"
ClusterFieldTags ClusterField = "TAGS"
)
// Values returns all known values for ClusterField. 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 (ClusterField) Values() []ClusterField {
return []ClusterField{
"ATTACHMENTS",
"CONFIGURATIONS",
"SETTINGS",
"STATISTICS",
"TAGS",
}
}
type ClusterSettingName string
// Enum values for ClusterSettingName
const (
ClusterSettingNameContainerInsights ClusterSettingName = "containerInsights"
)
// Values returns all known values for ClusterSettingName. 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 (ClusterSettingName) Values() []ClusterSettingName {
return []ClusterSettingName{
"containerInsights",
}
}
type Compatibility string
// Enum values for Compatibility
const (
CompatibilityEc2 Compatibility = "EC2"
CompatibilityFargate Compatibility = "FARGATE"
CompatibilityExternal Compatibility = "EXTERNAL"
)
// Values returns all known values for Compatibility. 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 (Compatibility) Values() []Compatibility {
return []Compatibility{
"EC2",
"FARGATE",
"EXTERNAL",
}
}
type Connectivity string
// Enum values for Connectivity
const (
ConnectivityConnected Connectivity = "CONNECTED"
ConnectivityDisconnected Connectivity = "DISCONNECTED"
)
// Values returns all known values for Connectivity. 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 (Connectivity) Values() []Connectivity {
return []Connectivity{
"CONNECTED",
"DISCONNECTED",
}
}
type ContainerCondition string
// Enum values for ContainerCondition
const (
ContainerConditionStart ContainerCondition = "START"
ContainerConditionComplete ContainerCondition = "COMPLETE"
ContainerConditionSuccess ContainerCondition = "SUCCESS"
ContainerConditionHealthy ContainerCondition = "HEALTHY"
)
// Values returns all known values for ContainerCondition. 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 (ContainerCondition) Values() []ContainerCondition {
return []ContainerCondition{
"START",
"COMPLETE",
"SUCCESS",
"HEALTHY",
}
}
type ContainerInstanceField string
// Enum values for ContainerInstanceField
const (
ContainerInstanceFieldTags ContainerInstanceField = "TAGS"
ContainerInstanceFieldContainerInstanceHealth ContainerInstanceField = "CONTAINER_INSTANCE_HEALTH"
)
// Values returns all known values for ContainerInstanceField. 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 (ContainerInstanceField) Values() []ContainerInstanceField {
return []ContainerInstanceField{
"TAGS",
"CONTAINER_INSTANCE_HEALTH",
}
}
type ContainerInstanceStatus string
// Enum values for ContainerInstanceStatus
const (
ContainerInstanceStatusActive ContainerInstanceStatus = "ACTIVE"
ContainerInstanceStatusDraining ContainerInstanceStatus = "DRAINING"
ContainerInstanceStatusRegistering ContainerInstanceStatus = "REGISTERING"
ContainerInstanceStatusDeregistering ContainerInstanceStatus = "DEREGISTERING"
ContainerInstanceStatusRegistrationFailed ContainerInstanceStatus = "REGISTRATION_FAILED"
)
// Values returns all known values for ContainerInstanceStatus. 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 (ContainerInstanceStatus) Values() []ContainerInstanceStatus {
return []ContainerInstanceStatus{
"ACTIVE",
"DRAINING",
"REGISTERING",
"DEREGISTERING",
"REGISTRATION_FAILED",
}
}
type CPUArchitecture string
// Enum values for CPUArchitecture
const (
CPUArchitectureX8664 CPUArchitecture = "X86_64"
CPUArchitectureArm64 CPUArchitecture = "ARM64"
)
// Values returns all known values for CPUArchitecture. 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 (CPUArchitecture) Values() []CPUArchitecture {
return []CPUArchitecture{
"X86_64",
"ARM64",
}
}
type DeploymentControllerType string
// Enum values for DeploymentControllerType
const (
DeploymentControllerTypeEcs DeploymentControllerType = "ECS"
DeploymentControllerTypeCodeDeploy DeploymentControllerType = "CODE_DEPLOY"
DeploymentControllerTypeExternal DeploymentControllerType = "EXTERNAL"
)
// Values returns all known values for DeploymentControllerType. 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 (DeploymentControllerType) Values() []DeploymentControllerType {
return []DeploymentControllerType{
"ECS",
"CODE_DEPLOY",
"EXTERNAL",
}
}
type DeploymentRolloutState string
// Enum values for DeploymentRolloutState
const (
DeploymentRolloutStateCompleted DeploymentRolloutState = "COMPLETED"
DeploymentRolloutStateFailed DeploymentRolloutState = "FAILED"
DeploymentRolloutStateInProgress DeploymentRolloutState = "IN_PROGRESS"
)
// Values returns all known values for DeploymentRolloutState. 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 (DeploymentRolloutState) Values() []DeploymentRolloutState {
return []DeploymentRolloutState{
"COMPLETED",
"FAILED",
"IN_PROGRESS",
}
}
type DesiredStatus string
// Enum values for DesiredStatus
const (
DesiredStatusRunning DesiredStatus = "RUNNING"
DesiredStatusPending DesiredStatus = "PENDING"
DesiredStatusStopped DesiredStatus = "STOPPED"
)
// Values returns all known values for DesiredStatus. 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 (DesiredStatus) Values() []DesiredStatus {
return []DesiredStatus{
"RUNNING",
"PENDING",
"STOPPED",
}
}
type DeviceCgroupPermission string
// Enum values for DeviceCgroupPermission
const (
DeviceCgroupPermissionRead DeviceCgroupPermission = "read"
DeviceCgroupPermissionWrite DeviceCgroupPermission = "write"
DeviceCgroupPermissionMknod DeviceCgroupPermission = "mknod"
)
// Values returns all known values for DeviceCgroupPermission. 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 (DeviceCgroupPermission) Values() []DeviceCgroupPermission {
return []DeviceCgroupPermission{
"read",
"write",
"mknod",
}
}
type EFSAuthorizationConfigIAM string
// Enum values for EFSAuthorizationConfigIAM
const (
EFSAuthorizationConfigIAMEnabled EFSAuthorizationConfigIAM = "ENABLED"
EFSAuthorizationConfigIAMDisabled EFSAuthorizationConfigIAM = "DISABLED"
)
// Values returns all known values for EFSAuthorizationConfigIAM. 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 (EFSAuthorizationConfigIAM) Values() []EFSAuthorizationConfigIAM {
return []EFSAuthorizationConfigIAM{
"ENABLED",
"DISABLED",
}
}
type EFSTransitEncryption string
// Enum values for EFSTransitEncryption
const (
EFSTransitEncryptionEnabled EFSTransitEncryption = "ENABLED"
EFSTransitEncryptionDisabled EFSTransitEncryption = "DISABLED"
)
// Values returns all known values for EFSTransitEncryption. 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 (EFSTransitEncryption) Values() []EFSTransitEncryption {
return []EFSTransitEncryption{
"ENABLED",
"DISABLED",
}
}
type EnvironmentFileType string
// Enum values for EnvironmentFileType
const (
EnvironmentFileTypeS3 EnvironmentFileType = "s3"
)
// Values returns all known values for EnvironmentFileType. 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 (EnvironmentFileType) Values() []EnvironmentFileType {
return []EnvironmentFileType{
"s3",
}
}
type ExecuteCommandLogging string
// Enum values for ExecuteCommandLogging
const (
ExecuteCommandLoggingNone ExecuteCommandLogging = "NONE"
ExecuteCommandLoggingDefault ExecuteCommandLogging = "DEFAULT"
ExecuteCommandLoggingOverride ExecuteCommandLogging = "OVERRIDE"
)
// Values returns all known values for ExecuteCommandLogging. 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 (ExecuteCommandLogging) Values() []ExecuteCommandLogging {
return []ExecuteCommandLogging{
"NONE",
"DEFAULT",
"OVERRIDE",
}
}
type FirelensConfigurationType string
// Enum values for FirelensConfigurationType
const (
FirelensConfigurationTypeFluentd FirelensConfigurationType = "fluentd"
FirelensConfigurationTypeFluentbit FirelensConfigurationType = "fluentbit"
)
// Values returns all known values for FirelensConfigurationType. 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 (FirelensConfigurationType) Values() []FirelensConfigurationType {
return []FirelensConfigurationType{
"fluentd",
"fluentbit",
}
}
type HealthStatus string
// Enum values for HealthStatus
const (
HealthStatusHealthy HealthStatus = "HEALTHY"
HealthStatusUnhealthy HealthStatus = "UNHEALTHY"
HealthStatusUnknown HealthStatus = "UNKNOWN"
)
// Values returns all known values for HealthStatus. 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 (HealthStatus) Values() []HealthStatus {
return []HealthStatus{
"HEALTHY",
"UNHEALTHY",
"UNKNOWN",
}
}
type InstanceHealthCheckState string
// Enum values for InstanceHealthCheckState
const (
InstanceHealthCheckStateOk InstanceHealthCheckState = "OK"
InstanceHealthCheckStateImpaired InstanceHealthCheckState = "IMPAIRED"
InstanceHealthCheckStateInsufficientData InstanceHealthCheckState = "INSUFFICIENT_DATA"
InstanceHealthCheckStateInitializing InstanceHealthCheckState = "INITIALIZING"
)
// Values returns all known values for InstanceHealthCheckState. 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 (InstanceHealthCheckState) Values() []InstanceHealthCheckState {
return []InstanceHealthCheckState{
"OK",
"IMPAIRED",
"INSUFFICIENT_DATA",
"INITIALIZING",
}
}
type InstanceHealthCheckType string
// Enum values for InstanceHealthCheckType
const (
InstanceHealthCheckTypeContainerRuntime InstanceHealthCheckType = "CONTAINER_RUNTIME"
)
// Values returns all known values for InstanceHealthCheckType. 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 (InstanceHealthCheckType) Values() []InstanceHealthCheckType {
return []InstanceHealthCheckType{
"CONTAINER_RUNTIME",
}
}
type IpcMode string
// Enum values for IpcMode
const (
IpcModeHost IpcMode = "host"
IpcModeTask IpcMode = "task"
IpcModeNone IpcMode = "none"
)
// Values returns all known values for IpcMode. 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 (IpcMode) Values() []IpcMode {
return []IpcMode{
"host",
"task",
"none",
}
}
type LaunchType string
// Enum values for LaunchType
const (
LaunchTypeEc2 LaunchType = "EC2"
LaunchTypeFargate LaunchType = "FARGATE"
LaunchTypeExternal LaunchType = "EXTERNAL"
)
// Values returns all known values for LaunchType. 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 (LaunchType) Values() []LaunchType {
return []LaunchType{
"EC2",
"FARGATE",
"EXTERNAL",
}
}
type LogDriver string
// Enum values for LogDriver
const (
LogDriverJsonFile LogDriver = "json-file"
LogDriverSyslog LogDriver = "syslog"
LogDriverJournald LogDriver = "journald"
LogDriverGelf LogDriver = "gelf"
LogDriverFluentd LogDriver = "fluentd"
LogDriverAwslogs LogDriver = "awslogs"
LogDriverSplunk LogDriver = "splunk"
LogDriverAwsfirelens LogDriver = "awsfirelens"
)
// Values returns all known values for LogDriver. 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 (LogDriver) Values() []LogDriver {
return []LogDriver{
"json-file",
"syslog",
"journald",
"gelf",
"fluentd",
"awslogs",
"splunk",
"awsfirelens",
}
}
type ManagedAgentName string
// Enum values for ManagedAgentName
const (
ManagedAgentNameExecuteCommandAgent ManagedAgentName = "ExecuteCommandAgent"
)
// Values returns all known values for ManagedAgentName. 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 (ManagedAgentName) Values() []ManagedAgentName {
return []ManagedAgentName{
"ExecuteCommandAgent",
}
}
type ManagedDraining string
// Enum values for ManagedDraining
const (
ManagedDrainingEnabled ManagedDraining = "ENABLED"
ManagedDrainingDisabled ManagedDraining = "DISABLED"
)
// Values returns all known values for ManagedDraining. 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 (ManagedDraining) Values() []ManagedDraining {
return []ManagedDraining{
"ENABLED",
"DISABLED",
}
}
type ManagedScalingStatus string
// Enum values for ManagedScalingStatus
const (
ManagedScalingStatusEnabled ManagedScalingStatus = "ENABLED"
ManagedScalingStatusDisabled ManagedScalingStatus = "DISABLED"
)
// Values returns all known values for ManagedScalingStatus. 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 (ManagedScalingStatus) Values() []ManagedScalingStatus {
return []ManagedScalingStatus{
"ENABLED",
"DISABLED",
}
}
type ManagedTerminationProtection string
// Enum values for ManagedTerminationProtection
const (
ManagedTerminationProtectionEnabled ManagedTerminationProtection = "ENABLED"
ManagedTerminationProtectionDisabled ManagedTerminationProtection = "DISABLED"
)
// Values returns all known values for ManagedTerminationProtection. 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 (ManagedTerminationProtection) Values() []ManagedTerminationProtection {
return []ManagedTerminationProtection{
"ENABLED",
"DISABLED",
}
}
type NetworkMode string
// Enum values for NetworkMode
const (
NetworkModeBridge NetworkMode = "bridge"
NetworkModeHost NetworkMode = "host"
NetworkModeAwsvpc NetworkMode = "awsvpc"
NetworkModeNone NetworkMode = "none"
)
// Values returns all known values for NetworkMode. 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 (NetworkMode) Values() []NetworkMode {
return []NetworkMode{
"bridge",
"host",
"awsvpc",
"none",
}
}
type OSFamily string
// Enum values for OSFamily
const (
OSFamilyWindowsServer2019Full OSFamily = "WINDOWS_SERVER_2019_FULL"
OSFamilyWindowsServer2019Core OSFamily = "WINDOWS_SERVER_2019_CORE"
OSFamilyWindowsServer2016Full OSFamily = "WINDOWS_SERVER_2016_FULL"
OSFamilyWindowsServer2004Core OSFamily = "WINDOWS_SERVER_2004_CORE"
OSFamilyWindowsServer2022Core OSFamily = "WINDOWS_SERVER_2022_CORE"
OSFamilyWindowsServer2022Full OSFamily = "WINDOWS_SERVER_2022_FULL"
OSFamilyWindowsServer20h2Core OSFamily = "WINDOWS_SERVER_20H2_CORE"
OSFamilyLinux OSFamily = "LINUX"
)
// Values returns all known values for OSFamily. 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 (OSFamily) Values() []OSFamily {
return []OSFamily{
"WINDOWS_SERVER_2019_FULL",
"WINDOWS_SERVER_2019_CORE",
"WINDOWS_SERVER_2016_FULL",
"WINDOWS_SERVER_2004_CORE",
"WINDOWS_SERVER_2022_CORE",
"WINDOWS_SERVER_2022_FULL",
"WINDOWS_SERVER_20H2_CORE",
"LINUX",
}
}
type PidMode string
// Enum values for PidMode
const (
PidModeHost PidMode = "host"
PidModeTask PidMode = "task"
)
// Values returns all known values for PidMode. 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 (PidMode) Values() []PidMode {
return []PidMode{
"host",
"task",
}
}
type PlacementConstraintType string
// Enum values for PlacementConstraintType
const (
PlacementConstraintTypeDistinctInstance PlacementConstraintType = "distinctInstance"
PlacementConstraintTypeMemberOf PlacementConstraintType = "memberOf"
)
// Values returns all known values for PlacementConstraintType. 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 (PlacementConstraintType) Values() []PlacementConstraintType {
return []PlacementConstraintType{
"distinctInstance",
"memberOf",
}
}
type PlacementStrategyType string
// Enum values for PlacementStrategyType
const (
PlacementStrategyTypeRandom PlacementStrategyType = "random"
PlacementStrategyTypeSpread PlacementStrategyType = "spread"
PlacementStrategyTypeBinpack PlacementStrategyType = "binpack"
)
// Values returns all known values for PlacementStrategyType. 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 (PlacementStrategyType) Values() []PlacementStrategyType {
return []PlacementStrategyType{
"random",
"spread",
"binpack",
}
}
type PlatformDeviceType string
// Enum values for PlatformDeviceType
const (
PlatformDeviceTypeGpu PlatformDeviceType = "GPU"
)
// Values returns all known values for PlatformDeviceType. 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 (PlatformDeviceType) Values() []PlatformDeviceType {
return []PlatformDeviceType{
"GPU",
}
}
type PropagateTags string
// Enum values for PropagateTags
const (
PropagateTagsTaskDefinition PropagateTags = "TASK_DEFINITION"
PropagateTagsService PropagateTags = "SERVICE"
PropagateTagsNone PropagateTags = "NONE"
)
// Values returns all known values for PropagateTags. 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 (PropagateTags) Values() []PropagateTags {
return []PropagateTags{
"TASK_DEFINITION",
"SERVICE",
"NONE",
}
}
type ProxyConfigurationType string
// Enum values for ProxyConfigurationType
const (
ProxyConfigurationTypeAppmesh ProxyConfigurationType = "APPMESH"
)
// Values returns all known values for ProxyConfigurationType. 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 (ProxyConfigurationType) Values() []ProxyConfigurationType {
return []ProxyConfigurationType{
"APPMESH",
}
}
type ResourceType string
// Enum values for ResourceType
const (
ResourceTypeGpu ResourceType = "GPU"
ResourceTypeInferenceAccelerator ResourceType = "InferenceAccelerator"
)
// Values returns all known values for ResourceType. 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 (ResourceType) Values() []ResourceType {
return []ResourceType{
"GPU",
"InferenceAccelerator",
}
}
type ScaleUnit string
// Enum values for ScaleUnit
const (
ScaleUnitPercent ScaleUnit = "PERCENT"
)
// Values returns all known values for ScaleUnit. 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 (ScaleUnit) Values() []ScaleUnit {
return []ScaleUnit{
"PERCENT",
}
}
type SchedulingStrategy string
// Enum values for SchedulingStrategy
const (
SchedulingStrategyReplica SchedulingStrategy = "REPLICA"
SchedulingStrategyDaemon SchedulingStrategy = "DAEMON"
)
// Values returns all known values for SchedulingStrategy. 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 (SchedulingStrategy) Values() []SchedulingStrategy {
return []SchedulingStrategy{
"REPLICA",
"DAEMON",
}
}
type Scope string
// Enum values for Scope
const (
ScopeTask Scope = "task"
ScopeShared Scope = "shared"
)
// Values returns all known values for Scope. 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 (Scope) Values() []Scope {
return []Scope{
"task",
"shared",
}
}
type ServiceField string
// Enum values for ServiceField
const (
ServiceFieldTags ServiceField = "TAGS"
)
// Values returns all known values for ServiceField. 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 (ServiceField) Values() []ServiceField {
return []ServiceField{
"TAGS",
}
}
type SettingName string
// Enum values for SettingName
const (
SettingNameServiceLongArnFormat SettingName = "serviceLongArnFormat"
SettingNameTaskLongArnFormat SettingName = "taskLongArnFormat"
SettingNameContainerInstanceLongArnFormat SettingName = "containerInstanceLongArnFormat"
SettingNameAwsvpcTrunking SettingName = "awsvpcTrunking"
SettingNameContainerInsights SettingName = "containerInsights"
SettingNameFargateFipsMode SettingName = "fargateFIPSMode"
SettingNameTagResourceAuthorization SettingName = "tagResourceAuthorization"
SettingNameFargateTaskRetirementWaitPeriod SettingName = "fargateTaskRetirementWaitPeriod"
SettingNameGuardDutyActivate SettingName = "guardDutyActivate"
)
// Values returns all known values for SettingName. 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 (SettingName) Values() []SettingName {
return []SettingName{
"serviceLongArnFormat",
"taskLongArnFormat",
"containerInstanceLongArnFormat",
"awsvpcTrunking",
"containerInsights",
"fargateFIPSMode",
"tagResourceAuthorization",
"fargateTaskRetirementWaitPeriod",
"guardDutyActivate",
}
}
type SettingType string
// Enum values for SettingType
const (
SettingTypeUser SettingType = "user"
SettingTypeAwsManaged SettingType = "aws_managed"
)
// Values returns all known values for SettingType. 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 (SettingType) Values() []SettingType {
return []SettingType{
"user",
"aws_managed",
}
}
type SortOrder string
// Enum values for SortOrder
const (
SortOrderAsc SortOrder = "ASC"
SortOrderDesc SortOrder = "DESC"
)
// Values returns all known values for SortOrder. 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 (SortOrder) Values() []SortOrder {
return []SortOrder{
"ASC",
"DESC",
}
}
type StabilityStatus string
// Enum values for StabilityStatus
const (
StabilityStatusSteadyState StabilityStatus = "STEADY_STATE"
StabilityStatusStabilizing StabilityStatus = "STABILIZING"
)
// Values returns all known values for StabilityStatus. 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 (StabilityStatus) Values() []StabilityStatus {
return []StabilityStatus{
"STEADY_STATE",
"STABILIZING",
}
}
type TargetType string
// Enum values for TargetType
const (
TargetTypeContainerInstance TargetType = "container-instance"
)
// Values returns all known values for TargetType. Note that this can be expanded
// in the future, and so it is only as up to date as the client. The ordering of
// this slice is not guaranteed to be stable across updates.
func (TargetType) Values() []TargetType {
return []TargetType{
"container-instance",
}
}
type TaskDefinitionFamilyStatus string
// Enum values for TaskDefinitionFamilyStatus
const (
TaskDefinitionFamilyStatusActive TaskDefinitionFamilyStatus = "ACTIVE"
TaskDefinitionFamilyStatusInactive TaskDefinitionFamilyStatus = "INACTIVE"
TaskDefinitionFamilyStatusAll TaskDefinitionFamilyStatus = "ALL"
)
// Values returns all known values for TaskDefinitionFamilyStatus. 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 (TaskDefinitionFamilyStatus) Values() []TaskDefinitionFamilyStatus {
return []TaskDefinitionFamilyStatus{
"ACTIVE",
"INACTIVE",
"ALL",
}
}
type TaskDefinitionField string
// Enum values for TaskDefinitionField
const (
TaskDefinitionFieldTags TaskDefinitionField = "TAGS"
)
// Values returns all known values for TaskDefinitionField. 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 (TaskDefinitionField) Values() []TaskDefinitionField {
return []TaskDefinitionField{
"TAGS",
}
}
type TaskDefinitionPlacementConstraintType string
// Enum values for TaskDefinitionPlacementConstraintType
const (
TaskDefinitionPlacementConstraintTypeMemberOf TaskDefinitionPlacementConstraintType = "memberOf"
)
// Values returns all known values for TaskDefinitionPlacementConstraintType. 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 (TaskDefinitionPlacementConstraintType) Values() []TaskDefinitionPlacementConstraintType {
return []TaskDefinitionPlacementConstraintType{
"memberOf",
}
}
type TaskDefinitionStatus string
// Enum values for TaskDefinitionStatus
const (
TaskDefinitionStatusActive TaskDefinitionStatus = "ACTIVE"
TaskDefinitionStatusInactive TaskDefinitionStatus = "INACTIVE"
TaskDefinitionStatusDeleteInProgress TaskDefinitionStatus = "DELETE_IN_PROGRESS"
)
// Values returns all known values for TaskDefinitionStatus. 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 (TaskDefinitionStatus) Values() []TaskDefinitionStatus {
return []TaskDefinitionStatus{
"ACTIVE",
"INACTIVE",
"DELETE_IN_PROGRESS",
}
}
type TaskField string
// Enum values for TaskField
const (
TaskFieldTags TaskField = "TAGS"
)
// Values returns all known values for TaskField. 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 (TaskField) Values() []TaskField {
return []TaskField{
"TAGS",
}
}
type TaskSetField string
// Enum values for TaskSetField
const (
TaskSetFieldTags TaskSetField = "TAGS"
)
// Values returns all known values for TaskSetField. 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 (TaskSetField) Values() []TaskSetField {
return []TaskSetField{
"TAGS",
}
}
type TaskStopCode string
// Enum values for TaskStopCode
const (
TaskStopCodeTaskFailedToStart TaskStopCode = "TaskFailedToStart"
TaskStopCodeEssentialContainerExited TaskStopCode = "EssentialContainerExited"
TaskStopCodeUserInitiated TaskStopCode = "UserInitiated"
TaskStopCodeServiceSchedulerInitiated TaskStopCode = "ServiceSchedulerInitiated"
TaskStopCodeSpotInterruption TaskStopCode = "SpotInterruption"
TaskStopCodeTerminationNotice TaskStopCode = "TerminationNotice"
)
// Values returns all known values for TaskStopCode. 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 (TaskStopCode) Values() []TaskStopCode {
return []TaskStopCode{
"TaskFailedToStart",
"EssentialContainerExited",
"UserInitiated",
"ServiceSchedulerInitiated",
"SpotInterruption",
"TerminationNotice",
}
}
type TransportProtocol string
// Enum values for TransportProtocol
const (
TransportProtocolTcp TransportProtocol = "tcp"
TransportProtocolUdp TransportProtocol = "udp"
)
// Values returns all known values for TransportProtocol. 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 (TransportProtocol) Values() []TransportProtocol {
return []TransportProtocol{
"tcp",
"udp",
}
}
type UlimitName string
// Enum values for UlimitName
const (
UlimitNameCore UlimitName = "core"
UlimitNameCpu UlimitName = "cpu"
UlimitNameData UlimitName = "data"
UlimitNameFsize UlimitName = "fsize"
UlimitNameLocks UlimitName = "locks"
UlimitNameMemlock UlimitName = "memlock"
UlimitNameMsgqueue UlimitName = "msgqueue"
UlimitNameNice UlimitName = "nice"
UlimitNameNofile UlimitName = "nofile"
UlimitNameNproc UlimitName = "nproc"
UlimitNameRss UlimitName = "rss"
UlimitNameRtprio UlimitName = "rtprio"
UlimitNameRttime UlimitName = "rttime"
UlimitNameSigpending UlimitName = "sigpending"
UlimitNameStack UlimitName = "stack"
)
// Values returns all known values for UlimitName. 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 (UlimitName) Values() []UlimitName {
return []UlimitName{
"core",
"cpu",
"data",
"fsize",
"locks",
"memlock",
"msgqueue",
"nice",
"nofile",
"nproc",
"rss",
"rtprio",
"rttime",
"sigpending",
"stack",
}
}
|