Module GroundStation.MissionProfile

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-missionprofile.html

type streams_kms_key = {
  1. kms_key_arn : string option;
  2. kms_alias_arn : string option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-missionprofile-streamskmskey.html

and tag = {
  1. value : string;
  2. key : string;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html

and dataflow_edge = {
  1. destination : string option;
  2. source : string option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-missionprofile-dataflowedge.html

type properties = {
  1. streams_kms_key : streams_kms_key option;
  2. contact_post_pass_duration_seconds : int option;
  3. minimum_viable_contact_duration_seconds : int;
  4. dataflow_edges : dataflow_edge list;
  5. streams_kms_role : string option;
  6. tracking_config_arn : string;
  7. tags : tag list option;
  8. name : string;
  9. contact_pre_pass_duration_seconds : int option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-missionprofile.html;

val make_properties : ?streams_kms_key:streams_kms_key -> ?contact_post_pass_duration_seconds:int -> minimum_viable_contact_duration_seconds:int -> dataflow_edges:dataflow_edge list -> ?streams_kms_role:string -> tracking_config_arn:string -> ?tags:tag list -> name:string -> ?contact_pre_pass_duration_seconds:int -> unit -> properties
val make_streams_kms_key : ?kms_key_arn:string -> ?kms_alias_arn:string -> unit -> streams_kms_key
val make_tag : value:string -> key:string -> unit -> tag
val make_dataflow_edge : ?destination:string -> ?source:string -> unit -> dataflow_edge
val yojson_of_streams_kms_key : streams_kms_key -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_tag : tag -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_dataflow_edge : dataflow_edge -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_properties : properties -> [> `Assoc of (string * Yojson.Safe.t) list ]
type attributes = {
  1. ref_ : string;
  2. region : string;
  3. id : string;
  4. arn : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string