File: enums.go

package info (click to toggle)
golang-github-aws-aws-sdk-go-v2 1.24.1-2~bpo12%2B1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm-backports
  • size: 554,032 kB
  • sloc: java: 15,941; makefile: 419; sh: 175
file content (462 lines) | stat: -rw-r--r-- 18,777 bytes parent folder | download
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
453
454
455
456
457
458
459
460
461
462
// Code generated by smithy-go-codegen DO NOT EDIT.

package types

type AccountRoleStatus string

// Enum values for AccountRoleStatus
const (
	AccountRoleStatusReady           AccountRoleStatus = "READY"
	AccountRoleStatusCreating        AccountRoleStatus = "CREATING"
	AccountRoleStatusPendingDeletion AccountRoleStatus = "PENDING_DELETION"
	AccountRoleStatusDeleting        AccountRoleStatus = "DELETING"
	AccountRoleStatusDeleted         AccountRoleStatus = "DELETED"
)

// Values returns all known values for AccountRoleStatus. 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 (AccountRoleStatus) Values() []AccountRoleStatus {
	return []AccountRoleStatus{
		"READY",
		"CREATING",
		"PENDING_DELETION",
		"DELETING",
		"DELETED",
	}
}

type CustomerPolicyScopeIdType string

// Enum values for CustomerPolicyScopeIdType
const (
	CustomerPolicyScopeIdTypeAccount CustomerPolicyScopeIdType = "ACCOUNT"
	CustomerPolicyScopeIdTypeOrgUnit CustomerPolicyScopeIdType = "ORG_UNIT"
)

// Values returns all known values for CustomerPolicyScopeIdType. 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 (CustomerPolicyScopeIdType) Values() []CustomerPolicyScopeIdType {
	return []CustomerPolicyScopeIdType{
		"ACCOUNT",
		"ORG_UNIT",
	}
}

type CustomerPolicyStatus string

// Enum values for CustomerPolicyStatus
const (
	CustomerPolicyStatusActive          CustomerPolicyStatus = "ACTIVE"
	CustomerPolicyStatusOutOfAdminScope CustomerPolicyStatus = "OUT_OF_ADMIN_SCOPE"
)

// Values returns all known values for CustomerPolicyStatus. 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 (CustomerPolicyStatus) Values() []CustomerPolicyStatus {
	return []CustomerPolicyStatus{
		"ACTIVE",
		"OUT_OF_ADMIN_SCOPE",
	}
}

type DependentServiceName string

// Enum values for DependentServiceName
const (
	DependentServiceNameAWSConfig              DependentServiceName = "AWSCONFIG"
	DependentServiceNameAwswaf                 DependentServiceName = "AWSWAF"
	DependentServiceNameAWSShieldAdvanced      DependentServiceName = "AWSSHIELD_ADVANCED"
	DependentServiceNameAWSVirtualPrivateCloud DependentServiceName = "AWSVPC"
)

// Values returns all known values for DependentServiceName. 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 (DependentServiceName) Values() []DependentServiceName {
	return []DependentServiceName{
		"AWSCONFIG",
		"AWSWAF",
		"AWSSHIELD_ADVANCED",
		"AWSVPC",
	}
}

type DestinationType string

// Enum values for DestinationType
const (
	DestinationTypeIpv4       DestinationType = "IPV4"
	DestinationTypeIpv6       DestinationType = "IPV6"
	DestinationTypePrefixList DestinationType = "PREFIX_LIST"
)

// Values returns all known values for DestinationType. 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 (DestinationType) Values() []DestinationType {
	return []DestinationType{
		"IPV4",
		"IPV6",
		"PREFIX_LIST",
	}
}

type FailedItemReason string

// Enum values for FailedItemReason
const (
	FailedItemReasonNotValidArn          FailedItemReason = "NOT_VALID_ARN"
	FailedItemReasonNotValidPartition    FailedItemReason = "NOT_VALID_PARTITION"
	FailedItemReasonNotValidRegion       FailedItemReason = "NOT_VALID_REGION"
	FailedItemReasonNotValidService      FailedItemReason = "NOT_VALID_SERVICE"
	FailedItemReasonNotValidResourceType FailedItemReason = "NOT_VALID_RESOURCE_TYPE"
	FailedItemReasonNotValidAccountId    FailedItemReason = "NOT_VALID_ACCOUNT_ID"
)

