Module Values.UpdateApplicationComponentConfigRequestSource

Updates the configuration of an application component.

Sourcetype nonrec t = {
  1. appType : AppType.t option;
    (*

    The type of known component.

    *)
  2. applicationComponentId : ApplicationComponentId.t;
    (*

    The ID of the application component. The ID is unique within an AWS account.

    *)
  3. configureOnly : Boolean.t option;
    (*

    Update the configuration request of an application component. If it is set to true, the source code and/or database credentials are updated. If it is set to false, the source code and/or database credentials are updated and an analysis is initiated.

    *)
  4. inclusionStatus : InclusionStatus.t option;
    (*

    Indicates whether the application component has been included for server recommendation or not.

    *)
  5. secretsManagerKey : SecretsManagerKey.t option;
    (*

    Database credentials.

    *)
  6. sourceCodeList : SourceCodeList.t option;
    (*

    The list of source code configurations to update for the application component.

    *)
  7. strategyOption : StrategyOption.t option;
    (*

    The preferred strategy options for the application component. Use values from the GetApplicationComponentStrategies response.

    *)
}
Sourceval context_ : string
Sourceval make : ?appType:??? -> ?configureOnly:??? -> ?inclusionStatus:??? -> ?secretsManagerKey:??? -> ?sourceCodeList:??? -> ?strategyOption:??? -> applicationComponentId:ApplicationComponentId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `List of [> `Structure of (string * [> `Enum of string | `String of Location.t ]) list ] list | `String of ApplicationComponentId.t | `Structure of (string * [> `Boolean of Boolean.t | `Enum of string ]) 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