logo
pub struct AwsRdsDbClusterDetails {
Show 37 fields pub activity_stream_status: Option<String>, pub allocated_storage: Option<i64>, pub associated_roles: Option<Vec<AwsRdsDbClusterAssociatedRole>>, pub availability_zones: Option<Vec<String>>, pub backup_retention_period: Option<i64>, pub cluster_create_time: Option<String>, pub copy_tags_to_snapshot: Option<bool>, pub cross_account_clone: Option<bool>, pub custom_endpoints: Option<Vec<String>>, pub database_name: Option<String>, pub db_cluster_identifier: Option<String>, pub db_cluster_members: Option<Vec<AwsRdsDbClusterMember>>, pub db_cluster_option_group_memberships: Option<Vec<AwsRdsDbClusterOptionGroupMembership>>, pub db_cluster_parameter_group: Option<String>, pub db_cluster_resource_id: Option<String>, pub db_subnet_group: 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<String>, pub engine: Option<String>, pub engine_mode: Option<String>, pub engine_version: Option<String>, pub hosted_zone_id: Option<String>, pub http_endpoint_enabled: Option<bool>, pub iam_database_authentication_enabled: Option<bool>, pub kms_key_id: Option<String>, pub master_username: Option<String>, pub multi_az: Option<bool>, pub port: Option<i64>, pub preferred_backup_window: Option<String>, pub preferred_maintenance_window: Option<String>, pub read_replica_identifiers: Option<Vec<String>>, pub reader_endpoint: Option<String>, pub status: Option<String>, pub storage_encrypted: Option<bool>, pub vpc_security_groups: Option<Vec<AwsRdsDbInstanceVpcSecurityGroup>>,
}
Expand description

Information about an Amazon RDS DB cluster.

Fields

activity_stream_status: Option<String>

The status of the database activity stream.

allocated_storage: Option<i64>

For all database engines except Aurora, specifies the allocated storage size in gibibytes (GiB).

associated_roles: Option<Vec<AwsRdsDbClusterAssociatedRole>>

A list of the IAM roles that are associated with the DB cluster.

availability_zones: Option<Vec<String>>

A list of Availability Zones (AZs) where instances in the DB cluster can be created.

backup_retention_period: Option<i64>

The number of days for which automated backups are retained.

cluster_create_time: Option<String>

Indicates when the DB cluster was created, in Universal Coordinated Time (UTC).

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.

copy_tags_to_snapshot: Option<bool>

Whether tags are copied from the DB cluster to snapshots of the DB cluster.

cross_account_clone: Option<bool>

Whether the DB cluster is a clone of a DB cluster owned by a different AWS account.

custom_endpoints: Option<Vec<String>>

A list of custom endpoints for the DB cluster.

database_name: Option<String>

The name of the database.

db_cluster_identifier: Option<String>

The DB cluster identifier that the user assigned to the cluster. This identifier is the unique key that identifies a DB cluster.

db_cluster_members: Option<Vec<AwsRdsDbClusterMember>>

The list of instances that make up the DB cluster.

db_cluster_option_group_memberships: Option<Vec<AwsRdsDbClusterOptionGroupMembership>>

The list of option group memberships for this DB cluster.

db_cluster_parameter_group: Option<String>

The name of the DB cluster parameter group for the DB cluster.

db_cluster_resource_id: Option<String>

The identifier of the DB cluster. The identifier must be unique within each AWS Region and is immutable.

db_subnet_group: Option<String>

The subnet group that is associated with the DB cluster, including the name, description, and subnets in the subnet group.

deletion_protection: Option<bool>

Whether the DB cluster has deletion protection enabled.

domain_memberships: Option<Vec<AwsRdsDbDomainMembership>>

The Active Directory domain membership records that are associated with the DB cluster.

enabled_cloud_watch_logs_exports: Option<Vec<String>>

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

endpoint: Option<String>

The connection endpoint for the primary instance of the DB cluster.

engine: Option<String>

The name of the database engine to use for this DB cluster.

engine_mode: Option<String>

The database engine mode of the DB cluster.

engine_version: Option<String>

The version number of the database engine to use.

hosted_zone_id: Option<String>

Specifies the identifier that Amazon Route 53 assigns when you create a hosted zone.

http_endpoint_enabled: Option<bool>

Whether the HTTP endpoint for an Aurora Serverless DB cluster is enabled.

iam_database_authentication_enabled: Option<bool>

Whether the mapping of IAM accounts to database accounts is enabled.

kms_key_id: Option<String>

The ARN of the AWS KMS master key that is used to encrypt the database instances in the DB cluster.

master_username: Option<String>

The name of the master user for the DB cluster.

multi_az: Option<bool>

Whether the DB cluster has instances in multiple Availability Zones.

port: Option<i64>

The port number on which the DB instances in the DB cluster accept connections.

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.

read_replica_identifiers: Option<Vec<String>>

The identifiers of the read replicas that are associated with this DB cluster.

reader_endpoint: Option<String>

The reader endpoint for the DB cluster.

status: Option<String>

The current status of this DB cluster.

storage_encrypted: Option<bool>

Whether the DB cluster is encrypted.

vpc_security_groups: Option<Vec<AwsRdsDbInstanceVpcSecurityGroup>>

A list of VPC security groups that the DB cluster 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