OBJECT

RdsInstanceDetailsFromAws

Description

RDS DB Instance details from AWS.

link GraphQL Schema definition

  • type RdsInstanceDetailsFromAws {
  • # Amazon Resource Name (ARN) of RDS Instance.
  • rdsInstanceArn: String!
  • # DB Engine of RDS Instance.
  • dbEngine: String!
  • # DB class for RDS Instance.
  • dbInstanceClass: String!
  • # Status of an RDS Instance. Refers to the health of the RDS Instance.
  • dbInstanceStatus: String!
  • # Allocated size of an RDS Instance.
  • allocatedStorageInGb: Long!
  • # ID of VPC in AWS.
  • vpcId: String!
  • # Name of option group of RDS Instance.
  • optionGroupName: String!
  • # Name of parameter group of RDS Instance.
  • dbParameterGroupName: String!
  • # Subnet group name of RDS Instance.
  • dbSubnetGroupName: String!
  • # Maintenance window for the RDS Instance.
  • dbMaintenanceWindow: String!
  • # Specifies whether RDS is available in multi Availability Zones (AZs). If true,
  • # it means it is a multi-AZ RDS Instance.
  • isMultiAz: Boolean!
  • # Primary Availability Zone (AZ) of RDS Instance.
  • primaryAz: String!
  • # Retention time for RDS backups.
  • backupRetentionPeriod: Long!
  • # Input/Output (IO) operation limit per second for RDS Instance.
  • iops: Long!
  • # RDS DB Instance engine version.
  • engineVersion: String!
  • # Key Management System (KMS) key ID associated with RDS Instance.
  • kmsKeyId: 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: String!
  • # Port used to connect to the RDS Instance.
  • port: Long!
  • # Version of the database engine.
  • dbEngineVersion: String!
  • }

link Require by