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
|
// Code generated by smithy-go-codegen DO NOT EDIT.
package types
type LogExport string
// Enum values for LogExport
const (
LogExportUserActivityLog LogExport = "useractivitylog"
LogExportUserLog LogExport = "userlog"
LogExportConnectionLog LogExport = "connectionlog"
)
// Values returns all known values for LogExport. 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 (LogExport) Values() []LogExport {
return []LogExport{
"useractivitylog",
"userlog",
"connectionlog",
}
}
type NamespaceStatus string
// Enum values for NamespaceStatus
const (
NamespaceStatusAvailable NamespaceStatus = "AVAILABLE"
NamespaceStatusModifying NamespaceStatus = "MODIFYING"
NamespaceStatusDeleting NamespaceStatus = "DELETING"
)
// Values returns all known values for NamespaceStatus. 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 (NamespaceStatus) Values() []NamespaceStatus {
return []NamespaceStatus{
"AVAILABLE",
"MODIFYING",
"DELETING",
}
}
type SnapshotStatus string
// Enum values for SnapshotStatus
const (
SnapshotStatusAvailable SnapshotStatus = "AVAILABLE"
SnapshotStatusCreating SnapshotStatus = "CREATING"
SnapshotStatusDeleted SnapshotStatus = "DELETED"
SnapshotStatusCancelled SnapshotStatus = "CANCELLED"
SnapshotStatusFailed SnapshotStatus = "FAILED"
SnapshotStatusCopying SnapshotStatus = "COPYING"
)
// Values returns all known values for SnapshotStatus. 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 (SnapshotStatus) Values() []SnapshotStatus {
return []SnapshotStatus{
"AVAILABLE",
"CREATING",
"DELETED",
"CANCELLED",
"FAILED",
"COPYING",
}
}
type State string
// Enum values for State
const (
StateActive State = "ACTIVE"
StateDisabled State = "DISABLED"
)
// Values returns all known values for State. 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 (State) Values() []State {
return []State{
"ACTIVE",
"DISABLED",
}
}
type UsageLimitBreachAction string
// Enum values for UsageLimitBreachAction
const (
UsageLimitBreachActionLog UsageLimitBreachAction = "log"
UsageLimitBreachActionEmitMetric UsageLimitBreachAction = "emit-metric"
UsageLimitBreachActionDeactivate UsageLimitBreachAction = "deactivate"
)
// Values returns all known values for UsageLimitBreachAction. 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 (UsageLimitBreachAction) Values() []UsageLimitBreachAction {
return []UsageLimitBreachAction{
"log",
"emit-metric",
"deactivate",
}
}
type UsageLimitPeriod string
// Enum values for UsageLimitPeriod
const (
UsageLimitPeriodDaily UsageLimitPeriod = "daily"
UsageLimitPeriodWeekly UsageLimitPeriod = "weekly"
UsageLimitPeriodMonthly UsageLimitPeriod = "monthly"
)
// Values returns all known values for UsageLimitPeriod. 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 (UsageLimitPeriod) Values() []UsageLimitPeriod {
return []UsageLimitPeriod{
"daily",
"weekly",
"monthly",
}
}
type UsageLimitUsageType string
// Enum values for UsageLimitUsageType
const (
UsageLimitUsageTypeServerlessCompute UsageLimitUsageType = "serverless-compute"
UsageLimitUsageTypeCrossRegionDatasharing UsageLimitUsageType = "cross-region-datasharing"
)
// Values returns all known values for UsageLimitUsageType. 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 (UsageLimitUsageType) Values() []UsageLimitUsageType {
return []UsageLimitUsageType{
"serverless-compute",
"cross-region-datasharing",
}
}
type WorkgroupStatus string
// Enum values for WorkgroupStatus
const (
WorkgroupStatusCreating WorkgroupStatus = "CREATING"
WorkgroupStatusAvailable WorkgroupStatus = "AVAILABLE"
WorkgroupStatusModifying WorkgroupStatus = "MODIFYING"
WorkgroupStatusDeleting WorkgroupStatus = "DELETING"
)
// Values returns all known values for WorkgroupStatus. 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 (WorkgroupStatus) Values() []WorkgroupStatus {
return []WorkgroupStatus{
"CREATING",
"AVAILABLE",
"MODIFYING",
"DELETING",
}
}
|