class CfnCloudAutonomousVmClusterPropsMixin (mixin)
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.ODB.CfnCloudAutonomousVmClusterPropsMixin |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsodb#CfnCloudAutonomousVmClusterPropsMixin |
Java | software.amazon.awscdk.cfnpropertymixins.services.odb.CfnCloudAutonomousVmClusterPropsMixin |
Python | aws_cdk.cfn_property_mixins.aws_odb.CfnCloudAutonomousVmClusterPropsMixin |
TypeScript | @aws-cdk/cfn-property-mixins » aws_odb » CfnCloudAutonomousVmClusterPropsMixin |
Implements
IMixin
Extends
Mixin
The AWS::ODB::CloudAutonomousVmCluster resource creates an Autonomous VM cluster.
An Autonomous VM cluster provides the infrastructure for running Autonomous Databases.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_odb as odb } from '@aws-cdk/cfn-property-mixins';
import * as cdk from 'aws-cdk-lib';
declare const mergeStrategy: cdk.IMergeStrategy;
const cfnCloudAutonomousVmClusterPropsMixin = new odb.CfnCloudAutonomousVmClusterPropsMixin({
autonomousDataStorageSizeInTBs: 123,
cloudExadataInfrastructureId: 'cloudExadataInfrastructureId',
cpuCoreCountPerNode: 123,
dbServers: ['dbServers'],
description: 'description',
displayName: 'displayName',
iamRoles: [{
awsIntegration: 'awsIntegration',
iamRoleArn: 'iamRoleArn',
status: 'status',
}],
isMtlsEnabledVmCluster: false,
licenseModel: 'licenseModel',
maintenanceWindow: {
daysOfWeek: ['daysOfWeek'],
hoursOfDay: [123],
leadTimeInWeeks: 123,
months: ['months'],
preference: 'preference',
weeksOfMonth: [123],
},
memoryPerOracleComputeUnitInGBs: 123,
odbNetworkId: 'odbNetworkId',
scanListenerPortNonTls: 123,
scanListenerPortTls: 123,
tags: [{
key: 'key',
value: 'value',
}],
timeZone: 'timeZone',
totalContainerDatabases: 123,
}, /* all optional props */ {
strategy: mergeStrategy,
});
Initializer
new CfnCloudAutonomousVmClusterPropsMixin(props: CfnCloudAutonomousVmClusterMixinProps, options?: CfnPropertyMixinOptions)
Parameters
- props
Cfn— L1 properties to apply.Cloud Autonomous Vm Cluster Mixin Props - options
Cfn— Mixin options.Property Mixin Options
Create a mixin to apply properties to AWS::ODB::CloudAutonomousVmCluster.
Properties
| Name | Type | Description |
|---|---|---|
| props | Cfn | |
| strategy | IMerge | |
| static CFN_PROPERTY_KEYS | string[] |
props
Type:
Cfn
strategy
Type:
IMerge
static CFN_PROPERTY_KEYS
Type:
string[]
Methods
| Name | Description |
|---|---|
| apply | Apply the mixin properties to the construct. |
| supports(construct) | Check if this mixin supports the given construct. |
applyTo(construct)
public applyTo(construct: IConstruct): void
Parameters
- construct
IConstruct
Apply the mixin properties to the construct.
supports(construct)
public supports(construct: IConstruct): boolean
Parameters
- construct
IConstruct
Returns
boolean
Check if this mixin supports the given construct.

.NET
Go
Java
Python
TypeScript