Class RedshiftIAMParameters
- java.lang.Object
-
- software.amazon.awssdk.services.quicksight.model.RedshiftIAMParameters
-
- All Implemented Interfaces:
Serializable,SdkPojo,ToCopyableBuilder<RedshiftIAMParameters.Builder,RedshiftIAMParameters>
@Generated("software.amazon.awssdk:codegen") public final class RedshiftIAMParameters extends Object implements SdkPojo, Serializable, ToCopyableBuilder<RedshiftIAMParameters.Builder,RedshiftIAMParameters>
A structure that grants QuickSight access to your cluster and make a call to the
redshift:GetClusterCredentialsAPI. For more information on theredshift:GetClusterCredentialsAPI, seeGetClusterCredentials.- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interfaceRedshiftIAMParameters.Builder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description BooleanautoCreateDatabaseUser()Automatically creates a database user.static RedshiftIAMParameters.Builderbuilder()List<String>databaseGroups()A list of groups whose permissions will be granted to QuickSight to access the cluster.StringdatabaseUser()The user whose permissions and group memberships will be used by QuickSight to access the cluster.booleanequals(Object obj)booleanequalsBySdkFields(Object obj)<T> Optional<T>getValueForField(String fieldName, Class<T> clazz)booleanhasDatabaseGroups()For responses, this returns true if the service returned a value for the DatabaseGroups property.inthashCode()StringroleArn()Use theRoleArnstructure to allow QuickSight to callredshift:GetClusterCredentialson your cluster.Map<String,SdkField<?>>sdkFieldNameToField()List<SdkField<?>>sdkFields()static Class<? extends RedshiftIAMParameters.Builder>serializableBuilderClass()RedshiftIAMParameters.BuildertoBuilder()StringtoString()Returns a string representation of this object.-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface software.amazon.awssdk.utils.builder.ToCopyableBuilder
copy
-
-
-
-
Method Detail
-
roleArn
public final String roleArn()
Use the
RoleArnstructure to allow QuickSight to callredshift:GetClusterCredentialson your cluster. The calling principal must haveiam:PassRoleaccess to pass the role to QuickSight. The role's trust policy must allow the QuickSight service principal to assume the role.- Returns:
- Use the
RoleArnstructure to allow QuickSight to callredshift:GetClusterCredentialson your cluster. The calling principal must haveiam:PassRoleaccess to pass the role to QuickSight. The role's trust policy must allow the QuickSight service principal to assume the role.
-
databaseUser
public final String databaseUser()
The user whose permissions and group memberships will be used by QuickSight to access the cluster. If this user already exists in your database, QuickSight is granted the same permissions that the user has. If the user doesn't exist, set the value of
AutoCreateDatabaseUsertoTrueto create a new user with PUBLIC permissions.- Returns:
- The user whose permissions and group memberships will be used by QuickSight to access the cluster. If
this user already exists in your database, QuickSight is granted the same permissions that the user has.
If the user doesn't exist, set the value of
AutoCreateDatabaseUsertoTrueto create a new user with PUBLIC permissions.
-
hasDatabaseGroups
public final boolean hasDatabaseGroups()
For responses, this returns true if the service returned a value for the DatabaseGroups property. This DOES NOT check that the value is non-empty (for which, you should check theisEmpty()method on the property). This is useful because the SDK will never return a null collection or map, but you may need to differentiate between the service returning nothing (or null) and the service returning an empty collection or map. For requests, this returns true if a value for the property was specified in the request builder, and false if a value was not specified.
-
databaseGroups
public final List<String> databaseGroups()
A list of groups whose permissions will be granted to QuickSight to access the cluster. These permissions are combined with the permissions granted to QuickSight by the
DatabaseUser. If you choose to include this parameter, theRoleArnmust grant access toredshift:JoinGroup.Attempts to modify the collection returned by this method will result in an UnsupportedOperationException.
This method will never return null. If you would like to know whether the service returned this field (so that you can differentiate between null and empty), you can use the
hasDatabaseGroups()method.- Returns:
- A list of groups whose permissions will be granted to QuickSight to access the cluster. These permissions
are combined with the permissions granted to QuickSight by the
DatabaseUser. If you choose to include this parameter, theRoleArnmust grant access toredshift:JoinGroup.
-
autoCreateDatabaseUser
public final Boolean autoCreateDatabaseUser()
Automatically creates a database user. If your database doesn't have a
DatabaseUser, set this parameter toTrue. If there is noDatabaseUser, Amazon QuickSight can't connect to your cluster. TheRoleArnthat you use for this operation must grant access toredshift:CreateClusterUserto successfully create the user.- Returns:
- Automatically creates a database user. If your database doesn't have a
DatabaseUser, set this parameter toTrue. If there is noDatabaseUser, Amazon QuickSight can't connect to your cluster. TheRoleArnthat you use for this operation must grant access toredshift:CreateClusterUserto successfully create the user.
-
toBuilder
public RedshiftIAMParameters.Builder toBuilder()
- Specified by:
toBuilderin interfaceToCopyableBuilder<RedshiftIAMParameters.Builder,RedshiftIAMParameters>
-
builder
public static RedshiftIAMParameters.Builder builder()
-
serializableBuilderClass
public static Class<? extends RedshiftIAMParameters.Builder> serializableBuilderClass()
-
equalsBySdkFields
public final boolean equalsBySdkFields(Object obj)
- Specified by:
equalsBySdkFieldsin interfaceSdkPojo
-
toString
public final String toString()
Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be redacted from this string using a placeholder value.
-
sdkFieldNameToField
public final Map<String,SdkField<?>> sdkFieldNameToField()
- Specified by:
sdkFieldNameToFieldin interfaceSdkPojo
-
-