Module Values.UpdateMountTargetResponseSource

Updates the mount target resource, specifically security group configurations.

Sourcetype nonrec t = {
  1. availabilityZoneId : AvailabilityZoneId.t option;
    (*

    The Availability Zone ID where the mount target is located.

    *)
  2. ownerId : AwsAccountId.t option;
    (*

    The Amazon Web Services account ID of the mount target owner.

    *)
  3. mountTargetId : MountTargetId.t option;
    (*

    The ID of the mount target.

    *)
  4. fileSystemId : FileSystemId.t option;
    (*

    The ID of the S3 File System.

    *)
  5. subnetId : SubnetId.t option;
    (*

    The ID of the subnet where the mount target is located.

    *)
  6. ipv4Address : Ipv4Address.t option;
    (*

    The IPv4 address of the mount target.

    *)
  7. ipv6Address : Ipv6Address.t option;
    (*

    The IPv6 address of the mount target.

    *)
  8. networkInterfaceId : NetworkInterfaceId.t option;
    (*

    The ID of the network interface associated with the mount target.

    *)
  9. vpcId : VpcId.t option;
    (*

    The ID of the VPC where the mount target is located.

    *)
  10. securityGroups : SecurityGroups.t option;
    (*

    The security groups associated with the mount target.

    *)
  11. status : LifeCycleState.t option;
    (*

    The current status of the mount target.

    *)
  12. statusMessage : StatusMessage.t option;
    (*

    Additional information about the mount target status.

    *)
}
Sourcetype nonrec error = [
  1. | `InternalServerException of InternalServerException.t
  2. | `ResourceNotFoundException of ResourceNotFoundException.t
  3. | `ThrottlingException of ThrottlingException.t
  4. | `ValidationException of ValidationException.t
  5. | `Unknown_operation_error of string * string option
]
Sourceval make : ?availabilityZoneId:??? -> ?ownerId:??? -> ?mountTargetId:??? -> ?fileSystemId:??? -> ?subnetId:??? -> ?ipv4Address:??? -> ?ipv6Address:??? -> ?networkInterfaceId:??? -> ?vpcId:??? -> ?securityGroups:??? -> ?status:??? -> ?statusMessage:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of SecurityGroup.t ] list | `String of AvailabilityZoneId.t ]) 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