Interface RedshiftIAMParameters.Builder

  • Method Details

    • roleArn

      Use the RoleArn structure to allow Quick Sight to call redshift:GetClusterCredentials on your cluster. The calling principal must have iam:PassRole access to pass the role to Quick Sight. The role's trust policy must allow the Quick Sight service principal to assume the role.

      Parameters:
      roleArn - Use the RoleArn structure to allow Quick Sight to call redshift:GetClusterCredentials on your cluster. The calling principal must have iam:PassRole access to pass the role to Quick Sight. The role's trust policy must allow the Quick Sight service principal to assume the role.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • databaseUser

      RedshiftIAMParameters.Builder databaseUser(String databaseUser)

      The user whose permissions and group memberships will be used by Quick Sight to access the cluster. If this user already exists in your database, Amazon Quick Sight is granted the same permissions that the user has. If the user doesn't exist, set the value of AutoCreateDatabaseUser to True to create a new user with PUBLIC permissions.

      Parameters:
      databaseUser - The user whose permissions and group memberships will be used by Quick Sight to access the cluster. If this user already exists in your database, Amazon Quick Sight is granted the same permissions that the user has. If the user doesn't exist, set the value of AutoCreateDatabaseUser to True to create a new user with PUBLIC permissions.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • databaseGroups

      RedshiftIAMParameters.Builder databaseGroups(Collection<String> databaseGroups)

      A list of groups whose permissions will be granted to Quick Sight to access the cluster. These permissions are combined with the permissions granted to Quick Sight by the DatabaseUser. If you choose to include this parameter, the RoleArn must grant access to redshift:JoinGroup.

      Parameters:
      databaseGroups - A list of groups whose permissions will be granted to Quick Sight to access the cluster. These permissions are combined with the permissions granted to Quick Sight by the DatabaseUser. If you choose to include this parameter, the RoleArn must grant access to redshift:JoinGroup.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • databaseGroups

      RedshiftIAMParameters.Builder databaseGroups(String... databaseGroups)

      A list of groups whose permissions will be granted to Quick Sight to access the cluster. These permissions are combined with the permissions granted to Quick Sight by the DatabaseUser. If you choose to include this parameter, the RoleArn must grant access to redshift:JoinGroup.

      Parameters:
      databaseGroups - A list of groups whose permissions will be granted to Quick Sight to access the cluster. These permissions are combined with the permissions granted to Quick Sight by the DatabaseUser. If you choose to include this parameter, the RoleArn must grant access to redshift:JoinGroup.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • autoCreateDatabaseUser

      RedshiftIAMParameters.Builder autoCreateDatabaseUser(Boolean autoCreateDatabaseUser)

      Automatically creates a database user. If your database doesn't have a DatabaseUser, set this parameter to True. If there is no DatabaseUser, Quick Sight can't connect to your cluster. The RoleArn that you use for this operation must grant access to redshift:CreateClusterUser to successfully create the user.

      Parameters:
      autoCreateDatabaseUser - Automatically creates a database user. If your database doesn't have a DatabaseUser, set this parameter to True. If there is no DatabaseUser, Quick Sight can't connect to your cluster. The RoleArn that you use for this operation must grant access to redshift:CreateClusterUser to successfully create the user.
      Returns:
      Returns a reference to this object so that method calls can be chained together.