Class: Aws::KinesisAnalyticsV2::Types::CloudWatchLoggingOption
- Inherits:
-
Struct
- Object
- Struct
- Aws::KinesisAnalyticsV2::Types::CloudWatchLoggingOption
- Defined in:
- gems/aws-sdk-kinesisanalyticsv2/lib/aws-sdk-kinesisanalyticsv2/types.rb
Overview
Note:
When making an API call, you may pass CloudWatchLoggingOption data as a hash:
{
log_stream_arn: "LogStreamARN", # required
}
Provides a description of Amazon CloudWatch logging options, including the log stream Amazon Resource Name (ARN).
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#log_stream_arn ⇒ String
The ARN of the CloudWatch log to receive application messages.
Instance Attribute Details
#log_stream_arn ⇒ String
The ARN of the CloudWatch log to receive application messages.
1785 1786 1787 1788 1789 |
# File 'gems/aws-sdk-kinesisanalyticsv2/lib/aws-sdk-kinesisanalyticsv2/types.rb', line 1785 class CloudWatchLoggingOption < Struct.new( :log_stream_arn) SENSITIVE = [] include Aws::Structure end |