// Values returns all known values for FailedItemReason. 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 (FailedItemReason) Values() []FailedItemReason {
	return []FailedItemReason{
		"NOT_VALID_ARN",
		"NOT_VALID_PARTITION",
		"NOT_VALID_REGION",
		"NOT_VALID_SERVICE",
		"NOT_VALID_RESOURCE_TYPE",
		"NOT_VALID_ACCOUNT_ID",
	}
}

type FirewallDeploymentModel string

// Enum values for FirewallDeploymentModel
const (
	FirewallDeploymentModelCentralized FirewallDeploymentModel = "CENTRALIZED"
	FirewallDeploymentModelDistributed FirewallDeploymentModel = "DISTRIBUTED"
)

// Values returns all known values for FirewallDeploymentModel. 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 (FirewallDeploymentModel) Values() []FirewallDeploymentModel {
	return []FirewallDeploymentModel{
		"CENTRALIZED",
		"DISTRIBUTED",
	}
}

type MarketplaceSubscriptionOnboardingStatus string

// Enum values for MarketplaceSubscriptionOnboardingStatus
const (
	MarketplaceSubscriptionOnboardingStatusNoSubscription MarketplaceSubscriptionOnboardingStatus = "NO_SUBSCRIPTION"
	MarketplaceSubscriptionOnboardingStatusNotComplete    MarketplaceSubscriptionOnboardingStatus = "NOT_COMPLETE"
	MarketplaceSubscriptionOnboardingStatusComplete       MarketplaceSubscriptionOnboardingStatus = "COMPLETE"
)

// Values returns all known values for MarketplaceSubscriptionOnboardingStatus.
// 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 (MarketplaceSubscriptionOnboardingStatus) Values() []MarketplaceSubscriptionOnboardingStatus {
	return []MarketplaceSubscriptionOnboardingStatus{
		"NO_SUBSCRIPTION",
		"NOT_COMPLETE",
		"COMPLETE",
	}
}

type NetworkFirewallOverrideAction string

// Enum values for NetworkFirewallOverrideAction
const (
	NetworkFirewallOverrideActionDropToAlert NetworkFirewallOverrideAction = "DROP_TO_ALERT"
)

// Values returns all known values for NetworkFirewallOverrideAction. 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 (NetworkFirewallOverrideAction) Values() []NetworkFirewallOverrideAction {
	return []NetworkFirewallOverrideAction{
		"DROP_TO_ALERT",
	}
}

type OrganizationStatus string

// Enum values for OrganizationStatus
const (
	OrganizationStatusOnboarding          OrganizationStatus = "ONBOARDING"
	OrganizationStatusOnboardingComplete  OrganizationStatus = "ONBOARDING_COMPLETE"
	OrganizationStatusOffboarding         OrganizationStatus = "OFFBOARDING"
	OrganizationStatusOffboardingComplete OrganizationStatus = "OFFBOARDING_COMPLETE"
)

// Values returns all known values for OrganizationStatus. 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 (OrganizationStatus) Values() []OrganizationStatus {
	return []OrganizationStatus{
		"ONBOARDING",
		"ONBOARDING_COMPLETE",
		"OFFBOARDING",
		"OFFBOARDING_COMPLETE",
	}
}

type PolicyComplianceStatusType string

// Enum values for PolicyComplianceStatusType
const (
	PolicyComplianceStatusTypeCompliant    PolicyComplianceStatusType = "COMPLIANT"
	PolicyComplianceStatusTypeNonCompliant PolicyComplianceStatusType = "NON_COMPLIANT"
)

// Values returns all known values for PolicyComplianceStatusType. 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 (PolicyComplianceStatusType) Values() []PolicyComplianceStatusType {
	return []PolicyComplianceStatusType{
		"COMPLIANT",
		"NON_COMPLIANT",
	}
}

type RemediationActionType string

// Enum values for RemediationActionType
const (
	RemediationActionTypeRemove RemediationActionType = "REMOVE"
	RemediationActionTypeModify RemediationActionType = "MODIFY"
)

// Values returns all known values for RemediationActionType. 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 (RemediationActionType) Values() []RemediationActionType {
	return []RemediationActionType{
		"REMOVE",
		"MODIFY",
	}
}

