package aws-ec2

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

Module Types.ModifyImageAttributeRequestSource

Sourcetype t = {
  1. attribute : Aws.BaseTypes.String.t option;
  2. description : AttributeValue.t option;
  3. image_id : Aws.BaseTypes.String.t;
  4. launch_permission : LaunchPermissionModifications.t option;
  5. operation_type : OperationType.t option;
  6. product_codes : ProductCodeStringList.t;
  7. user_groups : UserGroupStringList.t;
  8. user_ids : UserIdStringList.t;
  9. value : Aws.BaseTypes.String.t option;
  10. dry_run : Aws.BaseTypes.Boolean.t option;
}
Sourceval make : ?attribute:??? -> ?description:??? -> image_id:Aws.BaseTypes.String.t -> ?launch_permission:??? -> ?operation_type:??? -> ?product_codes:??? -> ?user_groups:??? -> ?user_ids:??? -> ?value:??? -> ?dry_run:??? -> 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