// 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", } }