Skip to content
This repository was archived by the owner on Aug 7, 2025. It is now read-only.

Commit 449fc0c

Browse files
Linting
1 parent d528ab3 commit 449fc0c

File tree

1 file changed

+7
-6
lines changed
  • content/en/user-guide/aws/codepipeline

1 file changed

+7
-6
lines changed

content/en/user-guide/aws/codepipeline/index.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -239,14 +239,14 @@ This means that we can retrieve the `output-file` object from the `target-bucket
239239
{{< command >}}
240240
$ awslocal s3 cp s3://target-bucket/output-file output-file
241241
<disable-copy>
242-
download: s3://target-bucket/output-file to ./output-file
242+
download: s3://target-bucket/output-file to ./output-file
243243
</disable-copy>
244244
{{< /command >}}
245245

246246
To verify that it is the same file as the original input:
247247

248248
{{< command >}}
249-
$ cat output-file
249+
$ cat output-file
250250
<disable-copy>
251251
Hello LocalStack!
252252
</disable-copy>
@@ -323,7 +323,6 @@ LocalStack does not use the same logic to generate external execution IDs as AWS
323323
Same is true for status and error messages produced by actions.
324324
{{< /callout >}}
325325

326-
327326
## Pipelines
328327

329328
The operations [CreatePipeline](https://docs.aws.amazon.com/codepipeline/latest/APIReference/API_CreatePipeline.html), [GetPipeline](https://docs.aws.amazon.com/codepipeline/latest/APIReference/API_GetPipeline.html), [UpdatePipeline](https://docs.aws.amazon.com/codepipeline/latest/APIReference/API_UpdatePipeline.html), [ListPipelines](https://docs.aws.amazon.com/codepipeline/latest/APIReference/API_ListPipelines.html), [DeletePipeline](https://docs.aws.amazon.com/codepipeline/latest/APIReference/API_DeletePipeline.html) are used to manage pipeline declarations.
@@ -382,7 +381,7 @@ If an action does not use a namespace, its output variables are not available to
382381

383382
CodePipeline's variable placeholder syntax is as follows:
384383

385-
```
384+
```text
386385
#{namespace.variable}
387386
```
388387

@@ -417,10 +416,12 @@ The [S3 Source](https://docs.aws.amazon.com/codepipeline/latest/userguide/action
417416

418417
## Limitations
419418

420-
- Emulation for [V2 pipeline types](https://docs.aws.amazon.com/codepipeline/latest/userguide/pipeline-types-planning.html) is not supported. They will be created as mocks only.
419+
- Emulation for [V2 pipeline types](https://docs.aws.amazon.com/codepipeline/latest/userguide/pipeline-types-planning.html) is not supported.
420+
They will be created as mocks only.
421421
- [Rollbacks and stage retries](https://docs.aws.amazon.com/codepipeline/latest/userguide/pipelines-stages.html) are not available.
422422
- [Triggers](https://docs.aws.amazon.com/codepipeline/latest/userguide/pipelines-triggers.html) are not implemented.
423423
Pipelines are executed only when [CreatePipeline](https://docs.aws.amazon.com/codepipeline/latest/APIReference/API_CreatePipeline.html) and [StartPipelineExecution](https://docs.aws.amazon.com/codepipeline/latest/APIReference/API_StartPipelineExecution.html) are invoked.
424-
- [Execution mode behaviours](https://docs.aws.amazon.com/codepipeline/latest/userguide/concepts-how-it-works.html#concepts-how-it-works-executions) are not implemented. Therefore parallel pipeline executions will not lead to stage locks and waits.
424+
- [Execution mode behaviours](https://docs.aws.amazon.com/codepipeline/latest/userguide/concepts-how-it-works.html#concepts-how-it-works-executions) are not implemented.
425+
Parallel pipeline executions will not lead to stage locks and waits.
425426
- [Stage transition controls](https://docs.aws.amazon.com/codepipeline/latest/userguide/transitions.html) are not implemented.
426427
- [Manual approval action](https://docs.aws.amazon.com/codepipeline/latest/userguide/approvals-action-add.html) and [PutApprovalResult](https://docs.aws.amazon.com/codepipeline/latest/APIReference/API_PutApprovalResult.html) operation is not available.

0 commit comments

Comments
 (0)