type ResourceSetStatus string

// Enum values for ResourceSetStatus
const (
	ResourceSetStatusActive          ResourceSetStatus = "ACTIVE"
	ResourceSetStatusOutOfAdminScope ResourceSetStatus = "OUT_OF_ADMIN_SCOPE"
)

// Values returns all known values for ResourceSetStatus. 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 (ResourceSetStatus) Values() []ResourceSetStatus {
	return []ResourceSetStatus{
		"ACTIVE",
		"OUT_OF_ADMIN_SCOPE",
	}
}

type RuleOrder string

// Enum values for RuleOrder
const (
	RuleOrderStrictOrder        RuleOrder = "STRICT_ORDER"
	RuleOrderDefaultActionOrder RuleOrder = "DEFAULT_ACTION_ORDER"
)

// Values returns all known values for RuleOrder. 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 (RuleOrder) Values() []RuleOrder {
	return []RuleOrder{
		"STRICT_ORDER",
		"DEFAULT_ACTION_ORDER",
	}
}

type SecurityServiceType string

// Enum values for SecurityServiceType
const (
	SecurityServiceTypeWaf                        SecurityServiceType = "WAF"
	SecurityServiceTypeWafv2                      SecurityServiceType = "WAFV2"
	SecurityServiceTypeShieldAdvanced             SecurityServiceType = "SHIELD_ADVANCED"
	SecurityServiceTypeSecurityGroupsCommon       SecurityServiceType = "SECURITY_GROUPS_COMMON"
	SecurityServiceTypeSecurityGroupsContentAudit SecurityServiceType = "SECURITY_GROUPS_CONTENT_AUDIT"
	SecurityServiceTypeSecurityGroupsUsageAudit   SecurityServiceType = "SECURITY_GROUPS_USAGE_AUDIT"
	SecurityServiceTypeNetworkFirewall            SecurityServiceType = "NETWORK_FIREWALL"
	SecurityServiceTypeDnsFirewall                SecurityServiceType = "DNS_FIREWALL"
	SecurityServiceTypeThirdPartyFirewall         SecurityServiceType = "THIRD_PARTY_FIREWALL"
	SecurityServiceTypeImportNetworkFirewall      SecurityServiceType = "IMPORT_NETWORK_FIREWALL"
)

// Values returns all known values for SecurityServiceType. 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 (SecurityServiceType) Values() []SecurityServiceType {
	return []SecurityServiceType{
		"WAF",
		"WAFV2",
		"SHIELD_ADVANCED",
		"SECURITY_GROUPS_COMMON",
		"SECURITY_GROUPS_CONTENT_AUDIT",
		"SECURITY_GROUPS_USAGE_AUDIT",
		"NETWORK_FIREWALL",
		"DNS_FIREWALL",
		"THIRD_PARTY_FIREWALL",
		"IMPORT_NETWORK_FIREWALL",
	}
}

type TargetType string

// Enum values for TargetType
const (
	TargetTypeGateway                   TargetType = "GATEWAY"
	TargetTypeCarrierGateway            TargetType = "CARRIER_GATEWAY"
	TargetTypeInstance                  TargetType = "INSTANCE"
	TargetTypeLocalGateway              TargetType = "LOCAL_GATEWAY"
	TargetTypeNatGateway                TargetType = "NAT_GATEWAY"
	TargetTypeNetworkInterface          TargetType = "NETWORK_INTERFACE"
	TargetTypeVPCEndpoint               TargetType = "VPC_ENDPOINT"
	TargetTypeVPCPeeringConnection      TargetType = "VPC_PEERING_CONNECTION"
	TargetTypeEgressOnlyInternetGateway TargetType = "EGRESS_ONLY_INTERNET_GATEWAY"
	TargetTypeTransitGateway            TargetType = "TRANSIT_GATEWAY"
)

// Values returns all known values for TargetType. 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 (TargetType) Values() []TargetType {
	return []TargetType{
		"GATEWAY",
		"CARRIER_GATEWAY",
		"INSTANCE",
		"LOCAL_GATEWAY",
		"NAT_GATEWAY",
		"NETWORK_INTERFACE",
		"VPC_ENDPOINT",
		"VPC_PEERING_CONNECTION",
		"EGRESS_ONLY_INTERNET_GATEWAY",
		"TRANSIT_GATEWAY",
	}
}

