com.pulumi.aws.fsx.outputs.WindowsFileSystemAuditLogConfiguration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aws Show documentation
Show all versions of aws Show documentation
A Pulumi package for creating and managing Amazon Web Services (AWS) cloud resources.
The newest version!
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
package com.pulumi.aws.fsx.outputs;
import com.pulumi.core.annotations.CustomType;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class WindowsFileSystemAuditLogConfiguration {
/**
* @return The Amazon Resource Name (ARN) for the destination of the audit logs. The destination can be any Amazon CloudWatch Logs log group ARN or Amazon Kinesis Data Firehose delivery stream ARN. Can be specified when `file_access_audit_log_level` and `file_share_access_audit_log_level` are not set to `DISABLED`. The name of the Amazon CloudWatch Logs log group must begin with the `/aws/fsx` prefix. The name of the Amazon Kinesis Data Firehouse delivery stream must begin with the `aws-fsx` prefix. If you do not provide a destination in `audit_log_destionation`, Amazon FSx will create and use a log stream in the CloudWatch Logs /aws/fsx/windows log group.
*
*/
private @Nullable String auditLogDestination;
/**
* @return Sets which attempt type is logged by Amazon FSx for file and folder accesses. Valid values are `SUCCESS_ONLY`, `FAILURE_ONLY`, `SUCCESS_AND_FAILURE`, and `DISABLED`. Default value is `DISABLED`.
*
*/
private @Nullable String fileAccessAuditLogLevel;
/**
* @return Sets which attempt type is logged by Amazon FSx for file share accesses. Valid values are `SUCCESS_ONLY`, `FAILURE_ONLY`, `SUCCESS_AND_FAILURE`, and `DISABLED`. Default value is `DISABLED`.
*
*/
private @Nullable String fileShareAccessAuditLogLevel;
private WindowsFileSystemAuditLogConfiguration() {}
/**
* @return The Amazon Resource Name (ARN) for the destination of the audit logs. The destination can be any Amazon CloudWatch Logs log group ARN or Amazon Kinesis Data Firehose delivery stream ARN. Can be specified when `file_access_audit_log_level` and `file_share_access_audit_log_level` are not set to `DISABLED`. The name of the Amazon CloudWatch Logs log group must begin with the `/aws/fsx` prefix. The name of the Amazon Kinesis Data Firehouse delivery stream must begin with the `aws-fsx` prefix. If you do not provide a destination in `audit_log_destionation`, Amazon FSx will create and use a log stream in the CloudWatch Logs /aws/fsx/windows log group.
*
*/
public Optional auditLogDestination() {
return Optional.ofNullable(this.auditLogDestination);
}
/**
* @return Sets which attempt type is logged by Amazon FSx for file and folder accesses. Valid values are `SUCCESS_ONLY`, `FAILURE_ONLY`, `SUCCESS_AND_FAILURE`, and `DISABLED`. Default value is `DISABLED`.
*
*/
public Optional fileAccessAuditLogLevel() {
return Optional.ofNullable(this.fileAccessAuditLogLevel);
}
/**
* @return Sets which attempt type is logged by Amazon FSx for file share accesses. Valid values are `SUCCESS_ONLY`, `FAILURE_ONLY`, `SUCCESS_AND_FAILURE`, and `DISABLED`. Default value is `DISABLED`.
*
*/
public Optional fileShareAccessAuditLogLevel() {
return Optional.ofNullable(this.fileShareAccessAuditLogLevel);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(WindowsFileSystemAuditLogConfiguration defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable String auditLogDestination;
private @Nullable String fileAccessAuditLogLevel;
private @Nullable String fileShareAccessAuditLogLevel;
public Builder() {}
public Builder(WindowsFileSystemAuditLogConfiguration defaults) {
Objects.requireNonNull(defaults);
this.auditLogDestination = defaults.auditLogDestination;
this.fileAccessAuditLogLevel = defaults.fileAccessAuditLogLevel;
this.fileShareAccessAuditLogLevel = defaults.fileShareAccessAuditLogLevel;
}
@CustomType.Setter
public Builder auditLogDestination(@Nullable String auditLogDestination) {
this.auditLogDestination = auditLogDestination;
return this;
}
@CustomType.Setter
public Builder fileAccessAuditLogLevel(@Nullable String fileAccessAuditLogLevel) {
this.fileAccessAuditLogLevel = fileAccessAuditLogLevel;
return this;
}
@CustomType.Setter
public Builder fileShareAccessAuditLogLevel(@Nullable String fileShareAccessAuditLogLevel) {
this.fileShareAccessAuditLogLevel = fileShareAccessAuditLogLevel;
return this;
}
public WindowsFileSystemAuditLogConfiguration build() {
final var _resultValue = new WindowsFileSystemAuditLogConfiguration();
_resultValue.auditLogDestination = auditLogDestination;
_resultValue.fileAccessAuditLogLevel = fileAccessAuditLogLevel;
_resultValue.fileShareAccessAuditLogLevel = fileShareAccessAuditLogLevel;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy