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
|
// Code generated by smithy-go-codegen DO NOT EDIT.
package types
type BehaviorOnMxFailure string
// Enum values for BehaviorOnMxFailure
const (
BehaviorOnMxFailureUseDefaultValue BehaviorOnMxFailure = "USE_DEFAULT_VALUE"
BehaviorOnMxFailureRejectMessage BehaviorOnMxFailure = "REJECT_MESSAGE"
)
// Values returns all known values for BehaviorOnMxFailure. 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 (BehaviorOnMxFailure) Values() []BehaviorOnMxFailure {
return []BehaviorOnMxFailure{
"USE_DEFAULT_VALUE",
"REJECT_MESSAGE",
}
}
type DeliverabilityDashboardAccountStatus string
// Enum values for DeliverabilityDashboardAccountStatus
const (
DeliverabilityDashboardAccountStatusActive DeliverabilityDashboardAccountStatus = "ACTIVE"
DeliverabilityDashboardAccountStatusPendingExpiration DeliverabilityDashboardAccountStatus = "PENDING_EXPIRATION"
DeliverabilityDashboardAccountStatusDisabled DeliverabilityDashboardAccountStatus = "DISABLED"
)
// Values returns all known values for DeliverabilityDashboardAccountStatus. 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 (DeliverabilityDashboardAccountStatus) Values() []DeliverabilityDashboardAccountStatus {
return []DeliverabilityDashboardAccountStatus{
"ACTIVE",
"PENDING_EXPIRATION",
"DISABLED",
}
}
type DeliverabilityTestStatus string
// Enum values for DeliverabilityTestStatus
const (
DeliverabilityTestStatusInProgress DeliverabilityTestStatus = "IN_PROGRESS"
DeliverabilityTestStatusCompleted DeliverabilityTestStatus = "COMPLETED"
)
// Values returns all known values for DeliverabilityTestStatus. 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 (DeliverabilityTestStatus) Values() []DeliverabilityTestStatus {
return []DeliverabilityTestStatus{
"IN_PROGRESS",
"COMPLETED",
}
}
type DimensionValueSource string
// Enum values for DimensionValueSource
const (
DimensionValueSourceMessageTag DimensionValueSource = "MESSAGE_TAG"
DimensionValueSourceEmailHeader DimensionValueSource = "EMAIL_HEADER"
DimensionValueSourceLinkTag DimensionValueSource = "LINK_TAG"
)
// Values returns all known values for DimensionValueSource. 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 (DimensionValueSource) Values() []DimensionValueSource {
return []DimensionValueSource{
"MESSAGE_TAG",
"EMAIL_HEADER",
"LINK_TAG",
}
}
type DkimStatus string
// Enum values for DkimStatus
const (
DkimStatusPending DkimStatus = "PENDING"
DkimStatusSuccess DkimStatus = "SUCCESS"
DkimStatusFailed DkimStatus = "FAILED"
DkimStatusTemporaryFailure DkimStatus = "TEMPORARY_FAILURE"
DkimStatusNotStarted DkimStatus = "NOT_STARTED"
)
// Values returns all known values for DkimStatus. 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 (DkimStatus) Values() []DkimStatus {
return []DkimStatus{
"PENDING",
"SUCCESS",
"FAILED",
"TEMPORARY_FAILURE",
"NOT_STARTED",
}
}
type EventType string
// Enum values for EventType
const (
EventTypeSend EventType = "SEND"
EventTypeReject EventType = "REJECT"
EventTypeBounce EventType = "BOUNCE"
EventTypeComplaint EventType = "COMPLAINT"
EventTypeDelivery EventType = "DELIVERY"
EventTypeOpen EventType = "OPEN"
EventTypeClick EventType = "CLICK"
EventTypeRenderingFailure EventType = "RENDERING_FAILURE"
)
// Values returns all known values for EventType. 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 (EventType) Values() []EventType {
return []EventType{
"SEND",
"REJECT",
"BOUNCE",
"COMPLAINT",
"DELIVERY",
"OPEN",
"CLICK",
"RENDERING_FAILURE",
}
}
type IdentityType string
// Enum values for IdentityType
const (
IdentityTypeEmailAddress IdentityType = "EMAIL_ADDRESS"
IdentityTypeDomain IdentityType = "DOMAIN"
IdentityTypeManagedDomain IdentityType = "MANAGED_DOMAIN"
)
// Values returns all known values for IdentityType. 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 (IdentityType) Values() []IdentityType {
return []IdentityType{
"EMAIL_ADDRESS",
"DOMAIN",
"MANAGED_DOMAIN",
}
}
type MailFromDomainStatus string
// Enum values for MailFromDomainStatus
const (
MailFromDomainStatusPending MailFromDomainStatus = "PENDING"
MailFromDomainStatusSuccess MailFromDomainStatus = "SUCCESS"
MailFromDomainStatusFailed MailFromDomainStatus = "FAILED"
MailFromDomainStatusTemporaryFailure MailFromDomainStatus = "TEMPORARY_FAILURE"
)
// Values returns all known values for MailFromDomainStatus. 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 (MailFromDomainStatus) Values() []MailFromDomainStatus {
return []MailFromDomainStatus{
"PENDING",
"SUCCESS",
"FAILED",
"TEMPORARY_FAILURE",
}
}
type TlsPolicy string
// Enum values for TlsPolicy
const (
TlsPolicyRequire TlsPolicy = "REQUIRE"
TlsPolicyOptional TlsPolicy = "OPTIONAL"
)
// Values returns all known values for TlsPolicy. 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 (TlsPolicy) Values() []TlsPolicy {
return []TlsPolicy{
"REQUIRE",
"OPTIONAL",
}
}
type WarmupStatus string
// Enum values for WarmupStatus
const (
WarmupStatusInProgress WarmupStatus = "IN_PROGRESS"
WarmupStatusDone WarmupStatus = "DONE"
)
// Values returns all known values for WarmupStatus. 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 (WarmupStatus) Values() []WarmupStatus {
return []WarmupStatus{
"IN_PROGRESS",
"DONE",
}
}
|