#[non_exhaustive]pub struct AddRoleToDbInstanceInput {
pub db_instance_identifier: Option<String>,
pub role_arn: Option<String>,
pub feature_name: Option<String>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.db_instance_identifier: Option<String>The name of the DB instance to associate the IAM role with.
role_arn: Option<String>The Amazon Resource Name (ARN) of the IAM role to associate with the DB instance, for example arn:aws:iam::123456789012:role/AccessRole.
feature_name: Option<String>The name of the feature for the DB instance that the IAM role is to be associated with. For information about supported feature names, see DBEngineVersion.
Implementations§
source§impl AddRoleToDbInstanceInput
impl AddRoleToDbInstanceInput
sourcepub fn db_instance_identifier(&self) -> Option<&str>
pub fn db_instance_identifier(&self) -> Option<&str>
The name of the DB instance to associate the IAM role with.
sourcepub fn role_arn(&self) -> Option<&str>
pub fn role_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the IAM role to associate with the DB instance, for example arn:aws:iam::123456789012:role/AccessRole.
sourcepub fn feature_name(&self) -> Option<&str>
pub fn feature_name(&self) -> Option<&str>
The name of the feature for the DB instance that the IAM role is to be associated with. For information about supported feature names, see DBEngineVersion.
source§impl AddRoleToDbInstanceInput
impl AddRoleToDbInstanceInput
sourcepub fn builder() -> AddRoleToDbInstanceInputBuilder
pub fn builder() -> AddRoleToDbInstanceInputBuilder
Creates a new builder-style object to manufacture AddRoleToDbInstanceInput.
Trait Implementations§
source§impl Clone for AddRoleToDbInstanceInput
impl Clone for AddRoleToDbInstanceInput
source§fn clone(&self) -> AddRoleToDbInstanceInput
fn clone(&self) -> AddRoleToDbInstanceInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for AddRoleToDbInstanceInput
impl Debug for AddRoleToDbInstanceInput
source§impl PartialEq for AddRoleToDbInstanceInput
impl PartialEq for AddRoleToDbInstanceInput
source§fn eq(&self, other: &AddRoleToDbInstanceInput) -> bool
fn eq(&self, other: &AddRoleToDbInstanceInput) -> bool
self and other values to be equal, and is used
by ==.