public static interface CfnDataSource.RdsHttpEndpointConfigProperty
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() |
java.lang.String |
getAwsRegion()
AWS Region for RDS HTTP endpoint.
|
java.lang.String |
getAwsSecretStoreArn()
The ARN for database credentials stored in AWS Secrets Manager .
|
default java.lang.String |
getDatabaseName()
Logical database name.
|
java.lang.String |
getDbClusterIdentifier()
Amazon RDS cluster Amazon Resource Name (ARN).
|
default java.lang.String |
getSchema()
Logical schema name.
|
java.lang.String getAwsRegion()
java.lang.String getAwsSecretStoreArn()
java.lang.String getDbClusterIdentifier()
default java.lang.String getDatabaseName()
default java.lang.String getSchema()
static CfnDataSource.RdsHttpEndpointConfigProperty.Builder builder()