Class: Aws::EMRContainers::Types::ContainerLogRotationConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::EMRContainers::Types::ContainerLogRotationConfiguration
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-emrcontainers/types.rb
Overview
The settings for container log rotation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max_files_to_keep ⇒ Integer
The number of files to keep in container after rotation.
-
#rotation_size ⇒ String
The file size at which to rotate logs.
Instance Attribute Details
#max_files_to_keep ⇒ Integer
The number of files to keep in container after rotation.
199 200 201 202 203 204 |
# File 'lib/aws-sdk-emrcontainers/types.rb', line 199 class ContainerLogRotationConfiguration < Struct.new( :rotation_size, :max_files_to_keep) SENSITIVE = [] include Aws::Structure end |
#rotation_size ⇒ String
The file size at which to rotate logs. Minimum of 2KB, Maximum of 2GB.
199 200 201 202 203 204 |
# File 'lib/aws-sdk-emrcontainers/types.rb', line 199 class ContainerLogRotationConfiguration < Struct.new( :rotation_size, :max_files_to_keep) SENSITIVE = [] include Aws::Structure end |