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
|
// Code generated by smithy-go-codegen DO NOT EDIT.
package types
type AuthorizationProviderType string
// Enum values for AuthorizationProviderType
const (
AuthorizationProviderTypeSaml AuthorizationProviderType = "SAML"
)
// Values returns all known values for AuthorizationProviderType. 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 (AuthorizationProviderType) Values() []AuthorizationProviderType {
return []AuthorizationProviderType{
"SAML",
}
}
type DeviceStatus string
// Enum values for DeviceStatus
const (
DeviceStatusActive DeviceStatus = "ACTIVE"
DeviceStatusSignedOut DeviceStatus = "SIGNED_OUT"
)
// Values returns all known values for DeviceStatus. 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 (DeviceStatus) Values() []DeviceStatus {
return []DeviceStatus{
"ACTIVE",
"SIGNED_OUT",
}
}
type DomainStatus string
// Enum values for DomainStatus
const (
DomainStatusPendingValidation DomainStatus = "PENDING_VALIDATION"
DomainStatusAssociating DomainStatus = "ASSOCIATING"
DomainStatusActive DomainStatus = "ACTIVE"
DomainStatusInactive DomainStatus = "INACTIVE"
DomainStatusDisassociating DomainStatus = "DISASSOCIATING"
DomainStatusDisassociated DomainStatus = "DISASSOCIATED"
DomainStatusFailedToAssociate DomainStatus = "FAILED_TO_ASSOCIATE"
DomainStatusFailedToDisassociate DomainStatus = "FAILED_TO_DISASSOCIATE"
)
// Values returns all known values for DomainStatus. 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 (DomainStatus) Values() []DomainStatus {
return []DomainStatus{
"PENDING_VALIDATION",
"ASSOCIATING",
"ACTIVE",
"INACTIVE",
"DISASSOCIATING",
"DISASSOCIATED",
"FAILED_TO_ASSOCIATE",
"FAILED_TO_DISASSOCIATE",
}
}
type FleetStatus string
// Enum values for FleetStatus
const (
FleetStatusCreating FleetStatus = "CREATING"
FleetStatusActive FleetStatus = "ACTIVE"
FleetStatusDeleting FleetStatus = "DELETING"
FleetStatusDeleted FleetStatus = "DELETED"
FleetStatusFailedToCreate FleetStatus = "FAILED_TO_CREATE"
FleetStatusFailedToDelete FleetStatus = "FAILED_TO_DELETE"
)
// Values returns all known values for FleetStatus. 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 (FleetStatus) Values() []FleetStatus {
return []FleetStatus{
"CREATING",
"ACTIVE",
"DELETING",
"DELETED",
"FAILED_TO_CREATE",
"FAILED_TO_DELETE",
}
}
type IdentityProviderType string
// Enum values for IdentityProviderType
const (
IdentityProviderTypeSaml IdentityProviderType = "SAML"
)
// Values returns all known values for IdentityProviderType. 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 (IdentityProviderType) Values() []IdentityProviderType {
return []IdentityProviderType{
"SAML",
}
}
|