Struct rusoto_rds::DBParameterGroup [] [src]

pub struct DBParameterGroup {
    pub db_parameter_group_arn: Option<String>,
    pub db_parameter_group_family: Option<String>,
    pub db_parameter_group_name: Option<String>,
    pub description: Option<String>,
}

Contains the details of an Amazon RDS DB parameter group.

This data type is used as a response element in the DescribeDBParameterGroups action.

Fields

The Amazon Resource Name (ARN) for the DB parameter group.

Provides the name of the DB parameter group family that this DB parameter group is compatible with.

Provides the name of the DB parameter group.

Provides the customer-specified description for this DB parameter group.

Trait Implementations

impl Default for DBParameterGroup
[src]

[src]

Returns the "default value" for a type. Read more

impl Debug for DBParameterGroup
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for DBParameterGroup
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations