Module Values.DescribeLocationFsxWindowsResponseSource

Provides details about how an DataSync transfer location for an Amazon FSx for Windows File Server file system is configured.

Sourcetype nonrec t = {
  1. locationArn : LocationArn.t option;
    (*

    The ARN of the FSx for Windows File Server location.

    *)
  2. locationUri : LocationUri.t option;
    (*

    The uniform resource identifier (URI) of the FSx for Windows File Server location.

    *)
  3. securityGroupArns : Ec2SecurityGroupArnList.t option;
    (*

    The ARNs of the Amazon EC2 security groups that provide access to your file system's preferred subnet. For information about configuring security groups for file system access, see the Amazon FSx for Windows File Server User Guide .

    *)
  4. creationTime : Time.t option;
    (*

    The time that the FSx for Windows File Server location was created.

    *)
  5. user : SmbUser.t option;
    (*

    The user with the permissions to mount and access the FSx for Windows File Server file system.

    *)
  6. domain : SmbDomain.t option;
    (*

    The name of the Microsoft Active Directory domain that the FSx for Windows File Server file system belongs to.

    *)
  7. managedSecretConfig : ManagedSecretConfig.t option;
    (*

    Describes configuration information for a DataSync-managed secret, such as a Password that DataSync uses to access a specific storage location. DataSync uses the default Amazon Web Services-managed KMS key to encrypt this secret in Secrets Manager.

    *)
  8. cmkSecretConfig : CmkSecretConfig.t option;
    (*

    Describes configuration information for a DataSync-managed secret, such as a Password that DataSync uses to access a specific storage location, with a customer-managed KMS key.

    *)
  9. customSecretConfig : CustomSecretConfig.t option;
    (*

    Describes configuration information for a customer-managed secret, such as a Password that DataSync uses to access a specific storage location, with a customer-managed Identity and Access Management (IAM) role that provides access to the secret.

    *)
}
Sourcetype nonrec error = [
  1. | `InternalException of InternalException.t
  2. | `InvalidRequestException of InvalidRequestException.t
  3. | `Unknown_operation_error of string * string option
]
Sourceval make : ?locationArn:??? -> ?locationUri:??? -> ?securityGroupArns:??? -> ?creationTime:??? -> ?user:??? -> ?domain:??? -> ?managedSecretConfig:??? -> ?cmkSecretConfig:??? -> ?customSecretConfig:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `InternalException of InternalException.t | `InvalidRequestException of InvalidRequestException.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `InternalException of InternalException.t | `InvalidRequestException of InvalidRequestException.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of Ec2SecurityGroupArn.t ] list | `String of LocationArn.t | `Structure of (string * [> `String of SecretArn.t ]) list | `Timestamp of Time.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