Module Values.AdConfigurationSummarySource

Summary information about an ad configuration.

Sourcetype nonrec t = {
  1. arn : AdConfigurationArn.t option;
    (*

    Ad configuration ARN.

    *)
  2. name : AdConfigurationName.t option;
    (*

    Ad configuration name. Defaults to “”.

    *)
  3. mediaTailorPlaybackConfigurations : MediaTailorPlaybackConfigurationsList.t option;
    (*

    List of integration configurations with media tailor resources.

    *)
  4. tags : Tags.t option;
    (*

    Tags attached to the resource. Array of 1-50 maps, each of the form string:string (key:value). See Best practices and strategies in Tagging Amazon Web Services Resources and Tag Editor for details, including restrictions that apply to tags and "Tag naming limits and requirements"; Amazon IVS has no service-specific constraints beyond what is documented there.

    *)
}
Sourceval make : ?arn:??? -> ?name:??? -> ?mediaTailorPlaybackConfigurations:??? -> ?tags:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of MediaTailorPlaybackConfigurationArn.t ]) list ] list | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of AdConfigurationArn.t ]) 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