Module Values.AppAssessmentSummarySource

Defines an application assessment summary.

Sourcetype nonrec t = {
  1. appArn : Arn.t option;
    (*

    Amazon Resource Name (ARN) of the Resilience Hub application. The format for this ARN is: arn:partition:resiliencehub:region:account:app/app-id. For more information about ARNs, see Amazon Resource Names (ARNs) in the Amazon Web Services General Reference guide.

    *)
  2. appVersion : EntityVersion.t option;
    (*

    Version of an application.

    *)
  3. assessmentArn : Arn.t option;
    (*

    Amazon Resource Name (ARN) of the assessment. The format for this ARN is: arn:partition:resiliencehub:region:account:app-assessment/app-id. For more information about ARNs, see Amazon Resource Names (ARNs) in the Amazon Web Services General Reference guide.

    *)
  4. assessmentName : EntityName.t option;
    (*

    Name of the assessment.

    *)
  5. assessmentStatus : AssessmentStatus.t option;
    (*

    Current status of the assessment for the resiliency policy.

    *)
  6. complianceStatus : ComplianceStatus.t option;
    (*

    Current status of compliance for the resiliency policy.

    *)
  7. cost : Cost.t option;
    (*

    Cost for an application.

    *)
  8. driftStatus : DriftStatus.t option;
    (*

    Indicates if compliance drifts (deviations) were detected while running an assessment for your application.

    *)
  9. endTime : TimeStamp.t option;
    (*

    End time for the action.

    *)
  10. invoker : AssessmentInvoker.t option;
    (*

    Entity that invoked the assessment.

    *)
  11. message : String500.t option;
    (*

    Message from the assessment run.

    *)
  12. resiliencyScore : Double.t option;
    (*

    Current resiliency score for the application.

    *)
  13. startTime : TimeStamp.t option;
    (*

    Starting time for the action.

    *)
  14. versionName : EntityVersion.t option;
    (*

    Name of an application version.

    *)
}
Sourceval make : ?appArn:??? -> ?appVersion:??? -> ?assessmentArn:??? -> ?assessmentName:??? -> ?assessmentStatus:??? -> ?complianceStatus:??? -> ?cost:??? -> ?driftStatus:??? -> ?endTime:??? -> ?invoker:??? -> ?message:??? -> ?resiliencyScore:??? -> ?startTime:??? -> ?versionName:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Double of Double.t | `Enum of string | `String of Arn.t | `Structure of (string * [> `Double of Double.t | `Enum of string | `String of CurrencyCode.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