Interface CfnMaintenanceWindowTask.CloudWatchOutputConfigProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnMaintenanceWindowTask.CloudWatchOutputConfigProperty.Jsii$Proxy
Enclosing class:
CfnMaintenanceWindowTask

@Stability(Stable) public static interface CfnMaintenanceWindowTask.CloudWatchOutputConfigProperty extends software.amazon.jsii.JsiiSerializable
Configuration options for sending command output to Amazon CloudWatch Logs.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.ssm.*;
 CloudWatchOutputConfigProperty cloudWatchOutputConfigProperty = CloudWatchOutputConfigProperty.builder()
         .cloudWatchLogGroupName("cloudWatchLogGroupName")
         .cloudWatchOutputEnabled(false)
         .build();
 

See Also: