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
Note:
When making an API call, you may pass CloudwatchLogsAction data as a hash:
{
role_arn: "AwsArn", # required
log_group_name: "LogGroupName", # required
}
Describes an action that sends data to CloudWatch Logs.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#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
#log_group_name ⇒ String
The CloudWatch log group to which the action sends data.
2521 2522 2523 2524 2525 2526 |
# File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 2521 class CloudwatchLogsAction < Struct.new( :role_arn, :log_group_name) SENSITIVE = [] include Aws::Structure end |
#role_arn ⇒ String
The IAM role that allows access to the CloudWatch log.
2521 2522 2523 2524 2525 2526 |
# File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 2521 class CloudwatchLogsAction < Struct.new( :role_arn, :log_group_name) SENSITIVE = [] include Aws::Structure end |