Struct rusoto_rds::DBClusterParameterGroup[][src]

pub struct DBClusterParameterGroup {
    pub db_cluster_parameter_group_arn: Option<String>,
    pub db_cluster_parameter_group_name: Option<String>,
    pub db_parameter_group_family: Option<String>,
    pub description: Option<String>,
}

Contains the details of an Amazon RDS DB cluster parameter group.

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

Fields

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

Provides the name of the DB cluster parameter group.

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

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

Trait Implementations

impl Default for DBClusterParameterGroup
[src]

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

impl Debug for DBClusterParameterGroup
[src]

Formats the value using the given formatter. Read more

impl Clone for DBClusterParameterGroup
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for DBClusterParameterGroup
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations