Struct rusoto_rds::OrderableDBInstanceOption[][src]

pub struct OrderableDBInstanceOption {
    pub availability_zones: Option<Vec<AvailabilityZone>>,
    pub db_instance_class: Option<String>,
    pub engine: Option<String>,
    pub engine_version: Option<String>,
    pub license_model: Option<String>,
    pub max_iops_per_db_instance: Option<i64>,
    pub max_iops_per_gib: Option<f64>,
    pub max_storage_size: Option<i64>,
    pub min_iops_per_db_instance: Option<i64>,
    pub min_iops_per_gib: Option<f64>,
    pub min_storage_size: Option<i64>,
    pub multi_az_capable: Option<bool>,
    pub read_replica_capable: Option<bool>,
    pub storage_type: Option<String>,
    pub supports_enhanced_monitoring: Option<bool>,
    pub supports_iam_database_authentication: Option<bool>,
    pub supports_iops: Option<bool>,
    pub supports_performance_insights: Option<bool>,
    pub supports_storage_encryption: Option<bool>,
    pub vpc: Option<bool>,
}

Contains a list of available options for a DB instance.

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

Fields

A list of Availability Zones for a DB instance.

The DB instance class for a DB instance.

The engine type of a DB instance.

The engine version of a DB instance.

The license model for a DB instance.

Maximum total provisioned IOPS for a DB instance.

Maximum provisioned IOPS per GiB for a DB instance.

Maximum storage size for a DB instance.

Minimum total provisioned IOPS for a DB instance.

Minimum provisioned IOPS per GiB for a DB instance.

Minimum storage size for a DB instance.

Indicates whether a DB instance is Multi-AZ capable.

Indicates whether a DB instance can have a Read Replica.

Indicates the storage type for a DB instance.

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

Indicates whether a DB instance supports IAM database authentication.

Indicates whether a DB instance supports provisioned IOPS.

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

Indicates whether a DB instance supports encrypted storage.

Indicates whether a DB instance is in a VPC.

Trait Implementations

impl Default for OrderableDBInstanceOption
[src]

Returns the "default value" for a type. Read more

impl Debug for OrderableDBInstanceOption
[src]

Formats the value using the given formatter. Read more

impl Clone for OrderableDBInstanceOption
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for OrderableDBInstanceOption
[src]

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

This method tests for !=.

Auto Trait Implementations