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
|
// Code generated by smithy-go-codegen DO NOT EDIT.
package types
type ConnectionType string
// Enum values for ConnectionType
const (
ConnectionTypeConnectSsh ConnectionType = "CONNECT_SSH"
ConnectionTypeConnectSsm ConnectionType = "CONNECT_SSM"
)
// Values returns all known values for ConnectionType. 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 (ConnectionType) Values() []ConnectionType {
return []ConnectionType{
"CONNECT_SSH",
"CONNECT_SSM",
}
}
type EnvironmentLifecycleStatus string
// Enum values for EnvironmentLifecycleStatus
const (
EnvironmentLifecycleStatusCreating EnvironmentLifecycleStatus = "CREATING"
EnvironmentLifecycleStatusCreated EnvironmentLifecycleStatus = "CREATED"
EnvironmentLifecycleStatusCreateFailed EnvironmentLifecycleStatus = "CREATE_FAILED"
EnvironmentLifecycleStatusDeleting EnvironmentLifecycleStatus = "DELETING"
EnvironmentLifecycleStatusDeleteFailed EnvironmentLifecycleStatus = "DELETE_FAILED"
)
// Values returns all known values for EnvironmentLifecycleStatus. 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 (EnvironmentLifecycleStatus) Values() []EnvironmentLifecycleStatus {
return []EnvironmentLifecycleStatus{
"CREATING",
"CREATED",
"CREATE_FAILED",
"DELETING",
"DELETE_FAILED",
}
}
type EnvironmentStatus string
// Enum values for EnvironmentStatus
const (
EnvironmentStatusError EnvironmentStatus = "error"
EnvironmentStatusCreating EnvironmentStatus = "creating"
EnvironmentStatusConnecting EnvironmentStatus = "connecting"
EnvironmentStatusReady EnvironmentStatus = "ready"
EnvironmentStatusStopping EnvironmentStatus = "stopping"
EnvironmentStatusStopped EnvironmentStatus = "stopped"
EnvironmentStatusDeleting EnvironmentStatus = "deleting"
)
// Values returns all known values for EnvironmentStatus. 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 (EnvironmentStatus) Values() []EnvironmentStatus {
return []EnvironmentStatus{
"error",
"creating",
"connecting",
"ready",
"stopping",
"stopped",
"deleting",
}
}
type EnvironmentType string
// Enum values for EnvironmentType
const (
EnvironmentTypeSsh EnvironmentType = "ssh"
EnvironmentTypeEc2 EnvironmentType = "ec2"
)
// Values returns all known values for EnvironmentType. 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 (EnvironmentType) Values() []EnvironmentType {
return []EnvironmentType{
"ssh",
"ec2",
}
}
type ManagedCredentialsAction string
// Enum values for ManagedCredentialsAction
const (
ManagedCredentialsActionEnable ManagedCredentialsAction = "ENABLE"
ManagedCredentialsActionDisable ManagedCredentialsAction = "DISABLE"
)
// Values returns all known values for ManagedCredentialsAction. 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 (ManagedCredentialsAction) Values() []ManagedCredentialsAction {
return []ManagedCredentialsAction{
"ENABLE",
"DISABLE",
}
}
type ManagedCredentialsStatus string
// Enum values for ManagedCredentialsStatus
const (
ManagedCredentialsStatusEnabledOnCreate ManagedCredentialsStatus = "ENABLED_ON_CREATE"
ManagedCredentialsStatusEnabledByOwner ManagedCredentialsStatus = "ENABLED_BY_OWNER"
ManagedCredentialsStatusDisabledByDefault ManagedCredentialsStatus = "DISABLED_BY_DEFAULT"
ManagedCredentialsStatusDisabledByOwner ManagedCredentialsStatus = "DISABLED_BY_OWNER"
ManagedCredentialsStatusDisabledByCollaborator ManagedCredentialsStatus = "DISABLED_BY_COLLABORATOR"
ManagedCredentialsStatusPendingRemovalByCollaborator ManagedCredentialsStatus = "PENDING_REMOVAL_BY_COLLABORATOR"
ManagedCredentialsStatusPendingStartRemovalByCollaborator ManagedCredentialsStatus = "PENDING_START_REMOVAL_BY_COLLABORATOR"
ManagedCredentialsStatusPendingRemovalByOwner ManagedCredentialsStatus = "PENDING_REMOVAL_BY_OWNER"
ManagedCredentialsStatusPendingStartRemovalByOwner ManagedCredentialsStatus = "PENDING_START_REMOVAL_BY_OWNER"
ManagedCredentialsStatusFailedRemovalByCollaborator ManagedCredentialsStatus = "FAILED_REMOVAL_BY_COLLABORATOR"
ManagedCredentialsStatusFailedRemovalByOwner ManagedCredentialsStatus = "FAILED_REMOVAL_BY_OWNER"
)
// Values returns all known values for ManagedCredentialsStatus. 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 (ManagedCredentialsStatus) Values() []ManagedCredentialsStatus {
return []ManagedCredentialsStatus{
"ENABLED_ON_CREATE",
"ENABLED_BY_OWNER",
"DISABLED_BY_DEFAULT",
"DISABLED_BY_OWNER",
"DISABLED_BY_COLLABORATOR",
"PENDING_REMOVAL_BY_COLLABORATOR",
"PENDING_START_REMOVAL_BY_COLLABORATOR",
"PENDING_REMOVAL_BY_OWNER",
"PENDING_START_REMOVAL_BY_OWNER",
"FAILED_REMOVAL_BY_COLLABORATOR",
"FAILED_REMOVAL_BY_OWNER",
}
}
type MemberPermissions string
// Enum values for MemberPermissions
const (
MemberPermissionsReadWrite MemberPermissions = "read-write"
MemberPermissionsReadOnly MemberPermissions = "read-only"
)
// Values returns all known values for MemberPermissions. 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 (MemberPermissions) Values() []MemberPermissions {
return []MemberPermissions{
"read-write",
"read-only",
}
}
type Permissions string
// Enum values for Permissions
const (
PermissionsOwner Permissions = "owner"
PermissionsReadWrite Permissions = "read-write"
PermissionsReadOnly Permissions = "read-only"
)
// Values returns all known values for Permissions. 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 (Permissions) Values() []Permissions {
return []Permissions{
"owner",
"read-write",
"read-only",
}
}
|