Module Values.DistributionConfigurationSummarySource

A high-level overview of a distribution configuration.

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

    The Amazon Resource Name (ARN) of the distribution configuration.

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

    The name of the distribution configuration.

    *)
  3. description : NonEmptyString.t option;
    (*

    The description of the distribution configuration.

    *)
  4. dateCreated : DateTime.t option;
    (*

    The date on which the distribution configuration was created.

    *)
  5. dateUpdated : DateTime.t option;
    (*

    The date on which the distribution configuration was updated.

    *)
  6. tags : TagMap.t option;
    (*

    The tags associated with the distribution configuration.

    *)
  7. regions : RegionList.t option;
    (*

    A list of Regions where the container image is distributed to.

    *)
}
Sourceval make : ?arn:??? -> ?name:??? -> ?description:??? -> ?dateCreated:??? -> ?dateUpdated:??? -> ?tags:??? -> ?regions:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of NonEmptyString.t ] list | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of ImageBuilderArn.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