Module Values.UpdateMissionProfileRequestSource

Input for the UpdateMissionProfile operation.

Sourcetype nonrec t = {
  1. missionProfileId : Uuid.t;
    (*

    UUID of a mission profile.

    *)
  2. name : SafeName.t option;
    (*

    Name of a mission profile.

    *)
  3. contactPrePassDurationSeconds : DurationInSeconds.t option;
    (*

    Amount of time after a contact ends that you'd like to receive a Ground Station Contact State Change event indicating the pass has finished.

    *)
  4. contactPostPassDurationSeconds : DurationInSeconds.t option;
    (*

    Amount of time after a contact ends that you'd like to receive a Ground Station Contact State Change event indicating the pass has finished.

    *)
  5. minimumViableContactDurationSeconds : PositiveDurationInSeconds.t option;
    (*

    Smallest amount of time in seconds that you'd like to see for an available contact. AWS Ground Station will not present you with contacts shorter than this duration.

    *)
  6. dataflowEdges : DataflowEdgeList.t option;
    (*

    A list of lists of ARNs. Each list of ARNs is an edge, with a from Config and a to Config.

    *)
  7. trackingConfigArn : ConfigArn.t option;
    (*

    ARN of a tracking Config.

    *)
  8. telemetrySinkConfigArn : ConfigArn.t option;
    (*

    ARN of a telemetry sink Config.

    *)
  9. streamsKmsKey : KmsKey.t option;
    (*

    KMS key to use for encrypting streams.

    *)
  10. streamsKmsRole : RoleArn.t option;
    (*

    Role to use for encrypting streams with KMS key.

    *)
}
Sourceval context_ : string
Sourceval make : ?name:??? -> ?contactPrePassDurationSeconds:??? -> ?contactPostPassDurationSeconds:??? -> ?minimumViableContactDurationSeconds:??? -> ?dataflowEdges:??? -> ?trackingConfigArn:??? -> ?telemetrySinkConfigArn:??? -> ?streamsKmsKey:??? -> ?streamsKmsRole:??? -> missionProfileId:Uuid.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of DurationInSeconds.t | `List of [> `List of [> `String of ConfigArn.t ] list ] list | `String of Uuid.t | `Structure of (string * [> `String of KeyArn.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