type ThirdPartyFirewall string

// Enum values for ThirdPartyFirewall
const (
	ThirdPartyFirewallPaloAltoNetworksCloudNgfw    ThirdPartyFirewall = "PALO_ALTO_NETWORKS_CLOUD_NGFW"
	ThirdPartyFirewallFortigateCloudNativeFirewall ThirdPartyFirewall = "FORTIGATE_CLOUD_NATIVE_FIREWALL"
)

// Values returns all known values for ThirdPartyFirewall. 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 (ThirdPartyFirewall) Values() []ThirdPartyFirewall {
	return []ThirdPartyFirewall{
		"PALO_ALTO_NETWORKS_CLOUD_NGFW",
		"FORTIGATE_CLOUD_NATIVE_FIREWALL",
	}
}

type ThirdPartyFirewallAssociationStatus string

// Enum values for ThirdPartyFirewallAssociationStatus
const (
	ThirdPartyFirewallAssociationStatusOnboarding       ThirdPartyFirewallAssociationStatus = "ONBOARDING"
	ThirdPartyFirewallAssociationStatusOnboardComplete  ThirdPartyFirewallAssociationStatus = "ONBOARD_COMPLETE"
	ThirdPartyFirewallAssociationStatusOffboarding      ThirdPartyFirewallAssociationStatus = "OFFBOARDING"
	ThirdPartyFirewallAssociationStatusOffboardComplete ThirdPartyFirewallAssociationStatus = "OFFBOARD_COMPLETE"
	ThirdPartyFirewallAssociationStatusNotExist         ThirdPartyFirewallAssociationStatus = "NOT_EXIST"
)

// Values returns all known values for ThirdPartyFirewallAssociationStatus. 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 (ThirdPartyFirewallAssociationStatus) Values() []ThirdPartyFirewallAssociationStatus {
	return []ThirdPartyFirewallAssociationStatus{
		"ONBOARDING",
		"ONBOARD_COMPLETE",
		"OFFBOARDING",
		"OFFBOARD_COMPLETE",
		"NOT_EXIST",
	}
}

type ViolationReason string

