Interface CfnDataSource.RdsHttpEndpointConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDataSource.RdsHttpEndpointConfigProperty.Jsii$Proxy
- Enclosing class:
CfnDataSource
@Stability(Stable)
public static interface CfnDataSource.RdsHttpEndpointConfigProperty
extends software.amazon.jsii.JsiiSerializable
Use the
RdsHttpEndpointConfig
property type to specify the RdsHttpEndpoint
for an AWS AppSync relational database.
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();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnDataSource.RdsHttpEndpointConfigProperty
static final class
An implementation forCfnDataSource.RdsHttpEndpointConfigProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAwsRegion
AWS Region for RDS HTTP endpoint.- See Also:
-
getAwsSecretStoreArn
The ARN for database credentials stored in AWS Secrets Manager .- See Also:
-
getDbClusterIdentifier
Amazon RDS cluster Amazon Resource Name (ARN).- See Also:
-
getDatabaseName
Logical database name.- See Also:
-
getSchema
Logical schema name.- See Also:
-
builder
-