Module Values.DescribeAddonConfigurationResponseSource

Returns configuration options.

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

    The name of the add-on.

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

    The version of the add-on. The version must match one of the versions returned by DescribeAddonVersions .

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

    A JSON schema that's used to validate the configuration values you provide when an add-on is created or updated.

    *)
  4. podIdentityConfiguration : AddonPodIdentityConfigurationList.t option;
    (*

    The Kubernetes service account name used by the add-on, and any suggested IAM policies. Use this information to create an IAM Role for the add-on.

    *)
}
Sourcetype nonrec error = [
  1. | `InvalidParameterException of InvalidParameterException.t
  2. | `ResourceNotFoundException of ResourceNotFoundException.t
  3. | `ServerException of ServerException.t
  4. | `Unknown_operation_error of string * string option
]
Sourceval make : ?addonName:??? -> ?addonVersion:??? -> ?configurationSchema:??? -> ?podIdentityConfiguration:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `InvalidParameterException of InvalidParameterException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ServerException of ServerException.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `InvalidParameterException of InvalidParameterException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ServerException of ServerException.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `List of [> `String of String_.t ] list | `String of String_.t ]) list ] list | `String of String_.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