Module Values.InfrastructureConfigurationSummarySource

The infrastructure used when building Amazon EC2 AMIs.

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

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

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

    The name of the infrastructure configuration.

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

    The description of the infrastructure configuration.

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

    The date on which the infrastructure configuration was created.

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

    The date on which the infrastructure configuration was last updated.

    *)
  6. resourceTags : ResourceTagMap.t option;
    (*

    The tags attached to the image created by Image Builder.

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

    The tags of the infrastructure configuration.

    *)
  8. instanceTypes : InstanceTypeList.t option;
    (*

    The instance types of the infrastructure configuration.

    *)
  9. instanceProfileName : InstanceProfileNameType.t option;
    (*

    The instance profile of the infrastructure configuration.

    *)
  10. placement : Placement.t option;
    (*

    The instance placement settings that define where the instances that are launched from your image will run.

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