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
|
// Code generated by smithy-go-codegen DO NOT EDIT.
package types
type AuthorizationType string
// Enum values for AuthorizationType
const (
AuthorizationTypeNone AuthorizationType = "NONE"
AuthorizationTypeAwsIam AuthorizationType = "AWS_IAM"
AuthorizationTypeCustom AuthorizationType = "CUSTOM"
AuthorizationTypeJwt AuthorizationType = "JWT"
)
// Values returns all known values for AuthorizationType. 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 (AuthorizationType) Values() []AuthorizationType {
return []AuthorizationType{
"NONE",
"AWS_IAM",
"CUSTOM",
"JWT",
}
}
type AuthorizerType string
// Enum values for AuthorizerType
const (
AuthorizerTypeRequest AuthorizerType = "REQUEST"
AuthorizerTypeJwt AuthorizerType = "JWT"
)
// 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{
"REQUEST",
"JWT",
}
}
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 DeploymentStatus string
// Enum values for DeploymentStatus
const (
DeploymentStatusPending DeploymentStatus = "PENDING"
DeploymentStatusFailed DeploymentStatus = "FAILED"
DeploymentStatusDeployed DeploymentStatus = "DEPLOYED"
)
// Values returns all known values for DeploymentStatus. 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 (DeploymentStatus) Values() []DeploymentStatus {
return []DeploymentStatus{
"PENDING",
"FAILED",
"DEPLOYED",
}
}
type DomainNameStatus string
// Enum values for DomainNameStatus
const (
DomainNameStatusAvailable DomainNameStatus = "AVAILABLE"
DomainNameStatusUpdating DomainNameStatus = "UPDATING"
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_CERTIFICATE_REIMPORT",
"PENDING_OWNERSHIP_VERIFICATION",
}
}
type EndpointType string
// Enum values for EndpointType
const (
EndpointTypeRegional EndpointType = "REGIONAL"
EndpointTypeEdge EndpointType = "EDGE"
)
// 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",
}
}
type IntegrationType string
// Enum values for IntegrationType
const (
IntegrationTypeAws IntegrationType = "AWS"
IntegrationTypeHttp IntegrationType = "HTTP"
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{
"AWS",
"HTTP",
"MOCK",
"HTTP_PROXY",
"AWS_PROXY",
}
}
type LoggingLevel string
// Enum values for LoggingLevel
const (
LoggingLevelError LoggingLevel = "ERROR"
LoggingLevelInfo LoggingLevel = "INFO"
LoggingLevelOff LoggingLevel = "OFF"
)
// Values returns all known values for LoggingLevel. 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 (LoggingLevel) Values() []LoggingLevel {
return []LoggingLevel{
"ERROR",
"INFO",
"OFF",
}
}
type PassthroughBehavior string
// Enum values for PassthroughBehavior
const (
PassthroughBehaviorWhenNoMatch PassthroughBehavior = "WHEN_NO_MATCH"
PassthroughBehaviorNever PassthroughBehavior = "NEVER"
PassthroughBehaviorWhenNoTemplates PassthroughBehavior = "WHEN_NO_TEMPLATES"
)
// Values returns all known values for PassthroughBehavior. 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 (PassthroughBehavior) Values() []PassthroughBehavior {
return []PassthroughBehavior{
"WHEN_NO_MATCH",
"NEVER",
"WHEN_NO_TEMPLATES",
}
}
type ProtocolType string
// Enum values for ProtocolType
const (
ProtocolTypeWebsocket ProtocolType = "WEBSOCKET"
ProtocolTypeHttp ProtocolType = "HTTP"
)
// Values returns all known values for ProtocolType. 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 (ProtocolType) Values() []ProtocolType {
return []ProtocolType{
"WEBSOCKET",
"HTTP",
}
}
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 VpcLinkStatus string
// Enum values for VpcLinkStatus
const (
VpcLinkStatusPending VpcLinkStatus = "PENDING"
VpcLinkStatusAvailable VpcLinkStatus = "AVAILABLE"
VpcLinkStatusDeleting VpcLinkStatus = "DELETING"
VpcLinkStatusFailed VpcLinkStatus = "FAILED"
VpcLinkStatusInactive VpcLinkStatus = "INACTIVE"
)
// 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{
"PENDING",
"AVAILABLE",
"DELETING",
"FAILED",
"INACTIVE",
}
}
type VpcLinkVersion string
// Enum values for VpcLinkVersion
const (
VpcLinkVersionV2 VpcLinkVersion = "V2"
)
// Values returns all known values for VpcLinkVersion. 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 (VpcLinkVersion) Values() []VpcLinkVersion {
return []VpcLinkVersion{
"V2",
}
}
|