Skip to content
Merged
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
6 changes: 4 additions & 2 deletions packages/@aws-cdk/aws-apigateway/lib/stage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -141,8 +141,10 @@ export interface MethodDeploymentOptions {
readonly loggingLevel?: MethodLoggingLevel;

/**
* Specifies whether data trace logging is enabled for this method, which
* effects the log entries pushed to Amazon CloudWatch Logs.
* Specifies whether data trace logging is enabled for this method.
* When enabled, API gateway will log the full API requests and responses.
* This can be useful to troubleshoot APIs, but can result in logging sensitive data.
* We recommend that you don't enable this feature for production APIs.
*
* @default false
*/
Expand Down