Struct rusoto_rds::DBClusterRole[][src]

pub struct DBClusterRole {
    pub role_arn: Option<String>,
    pub status: Option<String>,
}

Describes an AWS Identity and Access Management (IAM) role that is associated with a DB cluster.

Fields

The Amazon Resource Name (ARN) of the IAM role that is associated with the DB cluster.

Describes the state of association between the IAM role and the DB cluster. The Status property returns one of the following values:

  • ACTIVE - the IAM role ARN is associated with the DB cluster and can be used to access other AWS services on your behalf.

  • PENDING - the IAM role ARN is being associated with the DB cluster.

  • INVALID - the IAM role ARN is associated with the DB cluster, but the DB cluster is unable to assume the IAM role in order to access other AWS services on your behalf.

Trait Implementations

impl Default for DBClusterRole
[src]

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

impl Debug for DBClusterRole
[src]

Formats the value using the given formatter. Read more

impl Clone for DBClusterRole
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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