AWS aurora-dsql documentation change
Summary
Added bold formatting to code elements and syntax examples
Security assessment
Formatting changes only; no security implications
Diff
diff --git a/aurora-dsql/latest/userguide/working-with-create-index-async.md b/aurora-dsql/latest/userguide/working-with-create-index-async.md index 4f93e7a38..5541d0aaf 100644 --- a//aurora-dsql/latest/userguide/working-with-create-index-async.md +++ b//aurora-dsql/latest/userguide/working-with-create-index-async.md @@ -13 +13 @@ You can monitor the status of this asynchronous job using the `sys.jobs` system -`sys.wait_for_job(job_id)`'your_index_creation_job_id'`` +**`sys.wait_for_job(job_id)`'your_index_creation_job_id'``** @@ -18 +18 @@ Blocks the current session until the specified job completes or fails. Returns a -`DROP INDEX` +**`DROP INDEX`** @@ -43 +43 @@ When Aurora DSQL finishes an asynchronous index task, it updates the system cata -`UNIQUE` +**`UNIQUE`** @@ -48 +48 @@ Indicates to Aurora DSQL to check for duplicate values in the table when it crea -`IF NOT EXISTS` +**`IF NOT EXISTS`** @@ -53 +53 @@ Indicates that Aurora DSQL shouldn't throw an exception if an index with the sam -``name`` +**``name``** @@ -62 +62 @@ If you don't specify a name, Aurora DSQL generates a name automatically based on -`NULLS FIRST | LAST` +**`NULLS FIRST | LAST`** @@ -67 +67 @@ The sort order of null and non-null columns. `FIRST` indicates that Aurora DSQL -`INCLUDE` +**`INCLUDE`** @@ -72 +72 @@ A list of columns to include in the index as non-key columns. You can't use a no -`NULLS DISTINCT | NULLS NOT DISTINCT` +**`NULLS DISTINCT | NULLS NOT DISTINCT`**