pub struct AddRoleToDBClusterMessage {
pub db_cluster_identifier: String,
pub feature_name: Option<String>,
pub role_arn: String,
}
Fields§
§db_cluster_identifier: String
The name of the DB cluster to associate the IAM role with.
feature_name: Option<String>
The name of the feature for the DB cluster that the IAM role is to be associated with. For the list of supported feature names, see DBEngineVersion.
role_arn: String
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§
Source§impl Clone for AddRoleToDBClusterMessage
impl Clone for AddRoleToDBClusterMessage
Source§fn clone(&self) -> AddRoleToDBClusterMessage
fn clone(&self) -> AddRoleToDBClusterMessage
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for AddRoleToDBClusterMessage
impl Debug for AddRoleToDBClusterMessage
Source§impl Default for AddRoleToDBClusterMessage
impl Default for AddRoleToDBClusterMessage
Source§fn default() -> AddRoleToDBClusterMessage
fn default() -> AddRoleToDBClusterMessage
Returns the “default value” for a type. Read more
impl StructuralPartialEq for AddRoleToDBClusterMessage
Auto Trait Implementations§
impl Freeze for AddRoleToDBClusterMessage
impl RefUnwindSafe for AddRoleToDBClusterMessage
impl Send for AddRoleToDBClusterMessage
impl Sync for AddRoleToDBClusterMessage
impl Unpin for AddRoleToDBClusterMessage
impl UnwindSafe for AddRoleToDBClusterMessage
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more