Enum LicenseModel
- All Implemented Interfaces:
Serializable
,Comparable<LicenseModel>
,java.lang.constant.Constable
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-27T16:51:04.169Z")
@Stability(Stable)
public enum LicenseModel
extends Enum<LicenseModel>
The license model.
Example:
// Set open cursors with parameter group ParameterGroup parameterGroup = ParameterGroup.Builder.create(this, "ParameterGroup") .engine(DatabaseInstanceEngine.oracleSe2(OracleSe2InstanceEngineProps.builder().version(OracleEngineVersion.VER_19_0_0_0_2020_04_R1).build())) .parameters(Map.of( "open_cursors", "2500")) .build(); OptionGroup optionGroup = OptionGroup.Builder.create(this, "OptionGroup") .engine(DatabaseInstanceEngine.oracleSe2(OracleSe2InstanceEngineProps.builder().version(OracleEngineVersion.VER_19_0_0_0_2020_04_R1).build())) .configurations(List.of(OptionConfiguration.builder() .name("LOCATOR") .build(), OptionConfiguration.builder() .name("OEM") .port(1158) .vpc(vpc) .build())) .build(); // Allow connections to OEM optionGroup.optionConnections.OEM.connections.allowDefaultPortFromAnyIpv4(); // Database instance with production values DatabaseInstance instance = DatabaseInstance.Builder.create(this, "Instance") .engine(DatabaseInstanceEngine.oracleSe2(OracleSe2InstanceEngineProps.builder().version(OracleEngineVersion.VER_19_0_0_0_2020_04_R1).build())) .licenseModel(LicenseModel.BRING_YOUR_OWN_LICENSE) .instanceType(InstanceType.of(InstanceClass.BURSTABLE3, InstanceSize.MEDIUM)) .multiAz(true) .storageType(StorageType.IO1) .credentials(Credentials.fromUsername("syscdk")) .vpc(vpc) .databaseName("ORCL") .storageEncrypted(true) .backupRetention(Duration.days(7)) .monitoringInterval(Duration.seconds(60)) .enablePerformanceInsights(true) .cloudwatchLogsExports(List.of("trace", "audit", "alert", "listener")) .cloudwatchLogsRetention(RetentionDays.ONE_MONTH) .autoMinorVersionUpgrade(true) // required to be true if LOCATOR is used in the option group .optionGroup(optionGroup) .parameterGroup(parameterGroup) .removalPolicy(RemovalPolicy.DESTROY) .build(); // Allow connections on default port from any IPV4 instance.connections.allowDefaultPortFromAnyIpv4(); // Rotate the master user password every 30 days instance.addRotationSingleUser(); // Add alarm for high CPU // Add alarm for high CPU Alarm.Builder.create(this, "HighCPU") .metric(instance.metricCPUUtilization()) .threshold(90) .evaluationPeriods(1) .build(); // Trigger Lambda function on instance availability events Function fn = Function.Builder.create(this, "Function") .code(Code.fromInline("exports.handler = (event) => console.log(event);")) .handler("index.handler") .runtime(Runtime.NODEJS_18_X) .build(); Rule availabilityRule = instance.onEvent("Availability", OnEventOptions.builder().target(new LambdaFunction(fn)).build()); availabilityRule.addEventPattern(EventPattern.builder() .detail(Map.of( "EventCategories", List.of("availability"))) .build());
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionBring your own licencse.General public license.License included. -
Method Summary
Modifier and TypeMethodDescriptionstatic LicenseModel
Returns the enum constant of this type with the specified name.static LicenseModel[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
LICENSE_INCLUDED
License included. -
BRING_YOUR_OWN_LICENSE
Bring your own licencse. -
GENERAL_PUBLIC_LICENSE
General public license.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-