Module Values.DmsTransferSettingsSource

The settings in JSON format for the DMS Transfer type source endpoint.

Sourcetype nonrec t = {
  1. serviceAccessRoleArn : String_.t option;
    (*

    The Amazon Resource Name (ARN) used by the service access IAM role. The role must allow the iam:PassRole action.

    *)
  2. bucketName : String_.t option;
    (*

    The name of the S3 bucket to use.

    *)
}
Sourceval make : ?serviceAccessRoleArn:??? -> ?bucketName:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String_.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