interface DatabaseInstanceAttributes
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.DocDB.DatabaseInstanceAttributes |
Java | software.amazon.awscdk.services.docdb.DatabaseInstanceAttributes |
Python | aws_cdk.aws_docdb.DatabaseInstanceAttributes |
TypeScript (source) | @aws-cdk/aws-docdb » DatabaseInstanceAttributes |
Properties that describe an existing instance.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as docdb from '@aws-cdk/aws-docdb';
const databaseInstanceAttributes: docdb.DatabaseInstanceAttributes = {
instanceEndpointAddress: 'instanceEndpointAddress',
instanceIdentifier: 'instanceIdentifier',
port: 123,
};
Properties
Name | Type | Description |
---|---|---|
instance | string | The endpoint address. |
instance | string | The instance identifier. |
port | number | The database port. |
instanceEndpointAddress
Type:
string
The endpoint address.
instanceIdentifier
Type:
string
The instance identifier.
port
Type:
number
The database port.