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
|
// Code generated by smithy-go-codegen DO NOT EDIT.
package types
type AcceptLanguage string
// Enum values for AcceptLanguage
const (
AcceptLanguageEnUs AcceptLanguage = "EN_US"
)
// Values returns all known values for AcceptLanguage. 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 (AcceptLanguage) Values() []AcceptLanguage {
return []AcceptLanguage{
"EN_US",
}
}
type AnalysisStatus string
// Enum values for AnalysisStatus
const (
AnalysisStatusRunning AnalysisStatus = "RUNNING"
AnalysisStatusSucceeded AnalysisStatus = "SUCCEEDED"
AnalysisStatusFailed AnalysisStatus = "FAILED"
)
// Values returns all known values for AnalysisStatus. 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 (AnalysisStatus) Values() []AnalysisStatus {
return []AnalysisStatus{
"RUNNING",
"SUCCEEDED",
"FAILED",
}
}
type ContextType string
// Enum values for ContextType
const (
ContextTypeCausal ContextType = "CAUSAL"
ContextTypeContextual ContextType = "CONTEXTUAL"
)
// Values returns all known values for ContextType. 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 (ContextType) Values() []ContextType {
return []ContextType{
"CAUSAL",
"CONTEXTUAL",
}
}
type DetailStatus string
// Enum values for DetailStatus
const (
DetailStatusAvailable DetailStatus = "AVAILABLE"
DetailStatusProcessing DetailStatus = "PROCESSING"
DetailStatusUnavailable DetailStatus = "UNAVAILABLE"
)
// Values returns all known values for DetailStatus. 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 (DetailStatus) Values() []DetailStatus {
return []DetailStatus{
"AVAILABLE",
"PROCESSING",
"UNAVAILABLE",
}
}
type FeatureStatus string
// Enum values for FeatureStatus
const (
FeatureStatusEnabled FeatureStatus = "ENABLED"
FeatureStatusDisabled FeatureStatus = "DISABLED"
FeatureStatusUnsupported FeatureStatus = "UNSUPPORTED"
FeatureStatusEnabledPendingReboot FeatureStatus = "ENABLED_PENDING_REBOOT"
FeatureStatusDisabledPendingReboot FeatureStatus = "DISABLED_PENDING_REBOOT"
FeatureStatusUnknown FeatureStatus = "UNKNOWN"
)
// Values returns all known values for FeatureStatus. 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 (FeatureStatus) Values() []FeatureStatus {
return []FeatureStatus{
"ENABLED",
"DISABLED",
"UNSUPPORTED",
"ENABLED_PENDING_REBOOT",
"DISABLED_PENDING_REBOOT",
"UNKNOWN",
}
}
type PeriodAlignment string
// Enum values for PeriodAlignment
const (
PeriodAlignmentEndTime PeriodAlignment = "END_TIME"
PeriodAlignmentStartTime PeriodAlignment = "START_TIME"
)
// Values returns all known values for PeriodAlignment. 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 (PeriodAlignment) Values() []PeriodAlignment {
return []PeriodAlignment{
"END_TIME",
"START_TIME",
}
}
type ServiceType string
// Enum values for ServiceType
const (
ServiceTypeRds ServiceType = "RDS"
ServiceTypeDocdb ServiceType = "DOCDB"
)
// Values returns all known values for ServiceType. 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 (ServiceType) Values() []ServiceType {
return []ServiceType{
"RDS",
"DOCDB",
}
}
type Severity string
// Enum values for Severity
const (
SeverityLow Severity = "LOW"
SeverityMedium Severity = "MEDIUM"
SeverityHigh Severity = "HIGH"
)
// Values returns all known values for Severity. 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 (Severity) Values() []Severity {
return []Severity{
"LOW",
"MEDIUM",
"HIGH",
}
}
type TextFormat string
// Enum values for TextFormat
const (
TextFormatPlainText TextFormat = "PLAIN_TEXT"
TextFormatMarkdown TextFormat = "MARKDOWN"
)
// Values returns all known values for TextFormat. 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 (TextFormat) Values() []TextFormat {
return []TextFormat{
"PLAIN_TEXT",
"MARKDOWN",
}
}
|