import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * Definition of AWS::WorkSpacesWeb::SessionLogger Resource Type */ export declare class SessionLogger extends pulumi.CustomResource { /** * Get an existing SessionLogger 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, opts?: pulumi.CustomResourceOptions): SessionLogger; /** * Returns true if the given object is an instance of SessionLogger. 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 SessionLogger; /** * The additional encryption context of the session logger. */ readonly additionalEncryptionContext: pulumi.Output<{ [key: string]: string; } | undefined>; /** * The associated portal ARN. */ readonly associatedPortalArns: pulumi.Output; /** * The date the session logger resource was created. */ readonly creationDate: pulumi.Output; /** * The custom managed key of the session logger. */ readonly customerManagedKey: pulumi.Output; /** * The human-readable display name. */ readonly displayName: pulumi.Output; /** * The filter that specifies which events to monitor. */ readonly eventFilter: pulumi.Output; /** * The configuration that specifies where logs are fowarded. */ readonly logConfiguration: pulumi.Output; /** * The ARN of the session logger resource. */ readonly sessionLoggerArn: pulumi.Output; /** * The tags of the session logger. */ readonly tags: pulumi.Output; /** * Create a SessionLogger 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: SessionLoggerArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a SessionLogger resource. */ export interface SessionLoggerArgs { /** * The additional encryption context of the session logger. */ additionalEncryptionContext?: pulumi.Input<{ [key: string]: pulumi.Input; }>; /** * The custom managed key of the session logger. */ customerManagedKey?: pulumi.Input; /** * The human-readable display name. */ displayName?: pulumi.Input; /** * The filter that specifies which events to monitor. */ eventFilter: pulumi.Input; /** * The configuration that specifies where logs are fowarded. */ logConfiguration: pulumi.Input; /** * The tags of the session logger. */ tags?: pulumi.Input[]>; }