Module Values.ProviderIntermediateDataAccessConfigurationSource

The required configuration fields to give intermediate access to a provider service.

Sourcetype nonrec t = {
  1. awsAccountIds : AwsAccountIdList.t option;
    (*

    The Amazon Web Services account that provider can use to read or write data into the customer's intermediate S3 bucket.

    *)
  2. requiredBucketActions : RequiredBucketActionsList.t option;
    (*

    The S3 bucket actions that the provider requires permission for.

    *)
}
Sourceval make : ?awsAccountIds:??? -> ?requiredBucketActions:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of AwsAccountId.t ] 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