Module Values.UpdateEnvironmentAccountConnectionInputSource

In an environment account, update an environment account connection to use a new IAM role. For more information, see Environment account connections in the Proton User guide.

Sourcetype nonrec t = {
  1. codebuildRoleArn : RoleArn.t option;
    (*

    The Amazon Resource Name (ARN) of an IAM service role in the environment account. Proton uses this role to provision infrastructure resources using CodeBuild-based provisioning in the associated environment account.

    *)
  2. componentRoleArn : RoleArn.t option;
    (*

    The Amazon Resource Name (ARN) of the IAM service role that Proton uses when provisioning directly defined components in the associated environment account. It determines the scope of infrastructure that a component can provision in the account. The environment account connection must have a componentRoleArn to allow directly defined components to be associated with any environments running in the account. For more information about components, see Proton components in the Proton User Guide.

    *)
  3. id : EnvironmentAccountConnectionId.t;
    (*

    The ID of the environment account connection to update.

    *)
  4. roleArn : RoleArn.t option;
    (*

    The Amazon Resource Name (ARN) of the IAM service role that's associated with the environment account connection to update.

    *)
}
Sourceval context_ : string
Sourceval make : ?codebuildRoleArn:??? -> ?componentRoleArn:??? -> ?roleArn:??? -> id:EnvironmentAccountConnectionId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of RoleArn.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