Interface CfnKnowledgeBasePropsMixin.RedshiftProvisionedAuthConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnKnowledgeBasePropsMixin.RedshiftProvisionedAuthConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnKnowledgeBasePropsMixin
@Stability(Stable)
public static interface CfnKnowledgeBasePropsMixin.RedshiftProvisionedAuthConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
Contains configurations for authentication to an Amazon Redshift provisioned data warehouse.
Specify the type of authentication to use in the type field and include the corresponding field. If you specify IAM authentication, you don't need to include another field.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.bedrock.*;
RedshiftProvisionedAuthConfigurationProperty redshiftProvisionedAuthConfigurationProperty = RedshiftProvisionedAuthConfigurationProperty.builder()
.databaseUser("databaseUser")
.type("type")
.usernamePasswordSecretArn("usernamePasswordSecretArn")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnKnowledgeBasePropsMixin.RedshiftProvisionedAuthConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDatabaseUser
The database username for authentication to an Amazon Redshift provisioned data warehouse.- See Also:
-
getType
The type of authentication to use.- See Also:
-
getUsernamePasswordSecretArn
The ARN of an Secrets Manager secret for authentication.- See Also:
-
builder
@Stability(Stable) static CfnKnowledgeBasePropsMixin.RedshiftProvisionedAuthConfigurationProperty.Builder builder()
-