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

Commit c5ddcb0

Browse files
grammar fixes & syntax highlighting
1 parent e708a6e commit c5ddcb0

File tree

1 file changed

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

1 file changed

+12
-12
lines changed

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

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ tags: ["Pro image"]
1111
CodePipeline is a continuous integration/continuous delivery (CI/CD) service offered by AWS.
1212
CodePipeline can be used to create automated pipelines that handle the build, test and deployment of software.
1313

14-
LocalStack comes with a bespoke execution engine that can be used to create, manage and execute pipelines.
15-
It supports a variety of actions that integrate with S3, CodeBuild, CodeConnections and more.
14+
LocalStack comes with a bespoke execution engine that can be used to create, manage, and execute pipelines.
15+
It supports a variety of actions that integrate with S3, CodeBuild, CodeConnections, and more.
1616
The available operations can be found on the [API coverage]({{< ref "coverage_codepipeline" >}}) page.
1717

1818
## Getting started
@@ -32,7 +32,7 @@ $ awslocal s3 mb s3://target-bucket
3232
{{< / command >}}
3333

3434
It is important to note the CodePipeline requires source S3 buckets to have versioning enabled.
35-
This can be done using the S3 [PutBucketVersioning](https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutBucketVersioning.html) operation.
35+
This can be done using the S3 [`PutBucketVersioning`](https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutBucketVersioning.html) operation.
3636

3737
{{< command >}}
3838
$ awslocal s3api put-bucket-versioning \
@@ -205,9 +205,9 @@ $ awslocal codepipeline create-pipeline --pipeline file://./declaration.json
205205

206206
### Verify pipeline execution
207207

208-
A 'pipeline execution' is an instance of a pipeline in running or finished state.
208+
A 'pipeline execution' is an instance of a pipeline in a running or finished state.
209209

210-
The [CreatePipeline](https://docs.aws.amazon.com/codepipeline/latest/APIReference/API_CreatePipeline.html) operation we ran earlier started a pipeline execution.
210+
The [`CreatePipeline`](https://docs.aws.amazon.com/codepipeline/latest/APIReference/API_CreatePipeline.html) operation we ran earlier started a pipeline execution.
211211
This can be confirmed using:
212212

213213
{{< command >}}
@@ -254,7 +254,7 @@ Hello LocalStack!
254254

255255
### Examine action executions
256256

257-
Using the [ListActionExecutions](https://docs.aws.amazon.com/codepipeline/latest/APIReference/API_ListPipelineExecutions.html), detailed information about each action execution such as inputs and outputs can be retrieved.
257+
Using the [`ListActionExecutions`](https://docs.aws.amazon.com/codepipeline/latest/APIReference/API_ListPipelineExecutions.html), detailed information about each action execution such as inputs and outputs can be retrieved.
258258
This is useful when debugging the pipeline.
259259

260260
{{< command >}}
@@ -320,7 +320,7 @@ $ awslocal codepipeline list-action-executions --pipeline-name pipeline
320320

321321
{{< callout >}}
322322
LocalStack does not use the same logic to generate external execution IDs as AWS so there may be minor discrepancies.
323-
Same is true for status and error messages produced by actions.
323+
The same is true for status and error messages produced by actions.
324324
{{< /callout >}}
325325

326326
## Pipelines
@@ -335,17 +335,17 @@ Emulation for V2 pipelines is not supported.
335335
Make sure that the pipeline type is explicitly set in the declaration.
336336
{{< /callout >}}
337337

338-
Pipeline executions can be managed with [StartPipelineExecution](https://docs.aws.amazon.com/codepipeline/latest/APIReference/API_StartPipelineExecution.html), [GetPipelineExecution](https://docs.aws.amazon.com/codepipeline/latest/APIReference/API_GetPipelineExecution.html), [ListPipelineExecutions](https://docs.aws.amazon.com/codepipeline/latest/APIReference/API_ListPipelineExecutions.html) and [StopPipelineExecutions](https://docs.aws.amazon.com/codepipeline/latest/APIReference/API_StopPipelineExecution.html).
338+
Pipeline executions can be managed with [`StartPipelineExecution`](https://docs.aws.amazon.com/codepipeline/latest/APIReference/API_StartPipelineExecution.html), [`GetPipelineExecution`](https://docs.aws.amazon.com/codepipeline/latest/APIReference/API_GetPipelineExecution.html), [`ListPipelineExecutions`](https://docs.aws.amazon.com/codepipeline/latest/APIReference/API_ListPipelineExecutions.html) and [`StopPipelineExecutions`](https://docs.aws.amazon.com/codepipeline/latest/APIReference/API_StopPipelineExecution.html).
339339

340-
When stopping pipeline executions with StopPipelineExecution, the stop and abandon method is not supported.
340+
When stopping pipeline executions with `StopPipelineExecution`, the stop and abandon method is not supported.
341341
Setting the `abandon` flag will have no impact.
342-
This is because LocalStack uses threads as the underlying mechanism to simulate pipelines, and threads can not be cleanly preempted.
342+
This is because LocalStack uses threads as the underlying mechanism to simulate pipelines, and threads cannot be cleanly preempted.
343343

344-
Action executions can be inspected using the [ListActionExecutions](https://docs.aws.amazon.com/codepipeline/latest/APIReference/API_ListPipelineExecutions.html) operation.
344+
Action executions can be inspected using the [`ListActionExecutions`](https://docs.aws.amazon.com/codepipeline/latest/APIReference/API_ListPipelineExecutions.html) operation.
345345

346346
### Tagging pipelines
347347

348-
Pipelines resources can be [tagged](https://docs.aws.amazon.com/codepipeline/latest/userguide/pipelines-tag.html) using the [TagResource](https://docs.aws.amazon.com/codepipeline/latest/APIReference/API_TagResource.html), [UntagResource](https://docs.aws.amazon.com/codepipeline/latest/APIReference/API_UntagResource.html) and [ListTagsForResource](https://docs.aws.amazon.com/codepipeline/latest/APIReference/API_ListTagsForResource.html) operations.
348+
Pipelines resources can be [tagged](https://docs.aws.amazon.com/codepipeline/latest/userguide/pipelines-tag.html) using the [`TagResource`](https://docs.aws.amazon.com/codepipeline/latest/APIReference/API_TagResource.html), [`UntagResource`](https://docs.aws.amazon.com/codepipeline/latest/APIReference/API_UntagResource.html) and [`ListTagsForResource`](https://docs.aws.amazon.com/codepipeline/latest/APIReference/API_ListTagsForResource.html) operations.
349349

350350
{{< command >}}
351351
$ awslocal codepipeline tag-resource \

0 commit comments

Comments
 (0)