Module Values.ModifyClusterIamRolesMessageSource

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

    The unique identifier of the cluster for which you want to associate or disassociate IAM roles.

    *)
  2. addIamRoles : IamRoleArnList.t option;
    (*

    Zero or more IAM roles to associate with the cluster. The roles must be in their Amazon Resource Name (ARN) format.

    *)
  3. removeIamRoles : IamRoleArnList.t option;
    (*

    Zero or more IAM roles in ARN format to disassociate from the cluster.

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

    The Amazon Resource Name (ARN) for the IAM role that was set as default for the cluster when the cluster was last modified.

    *)
}
Sourceval context_ : string
Sourceval make : ?addIamRoles:??? -> ?removeIamRoles:??? -> ?defaultIamRoleArn:??? -> clusterIdentifier:String_.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of String_.t ] 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