OBJECT

RdsInstanceExportDefaults

Description

RDS Export defaults from AWS.

link GraphQL Schema definition

  • type RdsInstanceExportDefaults {
  • # DB Engine of RDS Instance.
  • dbEngine: AwsNativeRdsDbEngine!
  • # Version of DB engine.
  • dbEngineVersion: String!
  • # DB class for RDS Instance.
  • dbInstanceClass: AwsNativeRdsDbInstanceClass!
  • # DB class for RDS Instance. AWS supported instance classes can be found here
  • # https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.DBInstanceClass.html#Concepts.DBInstanceClass.Types.
  • databaseInstanceClass: String!
  • # Virtual Private Cloud (VPC) associated with RDS Instance.
  • vpcId: String!
  • # Allocated size of an RDS Instance.
  • allocatedStorageInGb: Long!
  • # Key Management System (KMS) key ID associated with RDS Instance.
  • kmsKeyId: String!
  • # Name of option group of RDS Instance.
  • optionGroupName: String!
  • # NParameter group name of the RDS Instance.
  • dbParameterGroupName: String!
  • # Subnet group name of the RDS Instance.
  • dbSubnetGroupName: String!
  • # Primary Availability Zone (AZ) of RDS Instance.
  • primaryAz: String!
  • # Storage type of RDS Instance. Amazon RDS provides four storage types: General
  • # Purpose SSD (gp2), General Purpose SSD (gp3), Provisioned IOPS SSD (io1), and
  • # magnetic (standard).
  • storageType: AwsNativeRdsStorageType!
  • # Input/Output (IO) operation limit per second for RDS Instance.
  • iops: Int!
  • # Port used to connect to the RDS Instance.
  • port: Long!
  • # Specifies whether RDS is available in multi Availability Zones (AZs). If true,
  • # it means it is a multi-AZ RDS Instance.
  • isMultiAz: Boolean!
  • }

link Require by