Module Values.AccessPointDescriptionSource

Provides a description of an EFS file system access point.

Sourcetype nonrec t = {
  1. clientToken : ClientToken.t option;
    (*

    The opaque string specified in the request to ensure idempotent creation.

    *)
  2. name : Name.t option;
    (*

    The name of the access point. This is the value of the Name tag.

    *)
  3. tags : Tags.t option;
    (*

    The tags associated with the access point, presented as an array of Tag objects.

    *)
  4. accessPointId : AccessPointId.t option;
    (*

    The ID of the access point, assigned by Amazon EFS.

    *)
  5. accessPointArn : AccessPointArn.t option;
    (*

    The unique Amazon Resource Name (ARN) associated with the access point.

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

    The ID of the EFS file system that the access point applies to.

    *)
  7. posixUser : PosixUser.t option;
    (*

    The full POSIX identity, including the user ID, group ID, and secondary group IDs on the access point that is used for all file operations by NFS clients using the access point.

    *)
  8. rootDirectory : RootDirectory.t option;
    (*

    The directory on the EFS file system that the access point exposes as the root directory to NFS clients using the access point.

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

    Identifies the Amazon Web Services account that owns the access point resource.

    *)
  10. lifeCycleState : LifeCycleState.t option;
    (*

    Identifies the lifecycle phase of the access point.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessPointAlreadyExists of AccessPointAlreadyExists.t
  2. | `AccessPointLimitExceeded of AccessPointLimitExceeded.t
  3. | `BadRequest of BadRequest.t
  4. | `FileSystemNotFound of FileSystemNotFound.t
  5. | `IncorrectFileSystemLifeCycleState of IncorrectFileSystemLifeCycleState.t
  6. | `InternalServerError of InternalServerError.t
  7. | `ThrottlingException of ThrottlingException.t
  8. | `Unknown_operation_error of string * string option
]
Sourceval make : ?clientToken:??? -> ?name:??? -> ?tags:??? -> ?accessPointId:??? -> ?accessPointArn:??? -> ?fileSystemId:??? -> ?posixUser:??? -> ?rootDirectory:??? -> ?ownerId:??? -> ?lifeCycleState:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessPointAlreadyExists of AccessPointAlreadyExists.t | `AccessPointLimitExceeded of AccessPointLimitExceeded.t | `BadRequest of BadRequest.t | `FileSystemNotFound of FileSystemNotFound.t | `IncorrectFileSystemLifeCycleState of IncorrectFileSystemLifeCycleState.t | `InternalServerError of InternalServerError.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `AccessPointAlreadyExists of AccessPointAlreadyExists.t | `AccessPointLimitExceeded of AccessPointLimitExceeded.t | `BadRequest of BadRequest.t | `FileSystemNotFound of FileSystemNotFound.t | `IncorrectFileSystemLifeCycleState of IncorrectFileSystemLifeCycleState.t | `InternalServerError of InternalServerError.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `String of TagKey.t ]) list ] list | `String of ClientToken.t | `Structure of (string * [> `List of [> `Long of Gid.t ] list | `Long of Uid.t | `String of Path.t | `Structure of (string * [> `Long of OwnerUid.t | `String of Permissions.t ]) list ]) 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