Module Values.AccountSettingsSource

Proton settings that are used for multiple services in the Amazon Web Services account.

Sourcetype nonrec t = {
  1. pipelineCodebuildRoleArn : RoleArnOrEmptyString.t option;
    (*

    The Amazon Resource Name (ARN) of the service role that Proton uses for provisioning pipelines. Proton assumes this role for CodeBuild-based provisioning.

    *)
  2. pipelineProvisioningRepository : RepositoryBranch.t option;
    (*

    The linked repository for pipeline provisioning. Required if you have environments configured for self-managed provisioning with services that include pipelines. A linked repository is a repository that has been registered with Proton. For more information, see CreateRepository.

    *)
  3. pipelineServiceRoleArn : RoleArnOrEmptyString.t option;
    (*

    The Amazon Resource Name (ARN) of the service role you want to use for provisioning pipelines. Assumed by Proton for Amazon Web Services-managed provisioning, and by customer-owned automation for self-managed provisioning.

    *)
}
Sourceval make : ?pipelineCodebuildRoleArn:??? -> ?pipelineProvisioningRepository:??? -> ?pipelineServiceRoleArn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of RoleArnOrEmptyString.t | `Structure of (string * [> `Enum of string | `String of RepositoryArn.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