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
|
// Code generated by smithy-go-codegen DO NOT EDIT.
package types
type ApiKeysFormat string
// Enum values for ApiKeysFormat
const (
ApiKeysFormatCsv ApiKeysFormat = "csv"
)
// Values returns all known values for ApiKeysFormat. 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 (ApiKeysFormat) Values() []ApiKeysFormat {
return []ApiKeysFormat{
"csv",
}
}
type ApiKeySourceType string
// Enum values for ApiKeySourceType
const (
ApiKeySourceTypeHeader ApiKeySourceType = "HEADER"
ApiKeySourceTypeAuthorizer ApiKeySourceType = "AUTHORIZER"
)
// Values returns all known values for ApiKeySourceType. 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 (ApiKeySourceType) Values() []ApiKeySourceType {
return []ApiKeySourceType{
"HEADER",
"AUTHORIZER",
}
}
type AuthorizerType string
// Enum values for AuthorizerType
const (
AuthorizerTypeToken AuthorizerType = "TOKEN"
AuthorizerTypeRequest AuthorizerType = "REQUEST"
AuthorizerTypeCognitoUserPools AuthorizerType = "COGNITO_USER_POOLS"
)
// Values returns all known values for AuthorizerType. 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 (AuthorizerType) Values() []AuthorizerType {
return []AuthorizerType{
"TOKEN",
"REQUEST",
"COGNITO_USER_POOLS",
}
}
type CacheClusterSize string
// Enum values for CacheClusterSize
const (
CacheClusterSizeSize0Point5Gb CacheClusterSize = "0.5"
CacheClusterSizeSize1Point6Gb CacheClusterSize = "1.6"
CacheClusterSizeSize6Point1Gb CacheClusterSize = "6.1"
CacheClusterSizeSize13Point5Gb CacheClusterSize = "13.5"
CacheClusterSizeSize28Point4Gb CacheClusterSize = "28.4"
CacheClusterSizeSize58Point2Gb CacheClusterSize = "58.2"
CacheClusterSizeSize118Gb CacheClusterSize = "118"
CacheClusterSizeSize237Gb CacheClusterSize = "237"
)
// Values returns all known values for CacheClusterSize. 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 (CacheClusterSize) Values() []CacheClusterSize {
return []CacheClusterSize{
"0.5",
"1.6",
"6.1",
"13.5",
"28.4",
"58.2",
"118",
"237",
}
}
type CacheClusterStatus string
// Enum values for CacheClusterStatus
const (
CacheClusterStatusCreateInProgress CacheClusterStatus = "CREATE_IN_PROGRESS"
CacheClusterStatusAvailable CacheClusterStatus = "AVAILABLE"
CacheClusterStatusDeleteInProgress CacheClusterStatus = "DELETE_IN_PROGRESS"
CacheClusterStatusNotAvailable CacheClusterStatus = "NOT_AVAILABLE"
CacheClusterStatusFlushInProgress CacheClusterStatus = "FLUSH_IN_PROGRESS"
)
// Values returns all known values for CacheClusterStatus. 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 (CacheClusterStatus) Values() []CacheClusterStatus {
return []CacheClusterStatus{
"CREATE_IN_PROGRESS",
"AVAILABLE",
"DELETE_IN_PROGRESS",
"NOT_AVAILABLE",
"FLUSH_IN_PROGRESS",
}
}
type ConnectionType string
// Enum values for ConnectionType
const (
ConnectionTypeInternet ConnectionType = "INTERNET"
ConnectionTypeVpcLink ConnectionType = "VPC_LINK"
)
// Values returns all known values for ConnectionType. 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 (ConnectionType) Values() []ConnectionType {
return []ConnectionType{
"INTERNET",
"VPC_LINK",
}
}
type ContentHandlingStrategy string
// Enum values for ContentHandlingStrategy
const (
ContentHandlingStrategyConvertToBinary ContentHandlingStrategy = "CONVERT_TO_BINARY"
ContentHandlingStrategyConvertToText ContentHandlingStrategy = "CONVERT_TO_TEXT"
)
// Values returns all known values for ContentHandlingStrategy. 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 (ContentHandlingStrategy) Values() []ContentHandlingStrategy {
return []ContentHandlingStrategy{
"CONVERT_TO_BINARY",
"CONVERT_TO_TEXT",
}
}
type DocumentationPartType string
// Enum values for DocumentationPartType
const (
DocumentationPartTypeApi DocumentationPartType = "API"
DocumentationPartTypeAuthorizer DocumentationPartType = "AUTHORIZER"
DocumentationPartTypeModel DocumentationPartType = "MODEL"
DocumentationPartTypeResource DocumentationPartType = "RESOURCE"
DocumentationPartTypeMethod DocumentationPartType = "METHOD"
DocumentationPartTypePathParameter DocumentationPartType = "PATH_PARAMETER"
DocumentationPartTypeQueryParameter DocumentationPartType = "QUERY_PARAMETER"
DocumentationPartTypeRequestHeader DocumentationPartType = "REQUEST_HEADER"
DocumentationPartTypeRequestBody DocumentationPartType = "REQUEST_BODY"
DocumentationPartTypeResponse DocumentationPartType = "RESPONSE"
DocumentationPartTypeResponseHeader DocumentationPartType = "RESPONSE_HEADER"
DocumentationPartTypeResponseBody DocumentationPartType = "RESPONSE_BODY"
)
// Values returns all known values for DocumentationPartType. 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 (DocumentationPartType) Values() []DocumentationPartType {
return []DocumentationPartType{
"API",
"AUTHORIZER",
"MODEL",
"RESOURCE",
"METHOD",
"PATH_PARAMETER",
"QUERY_PARAMETER",
"REQUEST_HEADER",
"REQUEST_BODY",
"RESPONSE",
"RESPONSE_HEADER",
"RESPONSE_BODY",
}
}
type DomainNameStatus string
// Enum values for DomainNameStatus
const (
DomainNameStatusAvailable DomainNameStatus = "AVAILABLE"
DomainNameStatusUpdating DomainNameStatus = "UPDATING"
DomainNameStatusPending DomainNameStatus = "PENDING"
DomainNameStatusPendingCertificateReimport DomainNameStatus = "PENDING_CERTIFICATE_REIMPORT"
DomainNameStatusPendingOwnershipVerification DomainNameStatus = "PENDING_OWNERSHIP_VERIFICATION"
)
// Values returns all known values for DomainNameStatus. 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 (DomainNameStatus) Values() []DomainNameStatus {
return []DomainNameStatus{
"AVAILABLE",
"UPDATING",
"PENDING",
"PENDING_CERTIFICATE_REIMPORT",
"PENDING_OWNERSHIP_VERIFICATION",
}
}
type EndpointType string
// Enum values for EndpointType
const (
EndpointTypeRegional EndpointType = "REGIONAL"
EndpointTypeEdge EndpointType = "EDGE"
EndpointTypePrivate EndpointType = "PRIVATE"
)
// Values returns all known values for EndpointType. 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 (EndpointType) Values() []EndpointType {
return []EndpointType{
"REGIONAL",
"EDGE",
"PRIVATE",
}
}
type GatewayResponseType string
// Enum values for GatewayResponseType
const (
GatewayResponseTypeDefault4xx GatewayResponseType = "DEFAULT_4XX"
GatewayResponseTypeDefault5xx GatewayResponseType = "DEFAULT_5XX"
GatewayResponseTypeResourceNotFound GatewayResponseType = "RESOURCE_NOT_FOUND"
GatewayResponseTypeUnauthorized GatewayResponseType = "UNAUTHORIZED"
GatewayResponseTypeInvalidApiKey GatewayResponseType = "INVALID_API_KEY"
GatewayResponseTypeAccessDenied GatewayResponseType = "ACCESS_DENIED"
GatewayResponseTypeAuthorizerFailure GatewayResponseType = "AUTHORIZER_FAILURE"
GatewayResponseTypeAuthorizerConfigurationError GatewayResponseType = "AUTHORIZER_CONFIGURATION_ERROR"
GatewayResponseTypeInvalidSignature GatewayResponseType = "INVALID_SIGNATURE"
GatewayResponseTypeExpiredToken GatewayResponseType = "EXPIRED_TOKEN"
GatewayResponseTypeMissingAuthenticationToken GatewayResponseType = "MISSING_AUTHENTICATION_TOKEN"
GatewayResponseTypeIntegrationFailure GatewayResponseType = "INTEGRATION_FAILURE"
GatewayResponseTypeIntegrationTimeout GatewayResponseType = "INTEGRATION_TIMEOUT"
GatewayResponseTypeApiConfigurationError GatewayResponseType = "API_CONFIGURATION_ERROR"
GatewayResponseTypeUnsupportedMediaType GatewayResponseType = "UNSUPPORTED_MEDIA_TYPE"
GatewayResponseTypeBadRequestParameters GatewayResponseType = "BAD_REQUEST_PARAMETERS"
GatewayResponseTypeBadRequestBody GatewayResponseType = "BAD_REQUEST_BODY"
GatewayResponseTypeRequestTooLarge GatewayResponseType = "REQUEST_TOO_LARGE"
GatewayResponseTypeThrottled GatewayResponseType = "THROTTLED"
GatewayResponseTypeQuotaExceeded GatewayResponseType = "QUOTA_EXCEEDED"
GatewayResponseTypeWafFiltered GatewayResponseType = "WAF_FILTERED"
)
// Values returns all known values for GatewayResponseType. 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 (GatewayResponseType) Values() []GatewayResponseType {
return []GatewayResponseType{
"DEFAULT_4XX",
"DEFAULT_5XX",
"RESOURCE_NOT_FOUND",
"UNAUTHORIZED",
"INVALID_API_KEY",
"ACCESS_DENIED",
"AUTHORIZER_FAILURE",
"AUTHORIZER_CONFIGURATION_ERROR",
"INVALID_SIGNATURE",
"EXPIRED_TOKEN",
"MISSING_AUTHENTICATION_TOKEN",
"INTEGRATION_FAILURE",
"INTEGRATION_TIMEOUT",
"API_CONFIGURATION_ERROR",
"UNSUPPORTED_MEDIA_TYPE",
"BAD_REQUEST_PARAMETERS",
"BAD_REQUEST_BODY",
"REQUEST_TOO_LARGE",
"THROTTLED",
"QUOTA_EXCEEDED",
"WAF_FILTERED",
}
}
type IntegrationType string
// Enum values for IntegrationType
const (
IntegrationTypeHttp IntegrationType = "HTTP"
IntegrationTypeAws IntegrationType = "AWS"
IntegrationTypeMock IntegrationType = "MOCK"
IntegrationTypeHttpProxy IntegrationType = "HTTP_PROXY"
IntegrationTypeAwsProxy IntegrationType = "AWS_PROXY"
)
// Values returns all known values for IntegrationType. 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 (IntegrationType) Values() []IntegrationType {
return []IntegrationType{
"HTTP",
"AWS",
"MOCK",
"HTTP_PROXY",
"AWS_PROXY",
}
}
type LocationStatusType string
// Enum values for LocationStatusType
const (
LocationStatusTypeDocumented LocationStatusType = "DOCUMENTED"
LocationStatusTypeUndocumented LocationStatusType = "UNDOCUMENTED"
)
// Values returns all known values for LocationStatusType. 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 (LocationStatusType) Values() []LocationStatusType {
return []LocationStatusType{
"DOCUMENTED",
"UNDOCUMENTED",
}
}
type Op string
// Enum values for Op
const (
OpAdd Op = "add"
OpRemove Op = "remove"
OpReplace Op = "replace"
OpMove Op = "move"
OpCopy Op = "copy"
OpTest Op = "test"
)
// Values returns all known values for Op. 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 (Op) Values() []Op {
return []Op{
"add",
"remove",
"replace",
"move",
"copy",
"test",
}
}
type PutMode string
// Enum values for PutMode
const (
PutModeMerge PutMode = "merge"
PutModeOverwrite PutMode = "overwrite"
)
// Values returns all known values for PutMode. 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 (PutMode) Values() []PutMode {
return []PutMode{
"merge",
"overwrite",
}
}
type QuotaPeriodType string
// Enum values for QuotaPeriodType
const (
QuotaPeriodTypeDay QuotaPeriodType = "DAY"
QuotaPeriodTypeWeek QuotaPeriodType = "WEEK"
QuotaPeriodTypeMonth QuotaPeriodType = "MONTH"
)
// Values returns all known values for QuotaPeriodType. 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 (QuotaPeriodType) Values() []QuotaPeriodType {
return []QuotaPeriodType{
"DAY",
"WEEK",
"MONTH",
}
}
type SecurityPolicy string
// Enum values for SecurityPolicy
const (
SecurityPolicyTls10 SecurityPolicy = "TLS_1_0"
SecurityPolicyTls12 SecurityPolicy = "TLS_1_2"
)
// Values returns all known values for SecurityPolicy. 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 (SecurityPolicy) Values() []SecurityPolicy {
return []SecurityPolicy{
"TLS_1_0",
"TLS_1_2",
}
}
type UnauthorizedCacheControlHeaderStrategy string
// Enum values for UnauthorizedCacheControlHeaderStrategy
const (
UnauthorizedCacheControlHeaderStrategyFailWith403 UnauthorizedCacheControlHeaderStrategy = "FAIL_WITH_403"
UnauthorizedCacheControlHeaderStrategySucceedWithResponseHeader UnauthorizedCacheControlHeaderStrategy = "SUCCEED_WITH_RESPONSE_HEADER"
UnauthorizedCacheControlHeaderStrategySucceedWithoutResponseHeader UnauthorizedCacheControlHeaderStrategy = "SUCCEED_WITHOUT_RESPONSE_HEADER"
)
// Values returns all known values for UnauthorizedCacheControlHeaderStrategy.
// 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 (UnauthorizedCacheControlHeaderStrategy) Values() []UnauthorizedCacheControlHeaderStrategy {
return []UnauthorizedCacheControlHeaderStrategy{
"FAIL_WITH_403",
"SUCCEED_WITH_RESPONSE_HEADER",
"SUCCEED_WITHOUT_RESPONSE_HEADER",
}
}
type VpcLinkStatus string
// Enum values for VpcLinkStatus
const (
VpcLinkStatusAvailable VpcLinkStatus = "AVAILABLE"
VpcLinkStatusPending VpcLinkStatus = "PENDING"
VpcLinkStatusDeleting VpcLinkStatus = "DELETING"
VpcLinkStatusFailed VpcLinkStatus = "FAILED"
)
// Values returns all known values for VpcLinkStatus. 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 (VpcLinkStatus) Values() []VpcLinkStatus {
return []VpcLinkStatus{
"AVAILABLE",
"PENDING",
"DELETING",
"FAILED",
}
}
|