Module Values.UpdateFlowEntitlementRequestSource

Updates an entitlement. You can change an entitlement's description, subscribers, and encryption. If you change the subscribers, the service will remove the outputs that are are used by the subscribers that are removed.

Sourcetype nonrec t = {
  1. description : String_.t option;
    (*

    A description of the entitlement. This description appears only on the MediaConnect console and will not be seen by the subscriber or end user.

    *)
  2. encryption : UpdateEncryption.t option;
    (*

    The type of encryption that will be used on the output associated with this entitlement. Allowable encryption types: static-key, speke.

    *)
  3. entitlementArn : UpdateFlowEntitlementRequestEntitlementArnString.t;
    (*

    The Amazon Resource Name (ARN) of the entitlement that you want to update.

    *)
  4. entitlementStatus : EntitlementStatus.t option;
    (*

    An indication of whether you want to enable the entitlement to allow access, or disable it to stop streaming content to the subscriber’s flow temporarily. If you don’t specify the entitlementStatus field in your request, MediaConnect leaves the value unchanged.

    *)
  5. flowArn : UpdateFlowEntitlementRequestFlowArnString.t;
    (*

    The ARN of the flow that is associated with the entitlement that you want to update.

    *)
  6. subscribers : String_.t list option;
    (*

    The Amazon Web Services account IDs that you want to share your content with. The receiving accounts (subscribers) will be allowed to create their own flow using your content as the source.

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> ?encryption:??? -> ?entitlementStatus:??? -> ?subscribers:??? -> entitlementArn:UpdateFlowEntitlementRequestEntitlementArnString.t -> flowArn:UpdateFlowEntitlementRequestFlowArnString.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of String_.t ] list | `String of String_.t | `Structure of (string * [> `Enum of string | `String of String_.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