Values.CreateFileSystemResponseSourceCreates an S3 File System resource scoped to a bucket or prefix within a bucket, enabling file system access to S3 data. To create a file system, you need an S3 bucket and an IAM role that grants the service permission to access the bucket.
type nonrec t = {creationTime : Timestamp.t option;The time when the file system was created, in seconds since 1970-01-01T00:00:00Z (Unix epoch time).
*)fileSystemArn : FileSystemArn.t option;The ARN for the S3 file system, in the format arn:aws:s3files:region:account-id:file-system/file-system-id.
*)fileSystemId : FileSystemId.t option;The ID of the file system, assigned by S3 Files. This ID is used to reference the file system in subsequent API calls.
*)bucket : BucketArn.t option;The Amazon Resource Name (ARN) of the S3 bucket associated with the file system.
*)prefix : String_.t option;The prefix within the S3 bucket that scopes the file system access.
*)clientToken : ClientToken.t option;The client token used for idempotency.
*)kmsKeyId : KmsKeyId.t option;The ARN or alias of the KMS key used for encryption.
*)status : LifeCycleState.t option;The lifecycle state of the file system. Valid values are: AVAILABLE (the file system is available for use), CREATING (the file system is being created), DELETING (the file system is being deleted), DELETED (the file system has been deleted), ERROR (the file system is in an error state), or UPDATING (the file system is being updated).
*)statusMessage : StatusMessage.t option;Additional information about the file system status. This field provides more details when the status is ERROR, or during state transitions.
*)roleArn : RoleArn.t option;The ARN of the IAM role used for S3 access.
*)ownerId : AwsAccountId.t option;The Amazon Web Services account ID of the file system owner.
*)name : TagValue.t option;The name of the file system, derived from the Name tag if present.
*)}type nonrec error = [ | `ConflictException of ConflictException.t| `InternalServerException of InternalServerException.t| `ResourceNotFoundException of ResourceNotFoundException.t| `ServiceQuotaExceededException of ServiceQuotaExceededException.t| `ThrottlingException of ThrottlingException.t| `ValidationException of ValidationException.t| `Unknown_operation_error of string * string option ]val error_of_json :
string ->
Yojson.Safe.t ->
[> `ConflictException of ConflictException.t
| `InternalServerException of InternalServerException.t
| `ResourceNotFoundException of ResourceNotFoundException.t
| `ServiceQuotaExceededException of ServiceQuotaExceededException.t
| `ThrottlingException of ThrottlingException.t
| `Unknown_operation_error of string * string option
| `ValidationException of ValidationException.t ]val error_of_xml :
string ->
Awso.Xml.t ->
[> `ConflictException of ConflictException.t
| `InternalServerException of InternalServerException.t
| `ResourceNotFoundException of ResourceNotFoundException.t
| `ServiceQuotaExceededException of ServiceQuotaExceededException.t
| `ThrottlingException of ThrottlingException.t
| `Unknown_operation_error of string * string option
| `ValidationException of ValidationException.t ]val 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 ]