Module Values.ApplicationComponentSource

Describes a standalone resource or similarly grouped resources that the application is made up of.

Sourcetype nonrec t = {
  1. componentName : ComponentName.t option;
    (*

    The name of the component.

    *)
  2. componentRemarks : Remarks.t option;
    (*

    If logging is supported for the resource type, indicates whether the component has configured logs to be monitored.

    *)
  3. resourceType : ResourceType.t option;
    (*

    The resource type. Supported resource types include EC2 instances, Auto Scaling group, Classic ELB, Application ELB, and SQS Queue.

    *)
  4. osType : OsType.t option;
    (*

    The operating system of the component.

    *)
  5. tier : Tier.t option;
    (*

    The stack tier of the application component.

    *)
  6. monitor : Monitor.t option;
    (*

    Indicates whether the application component is monitored.

    *)
  7. detectedWorkload : DetectedWorkload.t option;
    (*

    Workloads detected in the application component.

    *)
}
Sourceval make : ?componentName:??? -> ?componentRemarks:??? -> ?resourceType:??? -> ?osType:??? -> ?tier:??? -> ?monitor:??? -> ?detectedWorkload:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Monitor.t | `Enum of string | `Map of ([> `Enum of string ] * [> `Map of ([> `String of MetaDataKey.t ] * [> `String of MetaDataValue.t ]) list ]) list | `String of ComponentName.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