Module Values.InstanceConfigurationSource

Defines a custom base AMI and block device mapping configurations of an instance used for building and testing container images.

Sourcetype nonrec t = {
  1. image : NonEmptyString.t option;
    (*

    The base image for a container build and test instance. This can contain an AMI ID or it can specify an Amazon Web Services Systems Manager (SSM) Parameter Store Parameter, prefixed by ssm:, followed by the parameter name or ARN. If not specified, Image Builder uses the appropriate ECS-optimized AMI as a base image.

    *)
  2. blockDeviceMappings : InstanceBlockDeviceMappings.t option;
    (*

    Defines the block devices to attach for building an instance from this Image Builder AMI.

    *)
}
Sourceval make : ?image:??? -> ?blockDeviceMappings:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of NonEmptyString.t | `Structure of (string * [> `Boolean of NullableBoolean.t | `Enum of string | `Integer of EbsIopsInteger.t | `String of NonEmptyString.t ]) list ]) list ] list | `String of NonEmptyString.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