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
|
// Code generated by smithy-go-codegen DO NOT EDIT.
package types
type Category string
// Enum values for Category
const (
CategoryAWSIoT Category = "AWSIoT"
)
// Values returns all known values for Category. 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 (Category) Values() []Category {
return []Category{
"AWSIoT",
}
}
type EncryptionAlgorithm string
// Enum values for EncryptionAlgorithm
const (
EncryptionAlgorithmRsa EncryptionAlgorithm = "RSA"
EncryptionAlgorithmEcdsa EncryptionAlgorithm = "ECDSA"
)
// Values returns all known values for EncryptionAlgorithm. 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 (EncryptionAlgorithm) Values() []EncryptionAlgorithm {
return []EncryptionAlgorithm{
"RSA",
"ECDSA",
}
}
type HashAlgorithm string
// Enum values for HashAlgorithm
const (
HashAlgorithmSha1 HashAlgorithm = "SHA1"
HashAlgorithmSha256 HashAlgorithm = "SHA256"
)
// Values returns all known values for HashAlgorithm. 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 (HashAlgorithm) Values() []HashAlgorithm {
return []HashAlgorithm{
"SHA1",
"SHA256",
}
}
type ImageFormat string
// Enum values for ImageFormat
const (
ImageFormatJson ImageFormat = "JSON"
ImageFormatJSONEmbedded ImageFormat = "JSONEmbedded"
ImageFormatJSONDetached ImageFormat = "JSONDetached"
)
// Values returns all known values for ImageFormat. 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 (ImageFormat) Values() []ImageFormat {
return []ImageFormat{
"JSON",
"JSONEmbedded",
"JSONDetached",
}
}
type SigningProfileStatus string
// Enum values for SigningProfileStatus
const (
SigningProfileStatusActive SigningProfileStatus = "Active"
SigningProfileStatusCanceled SigningProfileStatus = "Canceled"
SigningProfileStatusRevoked SigningProfileStatus = "Revoked"
)
// Values returns all known values for SigningProfileStatus. 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 (SigningProfileStatus) Values() []SigningProfileStatus {
return []SigningProfileStatus{
"Active",
"Canceled",
"Revoked",
}
}
type SigningStatus string
// Enum values for SigningStatus
const (
SigningStatusInProgress SigningStatus = "InProgress"
SigningStatusFailed SigningStatus = "Failed"
SigningStatusSucceeded SigningStatus = "Succeeded"
)
// Values returns all known values for SigningStatus. 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 (SigningStatus) Values() []SigningStatus {
return []SigningStatus{
"InProgress",
"Failed",
"Succeeded",
}
}
type ValidityType string
// Enum values for ValidityType
const (
ValidityTypeDays ValidityType = "DAYS"
ValidityTypeMonths ValidityType = "MONTHS"
ValidityTypeYears ValidityType = "YEARS"
)
// Values returns all known values for ValidityType. 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 (ValidityType) Values() []ValidityType {
return []ValidityType{
"DAYS",
"MONTHS",
"YEARS",
}
}
|