#[non_exhaustive]
pub struct OrderableDbInstanceOption { /* private fields */ }
Expand description

Contains a list of available options for a DB instance.

This data type is used as a response element in the DescribeOrderableDBInstanceOptions action.

Implementations§

source§

impl OrderableDbInstanceOption

source

pub fn engine(&self) -> Option<&str>

The engine type of a DB instance.

source

pub fn engine_version(&self) -> Option<&str>

The engine version of a DB instance.

source

pub fn db_instance_class(&self) -> Option<&str>

The DB instance class for a DB instance.

source

pub fn license_model(&self) -> Option<&str>

The license model for a DB instance.

source

pub fn availability_zone_group(&self) -> Option<&str>

The Availability Zone group for a DB instance.

source

pub fn availability_zones(&self) -> Option<&[AvailabilityZone]>

A list of Availability Zones for a DB instance.

source

pub fn multi_az_capable(&self) -> bool

Indicates whether a DB instance is Multi-AZ capable.

source

pub fn read_replica_capable(&self) -> bool

Indicates whether a DB instance can have a read replica.

source

pub fn vpc(&self) -> bool

Indicates whether a DB instance is in a VPC.

source

pub fn supports_storage_encryption(&self) -> bool

Indicates whether a DB instance supports encrypted storage.

source

pub fn storage_type(&self) -> Option<&str>

Indicates the storage type for a DB instance.

source

pub fn supports_iops(&self) -> bool

Indicates whether a DB instance supports provisioned IOPS.

source

pub fn supports_enhanced_monitoring(&self) -> bool

Indicates whether a DB instance supports Enhanced Monitoring at intervals from 1 to 60 seconds.

source

pub fn supports_iam_database_authentication(&self) -> bool

Indicates whether a DB instance supports IAM database authentication.

source

pub fn supports_performance_insights(&self) -> bool

True if a DB instance supports Performance Insights, otherwise false.

source

pub fn min_storage_size(&self) -> Option<i32>

Minimum storage size for a DB instance.

source

pub fn max_storage_size(&self) -> Option<i32>

Maximum storage size for a DB instance.

source

pub fn min_iops_per_db_instance(&self) -> Option<i32>

Minimum total provisioned IOPS for a DB instance.

source

pub fn max_iops_per_db_instance(&self) -> Option<i32>

Maximum total provisioned IOPS for a DB instance.

source

pub fn min_iops_per_gib(&self) -> Option<f64>

Minimum provisioned IOPS per GiB for a DB instance.

source

pub fn max_iops_per_gib(&self) -> Option<f64>

Maximum provisioned IOPS per GiB for a DB instance.

source

pub fn available_processor_features( &self ) -> Option<&[AvailableProcessorFeature]>

A list of the available processor features for the DB instance class of a DB instance.

source

pub fn supported_engine_modes(&self) -> Option<&[String]>

A list of the supported DB engine modes.

source

pub fn supports_storage_autoscaling(&self) -> Option<bool>

Whether Amazon RDS can automatically scale storage for DB instances that use the specified DB instance class.

source

pub fn supports_kerberos_authentication(&self) -> Option<bool>

Whether a DB instance supports Kerberos Authentication.

source

pub fn outpost_capable(&self) -> bool

Whether a DB instance supports RDS on Outposts.

For more information about RDS on Outposts, see Amazon RDS on Amazon Web Services Outposts in the Amazon RDS User Guide.

source

pub fn supported_activity_stream_modes(&self) -> Option<&[String]>

The list of supported modes for Database Activity Streams. Aurora PostgreSQL returns the value [sync, async]. Aurora MySQL and RDS for Oracle return [async] only. If Database Activity Streams isn't supported, the return value is an empty list.

source

pub fn supports_global_databases(&self) -> bool

A value that indicates whether you can use Aurora global databases with a specific combination of other DB engine attributes.

source

pub fn supports_clusters(&self) -> bool

Whether DB instances can be configured as a Multi-AZ DB cluster.

For more information on Multi-AZ DB clusters, see Multi-AZ deployments with two readable standby DB instances in the Amazon RDS User Guide.

source

pub fn supported_network_types(&self) -> Option<&[String]>

The network types supported by the DB instance (IPV4 or DUAL).

A DB instance can support only the IPv4 protocol or the IPv4 and the IPv6 protocols (DUAL).

For more information, see Working with a DB instance in a VPC in the Amazon RDS User Guide.

source

pub fn supports_storage_throughput(&self) -> bool

Indicates whether a DB instance supports storage throughput.

source

pub fn min_storage_throughput_per_db_instance(&self) -> Option<i32>

Minimum storage throughput for a DB instance.

source

pub fn max_storage_throughput_per_db_instance(&self) -> Option<i32>

Maximum storage throughput for a DB instance.

source

pub fn min_storage_throughput_per_iops(&self) -> Option<f64>

Minimum storage throughput to provisioned IOPS ratio for a DB instance.

source

pub fn max_storage_throughput_per_iops(&self) -> Option<f64>

Maximum storage throughput to provisioned IOPS ratio for a DB instance.

source§

impl OrderableDbInstanceOption

source

pub fn builder() -> OrderableDbInstanceOptionBuilder

Creates a new builder-style object to manufacture OrderableDbInstanceOption.

Trait Implementations§

source§

impl Clone for OrderableDbInstanceOption

source§

fn clone(&self) -> OrderableDbInstanceOption

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for OrderableDbInstanceOption

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl PartialEq<OrderableDbInstanceOption> for OrderableDbInstanceOption

source§

fn eq(&self, other: &OrderableDbInstanceOption) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl StructuralPartialEq for OrderableDbInstanceOption

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

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

fn in_current_span(self) -> Instrumented<Self>

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

impl<T, U> Into<U> for Twhere U: From<T>,

const: unstable · source§

fn into(self) -> U

Calls U::from(self).

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

source§

impl<T> Same<T> for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

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

fn clone_into(&self, target: &mut T)

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

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
const: unstable · source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where S: Into<Dispatch>,

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

fn with_current_subscriber(self) -> WithDispatch<Self>

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