pub struct DBInstance {Show 26 fields
pub auto_minor_version_upgrade: Option<bool>,
pub availability_zone: Option<String>,
pub backup_retention_period: Option<i64>,
pub ca_certificate_identifier: Option<String>,
pub db_cluster_identifier: Option<String>,
pub db_instance_arn: Option<String>,
pub db_instance_class: Option<String>,
pub db_instance_identifier: Option<String>,
pub db_instance_status: Option<String>,
pub db_subnet_group: Option<DBSubnetGroup>,
pub dbi_resource_id: Option<String>,
pub enabled_cloudwatch_logs_exports: Option<Vec<String>>,
pub endpoint: Option<Endpoint>,
pub engine: Option<String>,
pub engine_version: Option<String>,
pub instance_create_time: Option<String>,
pub kms_key_id: Option<String>,
pub latest_restorable_time: Option<String>,
pub pending_modified_values: Option<PendingModifiedValues>,
pub preferred_backup_window: Option<String>,
pub preferred_maintenance_window: Option<String>,
pub promotion_tier: Option<i64>,
pub publicly_accessible: Option<bool>,
pub status_infos: Option<Vec<DBInstanceStatusInfo>>,
pub storage_encrypted: Option<bool>,
pub vpc_security_groups: Option<Vec<VpcSecurityGroupMembership>>,
}
Expand description
Detailed information about an instance.
Fields§
§auto_minor_version_upgrade: Option<bool>
Indicates that minor version patches are applied automatically.
availability_zone: Option<String>
Specifies the name of the Availability Zone that the instance is located in.
backup_retention_period: Option<i64>
Specifies the number of days for which automatic snapshots are retained.
ca_certificate_identifier: Option<String>
The identifier of the CA certificate for this DB instance.
db_cluster_identifier: Option<String>
Contains the name of the cluster that the instance is a member of if the instance is a member of a cluster.
db_instance_arn: Option<String>
The Amazon Resource Name (ARN) for the instance.
db_instance_class: Option<String>
Contains the name of the compute and memory capacity class of the instance.
db_instance_identifier: Option<String>
Contains a user-provided database identifier. This identifier is the unique key that identifies an instance.
db_instance_status: Option<String>
Specifies the current state of this database.
db_subnet_group: Option<DBSubnetGroup>
Specifies information on the subnet group that is associated with the instance, including the name, description, and subnets in the subnet group.
dbi_resource_id: Option<String>
The AWS Region-unique, immutable identifier for the instance. This identifier is found in AWS CloudTrail log entries whenever the AWS KMS key for the instance is accessed.
enabled_cloudwatch_logs_exports: Option<Vec<String>>
A list of log types that this instance is configured to export to Amazon CloudWatch Logs.
endpoint: Option<Endpoint>
Specifies the connection endpoint.
engine: Option<String>
Provides the name of the database engine to be used for this instance.
engine_version: Option<String>
Indicates the database engine version.
instance_create_time: Option<String>
Provides the date and time that the instance was created.
kms_key_id: Option<String>
If StorageEncrypted
is true
, the AWS KMS key identifier for the encrypted instance.
latest_restorable_time: Option<String>
Specifies the latest time to which a database can be restored with point-in-time restore.
pending_modified_values: Option<PendingModifiedValues>
Specifies that changes to the instance are pending. This element is included only when changes are pending. Specific changes are identified by subelements.
preferred_backup_window: Option<String>
Specifies the daily time range during which automated backups are created if automated backups are enabled, as determined by the BackupRetentionPeriod
.
preferred_maintenance_window: Option<String>
Specifies the weekly time range during which system maintenance can occur, in Universal Coordinated Time (UTC).
promotion_tier: Option<i64>
A value that specifies the order in which an Amazon DocumentDB replica is promoted to the primary instance after a failure of the existing primary instance.
publicly_accessible: Option<bool>
Not supported. Amazon DocumentDB does not currently support public endpoints. The value of PubliclyAccessible
is always false
.
status_infos: Option<Vec<DBInstanceStatusInfo>>
The status of a read replica. If the instance is not a read replica, this is blank.
storage_encrypted: Option<bool>
Specifies whether or not the instance is encrypted.
vpc_security_groups: Option<Vec<VpcSecurityGroupMembership>>
Provides a list of VPC security group elements that the instance belongs to.
Trait Implementations§
Source§impl Clone for DBInstance
impl Clone for DBInstance
Source§fn clone(&self) -> DBInstance
fn clone(&self) -> DBInstance
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more