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
|
// Code generated by smithy-go-codegen DO NOT EDIT.
package types
type ApplicationLayerAutomaticResponseStatus string
// Enum values for ApplicationLayerAutomaticResponseStatus
const (
ApplicationLayerAutomaticResponseStatusEnabled ApplicationLayerAutomaticResponseStatus = "ENABLED"
ApplicationLayerAutomaticResponseStatusDisabled ApplicationLayerAutomaticResponseStatus = "DISABLED"
)
// Values returns all known values for ApplicationLayerAutomaticResponseStatus.
// 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 (ApplicationLayerAutomaticResponseStatus) Values() []ApplicationLayerAutomaticResponseStatus {
return []ApplicationLayerAutomaticResponseStatus{
"ENABLED",
"DISABLED",
}
}
type AttackLayer string
// Enum values for AttackLayer
const (
AttackLayerNetwork AttackLayer = "NETWORK"
AttackLayerApplication AttackLayer = "APPLICATION"
)
// Values returns all known values for AttackLayer. 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 (AttackLayer) Values() []AttackLayer {
return []AttackLayer{
"NETWORK",
"APPLICATION",
}
}
type AttackPropertyIdentifier string
// Enum values for AttackPropertyIdentifier
const (
AttackPropertyIdentifierDestinationUrl AttackPropertyIdentifier = "DESTINATION_URL"
AttackPropertyIdentifierReferrer AttackPropertyIdentifier = "REFERRER"
AttackPropertyIdentifierSourceAsn AttackPropertyIdentifier = "SOURCE_ASN"
AttackPropertyIdentifierSourceCountry AttackPropertyIdentifier = "SOURCE_COUNTRY"
AttackPropertyIdentifierSourceIpAddress AttackPropertyIdentifier = "SOURCE_IP_ADDRESS"
AttackPropertyIdentifierSourceUserAgent AttackPropertyIdentifier = "SOURCE_USER_AGENT"
AttackPropertyIdentifierWordpressPingbackReflector AttackPropertyIdentifier = "WORDPRESS_PINGBACK_REFLECTOR"
AttackPropertyIdentifierWordpressPingbackSource AttackPropertyIdentifier = "WORDPRESS_PINGBACK_SOURCE"
)
// Values returns all known values for AttackPropertyIdentifier. 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 (AttackPropertyIdentifier) Values() []AttackPropertyIdentifier {
return []AttackPropertyIdentifier{
"DESTINATION_URL",
"REFERRER",
"SOURCE_ASN",
"SOURCE_COUNTRY",
"SOURCE_IP_ADDRESS",
"SOURCE_USER_AGENT",
"WORDPRESS_PINGBACK_REFLECTOR",
"WORDPRESS_PINGBACK_SOURCE",
}
}
type AutoRenew string
// Enum values for AutoRenew
const (
AutoRenewEnabled AutoRenew = "ENABLED"
AutoRenewDisabled AutoRenew = "DISABLED"
)
// Values returns all known values for AutoRenew. 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 (AutoRenew) Values() []AutoRenew {
return []AutoRenew{
"ENABLED",
"DISABLED",
}
}
type ProactiveEngagementStatus string
// Enum values for ProactiveEngagementStatus
const (
ProactiveEngagementStatusEnabled ProactiveEngagementStatus = "ENABLED"
ProactiveEngagementStatusDisabled ProactiveEngagementStatus = "DISABLED"
ProactiveEngagementStatusPending ProactiveEngagementStatus = "PENDING"
)
// Values returns all known values for ProactiveEngagementStatus. 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 (ProactiveEngagementStatus) Values() []ProactiveEngagementStatus {
return []ProactiveEngagementStatus{
"ENABLED",
"DISABLED",
"PENDING",
}
}
type ProtectedResourceType string
// Enum values for ProtectedResourceType
const (
ProtectedResourceTypeCloudfrontDistribution ProtectedResourceType = "CLOUDFRONT_DISTRIBUTION"
ProtectedResourceTypeRoute53HostedZone ProtectedResourceType = "ROUTE_53_HOSTED_ZONE"
ProtectedResourceTypeElasticIpAllocation ProtectedResourceType = "ELASTIC_IP_ALLOCATION"
ProtectedResourceTypeClassicLoadBalancer ProtectedResourceType = "CLASSIC_LOAD_BALANCER"
ProtectedResourceTypeApplicationLoadBalancer ProtectedResourceType = "APPLICATION_LOAD_BALANCER"
ProtectedResourceTypeGlobalAccelerator ProtectedResourceType = "GLOBAL_ACCELERATOR"
)
// Values returns all known values for ProtectedResourceType. 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 (ProtectedResourceType) Values() []ProtectedResourceType {
return []ProtectedResourceType{
"CLOUDFRONT_DISTRIBUTION",
"ROUTE_53_HOSTED_ZONE",
"ELASTIC_IP_ALLOCATION",
"CLASSIC_LOAD_BALANCER",
"APPLICATION_LOAD_BALANCER",
"GLOBAL_ACCELERATOR",
}
}
type ProtectionGroupAggregation string
// Enum values for ProtectionGroupAggregation
const (
ProtectionGroupAggregationSum ProtectionGroupAggregation = "SUM"
ProtectionGroupAggregationMean ProtectionGroupAggregation = "MEAN"
ProtectionGroupAggregationMax ProtectionGroupAggregation = "MAX"
)
// Values returns all known values for ProtectionGroupAggregation. 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 (ProtectionGroupAggregation) Values() []ProtectionGroupAggregation {
return []ProtectionGroupAggregation{
"SUM",
"MEAN",
"MAX",
}
}
type ProtectionGroupPattern string
// Enum values for ProtectionGroupPattern
const (
ProtectionGroupPatternAll ProtectionGroupPattern = "ALL"
ProtectionGroupPatternArbitrary ProtectionGroupPattern = "ARBITRARY"
ProtectionGroupPatternByResourceType ProtectionGroupPattern = "BY_RESOURCE_TYPE"
)
// Values returns all known values for ProtectionGroupPattern. 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 (ProtectionGroupPattern) Values() []ProtectionGroupPattern {
return []ProtectionGroupPattern{
"ALL",
"ARBITRARY",
"BY_RESOURCE_TYPE",
}
}
type SubResourceType string
// Enum values for SubResourceType
const (
SubResourceTypeIp SubResourceType = "IP"
SubResourceTypeUrl SubResourceType = "URL"
)
// Values returns all known values for SubResourceType. 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 (SubResourceType) Values() []SubResourceType {
return []SubResourceType{
"IP",
"URL",
}
}
type SubscriptionState string
// Enum values for SubscriptionState
const (
SubscriptionStateActive SubscriptionState = "ACTIVE"
SubscriptionStateInactive SubscriptionState = "INACTIVE"
)
// Values returns all known values for SubscriptionState. 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 (SubscriptionState) Values() []SubscriptionState {
return []SubscriptionState{
"ACTIVE",
"INACTIVE",
}
}
type Unit string
// Enum values for Unit
const (
UnitBits Unit = "BITS"
UnitBytes Unit = "BYTES"
UnitPackets Unit = "PACKETS"
UnitRequests Unit = "REQUESTS"
)
// Values returns all known values for Unit. 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 (Unit) Values() []Unit {
return []Unit{
"BITS",
"BYTES",
"PACKETS",
"REQUESTS",
}
}
type ValidationExceptionReason string
// Enum values for ValidationExceptionReason
const (
ValidationExceptionReasonFieldValidationFailed ValidationExceptionReason = "FIELD_VALIDATION_FAILED"
ValidationExceptionReasonOther ValidationExceptionReason = "OTHER"
)
// Values returns all known values for ValidationExceptionReason. 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 (ValidationExceptionReason) Values() []ValidationExceptionReason {
return []ValidationExceptionReason{
"FIELD_VALIDATION_FAILED",
"OTHER",
}
}
|