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
- Struct
- Aws::Redshift::Types::ModifyClusterIamRolesMessage
 
- Defined in:
- (unknown)
Overview
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
- 
  
    
      #add_iam_roles  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Zero or more IAM roles to associate with the cluster. 
- 
  
    
      #cluster_identifier  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The unique identifier of the cluster for which you want to associate or disassociate IAM roles. 
- 
  
    
      #remove_iam_roles  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Zero or more IAM roles in ARN format to disassociate from the cluster. 
Instance Attribute Details
#add_iam_roles ⇒ Array<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.
#cluster_identifier ⇒ String
The unique identifier of the cluster for which you want to associate or disassociate IAM roles.
#remove_iam_roles ⇒ Array<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.