Struct rusoto_redshift::ModifyClusterIamRolesMessage[][src]

pub struct ModifyClusterIamRolesMessage {
    pub add_iam_roles: Option<Vec<String>>,
    pub cluster_identifier: String,
    pub remove_iam_roles: Option<Vec<String>>,
}

Fields

Zero or more IAM roles to associate with the cluster. The roles must be in their Amazon Resource Name (ARN) format. You can associate up to 10 IAM roles with a single cluster in a single request.

The unique identifier of the cluster for which you want to associate or disassociate IAM roles.

Zero or more IAM roles in ARN format to disassociate from the cluster. You can disassociate up to 10 IAM roles from a single cluster in a single request.

Trait Implementations

impl Default for ModifyClusterIamRolesMessage
[src]

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

impl Debug for ModifyClusterIamRolesMessage
[src]

Formats the value using the given formatter. Read more

impl Clone for ModifyClusterIamRolesMessage
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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