Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(docs): correct spelling for pipeline #30697

Merged
merged 2 commits into from
Jun 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8022,7 +8022,7 @@ The headliners of this release are **.NET support**, and a wealth of commits by

### AWS CodePipeline

- _**BREAKING**_: Moved CodeCommit and CodeBuild and LambdaInvoke actions from the CodePipeline library to `@aws-cdk/aws-xxx-codepipline` modules ([@skinny85] in [#401] and [#402]).
- _**BREAKING**_: Moved CodeCommit and CodeBuild and LambdaInvoke actions from the CodePipeline library to `@aws-cdk/aws-xxx-codepipeline` modules ([@skinny85] in [#401] and [#402]).
- Added attributes `pipelineName` and `pipelineVersion` ([@eladb] in [#408])

### Docs
Expand Down Expand Up @@ -8142,7 +8142,7 @@ Coverage to all event sources and target will be added in subsequent releases.
Supported targets:

- `codebuild.BuildProject`
- `codepipline.Pipeline`
- `codepipeline.Pipeline`
- `sns.Topic`

Supported sources:
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ LABEL com.amazonaws.sagemaker.capabilities.accept-bind-to-port=true
# Avoid buffering output to expedite log delivery
ENV PYTHONUNBUFFERED=TRUE

# Default to port 8080 unless SageMaker has passed in its own port (for use within an inference pipline)
# Default to port 8080 unless SageMaker has passed in its own port (for use within an inference pipeline)
ENV SAGEMAKER_BIND_TO_PORT=${SAGEMAKER_BIND_TO_PORT:-8080}
EXPOSE $SAGEMAKER_BIND_TO_PORT

Expand Down
2 changes: 1 addition & 1 deletion packages/aws-cdk-lib/core/lib/arn.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ export interface ArnComponents {

/**
* The service namespace that identifies the AWS product (for example,
* 's3', 'iam', 'codepipline').
* 's3', 'iam', 'codepipeline').
*/
readonly service: string;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { PipelineBase } from '../main';
import { stackVariableNamespace } from '../private/identifiers';

/**
* Translate stack outputs to Codepipline variable references
* Translate stack outputs to CodePipeline variable references
*/
export class StackOutputsMap {
private queries: PipelineQueries
Expand Down