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
|
// Code generated by smithy-go-codegen DO NOT EDIT.
package types
type CapabilityType string
// Enum values for CapabilityType
const (
CapabilityTypeEdi CapabilityType = "edi"
)
// Values returns all known values for CapabilityType. 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 (CapabilityType) Values() []CapabilityType {
return []CapabilityType{
"edi",
}
}
type FileFormat string
// Enum values for FileFormat
const (
FileFormatXml FileFormat = "XML"
FileFormatJson FileFormat = "JSON"
)
// Values returns all known values for FileFormat. 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 (FileFormat) Values() []FileFormat {
return []FileFormat{
"XML",
"JSON",
}
}
type Logging string
// Enum values for Logging
const (
LoggingEnabled Logging = "ENABLED"
LoggingDisabled Logging = "DISABLED"
)
// Values returns all known values for Logging. 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 (Logging) Values() []Logging {
return []Logging{
"ENABLED",
"DISABLED",
}
}
type TransformerJobStatus string
// Enum values for TransformerJobStatus
const (
TransformerJobStatusRunning TransformerJobStatus = "running"
TransformerJobStatusSucceeded TransformerJobStatus = "succeeded"
TransformerJobStatusFailed TransformerJobStatus = "failed"
)
// Values returns all known values for TransformerJobStatus. 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 (TransformerJobStatus) Values() []TransformerJobStatus {
return []TransformerJobStatus{
"running",
"succeeded",
"failed",
}
}
type TransformerStatus string
// Enum values for TransformerStatus
const (
TransformerStatusActive TransformerStatus = "active"
TransformerStatusInactive TransformerStatus = "inactive"
)
// Values returns all known values for TransformerStatus. 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 (TransformerStatus) Values() []TransformerStatus {
return []TransformerStatus{
"active",
"inactive",
}
}
type X12TransactionSet string
// Enum values for X12TransactionSet
const (
X12TransactionSetX12110 X12TransactionSet = "X12_110"
X12TransactionSetX12180 X12TransactionSet = "X12_180"
X12TransactionSetX12204 X12TransactionSet = "X12_204"
X12TransactionSetX12210 X12TransactionSet = "X12_210"
X12TransactionSetX12211 X12TransactionSet = "X12_211"
X12TransactionSetX12214 X12TransactionSet = "X12_214"
X12TransactionSetX12215 X12TransactionSet = "X12_215"
X12TransactionSetX12259 X12TransactionSet = "X12_259"
X12TransactionSetX12260 X12TransactionSet = "X12_260"
X12TransactionSetX12266 X12TransactionSet = "X12_266"
X12TransactionSetX12269 X12TransactionSet = "X12_269"
X12TransactionSetX12270 X12TransactionSet = "X12_270"
X12TransactionSetX12271 X12TransactionSet = "X12_271"
X12TransactionSetX12274 X12TransactionSet = "X12_274"
X12TransactionSetX12275 X12TransactionSet = "X12_275"
X12TransactionSetX12276 X12TransactionSet = "X12_276"
X12TransactionSetX12277 X12TransactionSet = "X12_277"
X12TransactionSetX12278 X12TransactionSet = "X12_278"
X12TransactionSetX12310 X12TransactionSet = "X12_310"
X12TransactionSetX12315 X12TransactionSet = "X12_315"
X12TransactionSetX12322 X12TransactionSet = "X12_322"
X12TransactionSetX12404 X12TransactionSet = "X12_404"
X12TransactionSetX12410 X12TransactionSet = "X12_410"
X12TransactionSetX12417 X12TransactionSet = "X12_417"
X12TransactionSetX12421 X12TransactionSet = "X12_421"
X12TransactionSetX12426 X12TransactionSet = "X12_426"
X12TransactionSetX12810 X12TransactionSet = "X12_810"
X12TransactionSetX12820 X12TransactionSet = "X12_820"
X12TransactionSetX12824 X12TransactionSet = "X12_824"
X12TransactionSetX12830 X12TransactionSet = "X12_830"
X12TransactionSetX12832 X12TransactionSet = "X12_832"
X12TransactionSetX12834 X12TransactionSet = "X12_834"
X12TransactionSetX12835 X12TransactionSet = "X12_835"
X12TransactionSetX12837 X12TransactionSet = "X12_837"
X12TransactionSetX12844 X12TransactionSet = "X12_844"
X12TransactionSetX12846 X12TransactionSet = "X12_846"
X12TransactionSetX12849 X12TransactionSet = "X12_849"
X12TransactionSetX12850 X12TransactionSet = "X12_850"
X12TransactionSetX12852 X12TransactionSet = "X12_852"
X12TransactionSetX12855 X12TransactionSet = "X12_855"
X12TransactionSetX12856 X12TransactionSet = "X12_856"
X12TransactionSetX12860 X12TransactionSet = "X12_860"
X12TransactionSetX12861 X12TransactionSet = "X12_861"
X12TransactionSetX12864 X12TransactionSet = "X12_864"
X12TransactionSetX12865 X12TransactionSet = "X12_865"
X12TransactionSetX12869 X12TransactionSet = "X12_869"
X12TransactionSetX12870 X12TransactionSet = "X12_870"
X12TransactionSetX12940 X12TransactionSet = "X12_940"
X12TransactionSetX12945 X12TransactionSet = "X12_945"
X12TransactionSetX12990 X12TransactionSet = "X12_990"
X12TransactionSetX12997 X12TransactionSet = "X12_997"
X12TransactionSetX12999 X12TransactionSet = "X12_999"
X12TransactionSetX12270X279 X12TransactionSet = "X12_270_X279"
X12TransactionSetX12271X279 X12TransactionSet = "X12_271_X279"
X12TransactionSetX12275X210 X12TransactionSet = "X12_275_X210"
X12TransactionSetX12275X211 X12TransactionSet = "X12_275_X211"
X12TransactionSetX12276X212 X12TransactionSet = "X12_276_X212"
X12TransactionSetX12277X212 X12TransactionSet = "X12_277_X212"
X12TransactionSetX12277X214 X12TransactionSet = "X12_277_X214"
X12TransactionSetX12277X364 X12TransactionSet = "X12_277_X364"
X12TransactionSetX12278X217 X12TransactionSet = "X12_278_X217"
X12TransactionSetX12820X218 X12TransactionSet = "X12_820_X218"
X12TransactionSetX12820X306 X12TransactionSet = "X12_820_X306"
X12TransactionSetX12824X186 X12TransactionSet = "X12_824_X186"
X12TransactionSetX12834X220 X12TransactionSet = "X12_834_X220"
X12TransactionSetX12834X307 X12TransactionSet = "X12_834_X307"
X12TransactionSetX12834X318 X12TransactionSet = "X12_834_X318"
X12TransactionSetX12835X221 X12TransactionSet = "X12_835_X221"
X12TransactionSetX12837X222 X12TransactionSet = "X12_837_X222"
X12TransactionSetX12837X223 X12TransactionSet = "X12_837_X223"
X12TransactionSetX12837X224 X12TransactionSet = "X12_837_X224"
X12TransactionSetX12837X291 X12TransactionSet = "X12_837_X291"
X12TransactionSetX12837X292 X12TransactionSet = "X12_837_X292"
X12TransactionSetX12837X298 X12TransactionSet = "X12_837_X298"
X12TransactionSetX12999X231 X12TransactionSet = "X12_999_X231"
)
// Values returns all known values for X12TransactionSet. 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 (X12TransactionSet) Values() []X12TransactionSet {
return []X12TransactionSet{
"X12_110",
"X12_180",
"X12_204",
"X12_210",
"X12_211",
"X12_214",
"X12_215",
"X12_259",
"X12_260",
"X12_266",
"X12_269",
"X12_270",
"X12_271",
"X12_274",
"X12_275",
"X12_276",
"X12_277",
"X12_278",
"X12_310",
"X12_315",
"X12_322",
"X12_404",
"X12_410",
"X12_417",
"X12_421",
"X12_426",
"X12_810",
"X12_820",
"X12_824",
"X12_830",
"X12_832",
"X12_834",
"X12_835",
"X12_837",
"X12_844",
"X12_846",
"X12_849",
"X12_850",
"X12_852",
"X12_855",
"X12_856",
"X12_860",
"X12_861",
"X12_864",
"X12_865",
"X12_869",
"X12_870",
"X12_940",
"X12_945",
"X12_990",
"X12_997",
"X12_999",
"X12_270_X279",
"X12_271_X279",
"X12_275_X210",
"X12_275_X211",
"X12_276_X212",
"X12_277_X212",
"X12_277_X214",
"X12_277_X364",
"X12_278_X217",
"X12_820_X218",
"X12_820_X306",
"X12_824_X186",
"X12_834_X220",
"X12_834_X307",
"X12_834_X318",
"X12_835_X221",
"X12_837_X222",
"X12_837_X223",
"X12_837_X224",
"X12_837_X291",
"X12_837_X292",
"X12_837_X298",
"X12_999_X231",
}
}
type X12Version string
// Enum values for X12Version
const (
X12VersionVersion4010 X12Version = "VERSION_4010"
X12VersionVersion4030 X12Version = "VERSION_4030"
X12VersionVersion5010 X12Version = "VERSION_5010"
X12VersionVersion5010Hipaa X12Version = "VERSION_5010_HIPAA"
)
// Values returns all known values for X12Version. 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 (X12Version) Values() []X12Version {
return []X12Version{
"VERSION_4010",
"VERSION_4030",
"VERSION_5010",
"VERSION_5010_HIPAA",
}
}
|