Class: Aws::KinesisAnalytics::Types::CloudWatchLoggingOption
- Inherits:
-
Struct
- Object
- Struct
- Aws::KinesisAnalytics::Types::CloudWatchLoggingOption
- Defined in:
- gems/aws-sdk-kinesisanalytics/lib/aws-sdk-kinesisanalytics/types.rb
Overview
Provides a description of CloudWatch logging options, including the log stream Amazon Resource Name (ARN) and the role ARN.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#log_stream_arn ⇒ String
ARN of the CloudWatch log to receive application messages.
-
#role_arn ⇒ String
IAM ARN of the role to use to send application messages.
Instance Attribute Details
#log_stream_arn ⇒ String
ARN of the CloudWatch log to receive application messages.
421 422 423 424 425 426 |
# File 'gems/aws-sdk-kinesisanalytics/lib/aws-sdk-kinesisanalytics/types.rb', line 421 class CloudWatchLoggingOption < Struct.new( :log_stream_arn, :role_arn) SENSITIVE = [] include Aws::Structure end |
#role_arn ⇒ String
IAM ARN of the role to use to send application messages. Note: To
write application messages to CloudWatch, the IAM role that is used
must have the PutLogEvents
policy action enabled.
421 422 423 424 425 426 |
# File 'gems/aws-sdk-kinesisanalytics/lib/aws-sdk-kinesisanalytics/types.rb', line 421 class CloudWatchLoggingOption < Struct.new( :log_stream_arn, :role_arn) SENSITIVE = [] include Aws::Structure end |