allDbParameterGroupsByRegionFromAws
List of all DB parameter groups in a given region. Refers to container for engine configuration that applies to one or more DB Instances. For more information, see https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_WorkingWithOptionGroups.html.
Arguments
| Argument | Type | Description |
|---|---|---|
| awsAccountRubrikId (required) | UUID! | Rubrik ID for AWS account. |
| region (required) | AwsNativeRegion! | Region in AWS. |
| dbEngine (required) | AwsNativeRdsDbEngine! | DB Engine of RDS Instance. |
| dbEngineVersion (required) | String! | Version of DB engine. |
| rdsType | AwsNativeRdsType | Type of RDS deployment. |
Returns
[DbParameterGroup!]!
Sample
query AllDbParameterGroupsByRegionFromAws($awsAccountRubrikId: UUID!, $region: AwsNativeRegion!, $dbEngine: AwsNativeRdsDbEngine!, $dbEngineVersion: String!) {
allDbParameterGroupsByRegionFromAws(
awsAccountRubrikId: $awsAccountRubrikId
region: $region
dbEngine: $dbEngine
dbEngineVersion: $dbEngineVersion
) {
arn
family
name
rdsType
}
}