Module Values.GetFleetResponseSource

Mixin that adds an optional ARN field to response structures. Apply to SummaryMixins (flows into Get, Summary, and BatchGet) and Create outputs.

Sourcetype nonrec t = {
  1. fleetId : FleetId.t option;
    (*

    The fleet ID.

    *)
  2. farmId : FarmId.t option;
    (*

    The farm ID of the farm in the fleet.

    *)
  3. displayName : ResourceName.t option;
    (*

    The display name of the fleet. This field can store any content. Escape or encode this content before displaying it on a webpage or any other system that might interpret the content of this field.

    *)
  4. status : FleetStatus.t option;
    (*

    The status of the fleet.

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

    A message that communicates a suspended status of the fleet.

    *)
  6. autoScalingStatus : AutoScalingStatus.t option;
    (*

    The Auto Scaling status of the fleet. Either GROWING, STEADY, or SHRINKING.

    *)
  7. targetWorkerCount : Integer.t option;
    (*

    The number of target workers in the fleet.

    *)
  8. workerCount : Integer.t option;
    (*

    The number of workers in the fleet.

    *)
  9. minWorkerCount : MinZeroMaxInteger.t option;
    (*

    The minimum number of workers specified in the fleet.

    *)
  10. maxWorkerCount : MinZeroMaxInteger.t option;
    (*

    The maximum number of workers specified in the fleet.

    *)
  11. configuration : FleetConfiguration.t option;
    (*

    The configuration setting for the fleet.

    *)
  12. createdAt : CreatedAt.t option;
    (*

    The date and time the resource was created.

    *)
  13. createdBy : CreatedBy.t option;
    (*

    The user or system that created this resource.

    *)
  14. updatedAt : UpdatedAt.t option;
    (*

    The date and time the resource was updated.

    *)
  15. updatedBy : UpdatedBy.t option;
    (*

    The user or system that updated this resource.

    *)
  16. description : Description.t option;
    (*

    The description of the fleet. This field can store any content. Escape or encode this content before displaying it on a webpage or any other system that might interpret the content of this field.

    *)
  17. hostConfiguration : HostConfiguration.t option;
    (*

    The script that runs as a worker is starting up that you can use to provide additional configuration for workers in your fleet.

    *)
  18. capabilities : FleetCapabilities.t option;
    (*

    Outlines what the fleet is capable of for minimums, maximums, and naming, in addition to attribute names and values.

    *)
  19. roleArn : IamRoleArn.t option;
    (*

    The IAM role ARN.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `InternalServerErrorException of InternalServerErrorException.t
  3. | `ResourceNotFoundException of ResourceNotFoundException.t
  4. | `ThrottlingException of ThrottlingException.t
  5. | `ValidationException of ValidationException.t
  6. | `Unknown_operation_error of string * string option
]
Sourceval make : ?fleetId:??? -> ?farmId:??? -> ?displayName:??? -> ?status:??? -> ?statusMessage:??? -> ?autoScalingStatus:??? -> ?targetWorkerCount:??? -> ?workerCount:??? -> ?minWorkerCount:??? -> ?maxWorkerCount:??? -> ?configuration:??? -> ?createdAt:??? -> ?createdBy:??? -> ?updatedAt:??? -> ?updatedBy:??? -> ?description:??? -> ?hostConfiguration:??? -> ?capabilities:??? -> ?roleArn:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of AccessDeniedException.t | `InternalServerErrorException of InternalServerErrorException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `AccessDeniedException of AccessDeniedException.t | `InternalServerErrorException of InternalServerErrorException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of Integer.t | `String of FleetId.t | `Structure of (string * [> `Integer of HostConfigurationScriptTimeoutSeconds.t | `List of [> `Structure of (string * [> `Float of Float_.t | `List of [> `String of AttributeCapabilityValue.t ] list | `String of AmountCapabilityName.t ]) list ] list | `String of HostConfigurationScript.t | `Structure of (string * [> `Enum of string | `String of StorageProfileId.t | `Structure of (string * [> `Enum of string | `Integer of MinZeroMaxInteger.t | `List of [> `Enum of string | `String of InstanceType.t | `Structure of (string * [> `Float of Float_.t | `List of [> `String of AttributeCapabilityValue.t ] list | `String of AmountCapabilityName.t ]) list ] list | `Structure of (string * [> `Integer of MinOneMaxTenThousand.t | `List of [> `Structure of (string * [> `Enum of string | `String of AcceleratorRuntime.t ]) list ] list | `Structure of (string * [> `Integer of MinZeroMaxInteger.t ]) list ]) list ]) list ]) list ]) list | `Timestamp of CreatedAt.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