Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

ModifyClusterIamRolesMessage

import type { ModifyClusterIamRolesMessage } from "https://aws-api.deno.dev/v0.3/services/redshift.ts?docs=full";
interface ModifyClusterIamRolesMessage {
AddIamRoles?: string[] | null;
ClusterIdentifier: string;
DefaultIamRoleArn?: string | null;
RemoveIamRoles?: string[] | null;
}

§Properties

§
AddIamRoles?: string[] | null
[src]

Zero or more IAM roles to associate with the cluster. The roles must be in their Amazon Resource Name (ARN) format. You can associate up to 10 IAM roles with a single cluster in a single request.

§
ClusterIdentifier: string
[src]

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

§
DefaultIamRoleArn?: string | null
[src]

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

§
RemoveIamRoles?: string[] | null
[src]

Zero or more IAM roles in ARN format to disassociate from the cluster. You can disassociate up to 10 IAM roles from a single cluster in a single request.