Module Values.GetMonitorResponseSource

Mixin that adds an optional ARN field to response structures. Apply to SummaryMixins (flows into Get, Summary, and BatchGet) and Create outputs.

Sourcetype nonrec t = {
  1. monitorId : MonitorId.t option;
    (*

    The unique identifier for the monitor.

    *)
  2. displayName : ResourceName.t option;
    (*

    The name used to identify the monitor on the Deadline Cloud console. This field can store any content. Escape or encode this content before displaying it on a webpage or any other system that might interpret the content of this field.

    *)
  3. subdomain : Subdomain.t option;
    (*

    The subdomain used for the monitor URL. The full URL of the monitor is subdomain.Region.deadlinecloud.amazonaws.com.

    *)
  4. url : Url.t option;
    (*

    The complete URL of the monitor. The full URL of the monitor is subdomain.Region.deadlinecloud.amazonaws.com.

    *)
  5. roleArn : IamRoleArn.t option;
    (*

    The Amazon Resource Name of the IAM role for the monitor. Users of the monitor use this role to access Deadline Cloud resources.

    *)
  6. identityCenterInstanceArn : IdentityCenterInstanceArn.t option;
    (*

    The Amazon Resource Name of the IAM Identity Center instance responsible for authenticating monitor users.

    *)
  7. identityCenterRegion : Region.t option;
    (*

    The AWS Region where IAM Identity Center is enabled.

    *)
  8. identityCenterApplicationArn : IdentityCenterApplicationArn.t option;
    (*

    The Amazon Resource Name that the IAM Identity Center assigned to the monitor when it was created.

    *)
  9. createdAt : CreatedAt.t option;
    (*

    The UNIX timestamp of the date and time that the monitor was created.

    *)
  10. createdBy : CreatedBy.t option;
    (*

    The user name of the person that created the monitor.

    *)
  11. updatedAt : UpdatedAt.t option;
    (*

    The UNIX timestamp of the last date and time that the monitor was updated.

    *)
  12. updatedBy : UpdatedBy.t option;
    (*

    The user name of the person that last updated the monitor.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `InternalServerErrorException of InternalServerErrorException.t
  3. | `ResourceNotFoundException of ResourceNotFoundException.t
  4. | `ThrottlingException of ThrottlingException.t
  5. | `ValidationException of ValidationException.t
  6. | `Unknown_operation_error of string * string option
]
Sourceval make : ?monitorId:??? -> ?displayName:??? -> ?subdomain:??? -> ?url:??? -> ?roleArn:??? -> ?identityCenterInstanceArn:??? -> ?identityCenterRegion:??? -> ?identityCenterApplicationArn:??? -> ?createdAt:??? -> ?createdBy:??? -> ?updatedAt:??? -> ?updatedBy:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of AccessDeniedException.t | `InternalServerErrorException of InternalServerErrorException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `AccessDeniedException of AccessDeniedException.t | `InternalServerErrorException of InternalServerErrorException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `String of MonitorId.t | `Timestamp of CreatedAt.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