pub struct AddRoleToDBInstanceMessage {
pub db_instance_identifier: String,
pub feature_name: String,
pub role_arn: String,
}Fields§
§db_instance_identifier: StringThe name of the DB instance to associate the IAM role with.
feature_name: StringThe name of the feature for the DB instance that the IAM role is to be associated with. For the list of supported feature names, see DBEngineVersion.
role_arn: StringThe Amazon Resource Name (ARN) of the IAM role to associate with the DB instance, for example arn:aws:iam::123456789012:role/AccessRole.
Trait Implementations§
Source§impl Clone for AddRoleToDBInstanceMessage
impl Clone for AddRoleToDBInstanceMessage
Source§fn clone(&self) -> AddRoleToDBInstanceMessage
fn clone(&self) -> AddRoleToDBInstanceMessage
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 AddRoleToDBInstanceMessage
impl Debug for AddRoleToDBInstanceMessage
Source§impl Default for AddRoleToDBInstanceMessage
impl Default for AddRoleToDBInstanceMessage
Source§fn default() -> AddRoleToDBInstanceMessage
fn default() -> AddRoleToDBInstanceMessage
Returns the “default value” for a type. Read more
impl StructuralPartialEq for AddRoleToDBInstanceMessage
Auto Trait Implementations§
impl Freeze for AddRoleToDBInstanceMessage
impl RefUnwindSafe for AddRoleToDBInstanceMessage
impl Send for AddRoleToDBInstanceMessage
impl Sync for AddRoleToDBInstanceMessage
impl Unpin for AddRoleToDBInstanceMessage
impl UnwindSafe for AddRoleToDBInstanceMessage
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