DatabaseInstanceAttributes
- class aws_cdk.aws_docdb.DatabaseInstanceAttributes(*, instance_endpoint_address, instance_identifier, port)
Bases:
object
Properties that describe an existing instance.
- Parameters:
instance_endpoint_address (
str
) – The endpoint address.instance_identifier (
str
) – The instance identifier.port (
Union
[int
,float
]) – The database port.
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_docdb as docdb database_instance_attributes = docdb.DatabaseInstanceAttributes( instance_endpoint_address="instanceEndpointAddress", instance_identifier="instanceIdentifier", port=123 )
Attributes
- instance_endpoint_address
The endpoint address.
- instance_identifier
The instance identifier.
- port
The database port.