[−][src]Struct rusoto_docdb::DBInstance
Detailed information about a DB 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 DB instance is located in.
backup_retention_period: Option<i64>
Specifies the number of days for which automatic DB snapshots are retained.
db_cluster_identifier: Option<String>
Contains the name of the DB cluster that the DB instance is a member of if the DB instance is a member of a DB cluster.
db_instance_arn: Option<String>
The Amazon Resource Name (ARN) for the DB instance.
db_instance_class: Option<String>
Contains the name of the compute and memory capacity class of the DB instance.
db_instance_identifier: Option<String>
Contains a user-provided database identifier. This identifier is the unique key that identifies a DB 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 DB instance, including the name, description, and subnets in the subnet group.
dbi_resource_id: Option<String>
The AWS Region-unique, immutable identifier for the DB instance. This identifier is found in AWS CloudTrail log entries whenever the AWS KMS key for the DB instance is accessed.
enabled_cloudwatch_logs_exports: Option<Vec<String>>
A list of log types that this DB 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 DB instance.
engine_version: Option<String>
Indicates the database engine version.
instance_create_time: Option<String>
Provides the date and time that the DB instance was created.
kms_key_id: Option<String>
If StorageEncrypted
is true
, the AWS KMS key identifier for the encrypted DB 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 DB 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>
Specifies the availability options for the DB instance. A value of true
specifies an internet-facing instance with a publicly resolvable DNS name, which resolves to a public IP address. A value of false
specifies an internal instance with a DNS name that resolves to a private IP address.
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 the DB instance is encrypted.
vpc_security_groups: Option<Vec<VpcSecurityGroupMembership>>
Provides a list of VPC security group elements that the DB instance belongs to.
Trait Implementations
impl PartialEq<DBInstance> for DBInstance
[src]
fn eq(&self, other: &DBInstance) -> bool
[src]
fn ne(&self, other: &DBInstance) -> bool
[src]
impl Default for DBInstance
[src]
fn default() -> DBInstance
[src]
impl Clone for DBInstance
[src]
fn clone(&self) -> DBInstance
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Debug for DBInstance
[src]
Auto Trait Implementations
impl Send for DBInstance
impl Sync for DBInstance
Blanket Implementations
impl<T> From for T
[src]
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
impl<T> Erased for T
impl<T> Same for T
type Output = T
Should always be Self