Interface CfnConnectionPropsMixin.RedshiftCredentialsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnConnectionPropsMixin.RedshiftCredentialsProperty.Jsii$Proxy
- Enclosing class:
CfnConnectionPropsMixin
@Stability(Stable)
public static interface CfnConnectionPropsMixin.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.cfnpropertymixins.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 forCfnConnectionPropsMixin.RedshiftCredentialsPropertystatic final classAn implementation forCfnConnectionPropsMixin.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
IResolvableorCfnConnectionPropsMixin.UsernamePasswordProperty- See Also:
-
builder
-