Module Values.UpdateWorkloadInputSource

Input to update a workload.

Sourcetype nonrec t = {
  1. workloadId : WorkloadId.t;
  2. workloadName : WorkloadName.t option;
  3. description : WorkloadDescription.t option;
  4. environment : WorkloadEnvironment.t option;
  5. accountIds : WorkloadAccountIds.t option;
  6. awsRegions : WorkloadAwsRegions.t option;
  7. nonAwsRegions : WorkloadNonAwsRegions.t option;
  8. pillarPriorities : WorkloadPillarPriorities.t option;
  9. architecturalDesign : WorkloadArchitecturalDesign.t option;
  10. reviewOwner : WorkloadReviewOwner.t option;
  11. isReviewOwnerUpdateAcknowledged : IsReviewOwnerUpdateAcknowledged.t option;
    (*

    Flag indicating whether the workload owner has acknowledged that the Review owner field is required. If a Review owner is not added to the workload within 60 days of acknowledgement, access to the workload is restricted until an owner is added.

    *)
  12. industryType : WorkloadIndustryType.t option;
  13. industry : WorkloadIndustry.t option;
  14. notes : Notes.t option;
  15. improvementStatus : WorkloadImprovementStatus.t option;
  16. discoveryConfig : WorkloadDiscoveryConfig.t option;
    (*

    Well-Architected discovery configuration settings to associate to the workload.

    *)
  17. applications : WorkloadApplications.t option;
    (*

    List of AppRegistry application ARNs to associate to the workload.

    *)
  18. jiraConfiguration : WorkloadJiraConfigurationInput.t option;
    (*

    Configuration of the Jira integration.

    *)
}
Sourceval context_ : string
Sourceval make : ?workloadName:??? -> ?description:??? -> ?environment:??? -> ?accountIds:??? -> ?awsRegions:??? -> ?nonAwsRegions:??? -> ?pillarPriorities:??? -> ?architecturalDesign:??? -> ?reviewOwner:??? -> ?isReviewOwnerUpdateAcknowledged:??? -> ?industryType:??? -> ?industry:??? -> ?notes:??? -> ?improvementStatus:??? -> ?discoveryConfig:??? -> ?applications:??? -> ?jiraConfiguration:??? -> workloadId:WorkloadId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of IsReviewOwnerUpdateAcknowledged.t | `Enum of string | `List of [> `String of AwsAccountId.t ] list | `String of WorkloadId.t | `Structure of (string * [> `Enum of string | `List of [> `Enum of string ] list | `String of JiraProjectKey.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