Method: Aws::DocDB::Types::RestoreDBClusterFromSnapshotMessage#storage_type
- Defined in:
- lib/aws-sdk-docdb/types.rb
#storage_type ⇒ String
The storage type to associate with the DB cluster.
For information on storage types for Amazon DocumentDB clusters, see Cluster storage configurations in the *Amazon DocumentDB Developer Guide*.
Valid values for storage type - ‘standard | iopt1`
Default value is ‘standard `
5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 |
# File 'lib/aws-sdk-docdb/types.rb', line 5454 class RestoreDBClusterFromSnapshotMessage < Struct.new( :availability_zones, :db_cluster_identifier, :snapshot_identifier, :engine, :engine_version, :port, :db_subnet_group_name, :vpc_security_group_ids, :tags, :kms_key_id, :enable_cloudwatch_logs_exports, :deletion_protection, :db_cluster_parameter_group_name, :storage_type) SENSITIVE = [] include Aws::Structure end |