Module Values.ExperimentSource

Describes an experiment.

Sourcetype nonrec t = {
  1. id : ExperimentId.t option;
    (*

    The ID of the experiment.

    *)
  2. arn : ResourceArn.t option;
    (*

    The Amazon Resource Name (ARN) of the experiment.

    *)
  3. experimentTemplateId : ExperimentTemplateId.t option;
    (*

    The ID of the experiment template.

    *)
  4. roleArn : RoleArn.t option;
    (*

    The Amazon Resource Name (ARN) of an IAM role that grants the FIS service permission to perform service actions on your behalf.

    *)
  5. state : ExperimentState.t option;
    (*

    The state of the experiment.

    *)
  6. targets : ExperimentTargetMap.t option;
    (*

    The targets for the experiment.

    *)
  7. actions : ExperimentActionMap.t option;
    (*

    The actions for the experiment.

    *)
  8. stopConditions : ExperimentStopConditionList.t option;
    (*

    The stop conditions for the experiment.

    *)
  9. creationTime : CreationTime.t option;
    (*

    The time that the experiment was created.

    *)
  10. startTime : ExperimentStartTime.t option;
    (*

    The time that the experiment started.

    *)
  11. endTime : ExperimentEndTime.t option;
    (*

    The time that the experiment ended.

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

    The tags for the experiment.

    *)
  13. logConfiguration : ExperimentLogConfiguration.t option;
    (*

    The configuration for experiment logging.

    *)
  14. experimentOptions : ExperimentOptions.t option;
    (*

    The experiment options for the experiment.

    *)
  15. targetAccountConfigurationsCount : TargetAccountConfigurationsCount.t option;
    (*

    The count of target account configurations for the experiment.

    *)
  16. experimentReportConfiguration : ExperimentReportConfiguration.t option;
    (*

    The experiment report configuration for the experiment.

    *)
  17. experimentReport : ExperimentReport.t option;
    (*

    The experiment report for the experiment.

    *)
}
Sourceval make : ?id:??? -> ?arn:??? -> ?experimentTemplateId:??? -> ?roleArn:??? -> ?state:??? -> ?targets:??? -> ?actions:??? -> ?stopConditions:??? -> ?creationTime:??? -> ?startTime:??? -> ?endTime:??? -> ?tags:??? -> ?logConfiguration:??? -> ?experimentOptions:??? -> ?targetAccountConfigurationsCount:??? -> ?experimentReportConfiguration:??? -> ?experimentReport:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of StopConditionSource.t ]) list ] list | `Long of TargetAccountConfigurationsCount.t | `Map of ([> `String of ExperimentTargetName.t ] * [> `String of TagValue.t | `Structure of (string * [> `List of [> `String of ResourceArn.t | `Structure of (string * [> `List of [> `String of ExperimentTargetFilterValue.t ] list | `String of ExperimentTargetFilterPath.t ]) list ] list | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of TargetResourceTypeId.t | `Structure of (string * [> `Enum of string | `String of ExperimentActionStatusReason.t ]) list | `Timestamp of ExperimentActionStartTime.t ]) list ]) list | `String of ExperimentId.t | `Structure of (string * [> `Enum of string | `Integer of LogSchemaVersion.t | `List of [> `Structure of (string * [> `String of ExperimentReportS3ReportArn.t ]) list ] list | `String of ExperimentStatusReason.t | `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `String of ReportConfigurationCloudWatchDashboardIdentifier.t ]) list ] list | `String of ExperimentErrorAccountId.t | `Structure of (string * [> `String of S3BucketName.t ]) list ]) list ]) list | `Timestamp of CreationTime.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