aws-cdk-lib.aws_rds.OracleSe2InstanceEngineProps

interface OracleSe2InstanceEngineProps

LanguageType name
.NETAmazon.CDK.AWS.RDS.OracleSe2InstanceEngineProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsrds#OracleSe2InstanceEngineProps
Javasoftware.amazon.awscdk.services.rds.OracleSe2InstanceEngineProps
Pythonaws_cdk.aws_rds.OracleSe2InstanceEngineProps
TypeScript (source)aws-cdk-lib » aws_rds » OracleSe2InstanceEngineProps

Properties for Oracle Standard Edition 2 instance engines.

Used in DatabaseInstanceEngine.oracleSe2.

Example

declare const vpc: ec2.Vpc;
const instance = new rds.DatabaseInstance(this, 'Instance', {
  engine: rds.DatabaseInstanceEngine.oracleSe2({ version: rds.OracleEngineVersion.VER_19_0_0_0_2020_04_R1 }),
  // optional, defaults to m5.large
  instanceType: ec2.InstanceType.of(ec2.InstanceClass.BURSTABLE3, ec2.InstanceSize.SMALL),
  credentials: rds.Credentials.fromGeneratedSecret('syscdk'), // Optional - will default to 'admin' username and generated password
  vpc,
  vpcSubnets: {
    subnetType: ec2.SubnetType.PRIVATE_WITH_EGRESS,
  }
});

Properties

NameTypeDescription
versionOracleEngineVersionThe exact version of the engine to use.

version

Type: OracleEngineVersion

The exact version of the engine to use.