logo
pub struct AwsRdsDbInstanceDetails {
Show 57 fields pub allocated_storage: Option<i64>, pub associated_roles: Option<Vec<AwsRdsDbInstanceAssociatedRole>>, 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 character_set_name: Option<String>, pub copy_tags_to_snapshot: Option<bool>, pub db_cluster_identifier: Option<String>, pub db_instance_class: Option<String>, pub db_instance_identifier: Option<String>, pub db_name: Option<String>, pub db_instance_port: Option<i64>, pub db_instance_status: Option<String>, pub db_parameter_groups: Option<Vec<AwsRdsDbParameterGroup>>, pub db_security_groups: Option<Vec<String>>, pub db_subnet_group: Option<AwsRdsDbSubnetGroup>, pub dbi_resource_id: Option<String>, pub deletion_protection: Option<bool>, pub domain_memberships: Option<Vec<AwsRdsDbDomainMembership>>, pub enabled_cloud_watch_logs_exports: Option<Vec<String>>, pub endpoint: Option<AwsRdsDbInstanceEndpoint>, pub engine: Option<String>, pub engine_version: Option<String>, pub enhanced_monitoring_resource_arn: Option<String>, pub iam_database_authentication_enabled: Option<bool>, pub instance_create_time: Option<String>, pub iops: Option<i64>, pub kms_key_id: Option<String>, pub latest_restorable_time: Option<String>, pub license_model: Option<String>, pub listener_endpoint: Option<AwsRdsDbInstanceEndpoint>, pub master_username: Option<String>, pub max_allocated_storage: Option<i64>, pub monitoring_interval: Option<i64>, pub monitoring_role_arn: Option<String>, pub multi_az: Option<bool>, pub option_group_memberships: Option<Vec<AwsRdsDbOptionGroupMembership>>, pub pending_modified_values: Option<AwsRdsDbPendingModifiedValues>, pub performance_insights_enabled: Option<bool>, pub performance_insights_kms_key_id: Option<String>, pub performance_insights_retention_period: Option<i64>, pub preferred_backup_window: Option<String>, pub preferred_maintenance_window: Option<String>, pub processor_features: Option<Vec<AwsRdsDbProcessorFeature>>, pub promotion_tier: Option<i64>, pub publicly_accessible: Option<bool>, pub read_replica_db_cluster_identifiers: Option<Vec<String>>, pub read_replica_db_instance_identifiers: Option<Vec<String>>, pub read_replica_source_db_instance_identifier: Option<String>, pub secondary_availability_zone: Option<String>, pub status_infos: Option<Vec<AwsRdsDbStatusInfo>>, pub storage_encrypted: Option<bool>, pub storage_type: Option<String>, pub tde_credential_arn: Option<String>, pub timezone: Option<String>, pub vpc_security_groups: Option<Vec<AwsRdsDbInstanceVpcSecurityGroup>>,
}
Expand description

Contains the details of an Amazon RDS DB instance.

Fields

allocated_storage: Option<i64>

The amount of storage (in gigabytes) to initially allocate for the DB instance.

associated_roles: Option<Vec<AwsRdsDbInstanceAssociatedRole>>

The AWS Identity and Access Management (IAM) roles associated with the DB instance.

auto_minor_version_upgrade: Option<bool>

Indicates whether minor version patches are applied automatically.

availability_zone: Option<String>

The Availability Zone where the DB instance will be created.

backup_retention_period: Option<i64>

The number of days for which to retain automated backups.

ca_certificate_identifier: Option<String>

The identifier of the CA certificate for this DB instance.

character_set_name: Option<String>

The name of the character set that this DB instance is associated with.

copy_tags_to_snapshot: Option<bool>

Whether to copy resource tags to snapshots of the DB instance.

db_cluster_identifier: Option<String>

If the DB instance is a member of a DB cluster, contains the name of the DB cluster that the DB instance is a member of.

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-supplied database identifier. This identifier is the unique key that identifies a DB instance.

db_name: Option<String>

The meaning of this parameter differs according to the database engine you use.

MySQL, MariaDB, SQL Server, PostgreSQL

Contains the name of the initial database of this instance that was provided at create time, if one was specified when the DB instance was created. This same name is returned for the life of the DB instance.

Oracle

Contains the Oracle System ID (SID) of the created DB instance. Not shown when the returned parameters do not apply to an Oracle DB instance.

db_instance_port: Option<i64>

Specifies the port that the DB instance listens on. If the DB instance is part of a DB cluster, this can be a different port than the DB cluster port.

db_instance_status: Option<String>

The current status of the DB instance.

db_parameter_groups: Option<Vec<AwsRdsDbParameterGroup>>

A list of the DB parameter groups to assign to the DB instance.

db_security_groups: Option<Vec<String>>

A list of the DB security groups to assign to the DB instance.

db_subnet_group: Option<AwsRdsDbSubnetGroup>

