Struct rusoto_rds::AddRoleToDBClusterMessage[][src]

pub struct AddRoleToDBClusterMessage {
    pub db_cluster_identifier: String,
    pub role_arn: String,
}

Fields

The name of the DB cluster to associate the IAM role with.

The Amazon Resource Name (ARN) of the IAM role to associate with the Aurora DB cluster, for example arn:aws:iam::123456789012:role/AuroraAccessRole.

Trait Implementations

impl Default for AddRoleToDBClusterMessage
[src]

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

impl Debug for AddRoleToDBClusterMessage
[src]

Formats the value using the given formatter. Read more

impl Clone for AddRoleToDBClusterMessage
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for AddRoleToDBClusterMessage
[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