aws-cdk-lib.aws_docdb.DatabaseInstanceAttributes

interface DatabaseInstanceAttributes

LanguageType name
.NETAmazon.CDK.AWS.DocDB.DatabaseInstanceAttributes
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsdocdb#DatabaseInstanceAttributes
Javasoftware.amazon.awscdk.services.docdb.DatabaseInstanceAttributes
Pythonaws_cdk.aws_docdb.DatabaseInstanceAttributes
TypeScript (source)aws-cdk-lib » 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 { aws_docdb as docdb } from 'aws-cdk-lib';
const databaseInstanceAttributes: docdb.DatabaseInstanceAttributes = {
  instanceEndpointAddress: 'instanceEndpointAddress',
  instanceIdentifier: 'instanceIdentifier',
  port: 123,
};

Properties

NameTypeDescription
instanceEndpointAddressstringThe endpoint address.
instanceIdentifierstringThe instance identifier.
portnumberThe database port.

instanceEndpointAddress

Type: string

The endpoint address.


instanceIdentifier

Type: string

The instance identifier.


port

Type: number

The database port.