Module Values.Ec2InstanceSource

Details about the potentially impacted Amazon EC2 instance resource.

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

    The availability zone of the Amazon EC2 instance. For more information, see Availability zones in the Amazon EC2 User Guide.

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

    The image description of the Amazon EC2 instance.

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

    The state of the Amazon EC2 instance. For more information, see Amazon EC2 instance state changes in the Amazon EC2 User Guide.

    *)
  4. iamInstanceProfile : IamInstanceProfile.t option;
  5. instanceType : String_.t option;
    (*

    Type of the Amazon EC2 instance.

    *)
  6. outpostArn : String_.t option;
    (*

    The Amazon Resource Name (ARN) of the Amazon Web Services Outpost. This shows applicable Amazon Web Services Outposts instances.

    *)
  7. platform : String_.t option;
    (*

    The platform of the Amazon EC2 instance.

    *)
  8. productCodes : ProductCodes.t option;
    (*

    The product code of the Amazon EC2 instance.

    *)
  9. ec2NetworkInterfaceUids : Ec2NetworkInterfaceUids.t option;
    (*

    The ID of the network interface.

    *)
}
Sourceval make : ?availabilityZone:??? -> ?imageDescription:??? -> ?instanceState:??? -> ?iamInstanceProfile:??? -> ?instanceType:??? -> ?outpostArn:??? -> ?platform:??? -> ?productCodes:??? -> ?ec2NetworkInterfaceUids:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of String_.t | `Structure of (string * [> `String of String_.t ]) list ] list | `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