Class: AWSCDK::RDS::AuroraPostgresClusterEngineProps
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::RDS::AuroraPostgresClusterEngineProps
- Defined in:
- rds/aurora_postgres_cluster_engine_props.rb
Overview
Creation properties of the Aurora PostgreSQL database cluster engine.
Used in DatabaseClusterEngine.auroraPostgres.
Instance Attribute Summary collapse
-
#version ⇒ AWSCDK::RDS::AuroraPostgresEngineVersion
readonly
The version of the Aurora PostgreSQL cluster engine.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(version:) ⇒ AuroraPostgresClusterEngineProps
constructor
A new instance of AuroraPostgresClusterEngineProps.
- #to_jsii ⇒ Object
Constructor Details
#initialize(version:) ⇒ AuroraPostgresClusterEngineProps
Returns a new instance of AuroraPostgresClusterEngineProps.
10 11 12 13 |
# File 'rds/aurora_postgres_cluster_engine_props.rb', line 10 def initialize(version:) @version = version Jsii::Type.check_type(@version, JSON.parse(Base64.strict_decode64("eyJmcW4iOiJhd3MtY2RrLWxpYi5hd3NfcmRzLkF1cm9yYVBvc3RncmVzRW5naW5lVmVyc2lvbiJ9")), "version") end |
Instance Attribute Details
#version ⇒ AWSCDK::RDS::AuroraPostgresEngineVersion (readonly)
The version of the Aurora PostgreSQL cluster engine.
18 19 20 |
# File 'rds/aurora_postgres_cluster_engine_props.rb', line 18 def version @version end |
Class Method Details
.jsii_properties ⇒ Object
20 21 22 23 24 |
# File 'rds/aurora_postgres_cluster_engine_props.rb', line 20 def self.jsii_properties { :version => "version", } end |
Instance Method Details
#to_jsii ⇒ Object
26 27 28 29 30 31 32 |
# File 'rds/aurora_postgres_cluster_engine_props.rb', line 26 def to_jsii result = {} result.merge!({ "version" => @version, }) result.compact end |