You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/@aws-cdk/aws-certificatemanager/README.md
+11Lines changed: 11 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -126,6 +126,17 @@ new acm.PrivateCertificate(this, 'PrivateCertificate', {
126
126
});
127
127
```
128
128
129
+
## Requesting certificates without transparency logging
130
+
131
+
Transparency logging can be opted out of for AWS Certificate Manager certificates. See [opting out of certifiacte transparency logging](https://docs.aws.amazon.com/acm/latest/userguide/acm-bestpractices.html#best-practices-transparency) for limits.
132
+
133
+
```ts
134
+
newacm.Certificate(this, 'Certificate', {
135
+
domainName: 'test.example.com',
136
+
transparencyLoggingEnabled: false,
137
+
});
138
+
```
139
+
129
140
## Importing
130
141
131
142
If you want to import an existing certificate, you can do so from its ARN:
Copy file name to clipboardExpand all lines: packages/@aws-cdk/aws-certificatemanager/lambda-packages/dns_validated_certificate_handler/test/handler.test.js
Copy file name to clipboardExpand all lines: packages/aws-cdk/lib/cli.ts
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -55,7 +55,7 @@ async function parseCommandLineArguments() {
55
55
returnyargs
56
56
.env('CDK')
57
57
.usage('Usage: cdk -a <cdk-app> COMMAND')
58
-
.option('app',{type: 'string',alias: 'a',desc: 'REQUIRED: command-line for executing your app or a cloud assembly directory (e.g. "node bin/my-app.js")',requiresArg: true})
58
+
.option('app',{type: 'string',alias: 'a',desc: 'REQUIRED WHEN RUNNING APP: command-line for executing your app or a cloud assembly directory (e.g. "node bin/my-app.js"). Can also be specified in cdk.json or ~/.cdk.json',requiresArg: true})
59
59
.option('build',{type: 'string',desc: 'Command-line for a pre-synth build'})
.option('plugin',{type: 'array',alias: 'p',desc: 'Name or path of a node package that extend the CDK features. Can be specified multiple times',nargs: 1})
0 commit comments