CfnCloudExadataInfrastructureProps

class aws_cdk.aws_odb.CfnCloudExadataInfrastructureProps(*, availability_zone=None, availability_zone_id=None, compute_count=None, customer_contacts_to_send_to_oci=None, database_server_type=None, display_name=None, shape=None, storage_count=None, storage_server_type=None, tags=None)

Bases: object

Properties for defining a CfnCloudExadataInfrastructure.

Parameters:
  • availability_zone (Optional[str]) – The name of the Availability Zone (AZ) where the Exadata infrastructure is located. Required when creating an Exadata infrastructure. Specify either AvailabilityZone or AvailabilityZoneId to define the location of the infrastructure.

  • availability_zone_id (Optional[str]) – The AZ ID of the AZ where the Exadata infrastructure is located. Required when creating an Exadata infrastructure. Specify either AvailabilityZone or AvailabilityZoneId to define the location of the infrastructure.

  • compute_count (Union[int, float, None]) – The number of database servers for the Exadata infrastructure. Required when creating an Exadata infrastructure.

  • customer_contacts_to_send_to_oci (Union[IResolvable, Sequence[Union[IResolvable, CustomerContactProperty, Dict[str, Any]]], None]) – The email addresses of contacts to receive notification from Oracle about maintenance updates for the Exadata infrastructure.

  • database_server_type (Optional[str]) – The database server model type of the Exadata infrastructure. For the list of valid model names, use the ListDbSystemShapes operation.

  • display_name (Optional[str]) – The user-friendly name for the Exadata infrastructure. Required when creating an Exadata infrastructure.

  • shape (Optional[str]) – The model name of the Exadata infrastructure. Required when creating an Exadata infrastructure.

  • storage_count (Union[int, float, None]) – The number of storage servers that are activated for the Exadata infrastructure. Required when creating an Exadata infrastructure.

  • storage_server_type (Optional[str]) – The storage server model type of the Exadata infrastructure. For the list of valid model names, use the ListDbSystemShapes operation.

  • tags (Optional[Sequence[Union[CfnTag, Dict[str, Any]]]]) – Tags to assign to the Exadata Infrastructure.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-odb-cloudexadatainfrastructure.html

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import aws_odb as odb

cfn_cloud_exadata_infrastructure_props = odb.CfnCloudExadataInfrastructureProps(
    availability_zone="availabilityZone",
    availability_zone_id="availabilityZoneId",
    compute_count=123,
    customer_contacts_to_send_to_oci=[odb.CfnCloudExadataInfrastructure.CustomerContactProperty(
        email="email"
    )],
    database_server_type="databaseServerType",
    display_name="displayName",
    shape="shape",
    storage_count=123,
    storage_server_type="storageServerType",
    tags=[CfnTag(
        key="key",
        value="value"
    )]
)

Attributes

availability_zone

The name of the Availability Zone (AZ) where the Exadata infrastructure is located.

Required when creating an Exadata infrastructure. Specify either AvailabilityZone or AvailabilityZoneId to define the location of the infrastructure.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-odb-cloudexadatainfrastructure.html#cfn-odb-cloudexadatainfrastructure-availabilityzone

availability_zone_id

The AZ ID of the AZ where the Exadata infrastructure is located.

Required when creating an Exadata infrastructure. Specify either AvailabilityZone or AvailabilityZoneId to define the location of the infrastructure.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-odb-cloudexadatainfrastructure.html#cfn-odb-cloudexadatainfrastructure-availabilityzoneid

compute_count

The number of database servers for the Exadata infrastructure.

Required when creating an Exadata infrastructure.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-odb-cloudexadatainfrastructure.html#cfn-odb-cloudexadatainfrastructure-computecount

customer_contacts_to_send_to_oci

The email addresses of contacts to receive notification from Oracle about maintenance updates for the Exadata infrastructure.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-odb-cloudexadatainfrastructure.html#cfn-odb-cloudexadatainfrastructure-customercontactstosendtooci

database_server_type

The database server model type of the Exadata infrastructure.

For the list of valid model names, use the ListDbSystemShapes operation.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-odb-cloudexadatainfrastructure.html#cfn-odb-cloudexadatainfrastructure-databaseservertype

display_name

The user-friendly name for the Exadata infrastructure.

Required when creating an Exadata infrastructure.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-odb-cloudexadatainfrastructure.html#cfn-odb-cloudexadatainfrastructure-displayname

shape

The model name of the Exadata infrastructure.

Required when creating an Exadata infrastructure.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-odb-cloudexadatainfrastructure.html#cfn-odb-cloudexadatainfrastructure-shape

storage_count

The number of storage servers that are activated for the Exadata infrastructure.

Required when creating an Exadata infrastructure.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-odb-cloudexadatainfrastructure.html#cfn-odb-cloudexadatainfrastructure-storagecount

storage_server_type

The storage server model type of the Exadata infrastructure.

For the list of valid model names, use the ListDbSystemShapes operation.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-odb-cloudexadatainfrastructure.html#cfn-odb-cloudexadatainfrastructure-storageservertype

tags

Tags to assign to the Exadata Infrastructure.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-odb-cloudexadatainfrastructure.html#cfn-odb-cloudexadatainfrastructure-tags