Module Values.DistributionConfigurationSource

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. distributions : DistributionList.t option;
    (*

    The distribution objects that apply Region-specific settings for the deployment of the image to targeted Regions.

    *)
  5. timeoutMinutes : DistributionTimeoutMinutes.t option;
    (*

    The maximum duration in minutes for this distribution configuration.

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

    The date on which this distribution configuration was created.

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

    The date on which this distribution configuration was last updated.

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

    The tags of the distribution configuration.

    *)
}
Sourceval make : ?arn:??? -> ?name:??? -> ?description:??? -> ?distributions:??? -> ?timeoutMinutes:??? -> ?dateCreated:??? -> ?dateUpdated:??? -> ?tags:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of DistributionTimeoutMinutes.t | `List of [> `Structure of (string * [> `List of [> `String of LicenseConfigurationArn.t | `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `Integer of MaxParallelLaunches.t | `String of LaunchTemplateId.t | `Structure of (string * [> `Integer of TargetResourceCount.t | `String of LaunchTemplateId.t ]) list ]) list ] list | `String of NonEmptyString.t | `Structure of (string * [> `Enum of string | `List of [> `String of AccountId.t ] list | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of AmiNameString.t | `Structure of (string * [> `Enum of string | `List of [> `String of AccountId.t ] list | `String of NonEmptyString.t ]) list ]) list ]) list ] 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