Class: Aws::IoT::Types::CloudwatchLogsAction
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoT::Types::CloudwatchLogsAction
- Defined in:
- gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb
Overview
Describes an action that sends data to CloudWatch Logs.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#batch_mode ⇒ Boolean
Indicates whether batches of log records will be extracted and uploaded into CloudWatch.
-
#log_group_name ⇒ String
The CloudWatch log group to which the action sends data.
-
#role_arn ⇒ String
The IAM role that allows access to the CloudWatch log.
Instance Attribute Details
#batch_mode ⇒ Boolean
Indicates whether batches of log records will be extracted and
uploaded into CloudWatch. Values include true
or false
(default).
2086 2087 2088 2089 2090 2091 2092 |
# File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 2086 class CloudwatchLogsAction < Struct.new( :role_arn, :log_group_name, :batch_mode) SENSITIVE = [] include Aws::Structure end |
#log_group_name ⇒ String
The CloudWatch log group to which the action sends data.
2086 2087 2088 2089 2090 2091 2092 |
# File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 2086 class CloudwatchLogsAction < Struct.new( :role_arn, :log_group_name, :batch_mode) SENSITIVE = [] include Aws::Structure end |
#role_arn ⇒ String
The IAM role that allows access to the CloudWatch log.
2086 2087 2088 2089 2090 2091 2092 |
# File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 2086 class CloudwatchLogsAction < Struct.new( :role_arn, :log_group_name, :batch_mode) SENSITIVE = [] include Aws::Structure end |