OracleSe2InstanceEngineProps

class aws_cdk.aws_rds.OracleSe2InstanceEngineProps(*, version)

Bases: object

Properties for Oracle Standard Edition 2 instance engines.

Used in DatabaseInstanceEngine.oracleSe2.

Parameters:

version (OracleEngineVersion) – The exact version of the engine to use.

ExampleMetadata:

infused

Example:

# vpc: ec2.Vpc

instance = rds.DatabaseInstance(self, "Instance",
    engine=rds.DatabaseInstanceEngine.oracle_se2(version=rds.OracleEngineVersion.VER_19_0_0_0_2020_04_R1),
    # optional, defaults to m5.large
    instance_type=ec2.InstanceType.of(ec2.InstanceClass.BURSTABLE3, ec2.InstanceSize.SMALL),
    credentials=rds.Credentials.from_generated_secret("syscdk"),  # Optional - will default to 'admin' username and generated password
    vpc=vpc,
    vpc_subnets=ec2.SubnetSelection(
        subnet_type=ec2.SubnetType.PRIVATE_WITH_EGRESS
    )
)

Attributes

version

The exact version of the engine to use.