Interface CloudWatchLogsActionProps

All Superinterfaces:
CommonActionProps, software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CloudWatchLogsActionProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.101.0 (build b95fe5d)", date="2024-07-11T03:46:03.860Z") @Stability(Experimental) public interface CloudWatchLogsActionProps extends software.amazon.jsii.JsiiSerializable, CommonActionProps
(experimental) Configuration properties of an action for 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.iot.actions.alpha.*;
 import software.amazon.awscdk.services.iam.*;
 Role role;
 CloudWatchLogsActionProps cloudWatchLogsActionProps = CloudWatchLogsActionProps.builder()
         .role(role)
         .build();