Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@
package software.amazon.jdbc.plugin.customendpoint;

/**
* Enum representing the possible roles of instances specified by a custom endpoint. Note that, currently, it is not
* possible to create a WRITER custom endpoint.
* Enum representing the possible roles of instances specified by a custom endpoint.
*/
public enum CustomEndpointRoleType {
ANY, // Instances in the custom endpoint may be either a writer or a reader.
WRITER, // Instance in the custom endpoint is always the writer.
READER // Instances in the custom endpoint are always readers.
}
Loading