package aws-ec2

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module Types.ModifyInstanceAttributeRequestSource

Sourcetype t = {
  1. source_dest_check : AttributeBooleanValue.t option;
  2. attribute : InstanceAttributeName.t option;
  3. block_device_mappings : InstanceBlockDeviceMappingSpecificationList.t;
  4. disable_api_termination : AttributeBooleanValue.t option;
  5. dry_run : Aws.BaseTypes.Boolean.t option;
  6. ebs_optimized : AttributeBooleanValue.t option;
  7. ena_support : AttributeBooleanValue.t option;
  8. groups : GroupIdStringList.t;
  9. instance_id : Aws.BaseTypes.String.t;
  10. instance_initiated_shutdown_behavior : AttributeValue.t option;
  11. instance_type : AttributeValue.t option;
  12. kernel : AttributeValue.t option;
  13. ramdisk : AttributeValue.t option;
  14. sriov_net_support : AttributeValue.t option;
  15. user_data : BlobAttributeValue.t option;
  16. value : Aws.BaseTypes.String.t option;
}
Sourceval make : ?source_dest_check:??? -> ?attribute:??? -> ?block_device_mappings:??? -> ?disable_api_termination:??? -> ?dry_run:??? -> ?ebs_optimized:??? -> ?ena_support:??? -> ?groups:??? -> instance_id:Aws.BaseTypes.String.t -> ?instance_initiated_shutdown_behavior:??? -> ?instance_type:??? -> ?kernel:??? -> ?ramdisk:??? -> ?sriov_net_support:??? -> ?user_data:??? -> ?value:??? -> unit -> t
Sourceval parse : Ezxmlm.nodes -> t option
Sourceval to_query : t -> Aws.Query.t
Sourceval to_json : t -> [> `Assoc of (string * Aws.Json.t) list ]
Sourceval of_json : Aws.Json.t -> t