@pulumi/pulumiservice
Version:
[](https://slack.pulumi.com) [](https://www.npmjs.com/package/@pulumi/pulumiservice) [: 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