import * as pulumi from "@pulumi/pulumi"; import * as pulumiKubernetes from "@pulumi/kubernetes"; /** * ClusterAdmins is a component that create the resources in the Cluster for a set of AWS IAM Users and Roles, managing the access with the integration with AWS IAM. */ export declare class ClusterAdmins extends pulumi.ComponentResource { /** * Returns true if the given object is an instance of ClusterAdmins. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is ClusterAdmins; /** * The Kubernetes ClusterRoleBinding to associate the ClusterRole to the project. */ readonly clusterRoleBinding: pulumi.Output; /** * The Kubernetes provider used to provision Kubernetes resources. */ readonly provider: pulumi.Output; /** * Create a ClusterAdmins resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: ClusterAdminsArgs, opts?: pulumi.ComponentResourceOptions); } /** * The set of arguments for constructing a ClusterAdmins resource. */ export interface ClusterAdminsArgs { /** * Kubernetes provider used by Pulumi. */ kubeconfig: pulumi.Input; /** * The name for the group of Cluster Admins. */ name: pulumi.Input; /** * The list of AWS IAM User arns. */ userArns: pulumi.Input[]>; }