There are more AWS SDK examples available in the AWS Doc SDK Examples
Use StopLogging
with a CLI
The following code examples show how to use StopLogging
.
- CLI
-
- AWS CLI
-
To stop logging a trail
The following
stop-logging
command turns off logging forTrail1
:aws cloudtrail stop-logging --name
Trail1
-
For API details, see StopLogging
in AWS CLI Command Reference.
-
- PowerShell
-
- Tools for PowerShell
-
Example 1: Suspends the recording of AWS API calls and log file delivery for the trail named 'myExampleTrail'. This example assumes the trail was created in the same region as the current shell default.
Stop-CTLogging -Name myExampleTrail
Example 2: Suspends the recording of AWS API calls and log file delivery for a trail that was created in a region other than the current shell default (in this case, the Frankfurt (eu-central-1) region).
Stop-CTLogging -Name myExampleTrail -Region eu-central-1
-
For API details, see StopLogging in AWS Tools for PowerShell Cmdlet Reference.
-