@Stability(value=Stable)
public static interface CfnDataSource.RdsHttpEndpointConfigProperty
extends software.amazon.jsii.JsiiSerializable
RdsHttpEndpointConfig is a property of the AWS AppSync DataSource RelationalDatabaseConfig resource.
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.appsync.*;
RdsHttpEndpointConfigProperty rdsHttpEndpointConfigProperty = RdsHttpEndpointConfigProperty.builder()
.awsRegion("awsRegion")
.awsSecretStoreArn("awsSecretStoreArn")
.dbClusterIdentifier("dbClusterIdentifier")
// the properties below are optional
.databaseName("databaseName")
.schema("schema")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnDataSource.RdsHttpEndpointConfigProperty.Builder
A builder for
CfnDataSource.RdsHttpEndpointConfigProperty |
static class |
CfnDataSource.RdsHttpEndpointConfigProperty.Jsii$Proxy
An implementation for
CfnDataSource.RdsHttpEndpointConfigProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnDataSource.RdsHttpEndpointConfigProperty.Builder |
builder() |
String |
getAwsRegion()
AWS Region for RDS HTTP endpoint.
|
String |
getAwsSecretStoreArn()
The ARN for database credentials stored in AWS Secrets Manager .
|
default String |
getDatabaseName()
Logical database name.
|
String |
getDbClusterIdentifier()
Amazon RDS cluster Amazon Resource Name (ARN).
|
default String |
getSchema()
Logical schema name.
|
@Stability(value=Stable) @NotNull String getAwsRegion()
@Stability(value=Stable) @NotNull String getAwsSecretStoreArn()
@Stability(value=Stable) @NotNull String getDbClusterIdentifier()
@Stability(value=Stable) @Nullable default String getDatabaseName()
@Stability(value=Stable) @Nullable default String getSchema()
@Stability(value=Stable) static CfnDataSource.RdsHttpEndpointConfigProperty.Builder builder()
Copyright © 2022. All rights reserved.