Module Values.EntitlementSource

The settings for a flow entitlement.

Sourcetype nonrec t = {
  1. dataTransferSubscriberFeePercent : Integer.t option;
    (*

    Percentage from 0-100 of the data transfer cost to be billed to the subscriber.

    *)
  2. description : String_.t option;
    (*

    A description of the entitlement.

    *)
  3. encryption : Encryption.t option;
    (*

    The type of encryption that will be used on the output that is associated with this entitlement.

    *)
  4. entitlementArn : String_.t option;
    (*

    The ARN of the entitlement.

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

    An indication of whether the entitlement is enabled.

    *)
  6. name : String_.t option;
    (*

    The name of the entitlement.

    *)
  7. 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 make : ?dataTransferSubscriberFeePercent:??? -> ?description:??? -> ?encryption:??? -> ?entitlementArn:??? -> ?entitlementStatus:??? -> ?name:??? -> ?subscribers:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of Integer.t | `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