Class: Aws::RDS::Types::OrderableDBInstanceOption
- Inherits:
-
Struct
- Object
- Struct
- Aws::RDS::Types::OrderableDBInstanceOption
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-rds/types.rb
Overview
Contains a list of available options for a DB instance.
This data type is used as a response element in the ‘DescribeOrderableDBInstanceOptions` action.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#availability_zone_group ⇒ String
The Availability Zone group for a DB instance.
-
#availability_zones ⇒ Array<Types::AvailabilityZone>
A list of Availability Zones for a DB instance.
-
#available_processor_features ⇒ Array<Types::AvailableProcessorFeature>
A list of the available processor features for the DB instance class of a DB instance.
-
#db_instance_class ⇒ String
The DB instance class for a DB instance.
-
#engine ⇒ String
The engine type of a DB instance.
-
#engine_version ⇒ String
The engine version of a DB instance.
-
#license_model ⇒ String
The license model for a DB instance.
-
#max_iops_per_db_instance ⇒ Integer
Maximum total provisioned IOPS for a DB instance.
-
#max_iops_per_gib ⇒ Float
Maximum provisioned IOPS per GiB for a DB instance.
-
#max_storage_size ⇒ Integer
Maximum storage size for a DB instance.
-
#max_storage_throughput_per_db_instance ⇒ Integer
Maximum storage throughput for a DB instance.
-
#max_storage_throughput_per_iops ⇒ Float
Maximum storage throughput to provisioned IOPS ratio for a DB instance.
-
#min_iops_per_db_instance ⇒ Integer
Minimum total provisioned IOPS for a DB instance.
-
#min_iops_per_gib ⇒ Float
Minimum provisioned IOPS per GiB for a DB instance.
-
#min_storage_size ⇒ Integer
Minimum storage size for a DB instance.
-
#min_storage_throughput_per_db_instance ⇒ Integer
Minimum storage throughput for a DB instance.
-
#min_storage_throughput_per_iops ⇒ Float
Minimum storage throughput to provisioned IOPS ratio for a DB instance.
-
#multi_az_capable ⇒ Boolean
Indicates whether a DB instance is Multi-AZ capable.
-
#outpost_capable ⇒ Boolean
Indicates whether a DB instance supports RDS on Outposts.
-
#read_replica_capable ⇒ Boolean
Indicates whether a DB instance can have a read replica.
-
#storage_type ⇒ String
The storage type for a DB instance.
-
#supported_activity_stream_modes ⇒ Array<String>
The list of supported modes for Database Activity Streams.
-
#supported_engine_modes ⇒ Array<String>
A list of the supported DB engine modes.
-
#supported_network_types ⇒ Array<String>
The network types supported by the DB instance (‘IPV4` or `DUAL`).
-
#supports_clusters ⇒ Boolean
Indicates whether DB instances can be configured as a Multi-AZ DB cluster.
-
#supports_dedicated_log_volume ⇒ Boolean
Indicates whether a DB instance supports using a dedicated log volume (DLV).
-
#supports_enhanced_monitoring ⇒ Boolean
Indicates whether a DB instance supports Enhanced Monitoring at intervals from 1 to 60 seconds.
-
#supports_global_databases ⇒ Boolean
Indicates whether you can use Aurora global databases with a specific combination of other DB engine attributes.
-
#supports_iam_database_authentication ⇒ Boolean
Indicates whether a DB instance supports IAM database authentication.
-
#supports_iops ⇒ Boolean
Indicates whether a DB instance supports provisioned IOPS.
-
#supports_kerberos_authentication ⇒ Boolean
Indicates whether a DB instance supports Kerberos Authentication.
-
#supports_performance_insights ⇒ Boolean
Indicates whether a DB instance supports Performance Insights.
-
#supports_storage_autoscaling ⇒ Boolean
Indicates whether Amazon RDS can automatically scale storage for DB instances that use the specified DB instance class.
-
#supports_storage_encryption ⇒ Boolean
Indicates whether a DB instance supports encrypted storage.
-
#supports_storage_throughput ⇒ Boolean
Indicates whether a DB instance supports storage throughput.
-
#vpc ⇒ Boolean
Indicates whether a DB instance is in a VPC.
Instance Attribute Details
#availability_zone_group ⇒ String
The Availability Zone group for a DB instance.
21049 21050 21051 21052 21053 21054 21055 21056 21057 21058 21059 21060 21061 21062 21063 21064 21065 21066 21067 21068 21069 21070 21071 21072 21073 21074 21075 21076 21077 21078 21079 21080 21081 21082 21083 21084 21085 21086 21087 21088 |
# File 'lib/aws-sdk-rds/types.rb', line 21049 class OrderableDBInstanceOption < Struct.new( :engine, :engine_version, :db_instance_class, :license_model, :availability_zone_group, :availability_zones, :multi_az_capable, :read_replica_capable, :vpc, :supports_storage_encryption, :storage_type, :supports_iops, :supports_enhanced_monitoring, :supports_iam_database_authentication, :supports_performance_insights, :min_storage_size, :max_storage_size, :min_iops_per_db_instance, :max_iops_per_db_instance, :min_iops_per_gib, :max_iops_per_gib, :available_processor_features, :supported_engine_modes, :supports_storage_autoscaling, :supports_kerberos_authentication, :outpost_capable, :supported_activity_stream_modes, :supports_global_databases, :supports_clusters, :supported_network_types, :supports_storage_throughput, :min_storage_throughput_per_db_instance, :max_storage_throughput_per_db_instance, :min_storage_throughput_per_iops, :max_storage_throughput_per_iops, :supports_dedicated_log_volume) SENSITIVE = [] include Aws::Structure end |
#availability_zones ⇒ Array<Types::AvailabilityZone>
A list of Availability Zones for a DB instance.
21049 21050 21051 21052 21053 21054 21055 21056 21057 21058 21059 21060 21061 21062 21063 21064 21065 21066 21067 21068 21069 21070 21071 21072 21073 21074 21075 21076 21077 21078 21079 21080 21081 21082 21083 21084 21085 21086 21087 21088 |
# File 'lib/aws-sdk-rds/types.rb', line 21049 class OrderableDBInstanceOption < Struct.new( :engine, :engine_version, :db_instance_class, :license_model, :availability_zone_group, :availability_zones, :multi_az_capable, :read_replica_capable, :vpc, :supports_storage_encryption, :storage_type, :supports_iops, :supports_enhanced_monitoring, :supports_iam_database_authentication, :supports_performance_insights, :min_storage_size, :max_storage_size, :min_iops_per_db_instance, :max_iops_per_db_instance, :min_iops_per_gib, :max_iops_per_gib, :available_processor_features, :supported_engine_modes, :supports_storage_autoscaling, :supports_kerberos_authentication, :outpost_capable, :supported_activity_stream_modes, :supports_global_databases, :supports_clusters, :supported_network_types, :supports_storage_throughput, :min_storage_throughput_per_db_instance, :max_storage_throughput_per_db_instance, :min_storage_throughput_per_iops, :max_storage_throughput_per_iops, :supports_dedicated_log_volume) SENSITIVE = [] include Aws::Structure end |
#available_processor_features ⇒ Array<Types::AvailableProcessorFeature>
A list of the available processor features for the DB instance class of a DB instance.
21049 21050 21051 21052 21053 21054 21055 21056 21057 21058 21059 21060 21061 21062 21063 21064 21065 21066 21067 21068 21069 21070 21071 21072 21073 21074 21075 21076 21077 21078 21079 21080 21081 21082 21083 21084 21085 21086 21087 21088 |
# File 'lib/aws-sdk-rds/types.rb', line 21049 class OrderableDBInstanceOption < Struct.new( :engine, :engine_version, :db_instance_class, :license_model, :availability_zone_group, :availability_zones, :multi_az_capable, :read_replica_capable, :vpc, :supports_storage_encryption, :storage_type, :supports_iops, :supports_enhanced_monitoring, :supports_iam_database_authentication, :supports_performance_insights, :min_storage_size, :max_storage_size, :min_iops_per_db_instance, :max_iops_per_db_instance, :min_iops_per_gib, :max_iops_per_gib, :available_processor_features, :supported_engine_modes, :supports_storage_autoscaling, :supports_kerberos_authentication, :outpost_capable, :supported_activity_stream_modes, :supports_global_databases, :supports_clusters, :supported_network_types, :supports_storage_throughput, :min_storage_throughput_per_db_instance, :max_storage_throughput_per_db_instance, :min_storage_throughput_per_iops, :max_storage_throughput_per_iops, :supports_dedicated_log_volume) SENSITIVE = [] include Aws::Structure end |
#db_instance_class ⇒ String
The DB instance class for a DB instance.
21049 21050 21051 21052 21053 21054 21055 21056 21057 21058 21059 21060 21061 21062 21063 21064 21065 21066 21067 21068 21069 21070 21071 21072 21073 21074 21075 21076 21077 21078 21079 21080 21081 21082 21083 21084 21085 21086 21087 21088 |
# File 'lib/aws-sdk-rds/types.rb', line 21049 class OrderableDBInstanceOption < Struct.new( :engine, :engine_version, :db_instance_class, :license_model, :availability_zone_group, :availability_zones, :multi_az_capable, :read_replica_capable, :vpc, :supports_storage_encryption, :storage_type, :supports_iops, :supports_enhanced_monitoring, :supports_iam_database_authentication, :supports_performance_insights, :min_storage_size, :max_storage_size, :min_iops_per_db_instance, :max_iops_per_db_instance, :min_iops_per_gib, :max_iops_per_gib, :available_processor_features, :supported_engine_modes, :supports_storage_autoscaling, :supports_kerberos_authentication, :outpost_capable, :supported_activity_stream_modes, :supports_global_databases, :supports_clusters, :supported_network_types, :supports_storage_throughput, :min_storage_throughput_per_db_instance, :max_storage_throughput_per_db_instance, :min_storage_throughput_per_iops, :max_storage_throughput_per_iops, :supports_dedicated_log_volume) SENSITIVE = [] include Aws::Structure end |
#engine ⇒ String
The engine type of a DB instance.
21049 21050 21051 21052 21053 21054 21055 21056 21057 21058 21059 21060 21061 21062 21063 21064 21065 21066 21067 21068 21069 21070 21071 21072 21073 21074 21075 21076 21077 21078 21079 21080 21081 21082 21083 21084 21085 21086 21087 21088 |
# File 'lib/aws-sdk-rds/types.rb', line 21049 class OrderableDBInstanceOption < Struct.new( :engine, :engine_version, :db_instance_class, :license_model, :availability_zone_group, :availability_zones, :multi_az_capable, :read_replica_capable, :vpc, :supports_storage_encryption, :storage_type, :supports_iops, :supports_enhanced_monitoring, :supports_iam_database_authentication, :supports_performance_insights, :min_storage_size, :max_storage_size, :min_iops_per_db_instance, :max_iops_per_db_instance, :min_iops_per_gib, :max_iops_per_gib, :available_processor_features, :supported_engine_modes, :supports_storage_autoscaling, :supports_kerberos_authentication, :outpost_capable, :supported_activity_stream_modes, :supports_global_databases, :supports_clusters, :supported_network_types, :supports_storage_throughput, :min_storage_throughput_per_db_instance, :max_storage_throughput_per_db_instance, :min_storage_throughput_per_iops, :max_storage_throughput_per_iops, :supports_dedicated_log_volume) SENSITIVE = [] include Aws::Structure end |
#engine_version ⇒ String
The engine version of a DB instance.
21049 21050 21051 21052 21053 21054 21055 21056 21057 21058 21059 21060 21061 21062 21063 21064 21065 21066 21067 21068 21069 21070 21071 21072 21073 21074 21075 21076 21077 21078 21079 21080 21081 21082 21083 21084 21085 21086 21087 21088 |
# File 'lib/aws-sdk-rds/types.rb', line 21049 class OrderableDBInstanceOption < Struct.new( :engine, :engine_version, :db_instance_class, :license_model, :availability_zone_group, :availability_zones, :multi_az_capable, :read_replica_capable, :vpc, :supports_storage_encryption, :storage_type, :supports_iops, :supports_enhanced_monitoring, :supports_iam_database_authentication, :supports_performance_insights, :min_storage_size, :max_storage_size, :min_iops_per_db_instance, :max_iops_per_db_instance, :min_iops_per_gib, :max_iops_per_gib, :available_processor_features, :supported_engine_modes, :supports_storage_autoscaling, :supports_kerberos_authentication, :outpost_capable, :supported_activity_stream_modes, :supports_global_databases, :supports_clusters, :supported_network_types, :supports_storage_throughput, :min_storage_throughput_per_db_instance, :max_storage_throughput_per_db_instance, :min_storage_throughput_per_iops, :max_storage_throughput_per_iops, :supports_dedicated_log_volume) SENSITIVE = [] include Aws::Structure end |
#license_model ⇒ String
The license model for a DB instance.
21049 21050 21051 21052 21053 21054 21055 21056 21057 21058 21059 21060 21061 21062 21063 21064 21065 21066 21067 21068 21069 21070 21071 21072 21073 21074 21075 21076 21077 21078 21079 21080 21081 21082 21083 21084 21085 21086 21087 21088 |
# File 'lib/aws-sdk-rds/types.rb', line 21049 class OrderableDBInstanceOption < Struct.new( :engine, :engine_version, :db_instance_class, :license_model, :availability_zone_group, :availability_zones, :multi_az_capable, :read_replica_capable, :vpc, :supports_storage_encryption, :storage_type, :supports_iops, :supports_enhanced_monitoring, :supports_iam_database_authentication, :supports_performance_insights, :min_storage_size, :max_storage_size, :min_iops_per_db_instance, :max_iops_per_db_instance, :min_iops_per_gib, :max_iops_per_gib, :available_processor_features, :supported_engine_modes, :supports_storage_autoscaling, :supports_kerberos_authentication, :outpost_capable, :supported_activity_stream_modes, :supports_global_databases, :supports_clusters, :supported_network_types, :supports_storage_throughput, :min_storage_throughput_per_db_instance, :max_storage_throughput_per_db_instance, :min_storage_throughput_per_iops, :max_storage_throughput_per_iops, :supports_dedicated_log_volume) SENSITIVE = [] include Aws::Structure end |
#max_iops_per_db_instance ⇒ Integer
Maximum total provisioned IOPS for a DB instance.
21049 21050 21051 21052 21053 21054 21055 21056 21057 21058 21059 21060 21061 21062 21063 21064 21065 21066 21067 21068 21069 21070 21071 21072 21073 21074 21075 21076 21077 21078 21079 21080 21081 21082 21083 21084 21085 21086 21087 21088 |
# File 'lib/aws-sdk-rds/types.rb', line 21049 class OrderableDBInstanceOption < Struct.new( :engine, :engine_version, :db_instance_class, :license_model, :availability_zone_group, :availability_zones, :multi_az_capable, :read_replica_capable, :vpc, :supports_storage_encryption, :storage_type, :supports_iops, :supports_enhanced_monitoring, :supports_iam_database_authentication, :supports_performance_insights, :min_storage_size, :max_storage_size, :min_iops_per_db_instance, :max_iops_per_db_instance, :min_iops_per_gib, :max_iops_per_gib, :available_processor_features, :supported_engine_modes, :supports_storage_autoscaling, :supports_kerberos_authentication, :outpost_capable, :supported_activity_stream_modes, :supports_global_databases, :supports_clusters, :supported_network_types, :supports_storage_throughput, :min_storage_throughput_per_db_instance, :max_storage_throughput_per_db_instance, :min_storage_throughput_per_iops, :max_storage_throughput_per_iops, :supports_dedicated_log_volume) SENSITIVE = [] include Aws::Structure end |
#max_iops_per_gib ⇒ Float
Maximum provisioned IOPS per GiB for a DB instance.
21049 21050 21051 21052 21053 21054 21055 21056 21057 21058 21059 21060 21061 21062 21063 21064 21065 21066 21067 21068 21069 21070 21071 21072 21073 21074 21075 21076 21077 21078 21079 21080 21081 21082 21083 21084 21085 21086 21087 21088 |
# File 'lib/aws-sdk-rds/types.rb', line 21049 class OrderableDBInstanceOption < Struct.new( :engine, :engine_version, :db_instance_class, :license_model, :availability_zone_group, :availability_zones, :multi_az_capable, :read_replica_capable, :vpc, :supports_storage_encryption, :storage_type, :supports_iops, :supports_enhanced_monitoring, :supports_iam_database_authentication, :supports_performance_insights, :min_storage_size, :max_storage_size, :min_iops_per_db_instance, :max_iops_per_db_instance, :min_iops_per_gib, :max_iops_per_gib, :available_processor_features, :supported_engine_modes, :supports_storage_autoscaling, :supports_kerberos_authentication, :outpost_capable, :supported_activity_stream_modes, :supports_global_databases, :supports_clusters, :supported_network_types, :supports_storage_throughput, :min_storage_throughput_per_db_instance, :max_storage_throughput_per_db_instance, :min_storage_throughput_per_iops, :max_storage_throughput_per_iops, :supports_dedicated_log_volume) SENSITIVE = [] include Aws::Structure end |
#max_storage_size ⇒ Integer
Maximum storage size for a DB instance.
21049 21050 21051 21052 21053 21054 21055 21056 21057 21058 21059 21060 21061 21062 21063 21064 21065 21066 21067 21068 21069 21070 21071 21072 21073 21074 21075 21076 21077 21078 21079 21080 21081 21082 21083 21084 21085 21086 21087 21088 |
# File 'lib/aws-sdk-rds/types.rb', line 21049 class OrderableDBInstanceOption < Struct.new( :engine, :engine_version, :db_instance_class, :license_model, :availability_zone_group, :availability_zones, :multi_az_capable, :read_replica_capable, :vpc, :supports_storage_encryption, :storage_type, :supports_iops, :supports_enhanced_monitoring, :supports_iam_database_authentication, :supports_performance_insights, :min_storage_size, :max_storage_size, :min_iops_per_db_instance, :max_iops_per_db_instance, :min_iops_per_gib, :max_iops_per_gib, :available_processor_features, :supported_engine_modes, :supports_storage_autoscaling, :supports_kerberos_authentication, :outpost_capable, :supported_activity_stream_modes, :supports_global_databases, :supports_clusters, :supported_network_types, :supports_storage_throughput, :min_storage_throughput_per_db_instance, :max_storage_throughput_per_db_instance, :min_storage_throughput_per_iops, :max_storage_throughput_per_iops, :supports_dedicated_log_volume) SENSITIVE = [] include Aws::Structure end |
#max_storage_throughput_per_db_instance ⇒ Integer
Maximum storage throughput for a DB instance.
21049 21050 21051 21052 21053 21054 21055 21056 21057 21058 21059 21060 21061 21062 21063 21064 21065 21066 21067 21068 21069 21070 21071 21072 21073 21074 21075 21076 21077 21078 21079 21080 21081 21082 21083 21084 21085 21086 21087 21088 |
# File 'lib/aws-sdk-rds/types.rb', line 21049 class OrderableDBInstanceOption < Struct.new( :engine, :engine_version, :db_instance_class, :license_model, :availability_zone_group, :availability_zones, :multi_az_capable, :read_replica_capable, :vpc, :supports_storage_encryption, :storage_type, :supports_iops, :supports_enhanced_monitoring, :supports_iam_database_authentication, :supports_performance_insights, :min_storage_size, :max_storage_size, :min_iops_per_db_instance, :max_iops_per_db_instance, :min_iops_per_gib, :max_iops_per_gib, :available_processor_features, :supported_engine_modes, :supports_storage_autoscaling, :supports_kerberos_authentication, :outpost_capable, :supported_activity_stream_modes, :supports_global_databases, :supports_clusters, :supported_network_types, :supports_storage_throughput, :min_storage_throughput_per_db_instance, :max_storage_throughput_per_db_instance, :min_storage_throughput_per_iops, :max_storage_throughput_per_iops, :supports_dedicated_log_volume) SENSITIVE = [] include Aws::Structure end |
#max_storage_throughput_per_iops ⇒ Float
Maximum storage throughput to provisioned IOPS ratio for a DB instance.
21049 21050 21051 21052 21053 21054 21055 21056 21057 21058 21059 21060 21061 21062 21063 21064 21065 21066 21067 21068 21069 21070 21071 21072 21073 21074 21075 21076 21077 21078 21079 21080 21081 21082 21083 21084 21085 21086 21087 21088 |
# File 'lib/aws-sdk-rds/types.rb', line 21049 class OrderableDBInstanceOption < Struct.new( :engine, :engine_version, :db_instance_class, :license_model, :availability_zone_group, :availability_zones, :multi_az_capable, :read_replica_capable, :vpc, :supports_storage_encryption, :storage_type, :supports_iops, :supports_enhanced_monitoring, :supports_iam_database_authentication, :supports_performance_insights, :min_storage_size, :max_storage_size, :min_iops_per_db_instance, :max_iops_per_db_instance, :min_iops_per_gib, :max_iops_per_gib, :available_processor_features, :supported_engine_modes, :supports_storage_autoscaling, :supports_kerberos_authentication, :outpost_capable, :supported_activity_stream_modes, :supports_global_databases, :supports_clusters, :supported_network_types, :supports_storage_throughput, :min_storage_throughput_per_db_instance, :max_storage_throughput_per_db_instance, :min_storage_throughput_per_iops, :max_storage_throughput_per_iops, :supports_dedicated_log_volume) SENSITIVE = [] include Aws::Structure end |
#min_iops_per_db_instance ⇒ Integer
Minimum total provisioned IOPS for a DB instance.
21049 21050 21051 21052 21053 21054 21055 21056 21057 21058 21059 21060 21061 21062 21063 21064 21065 21066 21067 21068 21069 21070 21071 21072 21073 21074 21075 21076 21077 21078 21079 21080 21081 21082 21083 21084 21085 21086 21087 21088 |
# File 'lib/aws-sdk-rds/types.rb', line 21049 class OrderableDBInstanceOption < Struct.new( :engine, :engine_version, :db_instance_class, :license_model, :availability_zone_group, :availability_zones, :multi_az_capable, :read_replica_capable, :vpc, :supports_storage_encryption, :storage_type, :supports_iops, :supports_enhanced_monitoring, :supports_iam_database_authentication, :supports_performance_insights, :min_storage_size, :max_storage_size, :min_iops_per_db_instance, :max_iops_per_db_instance, :min_iops_per_gib, :max_iops_per_gib, :available_processor_features, :supported_engine_modes, :supports_storage_autoscaling, :supports_kerberos_authentication, :outpost_capable, :supported_activity_stream_modes, :supports_global_databases, :supports_clusters, :supported_network_types, :supports_storage_throughput, :min_storage_throughput_per_db_instance, :max_storage_throughput_per_db_instance, :min_storage_throughput_per_iops, :max_storage_throughput_per_iops, :supports_dedicated_log_volume) SENSITIVE = [] include Aws::Structure end |
#min_iops_per_gib ⇒ Float
Minimum provisioned IOPS per GiB for a DB instance.
21049 21050 21051 21052 21053 21054 21055 21056 21057 21058 21059 21060 21061 21062 21063 21064 21065 21066 21067 21068 21069 21070 21071 21072 21073 21074 21075 21076 21077 21078 21079 21080 21081 21082 21083 21084 21085 21086 21087 21088 |
# File 'lib/aws-sdk-rds/types.rb', line 21049 class OrderableDBInstanceOption < Struct.new( :engine, :engine_version, :db_instance_class, :license_model, :availability_zone_group, :availability_zones, :multi_az_capable, :read_replica_capable, :vpc, :supports_storage_encryption, :storage_type, :supports_iops, :supports_enhanced_monitoring, :supports_iam_database_authentication, :supports_performance_insights, :min_storage_size, :max_storage_size, :min_iops_per_db_instance, :max_iops_per_db_instance, :min_iops_per_gib, :max_iops_per_gib, :available_processor_features, :supported_engine_modes, :supports_storage_autoscaling, :supports_kerberos_authentication, :outpost_capable, :supported_activity_stream_modes, :supports_global_databases, :supports_clusters, :supported_network_types, :supports_storage_throughput, :min_storage_throughput_per_db_instance, :max_storage_throughput_per_db_instance, :min_storage_throughput_per_iops, :max_storage_throughput_per_iops, :supports_dedicated_log_volume) SENSITIVE = [] include Aws::Structure end |
#min_storage_size ⇒ Integer
Minimum storage size for a DB instance.
21049 21050 21051 21052 21053 21054 21055 21056 21057 21058 21059 21060 21061 21062 21063 21064 21065 21066 21067 21068 21069 21070 21071 21072 21073 21074 21075 21076 21077 21078 21079 21080 21081 21082 21083 21084 21085 21086 21087 21088 |
# File 'lib/aws-sdk-rds/types.rb', line 21049 class OrderableDBInstanceOption < Struct.new( :engine, :engine_version, :db_instance_class, :license_model, :availability_zone_group, :availability_zones, :multi_az_capable, :read_replica_capable, :vpc, :supports_storage_encryption, :storage_type, :supports_iops, :supports_enhanced_monitoring, :supports_iam_database_authentication, :supports_performance_insights, :min_storage_size, :max_storage_size, :min_iops_per_db_instance, :max_iops_per_db_instance, :min_iops_per_gib, :max_iops_per_gib, :available_processor_features, :supported_engine_modes, :supports_storage_autoscaling, :supports_kerberos_authentication, :outpost_capable, :supported_activity_stream_modes, :supports_global_databases, :supports_clusters, :supported_network_types, :supports_storage_throughput, :min_storage_throughput_per_db_instance, :max_storage_throughput_per_db_instance, :min_storage_throughput_per_iops, :max_storage_throughput_per_iops, :supports_dedicated_log_volume) SENSITIVE = [] include Aws::Structure end |
#min_storage_throughput_per_db_instance ⇒ Integer
Minimum storage throughput for a DB instance.
21049 21050 21051 21052 21053 21054 21055 21056 21057 21058 21059 21060 21061 21062 21063 21064 21065 21066 21067 21068 21069 21070 21071 21072 21073 21074 21075 21076 21077 21078 21079 21080 21081 21082 21083 21084 21085 21086 21087 21088 |
# File 'lib/aws-sdk-rds/types.rb', line 21049 class OrderableDBInstanceOption < Struct.new( :engine, :engine_version, :db_instance_class, :license_model, :availability_zone_group, :availability_zones, :multi_az_capable, :read_replica_capable, :vpc, :supports_storage_encryption, :storage_type, :supports_iops, :supports_enhanced_monitoring, :supports_iam_database_authentication, :supports_performance_insights, :min_storage_size, :max_storage_size, :min_iops_per_db_instance, :max_iops_per_db_instance, :min_iops_per_gib, :max_iops_per_gib, :available_processor_features, :supported_engine_modes, :supports_storage_autoscaling, :supports_kerberos_authentication, :outpost_capable, :supported_activity_stream_modes, :supports_global_databases, :supports_clusters, :supported_network_types, :supports_storage_throughput, :min_storage_throughput_per_db_instance, :max_storage_throughput_per_db_instance, :min_storage_throughput_per_iops, :max_storage_throughput_per_iops, :supports_dedicated_log_volume) SENSITIVE = [] include Aws::Structure end |
#min_storage_throughput_per_iops ⇒ Float
Minimum storage throughput to provisioned IOPS ratio for a DB instance.
21049 21050 21051 21052 21053 21054 21055 21056 21057 21058 21059 21060 21061 21062 21063 21064 21065 21066 21067 21068 21069 21070 21071 21072 21073 21074 21075 21076 21077 21078 21079 21080 21081 21082 21083 21084 21085 21086 21087 21088 |
# File 'lib/aws-sdk-rds/types.rb', line 21049 class OrderableDBInstanceOption < Struct.new( :engine, :engine_version, :db_instance_class, :license_model, :availability_zone_group, :availability_zones, :multi_az_capable, :read_replica_capable, :vpc, :supports_storage_encryption, :storage_type, :supports_iops, :supports_enhanced_monitoring, :supports_iam_database_authentication, :supports_performance_insights, :min_storage_size, :max_storage_size, :min_iops_per_db_instance, :max_iops_per_db_instance, :min_iops_per_gib, :max_iops_per_gib, :available_processor_features, :supported_engine_modes, :supports_storage_autoscaling, :supports_kerberos_authentication, :outpost_capable, :supported_activity_stream_modes, :supports_global_databases, :supports_clusters, :supported_network_types, :supports_storage_throughput, :min_storage_throughput_per_db_instance, :max_storage_throughput_per_db_instance, :min_storage_throughput_per_iops, :max_storage_throughput_per_iops, :supports_dedicated_log_volume) SENSITIVE = [] include Aws::Structure end |
#multi_az_capable ⇒ Boolean
Indicates whether a DB instance is Multi-AZ capable.
21049 21050 21051 21052 21053 21054 21055 21056 21057 21058 21059 21060 21061 21062 21063 21064 21065 21066 21067 21068 21069 21070 21071 21072 21073 21074 21075 21076 21077 21078 21079 21080 21081 21082 21083 21084 21085 21086 21087 21088 |
# File 'lib/aws-sdk-rds/types.rb', line 21049 class OrderableDBInstanceOption < Struct.new( :engine, :engine_version, :db_instance_class, :license_model, :availability_zone_group, :availability_zones, :multi_az_capable, :read_replica_capable, :vpc, :supports_storage_encryption, :storage_type, :supports_iops, :supports_enhanced_monitoring, :supports_iam_database_authentication, :supports_performance_insights, :min_storage_size, :max_storage_size, :min_iops_per_db_instance, :max_iops_per_db_instance, :min_iops_per_gib, :max_iops_per_gib, :available_processor_features, :supported_engine_modes, :supports_storage_autoscaling, :supports_kerberos_authentication, :outpost_capable, :supported_activity_stream_modes, :supports_global_databases, :supports_clusters, :supported_network_types, :supports_storage_throughput, :min_storage_throughput_per_db_instance, :max_storage_throughput_per_db_instance, :min_storage_throughput_per_iops, :max_storage_throughput_per_iops, :supports_dedicated_log_volume) SENSITIVE = [] include Aws::Structure end |
#outpost_capable ⇒ Boolean
Indicates 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.*
[1]: docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html
21049 21050 21051 21052 21053 21054 21055 21056 21057 21058 21059 21060 21061 21062 21063 21064 21065 21066 21067 21068 21069 21070 21071 21072 21073 21074 21075 21076 21077 21078 21079 21080 21081 21082 21083 21084 21085 21086 21087 21088 |
# File 'lib/aws-sdk-rds/types.rb', line 21049 class OrderableDBInstanceOption < Struct.new( :engine, :engine_version, :db_instance_class, :license_model, :availability_zone_group, :availability_zones, :multi_az_capable, :read_replica_capable, :vpc, :supports_storage_encryption, :storage_type, :supports_iops, :supports_enhanced_monitoring, :supports_iam_database_authentication, :supports_performance_insights, :min_storage_size, :max_storage_size, :min_iops_per_db_instance, :max_iops_per_db_instance, :min_iops_per_gib, :max_iops_per_gib, :available_processor_features, :supported_engine_modes, :supports_storage_autoscaling, :supports_kerberos_authentication, :outpost_capable, :supported_activity_stream_modes, :supports_global_databases, :supports_clusters, :supported_network_types, :supports_storage_throughput, :min_storage_throughput_per_db_instance, :max_storage_throughput_per_db_instance, :min_storage_throughput_per_iops, :max_storage_throughput_per_iops, :supports_dedicated_log_volume) SENSITIVE = [] include Aws::Structure end |
#read_replica_capable ⇒ Boolean
Indicates whether a DB instance can have a read replica.
21049 21050 21051 21052 21053 21054 21055 21056 21057 21058 21059 21060 21061 21062 21063 21064 21065 21066 21067 21068 21069 21070 21071 21072 21073 21074 21075 21076 21077 21078 21079 21080 21081 21082 21083 21084 21085 21086 21087 21088 |
# File 'lib/aws-sdk-rds/types.rb', line 21049 class OrderableDBInstanceOption < Struct.new( :engine, :engine_version, :db_instance_class, :license_model, :availability_zone_group, :availability_zones, :multi_az_capable, :read_replica_capable, :vpc, :supports_storage_encryption, :storage_type, :supports_iops, :supports_enhanced_monitoring, :supports_iam_database_authentication, :supports_performance_insights, :min_storage_size, :max_storage_size, :min_iops_per_db_instance, :max_iops_per_db_instance, :min_iops_per_gib, :max_iops_per_gib, :available_processor_features, :supported_engine_modes, :supports_storage_autoscaling, :supports_kerberos_authentication, :outpost_capable, :supported_activity_stream_modes, :supports_global_databases, :supports_clusters, :supported_network_types, :supports_storage_throughput, :min_storage_throughput_per_db_instance, :max_storage_throughput_per_db_instance, :min_storage_throughput_per_iops, :max_storage_throughput_per_iops, :supports_dedicated_log_volume) SENSITIVE = [] include Aws::Structure end |
#storage_type ⇒ String
The storage type for a DB instance.
21049 21050 21051 21052 21053 21054 21055 21056 21057 21058 21059 21060 21061 21062 21063 21064 21065 21066 21067 21068 21069 21070 21071 21072 21073 21074 21075 21076 21077 21078 21079 21080 21081 21082 21083 21084 21085 21086 21087 21088 |
# File 'lib/aws-sdk-rds/types.rb', line 21049 class OrderableDBInstanceOption < Struct.new( :engine, :engine_version, :db_instance_class, :license_model, :availability_zone_group, :availability_zones, :multi_az_capable, :read_replica_capable, :vpc, :supports_storage_encryption, :storage_type, :supports_iops, :supports_enhanced_monitoring, :supports_iam_database_authentication, :supports_performance_insights, :min_storage_size, :max_storage_size, :min_iops_per_db_instance, :max_iops_per_db_instance, :min_iops_per_gib, :max_iops_per_gib, :available_processor_features, :supported_engine_modes, :supports_storage_autoscaling, :supports_kerberos_authentication, :outpost_capable, :supported_activity_stream_modes, :supports_global_databases, :supports_clusters, :supported_network_types, :supports_storage_throughput, :min_storage_throughput_per_db_instance, :max_storage_throughput_per_db_instance, :min_storage_throughput_per_iops, :max_storage_throughput_per_iops, :supports_dedicated_log_volume) SENSITIVE = [] include Aws::Structure end |
#supported_activity_stream_modes ⇒ Array<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.
21049 21050 21051 21052 21053 21054 21055 21056 21057 21058 21059 21060 21061 21062 21063 21064 21065 21066 21067 21068 21069 21070 21071 21072 21073 21074 21075 21076 21077 21078 21079 21080 21081 21082 21083 21084 21085 21086 21087 21088 |
# File 'lib/aws-sdk-rds/types.rb', line 21049 class OrderableDBInstanceOption < Struct.new( :engine, :engine_version, :db_instance_class, :license_model, :availability_zone_group, :availability_zones, :multi_az_capable, :read_replica_capable, :vpc, :supports_storage_encryption, :storage_type, :supports_iops, :supports_enhanced_monitoring, :supports_iam_database_authentication, :supports_performance_insights, :min_storage_size, :max_storage_size, :min_iops_per_db_instance, :max_iops_per_db_instance, :min_iops_per_gib, :max_iops_per_gib, :available_processor_features, :supported_engine_modes, :supports_storage_autoscaling, :supports_kerberos_authentication, :outpost_capable, :supported_activity_stream_modes, :supports_global_databases, :supports_clusters, :supported_network_types, :supports_storage_throughput, :min_storage_throughput_per_db_instance, :max_storage_throughput_per_db_instance, :min_storage_throughput_per_iops, :max_storage_throughput_per_iops, :supports_dedicated_log_volume) SENSITIVE = [] include Aws::Structure end |
#supported_engine_modes ⇒ Array<String>
A list of the supported DB engine modes.
21049 21050 21051 21052 21053 21054 21055 21056 21057 21058 21059 21060 21061 21062 21063 21064 21065 21066 21067 21068 21069 21070 21071 21072 21073 21074 21075 21076 21077 21078 21079 21080 21081 21082 21083 21084 21085 21086 21087 21088 |
# File 'lib/aws-sdk-rds/types.rb', line 21049 class OrderableDBInstanceOption < Struct.new( :engine, :engine_version, :db_instance_class, :license_model, :availability_zone_group, :availability_zones, :multi_az_capable, :read_replica_capable, :vpc, :supports_storage_encryption, :storage_type, :supports_iops, :supports_enhanced_monitoring, :supports_iam_database_authentication, :supports_performance_insights, :min_storage_size, :max_storage_size, :min_iops_per_db_instance, :max_iops_per_db_instance, :min_iops_per_gib, :max_iops_per_gib, :available_processor_features, :supported_engine_modes, :supports_storage_autoscaling, :supports_kerberos_authentication, :outpost_capable, :supported_activity_stream_modes, :supports_global_databases, :supports_clusters, :supported_network_types, :supports_storage_throughput, :min_storage_throughput_per_db_instance, :max_storage_throughput_per_db_instance, :min_storage_throughput_per_iops, :max_storage_throughput_per_iops, :supports_dedicated_log_volume) SENSITIVE = [] include Aws::Structure end |
#supported_network_types ⇒ Array<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.*
[1]: docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
21049 21050 21051 21052 21053 21054 21055 21056 21057 21058 21059 21060 21061 21062 21063 21064 21065 21066 21067 21068 21069 21070 21071 21072 21073 21074 21075 21076 21077 21078 21079 21080 21081 21082 21083 21084 21085 21086 21087 21088 |
# File 'lib/aws-sdk-rds/types.rb', line 21049 class OrderableDBInstanceOption < Struct.new( :engine, :engine_version, :db_instance_class, :license_model, :availability_zone_group, :availability_zones, :multi_az_capable, :read_replica_capable, :vpc, :supports_storage_encryption, :storage_type, :supports_iops, :supports_enhanced_monitoring, :supports_iam_database_authentication, :supports_performance_insights, :min_storage_size, :max_storage_size, :min_iops_per_db_instance, :max_iops_per_db_instance, :min_iops_per_gib, :max_iops_per_gib, :available_processor_features, :supported_engine_modes, :supports_storage_autoscaling, :supports_kerberos_authentication, :outpost_capable, :supported_activity_stream_modes, :supports_global_databases, :supports_clusters, :supported_network_types, :supports_storage_throughput, :min_storage_throughput_per_db_instance, :max_storage_throughput_per_db_instance, :min_storage_throughput_per_iops, :max_storage_throughput_per_iops, :supports_dedicated_log_volume) SENSITIVE = [] include Aws::Structure end |
#supports_clusters ⇒ Boolean
Indicates 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.*
[1]: docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html
21049 21050 21051 21052 21053 21054 21055 21056 21057 21058 21059 21060 21061 21062 21063 21064 21065 21066 21067 21068 21069 21070 21071 21072 21073 21074 21075 21076 21077 21078 21079 21080 21081 21082 21083 21084 21085 21086 21087 21088 |
# File 'lib/aws-sdk-rds/types.rb', line 21049 class OrderableDBInstanceOption < Struct.new( :engine, :engine_version, :db_instance_class, :license_model, :availability_zone_group, :availability_zones, :multi_az_capable, :read_replica_capable, :vpc, :supports_storage_encryption, :storage_type, :supports_iops, :supports_enhanced_monitoring, :supports_iam_database_authentication, :supports_performance_insights, :min_storage_size, :max_storage_size, :min_iops_per_db_instance, :max_iops_per_db_instance, :min_iops_per_gib, :max_iops_per_gib, :available_processor_features, :supported_engine_modes, :supports_storage_autoscaling, :supports_kerberos_authentication, :outpost_capable, :supported_activity_stream_modes, :supports_global_databases, :supports_clusters, :supported_network_types, :supports_storage_throughput, :min_storage_throughput_per_db_instance, :max_storage_throughput_per_db_instance, :min_storage_throughput_per_iops, :max_storage_throughput_per_iops, :supports_dedicated_log_volume) SENSITIVE = [] include Aws::Structure end |
#supports_dedicated_log_volume ⇒ Boolean
Indicates whether a DB instance supports using a dedicated log volume (DLV).
21049 21050 21051 21052 21053 21054 21055 21056 21057 21058 21059 21060 21061 21062 21063 21064 21065 21066 21067 21068 21069 21070 21071 21072 21073 21074 21075 21076 21077 21078 21079 21080 21081 21082 21083 21084 21085 21086 21087 21088 |
# File 'lib/aws-sdk-rds/types.rb', line 21049 class OrderableDBInstanceOption < Struct.new( :engine, :engine_version, :db_instance_class, :license_model, :availability_zone_group, :availability_zones, :multi_az_capable, :read_replica_capable, :vpc, :supports_storage_encryption, :storage_type, :supports_iops, :supports_enhanced_monitoring, :supports_iam_database_authentication, :supports_performance_insights, :min_storage_size, :max_storage_size, :min_iops_per_db_instance, :max_iops_per_db_instance, :min_iops_per_gib, :max_iops_per_gib, :available_processor_features, :supported_engine_modes, :supports_storage_autoscaling, :supports_kerberos_authentication, :outpost_capable, :supported_activity_stream_modes, :supports_global_databases, :supports_clusters, :supported_network_types, :supports_storage_throughput, :min_storage_throughput_per_db_instance, :max_storage_throughput_per_db_instance, :min_storage_throughput_per_iops, :max_storage_throughput_per_iops, :supports_dedicated_log_volume) SENSITIVE = [] include Aws::Structure end |
#supports_enhanced_monitoring ⇒ Boolean
Indicates whether a DB instance supports Enhanced Monitoring at intervals from 1 to 60 seconds.
21049 21050 21051 21052 21053 21054 21055 21056 21057 21058 21059 21060 21061 21062 21063 21064 21065 21066 21067 21068 21069 21070 21071 21072 21073 21074 21075 21076 21077 21078 21079 21080 21081 21082 21083 21084 21085 21086 21087 21088 |
# File 'lib/aws-sdk-rds/types.rb', line 21049 class OrderableDBInstanceOption < Struct.new( :engine, :engine_version, :db_instance_class, :license_model, :availability_zone_group, :availability_zones, :multi_az_capable, :read_replica_capable, :vpc, :supports_storage_encryption, :storage_type, :supports_iops, :supports_enhanced_monitoring, :supports_iam_database_authentication, :supports_performance_insights, :min_storage_size, :max_storage_size, :min_iops_per_db_instance, :max_iops_per_db_instance, :min_iops_per_gib, :max_iops_per_gib, :available_processor_features, :supported_engine_modes, :supports_storage_autoscaling, :supports_kerberos_authentication, :outpost_capable, :supported_activity_stream_modes, :supports_global_databases, :supports_clusters, :supported_network_types, :supports_storage_throughput, :min_storage_throughput_per_db_instance, :max_storage_throughput_per_db_instance, :min_storage_throughput_per_iops, :max_storage_throughput_per_iops, :supports_dedicated_log_volume) SENSITIVE = [] include Aws::Structure end |
#supports_global_databases ⇒ Boolean
Indicates whether you can use Aurora global databases with a specific combination of other DB engine attributes.
21049 21050 21051 21052 21053 21054 21055 21056 21057 21058 21059 21060 21061 21062 21063 21064 21065 21066 21067 21068 21069 21070 21071 21072 21073 21074 21075 21076 21077 21078 21079 21080 21081 21082 21083 21084 21085 21086 21087 21088 |
# File 'lib/aws-sdk-rds/types.rb', line 21049 class OrderableDBInstanceOption < Struct.new( :engine, :engine_version, :db_instance_class, :license_model, :availability_zone_group, :availability_zones, :multi_az_capable, :read_replica_capable, :vpc, :supports_storage_encryption, :storage_type, :supports_iops, :supports_enhanced_monitoring, :supports_iam_database_authentication, :supports_performance_insights, :min_storage_size, :max_storage_size, :min_iops_per_db_instance, :max_iops_per_db_instance, :min_iops_per_gib, :max_iops_per_gib, :available_processor_features, :supported_engine_modes, :supports_storage_autoscaling, :supports_kerberos_authentication, :outpost_capable, :supported_activity_stream_modes, :supports_global_databases, :supports_clusters, :supported_network_types, :supports_storage_throughput, :min_storage_throughput_per_db_instance, :max_storage_throughput_per_db_instance, :min_storage_throughput_per_iops, :max_storage_throughput_per_iops, :supports_dedicated_log_volume) SENSITIVE = [] include Aws::Structure end |
#supports_iam_database_authentication ⇒ Boolean
Indicates whether a DB instance supports IAM database authentication.
21049 21050 21051 21052 21053 21054 21055 21056 21057 21058 21059 21060 21061 21062 21063 21064 21065 21066 21067 21068 21069 21070 21071 21072 21073 21074 21075 21076 21077 21078 21079 21080 21081 21082 21083 21084 21085 21086 21087 21088 |
# File 'lib/aws-sdk-rds/types.rb', line 21049 class OrderableDBInstanceOption < Struct.new( :engine, :engine_version, :db_instance_class, :license_model, :availability_zone_group, :availability_zones, :multi_az_capable, :read_replica_capable, :vpc, :supports_storage_encryption, :storage_type, :supports_iops, :supports_enhanced_monitoring, :supports_iam_database_authentication, :supports_performance_insights, :min_storage_size, :max_storage_size, :min_iops_per_db_instance, :max_iops_per_db_instance, :min_iops_per_gib, :max_iops_per_gib, :available_processor_features, :supported_engine_modes, :supports_storage_autoscaling, :supports_kerberos_authentication, :outpost_capable, :supported_activity_stream_modes, :supports_global_databases, :supports_clusters, :supported_network_types, :supports_storage_throughput, :min_storage_throughput_per_db_instance, :max_storage_throughput_per_db_instance, :min_storage_throughput_per_iops, :max_storage_throughput_per_iops, :supports_dedicated_log_volume) SENSITIVE = [] include Aws::Structure end |
#supports_iops ⇒ Boolean
Indicates whether a DB instance supports provisioned IOPS.
21049 21050 21051 21052 21053 21054 21055 21056 21057 21058 21059 21060 21061 21062 21063 21064 21065 21066 21067 21068 21069 21070 21071 21072 21073 21074 21075 21076 21077 21078 21079 21080 21081 21082 21083 21084 21085 21086 21087 21088 |
# File 'lib/aws-sdk-rds/types.rb', line 21049 class OrderableDBInstanceOption < Struct.new( :engine, :engine_version, :db_instance_class, :license_model, :availability_zone_group, :availability_zones, :multi_az_capable, :read_replica_capable, :vpc, :supports_storage_encryption, :storage_type, :supports_iops, :supports_enhanced_monitoring, :supports_iam_database_authentication, :supports_performance_insights, :min_storage_size, :max_storage_size, :min_iops_per_db_instance, :max_iops_per_db_instance, :min_iops_per_gib, :max_iops_per_gib, :available_processor_features, :supported_engine_modes, :supports_storage_autoscaling, :supports_kerberos_authentication, :outpost_capable, :supported_activity_stream_modes, :supports_global_databases, :supports_clusters, :supported_network_types, :supports_storage_throughput, :min_storage_throughput_per_db_instance, :max_storage_throughput_per_db_instance, :min_storage_throughput_per_iops, :max_storage_throughput_per_iops, :supports_dedicated_log_volume) SENSITIVE = [] include Aws::Structure end |
#supports_kerberos_authentication ⇒ Boolean
Indicates whether a DB instance supports Kerberos Authentication.
21049 21050 21051 21052 21053 21054 21055 21056 21057 21058 21059 21060 21061 21062 21063 21064 21065 21066 21067 21068 21069 21070 21071 21072 21073 21074 21075 21076 21077 21078 21079 21080 21081 21082 21083 21084 21085 21086 21087 21088 |
# File 'lib/aws-sdk-rds/types.rb', line 21049 class OrderableDBInstanceOption < Struct.new( :engine, :engine_version, :db_instance_class, :license_model, :availability_zone_group, :availability_zones, :multi_az_capable, :read_replica_capable, :vpc, :supports_storage_encryption, :storage_type, :supports_iops, :supports_enhanced_monitoring, :supports_iam_database_authentication, :supports_performance_insights, :min_storage_size, :max_storage_size, :min_iops_per_db_instance, :max_iops_per_db_instance, :min_iops_per_gib, :max_iops_per_gib, :available_processor_features, :supported_engine_modes, :supports_storage_autoscaling, :supports_kerberos_authentication, :outpost_capable, :supported_activity_stream_modes, :supports_global_databases, :supports_clusters, :supported_network_types, :supports_storage_throughput, :min_storage_throughput_per_db_instance, :max_storage_throughput_per_db_instance, :min_storage_throughput_per_iops, :max_storage_throughput_per_iops, :supports_dedicated_log_volume) SENSITIVE = [] include Aws::Structure end |
#supports_performance_insights ⇒ Boolean
Indicates whether a DB instance supports Performance Insights.
21049 21050 21051 21052 21053 21054 21055 21056 21057 21058 21059 21060 21061 21062 21063 21064 21065 21066 21067 21068 21069 21070 21071 21072 21073 21074 21075 21076 21077 21078 21079 21080 21081 21082 21083 21084 21085 21086 21087 21088 |
# File 'lib/aws-sdk-rds/types.rb', line 21049 class OrderableDBInstanceOption < Struct.new( :engine, :engine_version, :db_instance_class, :license_model, :availability_zone_group, :availability_zones, :multi_az_capable, :read_replica_capable, :vpc, :supports_storage_encryption, :storage_type, :supports_iops, :supports_enhanced_monitoring, :supports_iam_database_authentication, :supports_performance_insights, :min_storage_size, :max_storage_size, :min_iops_per_db_instance, :max_iops_per_db_instance, :min_iops_per_gib, :max_iops_per_gib, :available_processor_features, :supported_engine_modes, :supports_storage_autoscaling, :supports_kerberos_authentication, :outpost_capable, :supported_activity_stream_modes, :supports_global_databases, :supports_clusters, :supported_network_types, :supports_storage_throughput, :min_storage_throughput_per_db_instance, :max_storage_throughput_per_db_instance, :min_storage_throughput_per_iops, :max_storage_throughput_per_iops, :supports_dedicated_log_volume) SENSITIVE = [] include Aws::Structure end |
#supports_storage_autoscaling ⇒ Boolean
Indicates whether Amazon RDS can automatically scale storage for DB instances that use the specified DB instance class.
21049 21050 21051 21052 21053 21054 21055 21056 21057 21058 21059 21060 21061 21062 21063 21064 21065 21066 21067 21068 21069 21070 21071 21072 21073 21074 21075 21076 21077 21078 21079 21080 21081 21082 21083 21084 21085 21086 21087 21088 |
# File 'lib/aws-sdk-rds/types.rb', line 21049 class OrderableDBInstanceOption < Struct.new( :engine, :engine_version, :db_instance_class, :license_model, :availability_zone_group, :availability_zones, :multi_az_capable, :read_replica_capable, :vpc, :supports_storage_encryption, :storage_type, :supports_iops, :supports_enhanced_monitoring, :supports_iam_database_authentication, :supports_performance_insights, :min_storage_size, :max_storage_size, :min_iops_per_db_instance, :max_iops_per_db_instance, :min_iops_per_gib, :max_iops_per_gib, :available_processor_features, :supported_engine_modes, :supports_storage_autoscaling, :supports_kerberos_authentication, :outpost_capable, :supported_activity_stream_modes, :supports_global_databases, :supports_clusters, :supported_network_types, :supports_storage_throughput, :min_storage_throughput_per_db_instance, :max_storage_throughput_per_db_instance, :min_storage_throughput_per_iops, :max_storage_throughput_per_iops, :supports_dedicated_log_volume) SENSITIVE = [] include Aws::Structure end |
#supports_storage_encryption ⇒ Boolean
Indicates whether a DB instance supports encrypted storage.
21049 21050 21051 21052 21053 21054 21055 21056 21057 21058 21059 21060 21061 21062 21063 21064 21065 21066 21067 21068 21069 21070 21071 21072 21073 21074 21075 21076 21077 21078 21079 21080 21081 21082 21083 21084 21085 21086 21087 21088 |
# File 'lib/aws-sdk-rds/types.rb', line 21049 class OrderableDBInstanceOption < Struct.new( :engine, :engine_version, :db_instance_class, :license_model, :availability_zone_group, :availability_zones, :multi_az_capable, :read_replica_capable, :vpc, :supports_storage_encryption, :storage_type, :supports_iops, :supports_enhanced_monitoring, :supports_iam_database_authentication, :supports_performance_insights, :min_storage_size, :max_storage_size, :min_iops_per_db_instance, :max_iops_per_db_instance, :min_iops_per_gib, :max_iops_per_gib, :available_processor_features, :supported_engine_modes, :supports_storage_autoscaling, :supports_kerberos_authentication, :outpost_capable, :supported_activity_stream_modes, :supports_global_databases, :supports_clusters, :supported_network_types, :supports_storage_throughput, :min_storage_throughput_per_db_instance, :max_storage_throughput_per_db_instance, :min_storage_throughput_per_iops, :max_storage_throughput_per_iops, :supports_dedicated_log_volume) SENSITIVE = [] include Aws::Structure end |
#supports_storage_throughput ⇒ Boolean
Indicates whether a DB instance supports storage throughput.
21049 21050 21051 21052 21053 21054 21055 21056 21057 21058 21059 21060 21061 21062 21063 21064 21065 21066 21067 21068 21069 21070 21071 21072 21073 21074 21075 21076 21077 21078 21079 21080 21081 21082 21083 21084 21085 21086 21087 21088 |
# File 'lib/aws-sdk-rds/types.rb', line 21049 class OrderableDBInstanceOption < Struct.new( :engine, :engine_version, :db_instance_class, :license_model, :availability_zone_group, :availability_zones, :multi_az_capable, :read_replica_capable, :vpc, :supports_storage_encryption, :storage_type, :supports_iops, :supports_enhanced_monitoring, :supports_iam_database_authentication, :supports_performance_insights, :min_storage_size, :max_storage_size, :min_iops_per_db_instance, :max_iops_per_db_instance, :min_iops_per_gib, :max_iops_per_gib, :available_processor_features, :supported_engine_modes, :supports_storage_autoscaling, :supports_kerberos_authentication, :outpost_capable, :supported_activity_stream_modes, :supports_global_databases, :supports_clusters, :supported_network_types, :supports_storage_throughput, :min_storage_throughput_per_db_instance, :max_storage_throughput_per_db_instance, :min_storage_throughput_per_iops, :max_storage_throughput_per_iops, :supports_dedicated_log_volume) SENSITIVE = [] include Aws::Structure end |
#vpc ⇒ Boolean
Indicates whether a DB instance is in a VPC.
21049 21050 21051 21052 21053 21054 21055 21056 21057 21058 21059 21060 21061 21062 21063 21064 21065 21066 21067 21068 21069 21070 21071 21072 21073 21074 21075 21076 21077 21078 21079 21080 21081 21082 21083 21084 21085 21086 21087 21088 |
# File 'lib/aws-sdk-rds/types.rb', line 21049 class OrderableDBInstanceOption < Struct.new( :engine, :engine_version, :db_instance_class, :license_model, :availability_zone_group, :availability_zones, :multi_az_capable, :read_replica_capable, :vpc, :supports_storage_encryption, :storage_type, :supports_iops, :supports_enhanced_monitoring, :supports_iam_database_authentication, :supports_performance_insights, :min_storage_size, :max_storage_size, :min_iops_per_db_instance, :max_iops_per_db_instance, :min_iops_per_gib, :max_iops_per_gib, :available_processor_features, :supported_engine_modes, :supports_storage_autoscaling, :supports_kerberos_authentication, :outpost_capable, :supported_activity_stream_modes, :supports_global_databases, :supports_clusters, :supported_network_types, :supports_storage_throughput, :min_storage_throughput_per_db_instance, :max_storage_throughput_per_db_instance, :min_storage_throughput_per_iops, :max_storage_throughput_per_iops, :supports_dedicated_log_volume) SENSITIVE = [] include Aws::Structure end |