Module Values.CreateMissionProfileRequestSource

Input for the CreateMissionProfile operation.

Sourcetype nonrec t = {
  1. name : SafeName.t;
    (*

    Name of a mission profile.

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

    Amount of time prior to contact start you'd like to receive a Ground Station Contact State Change event indicating an upcoming pass.

    *)
  3. 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.

    *)
  4. minimumViableContactDurationSeconds : PositiveDurationInSeconds.t;
    (*

    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.

    *)
  5. dataflowEdges : DataflowEdgeList.t;
    (*

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

    *)
  6. trackingConfigArn : ConfigArn.t;
    (*

    ARN of a tracking Config.

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

    ARN of a telemetry sink Config.

    *)
  8. tags : TagsMap.t option;
    (*

    Tags assigned to a mission profile.

    *)
  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 : ?contactPrePassDurationSeconds:??? -> ?contactPostPassDurationSeconds:??? -> ?telemetrySinkConfigArn:??? -> ?tags:??? -> ?streamsKmsKey:??? -> ?streamsKmsRole:??? -> name:SafeName.t -> minimumViableContactDurationSeconds:PositiveDurationInSeconds.t -> dataflowEdges:DataflowEdgeList.t -> trackingConfigArn:ConfigArn.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of DurationInSeconds.t | `List of [> `List of [> `String of ConfigArn.t ] list ] list | `Map of ([> `String of String_.t ] * [> `String of String_.t ]) list | `String of SafeName.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