Class: Aws::CloudWatchLogs::Types::DeleteLogStreamRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudWatchLogs::Types::DeleteLogStreamRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cloudwatchlogs/types.rb
Overview
Note:
When making an API call, you may pass DeleteLogStreamRequest data as a hash:
{
log_group_name: "LogGroupName", # required
log_stream_name: "LogStreamName", # required
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#log_group_name ⇒ String
The name of the log group.
-
#log_stream_name ⇒ String
The name of the log stream.
Instance Attribute Details
#log_group_name ⇒ String
The name of the log group.
282 283 284 285 286 287 |
# File 'lib/aws-sdk-cloudwatchlogs/types.rb', line 282 class DeleteLogStreamRequest < Struct.new( :log_group_name, :log_stream_name) SENSITIVE = [] include Aws::Structure end |
#log_stream_name ⇒ String
The name of the log stream.
282 283 284 285 286 287 |
# File 'lib/aws-sdk-cloudwatchlogs/types.rb', line 282 class DeleteLogStreamRequest < Struct.new( :log_group_name, :log_stream_name) SENSITIVE = [] include Aws::Structure end |