We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 590b05c commit b84caabCopy full SHA for b84caab
packages/@aws-cdk/aws-codepipeline-actions/README.md
@@ -56,7 +56,7 @@ To use GitHub as the source of a CodePipeline:
56
57
```typescript
58
// Read the secret from ParameterStore
59
-const token = new cdk.SecretParameter(this, 'GitHubToken', { ssmParameter: 'my-github-token' });
+const token = cdk.SecretValue.ssmSecure('my-github-token','1');
60
const sourceOutput = new codepipeline.Artifact();
61
const sourceAction = new codepipeline_actions.GitHubSourceAction({
62
actionName: 'GitHub_Source',
0 commit comments