// Enum values for ViolationReason
const (
	ViolationReasonWebAclMissingRuleGroup                  ViolationReason = "WEB_ACL_MISSING_RULE_GROUP"
	ViolationReasonResourceMissingWebAcl                   ViolationReason = "RESOURCE_MISSING_WEB_ACL"
	ViolationReasonResourceIncorrectWebAcl                 ViolationReason = "RESOURCE_INCORRECT_WEB_ACL"
	ViolationReasonResourceMissingShieldProtection         ViolationReason = "RESOURCE_MISSING_SHIELD_PROTECTION"
	ViolationReasonResourceMissingWebaclOrShieldProtection ViolationReason = "RESOURCE_MISSING_WEB_ACL_OR_SHIELD_PROTECTION"
	ViolationReasonResourceMissingSecurityGroup            ViolationReason = "RESOURCE_MISSING_SECURITY_GROUP"
	ViolationReasonResourceViolatesAuditSecurityGroup      ViolationReason = "RESOURCE_VIOLATES_AUDIT_SECURITY_GROUP"
	ViolationReasonSecurityGroupUnused                     ViolationReason = "SECURITY_GROUP_UNUSED"
	ViolationReasonSecurityGroupRedundant                  ViolationReason = "SECURITY_GROUP_REDUNDANT"
	ViolationReasonFMSCreatedSecurityGroupEdited           ViolationReason = "FMS_CREATED_SECURITY_GROUP_EDITED"
	ViolationReasonMissingFirewall                         ViolationReason = "MISSING_FIREWALL"
	ViolationReasonMissingFirewallSubnetInAZ               ViolationReason = "MISSING_FIREWALL_SUBNET_IN_AZ"
	ViolationReasonMissingExpectedRouteTable               ViolationReason = "MISSING_EXPECTED_ROUTE_TABLE"
	ViolationReasonNetworkFirewallPolicyModified           ViolationReason = "NETWORK_FIREWALL_POLICY_MODIFIED"
	ViolationReasonFirewallSubnetIsOutOfScope              ViolationReason = "FIREWALL_SUBNET_IS_OUT_OF_SCOPE"
	ViolationReasonInternetGatewayMissingExpectedRoute     ViolationReason = "INTERNET_GATEWAY_MISSING_EXPECTED_ROUTE"
	ViolationReasonFirewallSubnetMissingExpectedRoute      ViolationReason = "FIREWALL_SUBNET_MISSING_EXPECTED_ROUTE"
	ViolationReasonUnexpectedFirewallRoutes                ViolationReason = "UNEXPECTED_FIREWALL_ROUTES"
	ViolationReasonUnexpectedTargetGatewayRoutes           ViolationReason = "UNEXPECTED_TARGET_GATEWAY_ROUTES"
	ViolationReasonTrafficInspectionCrossesAZBoundary      ViolationReason = "TRAFFIC_INSPECTION_CROSSES_AZ_BOUNDARY"
	ViolationReasonInvalidRouteConfiguration               ViolationReason = "INVALID_ROUTE_CONFIGURATION"
	ViolationReasonMissingTargetGateway                    ViolationReason = "MISSING_TARGET_GATEWAY"
	ViolationReasonInternetTrafficNotInspected             ViolationReason = "INTERNET_TRAFFIC_NOT_INSPECTED"
	ViolationReasonBlackHoleRouteDetected                  ViolationReason = "BLACK_HOLE_ROUTE_DETECTED"
	ViolationReasonBlackHoleRouteDetectedInFirewallSubnet  ViolationReason = "BLACK_HOLE_ROUTE_DETECTED_IN_FIREWALL_SUBNET"
	ViolationReasonResourceMissingDnsFirewall              ViolationReason = "RESOURCE_MISSING_DNS_FIREWALL"
	ViolationReasonRouteHasOutOfScopeEndpoint              ViolationReason = "ROUTE_HAS_OUT_OF_SCOPE_ENDPOINT"
	ViolationReasonFirewallSubnetMissingVPCEndpoint        ViolationReason = "FIREWALL_SUBNET_MISSING_VPCE_ENDPOINT"
)

// Values returns all known values for ViolationReason. 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 (ViolationReason) Values() []ViolationReason {
	return []ViolationReason{
		"WEB_ACL_MISSING_RULE_GROUP",
		"RESOURCE_MISSING_WEB_ACL",
		"RESOURCE_INCORRECT_WEB_ACL",
		"RESOURCE_MISSING_SHIELD_PROTECTION",
		"RESOURCE_MISSING_WEB_ACL_OR_SHIELD_PROTECTION",
		"RESOURCE_MISSING_SECURITY_GROUP",
		"RESOURCE_VIOLATES_AUDIT_SECURITY_GROUP",
		"SECURITY_GROUP_UNUSED",
		"SECURITY_GROUP_REDUNDANT",
		"FMS_CREATED_SECURITY_GROUP_EDITED",
		"MISSING_FIREWALL",
		"MISSING_FIREWALL_SUBNET_IN_AZ",
		"MISSING_EXPECTED_ROUTE_TABLE",
		"NETWORK_FIREWALL_POLICY_MODIFIED",
		"FIREWALL_SUBNET_IS_OUT_OF_SCOPE",
		"INTERNET_GATEWAY_MISSING_EXPECTED_ROUTE",
		"FIREWALL_SUBNET_MISSING_EXPECTED_ROUTE",
		"UNEXPECTED_FIREWALL_ROUTES",
		"UNEXPECTED_TARGET_GATEWAY_ROUTES",
		"TRAFFIC_INSPECTION_CROSSES_AZ_BOUNDARY",
		"INVALID_ROUTE_CONFIGURATION",
		"MISSING_TARGET_GATEWAY",
		"INTERNET_TRAFFIC_NOT_INSPECTED",
		"BLACK_HOLE_ROUTE_DETECTED",
		"BLACK_HOLE_ROUTE_DETECTED_IN_FIREWALL_SUBNET",
		"RESOURCE_MISSING_DNS_FIREWALL",
		"ROUTE_HAS_OUT_OF_SCOPE_ENDPOINT",
		"FIREWALL_SUBNET_MISSING_VPCE_ENDPOINT",
	}
}