interface LogConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.FSx.CfnFileSystem.LogConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsfsx#CfnFileSystem_LogConfigurationProperty |
Java | software.amazon.awscdk.services.fsx.CfnFileSystem.LogConfigurationProperty |
Python | aws_cdk.aws_fsx.CfnFileSystem.LogConfigurationProperty |
TypeScript | aws-cdk-lib » aws_fsx » CfnFileSystem » LogConfigurationProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_fsx as fsx } from 'aws-cdk-lib';
const logConfigurationProperty: fsx.CfnFileSystem.LogConfigurationProperty = {
level: 'level',
// the properties below are optional
destination: 'destination',
};
Properties
| Name | Type | Description |
|---|---|---|
| level | string | |
| destination? | string |
level
Type:
string
destination?
Type:
string
(optional)

.NET
Go
Java
Python
TypeScript