@Stability(value=Stable)
public static interface CfnDBProxy.AuthFormatProperty
extends software.amazon.jsii.JsiiSerializable
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.rds.*;
AuthFormatProperty authFormatProperty = AuthFormatProperty.builder()
.authScheme("authScheme")
.description("description")
.iamAuth("iamAuth")
.secretArn("secretArn")
.userName("userName")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnDBProxy.AuthFormatProperty.Builder
A builder for
CfnDBProxy.AuthFormatProperty |
static class |
CfnDBProxy.AuthFormatProperty.Jsii$Proxy
An implementation for
CfnDBProxy.AuthFormatProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnDBProxy.AuthFormatProperty.Builder |
builder() |
default String |
getAuthScheme()
The type of authentication that the proxy uses for connections from the proxy to the underlying database.
|
default String |
getDescription()
A user-specified description about the authentication used by a proxy to log in as a specific database user.
|
default String |
getIamAuth()
Whether to require or disallow AWS Identity and Access Management (IAM) authentication for connections to the proxy.
|
default String |
getSecretArn()
The Amazon Resource Name (ARN) representing the secret that the proxy uses to authenticate to the RDS DB instance or Aurora DB cluster.
|
default String |
getUserName()
The name of the database user to which the proxy connects.
|
@Stability(value=Stable) @Nullable default String getAuthScheme()
Valid Values: SECRETS
@Stability(value=Stable) @Nullable default String getDescription()
@Stability(value=Stable) @Nullable default String getIamAuth()
Valid Values: DISABLED | REQUIRED
@Stability(value=Stable) @Nullable default String getSecretArn()
These secrets are stored within Amazon Secrets Manager.
@Stability(value=Stable) @Nullable default String getUserName()
@Stability(value=Stable) static CfnDBProxy.AuthFormatProperty.Builder builder()
Copyright © 2022. All rights reserved.