Module Values.GetMissionProfileResponseSource

Output for the GetMissionProfile operation.

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

    UUID of a mission profile.

    *)
  2. missionProfileArn : MissionProfileArn.t option;
    (*

    ARN of a mission profile.

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

    Name of a mission profile.

    *)
  4. region : AWSRegion.t option;
    (*

    Region of a mission profile.

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

    Amount of time prior to contact start you'd like to receive a CloudWatch event indicating an upcoming pass.

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

    Amount of time after a contact ends that you'd like to receive a CloudWatch event indicating the pass has finished.

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

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

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

    ARN of a tracking Config.

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

    ARN of a telemetry sink Config.

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

    Tags assigned to a mission profile.

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

    KMS key to use for encrypting streams.

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

    Role to use for encrypting streams with KMS key.

    *)
}
Sourcetype nonrec error = [
  1. | `DependencyException of DependencyException.t
  2. | `InvalidParameterException of InvalidParameterException.t
  3. | `ResourceNotFoundException of ResourceNotFoundException.t
  4. | `Unknown_operation_error of string * string option
]
Sourceval make : ?missionProfileId:??? -> ?missionProfileArn:??? -> ?name:??? -> ?region:??? -> ?contactPrePassDurationSeconds:??? -> ?contactPostPassDurationSeconds:??? -> ?minimumViableContactDurationSeconds:??? -> ?dataflowEdges:??? -> ?trackingConfigArn:??? -> ?telemetrySinkConfigArn:??? -> ?tags:??? -> ?streamsKmsKey:??? -> ?streamsKmsRole:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `DependencyException of DependencyException.t | `InvalidParameterException of InvalidParameterException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `DependencyException of DependencyException.t | `InvalidParameterException of InvalidParameterException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.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 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