diff --git a/src/rpdk/core/project.py b/src/rpdk/core/project.py
index 626266513..80a7ef117 100644
--- a/src/rpdk/core/project.py
+++ b/src/rpdk/core/project.py
@@ -648,7 +648,11 @@ def _set_docs_properties( # noqa: C901
and proppath_ptr in self.schema["createOnlyProperties"]
):
prop["createonly"] = True
-
+ if (
+ "conditionalCreateOnlyProperties" in self.schema
+ and proppath_ptr in self.schema["conditionalCreateOnlyProperties"]
+ ):
+ prop["conditionalCreateOnly"] = True
if (
"readOnlyProperties" in self.schema
and proppath_ptr in self.schema["readOnlyProperties"]
diff --git a/src/rpdk/core/templates/docs-readme.md b/src/rpdk/core/templates/docs-readme.md
index eabb294ef..fe98236aa 100644
--- a/src/rpdk/core/templates/docs-readme.md
+++ b/src/rpdk/core/templates/docs-readme.md
@@ -76,6 +76,9 @@ _Pattern_: {{ prop.pattern }}
{% if prop.createonly %}
_Update requires_: [Replacement](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-replacement)
+{% elif prop.conditionalCreateOnly %}
+
+_Update requires_: [Some interruptions](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-some-interrupt)
{% else %}
_Update requires_: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)
diff --git a/src/rpdk/core/templates/docs-subproperty.md b/src/rpdk/core/templates/docs-subproperty.md
index 02080afa2..9445bb2e2 100644
--- a/src/rpdk/core/templates/docs-subproperty.md
+++ b/src/rpdk/core/templates/docs-subproperty.md
@@ -71,6 +71,9 @@ _Pattern_: {{ prop.pattern }}
{% if prop.createonly %}
_Update requires_: [Replacement](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-replacement)
+{% elif prop.conditionalCreateOnly %}
+
+_Update requires_: [Some interruptions](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-some-interrupt)
{% else %}
_Update requires_: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)