Module Values.WorkloadSource

A workload return object.

Sourcetype nonrec t = {
  1. workloadId : WorkloadId.t option;
  2. workloadArn : WorkloadArn.t option;
  3. workloadName : WorkloadName.t option;
  4. description : WorkloadDescription.t option;
  5. environment : WorkloadEnvironment.t option;
  6. updatedAt : Timestamp.t option;
  7. accountIds : WorkloadAccountIds.t option;
  8. awsRegions : WorkloadAwsRegions.t option;
  9. nonAwsRegions : WorkloadNonAwsRegions.t option;
  10. architecturalDesign : WorkloadArchitecturalDesign.t option;
  11. reviewOwner : WorkloadReviewOwner.t option;
  12. reviewRestrictionDate : Timestamp.t option;
  13. 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.

    *)
  14. industryType : WorkloadIndustryType.t option;
  15. industry : WorkloadIndustry.t option;
  16. notes : Notes.t option;
  17. improvementStatus : WorkloadImprovementStatus.t option;
  18. riskCounts : RiskCounts.t option;
  19. pillarPriorities : WorkloadPillarPriorities.t option;
  20. lenses : WorkloadLenses.t option;
  21. owner : AwsAccountId.t option;
  22. shareInvitationId : ShareInvitationId.t option;
    (*

    The ID assigned to the share invitation.

    *)
  23. tags : TagMap.t option;
    (*

    The tags associated with the workload.

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

    Discovery configuration associated to the workload.

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

    List of AppRegistry application ARNs associated to the workload.

    *)
  26. profiles : WorkloadProfiles.t option;
    (*

    Profile associated with a workload.

    *)
  27. prioritizedRiskCounts : RiskCounts.t option;
  28. jiraConfiguration : WorkloadJiraConfigurationOutput.t option;
    (*

    Jira configuration for a specific workload.

    *)
}
Sourceval make : ?workloadId:??? -> ?workloadArn:??? -> ?workloadName:??? -> ?description:??? -> ?environment:??? -> ?updatedAt:??? -> ?accountIds:??? -> ?awsRegions:??? -> ?nonAwsRegions:??? -> ?architecturalDesign:??? -> ?reviewOwner:??? -> ?reviewRestrictionDate:??? -> ?isReviewOwnerUpdateAcknowledged:??? -> ?industryType:??? -> ?industry:??? -> ?notes:??? -> ?improvementStatus:??? -> ?riskCounts:??? -> ?pillarPriorities:??? -> ?lenses:??? -> ?owner:??? -> ?shareInvitationId:??? -> ?tags:??? -> ?discoveryConfig:??? -> ?applications:??? -> ?profiles:??? -> ?prioritizedRiskCounts:??? -> ?jiraConfiguration:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of IsReviewOwnerUpdateAcknowledged.t | `Enum of string | `List of [> `String of AwsAccountId.t | `Structure of (string * [> `String of ProfileArn.t ]) list ] list | `Map of ([> `Enum of string | `String of TagKey.t ] * [> `Integer of Count.t | `String of TagValue.t ]) list | `String of WorkloadId.t | `Structure of (string * [> `Enum of string | `List of [> `Enum of string ] list | `String of JiraProjectKey.t ]) list | `Timestamp of Timestamp.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