Module Values.GetAccessPointResponseSource

Returns resource information for an S3 File System Access Point.

Sourcetype nonrec t = {
  1. accessPointArn : AccessPointArn.t option;
    (*

    The ARN of the access point.

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

    The ID of the access point.

    *)
  3. clientToken : ClientToken.t option;
    (*

    The client token used for idempotency when the access point was created.

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

    The ID of the S3 File System.

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

    The current status of the access point.

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

    The Amazon Web Services account ID of the access point owner.

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

    The POSIX identity configured for this access point.

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

    The root directory configuration for this access point.

    *)
  9. tags : TagList.t option;
    (*

    The tags associated with the access point.

    *)
  10. name : TagValue.t option;
    (*

    The name of the access point.

    *)
}
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 : ?accessPointArn:??? -> ?accessPointId:??? -> ?clientToken:??? -> ?fileSystemId:??? -> ?status:??? -> ?ownerId:??? -> ?posixUser:??? -> ?rootDirectory:??? -> ?tags:??? -> ?name:??? -> 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 [> `Structure of (string * [> `String of TagKey.t ]) list ] list | `String of AccessPointArn.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