Module Values.AwsEc2InstanceDetailsSource

The details of an Amazon EC2 instance.

Sourcetype nonrec t = {
  1. type_ : NonEmptyString.t option;
    (*

    The instance type of the instance.

    *)
  2. imageId : NonEmptyString.t option;
    (*

    The Amazon Machine Image (AMI) ID of the instance.

    *)
  3. ipV4Addresses : StringList.t option;
    (*

    The IPv4 addresses associated with the instance.

    *)
  4. ipV6Addresses : StringList.t option;
    (*

    The IPv6 addresses associated with the instance.

    *)
  5. keyName : NonEmptyString.t option;
    (*

    The key name associated with the instance.

    *)
  6. iamInstanceProfileArn : NonEmptyString.t option;
    (*

    The IAM profile ARN of the instance.

    *)
  7. vpcId : NonEmptyString.t option;
    (*

    The identifier of the VPC that the instance was launched in.

    *)
  8. subnetId : NonEmptyString.t option;
    (*

    The identifier of the subnet that the instance was launched in.

    *)
  9. launchedAt : NonEmptyString.t option;
    (*

    Indicates when the instance was launched. For more information about the validation and formatting of timestamp fields in Security Hub CSPM, see Timestamps.

    *)
  10. networkInterfaces : AwsEc2InstanceNetworkInterfacesList.t option;
    (*

    The identifiers of the network interfaces for the EC2 instance. The details for each network interface are in a corresponding AwsEc2NetworkInterfacesDetails object.

    *)
  11. virtualizationType : NonEmptyString.t option;
    (*

    The virtualization type of the Amazon Machine Image (AMI) required to launch the instance.

    *)
  12. metadataOptions : AwsEc2InstanceMetadataOptions.t option;
    (*

    Details about the metadata options for the Amazon EC2 instance.

    *)
  13. monitoring : AwsEc2InstanceMonitoringDetails.t option;
    (*

    Describes the type of monitoring that’s turned on for an instance.

    *)
}
Sourceval make : ?type_:??? -> ?imageId:??? -> ?ipV4Addresses:??? -> ?ipV6Addresses:??? -> ?keyName:??? -> ?iamInstanceProfileArn:??? -> ?vpcId:??? -> ?subnetId:??? -> ?launchedAt:??? -> ?networkInterfaces:??? -> ?virtualizationType:??? -> ?metadataOptions:??? -> ?monitoring:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of NonEmptyString.t | `Structure of (string * [> `String of NonEmptyString.t ]) list ] list | `String of NonEmptyString.t | `Structure of (string * [> `Integer of Integer.t | `String of NonEmptyString.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