package awsdocdb // 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 "github.com/aws/aws-cdk-go/awscdk" // // databaseInstanceAttributes := &DatabaseInstanceAttributes{ // InstanceEndpointAddress: jsii.String("instanceEndpointAddress"), // InstanceIdentifier: jsii.String("instanceIdentifier"), // Port: jsii.Number(123), // } // type DatabaseInstanceAttributes struct { // The endpoint address. InstanceEndpointAddress *string `field:"required" json:"instanceEndpointAddress" yaml:"instanceEndpointAddress"` // The instance identifier. InstanceIdentifier *string `field:"required" json:"instanceIdentifier" yaml:"instanceIdentifier"` // The database port. Port *float64 `field:"required" json:"port" yaml:"port"` }