Information about the subnet group that is associated with the DB instance.

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.

deletion_protection: Option<bool>

Indicates whether the DB instance has deletion protection enabled.

When deletion protection is enabled, the database cannot be deleted.

domain_memberships: Option<Vec<AwsRdsDbDomainMembership>>

The Active Directory domain membership records associated with the DB instance.

enabled_cloud_watch_logs_exports: Option<Vec<String>>

A list of log types that this DB instance is configured to export to CloudWatch Logs.

endpoint: Option<AwsRdsDbInstanceEndpoint>

Specifies the connection endpoint.

engine: Option<String>

Provides the name of the database engine to use for this DB instance.

engine_version: Option<String>

Indicates the database engine version.

enhanced_monitoring_resource_arn: Option<String>

The ARN of the CloudWatch Logs log stream that receives the enhanced monitoring metrics data for the DB instance.

iam_database_authentication_enabled: Option<bool>

True if mapping of AWS Identity and Access Management (IAM) accounts to database accounts is enabled, and otherwise false.

IAM database authentication can be enabled for the following database engines.

  • For MySQL 5.6, minor version 5.6.34 or higher

  • For MySQL 5.7, minor version 5.7.16 or higher

  • Aurora 5.6 or higher

instance_create_time: Option<String>

Indicates when the DB instance was created.

Uses the date-time format specified in RFC 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces. For example, 2020-03-22T13:22:13.933Z.

iops: Option<i64>

Specifies the provisioned IOPS (I/O operations per second) for this DB instance.

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.

Uses the date-time format specified in RFC 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces. For example, 2020-03-22T13:22:13.933Z.

license_model: Option<String>

License model information for this DB instance.

listener_endpoint: Option<AwsRdsDbInstanceEndpoint>master_username: Option<String>

The master user name of the DB instance.

max_allocated_storage: Option<i64>

The upper limit to which Amazon RDS can automatically scale the storage of the DB instance.

monitoring_interval: Option<i64>

The interval, in seconds, between points when enhanced monitoring metrics are collected for the DB instance.

monitoring_role_arn: Option<String>

The ARN for the IAM role that permits Amazon RDS to send enhanced monitoring metrics to CloudWatch Logs.

multi_az: Option<bool>

Whether the DB instance is a multiple Availability Zone deployment.

option_group_memberships: Option<Vec<AwsRdsDbOptionGroupMembership>>

The list of option group memberships for this DB instance.

pending_modified_values: Option<AwsRdsDbPendingModifiedValues>

Changes to the DB instance that are currently pending.

performance_insights_enabled: Option<bool>

Indicates whether Performance Insights is enabled for the DB instance.

performance_insights_kms_key_id: Option<String>

The identifier of the AWS KMS key used to encrypt the Performance Insights data.

performance_insights_retention_period: Option<i64>

The number of days to retain Performance Insights data.

preferred_backup_window: Option<String>

The range of time each day when automated backups are created, if automated backups are enabled.

Uses the format HH:MM-HH:MM. For example, 04:52-05:22.

preferred_maintenance_window: Option<String>

The weekly time range during which system maintenance can occur, in Universal Coordinated Time (UTC).

Uses the format <day>:HH:MM-<day>:HH:MM.

For the day values, use mon|tue|wed|thu|fri|sat|sun.

For example, sun:09:32-sun:10:02.

processor_features: Option<Vec<AwsRdsDbProcessorFeature>>

The number of CPU cores and the number of threads per core for the DB instance class of the DB instance.

promotion_tier: Option<i64>

The order in which to promote an Aurora replica to the primary instance after a failure of the existing primary instance.

publicly_accessible: Option<bool>

Specifies the accessibility 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.

read_replica_db_cluster_identifiers: Option<Vec<String>>

List of identifiers of Aurora DB clusters to which the RDS DB instance is replicated as a read replica.

read_replica_db_instance_identifiers: Option<Vec<String>>

List of identifiers of the read replicas associated with this DB instance.

read_replica_source_db_instance_identifier: Option<String>

If this DB instance is a read replica, contains the identifier of the source DB instance.

secondary_availability_zone: Option<String>

For a DB instance with multi-Availability Zone support, the name of the secondary Availability Zone.

status_infos: Option<Vec<AwsRdsDbStatusInfo>>

The status of a read replica. If the instance isn't a read replica, this is empty.

storage_encrypted: Option<bool>

Specifies whether the DB instance is encrypted.

storage_type: Option<String>

The storage type for the DB instance.

tde_credential_arn: Option<String>

The ARN from the key store with which the instance is associated for TDE encryption.

timezone: Option<String>

The time zone of the DB instance.

vpc_security_groups: Option<Vec<AwsRdsDbInstanceVpcSecurityGroup>>

A list of VPC security groups that the DB instance belongs to.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Deserialize this value from the given Serde deserializer. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more