Module Values.AgentAccessConfigSource

The configuration for agent access on a stack. Agent access enables AI agents to interact with desktop applications during streaming sessions.

Sourcetype nonrec t = {
  1. settings : AgentAccessSettingList.t;
    (*

    The list of agent access settings that define permissions for each agent action. You must specify at least one setting.

    *)
  2. s3BucketArn : S3BucketArn.t option;
    (*

    The Amazon Resource Name (ARN) of the Amazon S3 bucket where agent screenshots are stored. Required when ScreenshotsUploadEnabled is true.

    *)
  3. screenshotsUploadEnabled : BooleanObject.t option;
    (*

    Indicates whether screenshot uploads to Amazon S3 are enabled for agent sessions.

    *)
  4. screenResolution : ScreenResolution.t;
    (*

    The screen resolution for the agent streaming environment.

    *)
  5. screenImageFormat : ScreenImageFormat.t;
    (*

    The image format for agent screen captures.

    *)
}
Sourceval context_ : string
Sourceval make : ?s3BucketArn:??? -> ?screenshotsUploadEnabled:??? -> settings:AgentAccessSettingList.t -> screenResolution:ScreenResolution.t -> screenImageFormat:ScreenImageFormat.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of BooleanObject.t | `Enum of string | `List of [> `Structure of (string * [> `Enum of string ]) list ] list | `String of S3BucketArn.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t