Module Values.EnvironmentResourceDescriptionSource

Describes the AWS resources in use by this environment. This data is live.

Sourcetype nonrec t = {
  1. environmentName : EnvironmentName.t option;
    (*

    The name of the environment.

    *)
  2. autoScalingGroups : AutoScalingGroupList.t option;
    (*

    The AutoScalingGroups used by this environment.

    *)
  3. instances : InstanceList.t option;
    (*

    The Amazon EC2 instances used by this environment.

    *)
  4. launchConfigurations : LaunchConfigurationList.t option;
    (*

    The Auto Scaling launch configurations in use by this environment.

    *)
  5. launchTemplates : LaunchTemplateList.t option;
    (*

    The Amazon EC2 launch templates in use by this environment.

    *)
  6. loadBalancers : LoadBalancerList.t option;
    (*

    The LoadBalancers in use by this environment.

    *)
  7. triggers : TriggerList.t option;
    (*

    The AutoScaling triggers in use by this environment.

    *)
  8. queues : QueueList.t option;
    (*

    The queues used by this environment.

    *)
}
Sourceval make : ?environmentName:??? -> ?autoScalingGroups:??? -> ?instances:??? -> ?launchConfigurations:??? -> ?launchTemplates:??? -> ?loadBalancers:??? -> ?triggers:??? -> ?queues:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of ResourceId.t ]) list ] list | `String of EnvironmentName.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