diff --git a/data-prepper-plugins/date-processor/src/main/java/org/opensearch/dataprepper/plugins/processor/date/DateProcessorConfig.java b/data-prepper-plugins/date-processor/src/main/java/org/opensearch/dataprepper/plugins/processor/date/DateProcessorConfig.java
index bf2a45756c..72f8ab0e19 100644
--- a/data-prepper-plugins/date-processor/src/main/java/org/opensearch/dataprepper/plugins/processor/date/DateProcessorConfig.java
+++ b/data-prepper-plugins/date-processor/src/main/java/org/opensearch/dataprepper/plugins/processor/date/DateProcessorConfig.java
@@ -132,22 +132,22 @@ public static boolean isValidPattern(final String pattern) {
@JsonPropertyDescription("The time zone used to parse dates, including when the zone or offset cannot be extracted " +
"from the value. If the zone or offset are part of the value, then the time zone is ignored. " +
"A list of all the available time zones is contained in the TZ database name column of " +
- "(https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List).")
+ "this table.")
private String sourceTimezone = DEFAULT_SOURCE_TIMEZONE;
@JsonProperty("destination_timezone")
@JsonPropertyDescription("The time zone used for storing the timestamp in the destination
field. " +
"A list of all the available time zones is contained in the TZ database name column of " +
- "(https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List).")
+ "this table.")
private String destinationTimezone = DEFAULT_DESTINATION_TIMEZONE;
@JsonProperty("locale")
@JsonPropertyDescription("The location used for parsing dates. Commonly used for parsing month names (MMM
). " +
"The value can contain language, country, or variant fields in IETF BCP 47, such as en-US
, " +
"or a string representation of the " +
- "locale (https://docs.oracle.com/javase/8/docs/api/java/util/Locale.html) object, such as en_US
. " +
- "A full list of locale fields, including language, country, and variant, can be found in " +
- "(https://www.iana.org/assignments/language-subtag-registry/language-subtag-registry). " +
+ "locale object, such as en_US
. " +
+ "A full list of locale fields, including language, country, and variant, can be found " +
+ "here."
"Default is Locale.ROOT
.")
private String locale;
diff --git a/data-prepper-plugins/dissect-processor/src/main/java/org/opensearch/dataprepper/plugins/processor/dissect/DissectProcessorConfig.java b/data-prepper-plugins/dissect-processor/src/main/java/org/opensearch/dataprepper/plugins/processor/dissect/DissectProcessorConfig.java
index 50e023b0e1..1cd2b34325 100644
--- a/data-prepper-plugins/dissect-processor/src/main/java/org/opensearch/dataprepper/plugins/processor/dissect/DissectProcessorConfig.java
+++ b/data-prepper-plugins/dissect-processor/src/main/java/org/opensearch/dataprepper/plugins/processor/dissect/DissectProcessorConfig.java
@@ -19,7 +19,7 @@ public class DissectProcessorConfig {
@JsonPropertyDescription("Defines the dissect
patterns for specific keys. " +
"Each key is a field name, and the value is the dissect pattern to use for dissecting it. " +
"For details on how to define fields in the dissect
pattern, see " +
- "here. " +
+ "here. " +
"An example dissect pattern is %{Date} %{Time} %{Log_Type}: %{Message}
, which will dissect into four fields.")
private Map map;
diff --git a/data-prepper-plugins/mutate-event-processors/src/main/java/org/opensearch/dataprepper/plugins/processor/mutateevent/DeleteEntryProcessorConfig.java b/data-prepper-plugins/mutate-event-processors/src/main/java/org/opensearch/dataprepper/plugins/processor/mutateevent/DeleteEntryProcessorConfig.java
index 6ebc7ae106..f8a2b07513 100644
--- a/data-prepper-plugins/mutate-event-processors/src/main/java/org/opensearch/dataprepper/plugins/processor/mutateevent/DeleteEntryProcessorConfig.java
+++ b/data-prepper-plugins/mutate-event-processors/src/main/java/org/opensearch/dataprepper/plugins/processor/mutateevent/DeleteEntryProcessorConfig.java
@@ -19,7 +19,7 @@
@JsonPropertyOrder
@JsonClassDescription("The delete_entries
processor deletes fields from events. " +
- "You can define the keys you want to delete in the with_keys
configuration." +
+ "You can define the keys you want to delete in the with_keys
configuration. " +
"Those keys and their values are deleted from events.")
public class DeleteEntryProcessorConfig {
@NotEmpty