Skip to content

awsNativeRdsInstances

Paginated list of AWS RDS Instances on AWS Native account.

Arguments

Argument Type Description
first Int Returns the first n elements from the list.
after String Returns the elements in the list that occur after the specified cursor.
last Int Returns the last n elements from the list.
before String Returns the elements in the list that occur before the specified cursor.
sortBy AwsNativeRdsInstanceSortFields Sort fields for list of AWS RDS instances.
sortOrder SortOrder Sorts the order of results.
rdsInstanceFilters AwsNativeRdsInstanceFilters Filter for RDS instances.
includeSecurityMetadata Boolean Filter to include the security metadata.

Returns

AwsNativeRdsInstanceConnection!

Sample

query {
  awsNativeRdsInstances(first: 10) {
    nodes {
      allocatedStorageInGibi
      auroraAvailabilityZones
      authorizedOperations
      awsAccountRubrikId
      cloudNativeId
      dbEngine
      dbInstanceClass
      dbInstanceName
      dbiResourceId
      id
      isExocomputeConfigured
      isMultiAz
      isProtectable
      isRelic
      maintenanceWindow
      name
      nativeName
      numWorkloadDescendants
      objectType
      onDemandSnapshotCount
      primaryAvailabilityZone
      rdsType
      readReplicaSourceName
      region
      rscPendingObjectPauseAssignment
      slaAssignment
      slaPauseStatus
      vpcId
      vpcName
    }
    pageInfo {
      hasNextPage
      endCursor
    }
  }
}
{}
{
  "data": {
    "awsNativeRdsInstances": {
      "nodes": [
        [
          {
            "allocatedStorageInGibi": 0,
            "auroraAvailabilityZones": [
              "example-string"
            ],
            "authorizedOperations": [
              "DELETE_SNAPSHOT"
            ],
            "awsAccountRubrikId": "example-string",
            "cloudNativeId": "example-string",
            "dbEngine": "AURORA"
          }
        ]
      ],
      "pageInfo": {
        "endCursor": "example-string",
        "hasNextPage": true,
        "hasPreviousPage": true,
        "startCursor": "example-string"
      }
    }
  }
}