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
|
// Code generated by smithy-go-codegen DO NOT EDIT.
package types
type BulkPublishStatus string
// Enum values for BulkPublishStatus
const (
BulkPublishStatusNotStarted BulkPublishStatus = "NOT_STARTED"
BulkPublishStatusInProgress BulkPublishStatus = "IN_PROGRESS"
BulkPublishStatusFailed BulkPublishStatus = "FAILED"
BulkPublishStatusSucceeded BulkPublishStatus = "SUCCEEDED"
)
// Values returns all known values for BulkPublishStatus. 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 (BulkPublishStatus) Values() []BulkPublishStatus {
return []BulkPublishStatus{
"NOT_STARTED",
"IN_PROGRESS",
"FAILED",
"SUCCEEDED",
}
}
type Operation string
// Enum values for Operation
const (
OperationReplace Operation = "replace"
OperationRemove Operation = "remove"
)
// Values returns all known values for Operation. 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 (Operation) Values() []Operation {
return []Operation{
"replace",
"remove",
}
}
type Platform string
// Enum values for Platform
const (
PlatformApns Platform = "APNS"
PlatformApnsSandbox Platform = "APNS_SANDBOX"
PlatformGcm Platform = "GCM"
PlatformAdm Platform = "ADM"
)
// Values returns all known values for Platform. 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 (Platform) Values() []Platform {
return []Platform{
"APNS",
"APNS_SANDBOX",
"GCM",
"ADM",
}
}
type StreamingStatus string
// Enum values for StreamingStatus
const (
StreamingStatusEnabled StreamingStatus = "ENABLED"
StreamingStatusDisabled StreamingStatus = "DISABLED"
)
// Values returns all known values for StreamingStatus. 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 (StreamingStatus) Values() []StreamingStatus {
return []StreamingStatus{
"ENABLED",
"DISABLED",
}
}
|