Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

AwsRdsDbClusterDetails

import type { AwsRdsDbClusterDetails } from "https://aws-api.deno.dev/v0.4/services/securityhub.ts?docs=full";

Information about an Amazon RDS DB cluster.

interface AwsRdsDbClusterDetails {
ActivityStreamStatus?: string | null;
AllocatedStorage?: number | null;
AssociatedRoles?: AwsRdsDbClusterAssociatedRole[] | null;
AvailabilityZones?: string[] | null;
BackupRetentionPeriod?: number | null;
ClusterCreateTime?: string | null;
CopyTagsToSnapshot?: boolean | null;
CrossAccountClone?: boolean | null;
CustomEndpoints?: string[] | null;
DatabaseName?: string | null;
DbClusterIdentifier?: string | null;
DbClusterMembers?: AwsRdsDbClusterMember[] | null;
DbClusterOptionGroupMemberships?: AwsRdsDbClusterOptionGroupMembership[] | null;
DbClusterParameterGroup?: string | null;
DbClusterResourceId?: string | null;
DbSubnetGroup?: string | null;
DeletionProtection?: boolean | null;
DomainMemberships?: AwsRdsDbDomainMembership[] | null;
EnabledCloudWatchLogsExports?: string[] | null;
Endpoint?: string | null;
Engine?: string | null;
EngineMode?: string | null;
EngineVersion?: string | null;
HostedZoneId?: string | null;
HttpEndpointEnabled?: boolean | null;
IamDatabaseAuthenticationEnabled?: boolean | null;
KmsKeyId?: string | null;
MasterUsername?: string | null;
MultiAz?: boolean | null;
Port?: number | null;
PreferredBackupWindow?: string | null;
PreferredMaintenanceWindow?: string | null;
ReaderEndpoint?: string | null;
ReadReplicaIdentifiers?: string[] | null;
Status?: string | null;
StorageEncrypted?: boolean | null;
VpcSecurityGroups?: AwsRdsDbInstanceVpcSecurityGroup[] | null;
}

§Properties

§
ActivityStreamStatus?: string | null
[src]

The status of the database activity stream. Valid values are as follows:

  • started
    
  • starting
    
  • stopped
    
  • stopping
    
§
AllocatedStorage?: number | null
[src]

For all database engines except Aurora, specifies the allocated storage size in gibibytes (GiB).

§
AssociatedRoles?: AwsRdsDbClusterAssociatedRole[] | null
[src]

A list of the IAM roles that are associated with the DB cluster.

§
AvailabilityZones?: string[] | null
[src]

A list of Availability Zones (AZs) where instances in the DB cluster can be created.

§
BackupRetentionPeriod?: number | null
[src]

The number of days for which automated backups are retained.

§
ClusterCreateTime?: string | null
[src]

Indicates when the DB cluster was created, in Universal Coordinated Time (UTC).

Uses the date-time format specified in RFC 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces, and date and time should be separated by T. For example, 2020-03-22T13:22:13.933Z.

§
CopyTagsToSnapshot?: boolean | null
[src]

Whether tags are copied from the DB cluster to snapshots of the DB cluster.

§
CrossAccountClone?: boolean | null
[src]

Whether the DB cluster is a clone of a DB cluster owned by a different Amazon Web Services account.

§
CustomEndpoints?: string[] | null
[src]

A list of custom endpoints for the DB cluster.

§
DatabaseName?: string | null
[src]

The name of the database.

§
DbClusterIdentifier?: string | null
[src]

The DB cluster identifier that the user assigned to the cluster. This identifier is the unique key that identifies a DB cluster.

§
DbClusterMembers?: AwsRdsDbClusterMember[] | null
[src]

The list of instances that make up the DB cluster.

§
DbClusterOptionGroupMemberships?: AwsRdsDbClusterOptionGroupMembership[] | null
[src]

The list of option group memberships for this DB cluster.

§
DbClusterParameterGroup?: string | null
[src]

The name of the DB cluster parameter group for the DB cluster.

§
DbClusterResourceId?: string | null
[src]

The identifier of the DB cluster. The identifier must be unique within each Amazon Web Services Region and is immutable.

§
DbSubnetGroup?: string | null
[src]

The subnet group that is associated with the DB cluster, including the name, description, and subnets in the subnet group.

§
DeletionProtection?: boolean | null
[src]

Whether the DB cluster has deletion protection enabled.

§
DomainMemberships?: AwsRdsDbDomainMembership[] | null
[src]

The Active Directory domain membership records that are associated with the DB cluster.

§
EnabledCloudWatchLogsExports?: string[] | null
[src]

A list of log types that this DB cluster is configured to export to CloudWatch Logs.

§
Endpoint?: string | null
[src]

The connection endpoint for the primary instance of the DB cluster.

§
Engine?: string | null
[src]

The name of the database engine to use for this DB cluster. Valid values are as follows:

  • aurora
    
  • aurora-mysql
    
  • aurora-postgresql
    
§
EngineMode?: string | null
[src]

The database engine mode of the DB cluster.Valid values are as follows:

  • global
    
  • multimaster
    
  • parallelquery
    
  • provisioned
    
  • serverless
    
§
EngineVersion?: string | null
[src]

The version number of the database engine to use.

§
HostedZoneId?: string | null
[src]

Specifies the identifier that Amazon Route 53 assigns when you create a hosted zone.

§
HttpEndpointEnabled?: boolean | null
[src]

Whether the HTTP endpoint for an Aurora Serverless DB cluster is enabled.

§
IamDatabaseAuthenticationEnabled?: boolean | null
[src]

Whether the mapping of IAM accounts to database accounts is enabled.

§
KmsKeyId?: string | null
[src]

The ARN of the KMS master key that is used to encrypt the database instances in the DB cluster.

§
MasterUsername?: string | null
[src]

The name of the master user for the DB cluster.

§
MultiAz?: boolean | null
[src]

Whether the DB cluster has instances in multiple Availability Zones.

§
Port?: number | null
[src]

The port number on which the DB instances in the DB cluster accept connections.

§
PreferredBackupWindow?: string | null
[src]

The range of time each day when automated backups are created, if automated backups are enabled.

Uses the format HH:MM-HH:MM. For example, 04:52-05:22.

§
PreferredMaintenanceWindow?: string | null
[src]

The weekly time range during which system maintenance can occur, in Universal Coordinated Time (UTC).

Uses the format <day>:HH:MM-<day>:HH:MM.

For the day values, use mon|tue|wed|thu|fri|sat|sun.

For example, sun:09:32-sun:10:02.

§
ReaderEndpoint?: string | null
[src]

The reader endpoint for the DB cluster.

§
ReadReplicaIdentifiers?: string[] | null
[src]

The identifiers of the read replicas that are associated with this DB cluster.

§
Status?: string | null
[src]

The current status of this DB cluster.

§
StorageEncrypted?: boolean | null
[src]

Whether the DB cluster is encrypted.

§
VpcSecurityGroups?: AwsRdsDbInstanceVpcSecurityGroup[] | null
[src]

A list of VPC security groups that the DB cluster belongs to.