Module Values.MediaConnectRouterOutputDestinationSettingsSource

MediaConnect Router Output Destination Settings

Sourcetype nonrec t = {
  1. encryptionType : MediaConnectRouterOutputEncryptionType.t option;
    (*

    Encryption configuration for MediaConnect router. When using SECRETS_MANAGER encryption, you must provide the ARN of the secret used to encrypt data in transit. When using AUTOMATIC encryption, a service-managed secret will be used instead.

    *)
  2. secretArn : string option;
    (*

    ARN of the secret used to encrypt this input. Used only with the SECRETS_MANAGER encryption type.

    *)
}
Sourceval make : ?encryptionType:??? -> ?secretArn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of string ]) 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