@Stability(value=Stable)
public static interface CfnDataSource.RelationalDatabaseConfigProperty
extends software.amazon.jsii.JsiiSerializable
RelationalDatabaseConfig is a property of the AWS::AppSync::DataSource property type.
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.*;
RelationalDatabaseConfigProperty relationalDatabaseConfigProperty = RelationalDatabaseConfigProperty.builder()
.relationalDatabaseSourceType("relationalDatabaseSourceType")
// the properties below are optional
.rdsHttpEndpointConfig(RdsHttpEndpointConfigProperty.builder()
.awsRegion("awsRegion")
.awsSecretStoreArn("awsSecretStoreArn")
.dbClusterIdentifier("dbClusterIdentifier")
// the properties below are optional
.databaseName("databaseName")
.schema("schema")
.build())
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnDataSource.RelationalDatabaseConfigProperty.Builder
A builder for
CfnDataSource.RelationalDatabaseConfigProperty |
static class |
CfnDataSource.RelationalDatabaseConfigProperty.Jsii$Proxy
An implementation for
CfnDataSource.RelationalDatabaseConfigProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnDataSource.RelationalDatabaseConfigProperty.Builder |
builder() |
default Object |
getRdsHttpEndpointConfig()
Information about the Amazon RDS resource.
|
String |
getRelationalDatabaseSourceType()
The type of relational data source.
|
@Stability(value=Stable) @NotNull String getRelationalDatabaseSourceType()
@Stability(value=Stable) @Nullable default Object getRdsHttpEndpointConfig()
@Stability(value=Stable) static CfnDataSource.RelationalDatabaseConfigProperty.Builder builder()
Copyright © 2022. All rights reserved.