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]

[src]

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

impl Debug for DBClusterParameterGroup
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for DBClusterParameterGroup
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations