Module Values.GetFileSystemResponseSource

Returns resource information for the specified S3 File System including status, configuration, and metadata.

Sourcetype nonrec t = {
  1. creationTime : Timestamp.t option;
    (*

    The time when the file system was created.

    *)
  2. fileSystemArn : FileSystemArn.t option;
    (*

    The Amazon Resource Name (ARN) of the file system.

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

    The ID of the file system.

    *)
  4. bucket : BucketArn.t option;
    (*

    The Amazon Resource Name (ARN) of the S3 bucket.

    *)
  5. prefix : String_.t option;
    (*

    The prefix in the S3 bucket that the file system provides access to.

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

    The client token used for idempotency when the file system was created.

    *)
  7. kmsKeyId : KmsKeyId.t option;
    (*

    The Amazon Resource Name (ARN) of the Amazon Web Services KMS key used for encryption.

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

    The current status of the file system.

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

    Additional information about the file system status.

    *)
  10. roleArn : RoleArn.t option;
    (*

    The Amazon Resource Name (ARN) of the IAM role used for S3 access.

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

    The Amazon Web Services account ID of the file system owner.

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

    The tags associated with the file system.

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

    The name of the file system.

    *)
}
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 : ?creationTime:??? -> ?fileSystemArn:??? -> ?fileSystemId:??? -> ?bucket:??? -> ?prefix:??? -> ?clientToken:??? -> ?kmsKeyId:??? -> ?status:??? -> ?statusMessage:??? -> ?roleArn:??? -> ?ownerId:??? -> ?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 FileSystemArn.t | `Timestamp of Timestamp.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