UNPKG

@pulumi/pulumiservice

Version:

[![Slack](http://www.pulumi.com/images/docs/badges/slack.svg)](https://slack.pulumi.com) [![NPM version](https://badge.fury.io/js/%40pulumi%2Fpulumiservice.svg)](https://www.npmjs.com/package/@pulumi/pulumiservice) [![Python version](https://badge.fury.io

58 lines 2.65 kB
import * as pulumi from "@pulumi/pulumi"; /** * Creates or updates the organization's automated audit log export configuration. Audit log export enables automatic delivery of audit events to an S3 bucket for long-term retention and SIEM integration. The configuration includes the S3 bucket details and IAM role for authentication. This feature is available on Business Critical edition. */ export declare class AuditLogExportConfiguration extends pulumi.CustomResource { /** * Get an existing AuditLogExportConfiguration resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input<pulumi.ID>, opts?: pulumi.CustomResourceOptions): AuditLogExportConfiguration; /** * Returns true if the given object is an instance of AuditLogExportConfiguration. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is AuditLogExportConfiguration; /** * Whether audit log export is currently active. May be paused automatically if the configured destination repeatedly fails to authenticate. */ readonly enabled: pulumi.Output<boolean>; /** * The result of the last audit log export attempt. */ readonly lastResult: pulumi.Output<any>; /** * The S3 configuration for exporting audit logs. */ readonly s3Config: pulumi.Output<any>; /** * Create a AuditLogExportConfiguration resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: AuditLogExportConfigurationArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a AuditLogExportConfiguration resource. */ export interface AuditLogExportConfigurationArgs { /** * Whether the audit log export is enabled. */ newEnabled: pulumi.Input<boolean>; /** * The new S3 configuration for audit log export. */ newS3Configuration: any; /** * The organization name */ orgName: pulumi.Input<string>; } //# sourceMappingURL=auditLogExportConfiguration.d.ts.map