Module Values.FargateProfileSource

An object representing an Fargate profile.

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

    The name of the Fargate profile.

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

    The full Amazon Resource Name (ARN) of the Fargate profile.

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

    The name of your cluster.

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

    The Unix epoch timestamp at object creation.

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

    The Amazon Resource Name (ARN) of the Pod execution role to use for any Pod that matches the selectors in the Fargate profile. For more information, see Pod execution role in the Amazon EKS User Guide.

    *)
  6. subnets : StringList.t option;
    (*

    The IDs of subnets to launch a Pod into.

    *)
  7. selectors : FargateProfileSelectors.t option;
    (*

    The selectors to match for a Pod to use this Fargate profile.

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

    The current status of the Fargate profile.

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

    Metadata that assists with categorization and organization. Each tag consists of a key and an optional value. You define both. Tags don't propagate to any other cluster or Amazon Web Services resources.

    *)
  10. health : FargateProfileHealth.t option;
    (*

    The health status of the Fargate profile. If there are issues with your Fargate profile's health, they are listed here.

    *)
}
Sourceval make : ?fargateProfileName:??? -> ?fargateProfileArn:??? -> ?clusterName:??? -> ?createdAt:??? -> ?podExecutionRoleArn:??? -> ?subnets:??? -> ?selectors:??? -> ?status:??? -> ?tags:??? -> ?health:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of String_.t | `Structure of (string * [> `Map of ([> `String of String_.t ] * [> `String of String_.t ]) list | `String of String_.t ]) list ] list | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of String_.t | `Structure of (string * [> `List of [> `Structure of (string * [> `Enum of string | `List of [> `String of String_.t ] list | `String of String_.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