Module Values.ExpressGatewayServiceConfigurationSource

Represents a specific configuration revision of an Express service, containing all the settings and parameters for that revision.

Sourcetype nonrec t = {
  1. serviceRevisionArn : String_.t option;
    (*

    The ARN of the service revision.

    *)
  2. executionRoleArn : String_.t option;
    (*

    The ARN of the task execution role for the service revision.

    *)
  3. taskRoleArn : String_.t option;
    (*

    The ARN of the task role for the service revision.

    *)
  4. cpu : String_.t option;
    (*

    The CPU allocation for tasks in this service revision.

    *)
  5. memory : String_.t option;
    (*

    The memory allocation for tasks in this service revision.

    *)
  6. networkConfiguration : ExpressGatewayServiceNetworkConfiguration.t option;
    (*

    The network configuration for tasks in this service revision.

    *)
  7. healthCheckPath : String_.t option;
    (*

    The health check path for this service revision.

    *)
  8. primaryContainer : ExpressGatewayContainer.t option;
    (*

    The primary container configuration for this service revision.

    *)
  9. scalingTarget : ExpressGatewayScalingTarget.t option;
    (*

    The auto-scaling configuration for this service revision.

    *)
  10. ingressPaths : IngressPathSummaries.t option;
    (*

    The entry point into this service revision.

    *)
  11. createdAt : Timestamp.t option;
    (*

    The Unix timestamp for when this service revision was created.

    *)
}
Sourceval make : ?serviceRevisionArn:??? -> ?executionRoleArn:??? -> ?taskRoleArn:??? -> ?cpu:??? -> ?memory:??? -> ?networkConfiguration:??? -> ?healthCheckPath:??? -> ?primaryContainer:??? -> ?scalingTarget:??? -> ?ingressPaths:??? -> ?createdAt:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Enum of string | `String of String_.t ]) list ] list | `String of String_.t | `Structure of (string * [> `Enum of string | `Integer of BoxedInteger.t | `List of [> `String of String_.t | `Structure of (string * [> `String of String_.t ]) list ] list | `String of String_.t | `Structure of (string * [> `String of String_.t ]) list ]) list | `Timestamp of Timestamp.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