Module Values.CoverageEc2InstanceDetailsSource

Contains information about the Amazon EC2 instance runtime coverage details.

Sourcetype nonrec t = {
  1. instanceId : String_.t option;
    (*

    The Amazon EC2 instance ID.

    *)
  2. instanceType : String_.t option;
    (*

    The instance type of the Amazon EC2 instance.

    *)
  3. clusterArn : String_.t option;
    (*

    The cluster ARN of the Amazon ECS cluster running on the Amazon EC2 instance.

    *)
  4. agentDetails : AgentDetails.t option;
    (*

    Information about the installed security agent.

    *)
  5. managementType : ManagementType.t option;
    (*

    Indicates how the GuardDuty security agent is managed for this resource. AUTO_MANAGED indicates that GuardDuty deploys and manages updates for this resource. MANUAL indicates that you are responsible to deploy, update, and manage the GuardDuty security agent updates for this resource. The DISABLED status doesn't apply to Amazon EC2 instances and Amazon EKS clusters.

    *)
}
Sourceval make : ?instanceId:??? -> ?instanceType:??? -> ?clusterArn:??? -> ?agentDetails:??? -> ?managementType:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of String_.t | `Structure of (string * [> `String of String_.t ]) list ]) 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