Module Values.AgentAccessConfigForUpdateSource

The configuration for updating agent access on a stack. This type supports partial updates, so you only need to specify the fields you want to change.

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

    The list of agent access settings that define permissions for each agent action.

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

    The Amazon Resource Name (ARN) of the Amazon S3 bucket where agent screenshots are stored.

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

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

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

    The screen resolution for the agent streaming environment.

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

    The image format for agent screen captures.

    *)
}
Sourceval make : ?settings:??? -> ?s3BucketArn:??? -> ?screenshotsUploadEnabled:??? -> ?screenResolution:??? -> ?screenImageFormat:??? -> 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