// Code generated by smithy-go-codegen DO NOT EDIT. package types type ConnectionStatus string // Enum values for ConnectionStatus const ( ConnectionStatusPending ConnectionStatus = "PENDING" ConnectionStatusAvailable ConnectionStatus = "AVAILABLE" ConnectionStatusError ConnectionStatus = "ERROR" ) // Values returns all known values for ConnectionStatus. 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 (ConnectionStatus) Values() []ConnectionStatus { return []ConnectionStatus{ "PENDING", "AVAILABLE", "ERROR", } } type ProviderType string // Enum values for ProviderType const ( ProviderTypeBitbucket ProviderType = "Bitbucket" ProviderTypeGithub ProviderType = "GitHub" ProviderTypeGithubEnterpriseServer ProviderType = "GitHubEnterpriseServer" ) // Values returns all known values for ProviderType. 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 (ProviderType) Values() []ProviderType { return []ProviderType{ "Bitbucket", "GitHub", "GitHubEnterpriseServer", } }