You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::Redshift::Types::ModifyClusterIamRolesMessage

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing ModifyClusterIamRolesMessage as input to an Aws::Client method, you can use a vanilla Hash:

{
  cluster_identifier: "String", # required
  add_iam_roles: ["String"],
  remove_iam_roles: ["String"],
}

Instance Attribute Summary collapse

Instance Attribute Details

#add_iam_rolesArray<String>

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.

Returns:

  • (Array<String>)

    Zero or more IAM roles to associate with the cluster.

#cluster_identifierString

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

Returns:

  • (String)

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

#remove_iam_rolesArray<String>

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.

Returns:

  • (Array<String>)

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