Interface CfnDataSourcePropsMixin.RdsHttpEndpointConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDataSourcePropsMixin.RdsHttpEndpointConfigProperty.Jsii$Proxy
- Enclosing class:
CfnDataSourcePropsMixin
@Stability(Stable)
public static interface CfnDataSourcePropsMixin.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.cfnpropertymixins.services.appsync.*;
RdsHttpEndpointConfigProperty rdsHttpEndpointConfigProperty = RdsHttpEndpointConfigProperty.builder()
.awsRegion("awsRegion")
.awsSecretStoreArn("awsSecretStoreArn")
.databaseName("databaseName")
.dbClusterIdentifier("dbClusterIdentifier")
.schema("schema")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDataSourcePropsMixin.RdsHttpEndpointConfigPropertystatic final classAn implementation forCfnDataSourcePropsMixin.RdsHttpEndpointConfigProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringAWS Region for RDS HTTP endpoint.default ObjectThe ARN for database credentials stored in AWS Secrets Manager .default StringLogical database name.default ObjectAmazon RDS cluster Amazon Resource Name (ARN).default StringLogical schema name.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 .Returns union: either
StringorISecretRef- See Also:
-
getDatabaseName
Logical database name.- See Also:
-
getDbClusterIdentifier
Amazon RDS cluster Amazon Resource Name (ARN).Returns union: either
StringorIDBClusterRef- See Also:
-
getSchema
Logical schema name.- See Also:
-
builder
-