Module Values.CreateWorkloadInputSource

Input for workload creation.

Sourcetype nonrec t = {
  1. workloadName : WorkloadName.t;
  2. description : WorkloadDescription.t;
  3. environment : WorkloadEnvironment.t;
  4. accountIds : WorkloadAccountIds.t option;
  5. awsRegions : WorkloadAwsRegions.t option;
  6. nonAwsRegions : WorkloadNonAwsRegions.t option;
  7. pillarPriorities : WorkloadPillarPriorities.t option;
  8. architecturalDesign : WorkloadArchitecturalDesign.t option;
  9. reviewOwner : WorkloadReviewOwner.t option;
  10. industryType : WorkloadIndustryType.t option;
  11. industry : WorkloadIndustry.t option;
  12. lenses : WorkloadLenses.t;
  13. notes : Notes.t option;
  14. clientRequestToken : ClientRequestToken.t;
  15. tags : TagMap.t option;
    (*

    The tags to be associated with the workload.

    *)
  16. discoveryConfig : WorkloadDiscoveryConfig.t option;
    (*

    Well-Architected discovery configuration settings associated to the workload.

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

    List of AppRegistry application ARNs associated to the workload.

    *)
  18. profileArns : WorkloadProfileArns.t option;
    (*

    The list of profile ARNs associated with the workload.

    *)
  19. reviewTemplateArns : ReviewTemplateArns.t option;
    (*

    The list of review template ARNs to associate with the workload.

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

    Jira configuration settings when creating a workload.

    *)
}
Sourceval context_ : string
Sourceval make : ?accountIds:??? -> ?awsRegions:??? -> ?nonAwsRegions:??? -> ?pillarPriorities:??? -> ?architecturalDesign:??? -> ?reviewOwner:??? -> ?industryType:??? -> ?industry:??? -> ?notes:??? -> ?tags:??? -> ?discoveryConfig:??? -> ?applications:??? -> ?profileArns:??? -> ?reviewTemplateArns:??? -> ?jiraConfiguration:??? -> workloadName:WorkloadName.t -> description:WorkloadDescription.t -> environment:WorkloadEnvironment.t -> lenses:WorkloadLenses.t -> clientRequestToken:ClientRequestToken.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of AwsAccountId.t ] list | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of WorkloadName.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