Interface CfnConnection.RedshiftCredentialsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnConnection.RedshiftCredentialsProperty.Jsii$Proxy
- Enclosing class:
CfnConnection
@Stability(Stable)
public static interface CfnConnection.RedshiftCredentialsProperty
extends software.amazon.jsii.JsiiSerializable
Amazon Redshift credentials of a connection.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.datazone.*;
RedshiftCredentialsProperty redshiftCredentialsProperty = RedshiftCredentialsProperty.builder()
.secretArn("secretArn")
.usernamePassword(UsernamePasswordProperty.builder()
.password("password")
.username("username")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnConnection.RedshiftCredentialsPropertystatic final classAn implementation forCfnConnection.RedshiftCredentialsProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getSecretArn
The secret ARN of the Amazon Redshift credentials of a connection.- See Also:
-
getUsernamePassword
The username and password of the Amazon Redshift credentials of a connection.Returns union: either
IResolvableorCfnConnection.UsernamePasswordProperty- See Also:
-
builder
-