Class: Aws::FSx::Types::WindowsFsrmConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::FSx::Types::WindowsFsrmConfiguration
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-fsx/types.rb
Overview
The File Server Resource Manager (FSRM) configuration that Amazon FSx for Windows File Server uses for the file system. When FSRM is enabled, you can manage and monitor storage quotas, file screening, storage reports, and file classification.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#event_log_destination ⇒ String
The Amazon Resource Name (ARN) for the destination of the FSRM event logs.
-
#fsrm_service_enabled ⇒ Boolean
Specifies whether FSRM is enabled or disabled on the file system.
Instance Attribute Details
#event_log_destination ⇒ String
The Amazon Resource Name (ARN) for the destination of the FSRM event logs. The destination can be any Amazon CloudWatch Logs log group ARN or Amazon Kinesis Data Firehose delivery stream ARN.
The name of the Amazon CloudWatch Logs log group must begin with the ‘/aws/fsx` prefix. The name of the Amazon Kinesis Data Firehose delivery stream must begin with the `aws-fsx` prefix.
The destination ARN (either CloudWatch Logs log group or Kinesis Data Firehose delivery stream) must be in the same Amazon Web Services partition, Amazon Web Services Region, and Amazon Web Services account as your Amazon FSx file system.
11410 11411 11412 11413 11414 11415 |
# File 'lib/aws-sdk-fsx/types.rb', line 11410 class WindowsFsrmConfiguration < Struct.new( :fsrm_service_enabled, :event_log_destination) SENSITIVE = [] include Aws::Structure end |
#fsrm_service_enabled ⇒ Boolean
Specifies whether FSRM is enabled or disabled on the file system. When ‘TRUE`, the FSRM service is enabled and monitor file operations according to configured policies. When `FALSE` or omitted, FSRM is disabled. The default value is `FALSE`.
11410 11411 11412 11413 11414 11415 |
# File 'lib/aws-sdk-fsx/types.rb', line 11410 class WindowsFsrmConfiguration < Struct.new( :fsrm_service_enabled, :event_log_destination) SENSITIVE = [] include Aws::Structure end |