Module Values.GetTargetGroupResponseSource

Retrieves information about the specified target group.

Sourcetype nonrec t = {
  1. id : TargetGroupId.t option;
    (*

    The ID of the target group.

    *)
  2. arn : TargetGroupArn.t option;
    (*

    The Amazon Resource Name (ARN) of the target group.

    *)
  3. name : TargetGroupName.t option;
    (*

    The name of the target group.

    *)
  4. type_ : TargetGroupType.t option;
    (*

    The target group type.

    *)
  5. config : TargetGroupConfig.t option;
    (*

    The target group configuration.

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

    The date and time that the target group was created, in ISO-8601 format.

    *)
  7. lastUpdatedAt : Timestamp.t option;
    (*

    The date and time that the target group was last updated, in ISO-8601 format.

    *)
  8. status : TargetGroupStatus.t option;
    (*

    The status.

    *)
  9. serviceArns : ServiceArnList.t option;
    (*

    The Amazon Resource Names (ARNs) of the service.

    *)
  10. failureMessage : String_.t option;
    (*

    The failure message.

    *)
  11. failureCode : String_.t option;
    (*

    The failure code.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `InternalServerException of InternalServerException.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 : ?id:??? -> ?arn:??? -> ?name:??? -> ?type_:??? -> ?config:??? -> ?createdAt:??? -> ?lastUpdatedAt:??? -> ?status:??? -> ?serviceArns:??? -> ?failureMessage:??? -> ?failureCode:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of AccessDeniedException.t | `InternalServerException of InternalServerException.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 | `InternalServerException of InternalServerException.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 | `List of [> `String of ServiceArn.t ] list | `String of TargetGroupId.t | `Structure of (string * [> `Enum of string | `Integer of Port.t | `String of VpcId.t | `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `Integer of HealthCheckPort.t | `String of HealthCheckPath.t | `Structure of (string * [> `String of HttpCodeMatcher.t ]) list ]) 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