@pulumi/aws-native
Version:
The Pulumi AWS Cloud Control Provider enables you to build, deploy, and manage [any AWS resource that's supported by the AWS Cloud Control API](https://github.com/pulumi/pulumi-aws-native/blob/master/provider/cmd/pulumi-gen-aws-native/supported-types.txt)
100 lines (99 loc) • 3.79 kB
TypeScript
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<pulumi.ID>, 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<string[]>;
/**
* The date the session logger resource was created.
*/
readonly creationDate: pulumi.Output<string>;
/**
* The custom managed key of the session logger.
*/
readonly customerManagedKey: pulumi.Output<string | undefined>;
/**
* The human-readable display name.
*/
readonly displayName: pulumi.Output<string | undefined>;
/**
* The filter that specifies which events to monitor.
*/
readonly eventFilter: pulumi.Output<outputs.workspacesweb.SessionLoggerEventFilter0Properties | outputs.workspacesweb.SessionLoggerEventFilter1Properties>;
/**
* The configuration that specifies where logs are fowarded.
*/
readonly logConfiguration: pulumi.Output<outputs.workspacesweb.SessionLoggerLogConfiguration>;
/**
* The ARN of the session logger resource.
*/
readonly sessionLoggerArn: pulumi.Output<string>;
/**
* The tags of the session logger.
*/
readonly tags: pulumi.Output<outputs.Tag[] | undefined>;
/**
* 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<string>;
}>;
/**
* The custom managed key of the session logger.
*/
customerManagedKey?: pulumi.Input<string>;
/**
* The human-readable display name.
*/
displayName?: pulumi.Input<string>;
/**
* The filter that specifies which events to monitor.
*/
eventFilter: pulumi.Input<inputs.workspacesweb.SessionLoggerEventFilter0PropertiesArgs | inputs.workspacesweb.SessionLoggerEventFilter1PropertiesArgs>;
/**
* The configuration that specifies where logs are fowarded.
*/
logConfiguration: pulumi.Input<inputs.workspacesweb.SessionLoggerLogConfigurationArgs>;
/**
* The tags of the session logger.
*/
tags?: pulumi.Input<pulumi.Input<inputs.TagArgs>[]>;
}