#[non_exhaustive]pub struct AwsRdsDbInstanceAssociatedRoleBuilder { /* private fields */ }
Expand description
A builder for AwsRdsDbInstanceAssociatedRole
.
Implementations§
source§impl AwsRdsDbInstanceAssociatedRoleBuilder
impl AwsRdsDbInstanceAssociatedRoleBuilder
sourcepub fn role_arn(self, input: impl Into<String>) -> Self
pub fn role_arn(self, input: impl Into<String>) -> Self
The ARN of the IAM role that is associated with the DB instance.
sourcepub fn set_role_arn(self, input: Option<String>) -> Self
pub fn set_role_arn(self, input: Option<String>) -> Self
The ARN of the IAM role that is associated with the DB instance.
sourcepub fn get_role_arn(&self) -> &Option<String>
pub fn get_role_arn(&self) -> &Option<String>
The ARN of the IAM role that is associated with the DB instance.
sourcepub fn feature_name(self, input: impl Into<String>) -> Self
pub fn feature_name(self, input: impl Into<String>) -> Self
The name of the feature associated with the IAM role.
sourcepub fn set_feature_name(self, input: Option<String>) -> Self
pub fn set_feature_name(self, input: Option<String>) -> Self
The name of the feature associated with the IAM role.
sourcepub fn get_feature_name(&self) -> &Option<String>
pub fn get_feature_name(&self) -> &Option<String>
The name of the feature associated with the IAM role.
sourcepub fn status(self, input: impl Into<String>) -> Self
pub fn status(self, input: impl Into<String>) -> Self
Describes the state of the association between the IAM role and the DB instance. The Status
property returns one of the following values:
-
ACTIVE
- The IAM role ARN is associated with the DB instance and can be used to access other Amazon Web Services services on your behalf. -
PENDING
- The IAM role ARN is being associated with the DB instance. -
INVALID
- The IAM role ARN is associated with the DB instance. But the DB instance is unable to assume the IAM role in order to access other Amazon Web Services services on your behalf.
sourcepub fn set_status(self, input: Option<String>) -> Self
pub fn set_status(self, input: Option<String>) -> Self
Describes the state of the association between the IAM role and the DB instance. The Status
property returns one of the following values:
-
ACTIVE
- The IAM role ARN is associated with the DB instance and can be used to access other Amazon Web Services services on your behalf. -
PENDING
- The IAM role ARN is being associated with the DB instance. -
INVALID
- The IAM role ARN is associated with the DB instance. But the DB instance is unable to assume the IAM role in order to access other Amazon Web Services services on your behalf.
sourcepub fn get_status(&self) -> &Option<String>
pub fn get_status(&self) -> &Option<String>
Describes the state of the association between the IAM role and the DB instance. The Status
property returns one of the following values:
-
ACTIVE
- The IAM role ARN is associated with the DB instance and can be used to access other Amazon Web Services services on your behalf. -
PENDING
- The IAM role ARN is being associated with the DB instance. -
INVALID
- The IAM role ARN is associated with the DB instance. But the DB instance is unable to assume the IAM role in order to access other Amazon Web Services services on your behalf.
sourcepub fn build(self) -> AwsRdsDbInstanceAssociatedRole
pub fn build(self) -> AwsRdsDbInstanceAssociatedRole
Consumes the builder and constructs a AwsRdsDbInstanceAssociatedRole
.
Trait Implementations§
source§impl Clone for AwsRdsDbInstanceAssociatedRoleBuilder
impl Clone for AwsRdsDbInstanceAssociatedRoleBuilder
source§fn clone(&self) -> AwsRdsDbInstanceAssociatedRoleBuilder
fn clone(&self) -> AwsRdsDbInstanceAssociatedRoleBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for AwsRdsDbInstanceAssociatedRoleBuilder
impl Default for AwsRdsDbInstanceAssociatedRoleBuilder
source§fn default() -> AwsRdsDbInstanceAssociatedRoleBuilder
fn default() -> AwsRdsDbInstanceAssociatedRoleBuilder
source§impl PartialEq for AwsRdsDbInstanceAssociatedRoleBuilder
impl PartialEq for AwsRdsDbInstanceAssociatedRoleBuilder
source§fn eq(&self, other: &AwsRdsDbInstanceAssociatedRoleBuilder) -> bool
fn eq(&self, other: &AwsRdsDbInstanceAssociatedRoleBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for AwsRdsDbInstanceAssociatedRoleBuilder
Auto Trait Implementations§
impl Freeze for AwsRdsDbInstanceAssociatedRoleBuilder
impl RefUnwindSafe for AwsRdsDbInstanceAssociatedRoleBuilder
impl Send for AwsRdsDbInstanceAssociatedRoleBuilder
impl Sync for AwsRdsDbInstanceAssociatedRoleBuilder
impl Unpin for AwsRdsDbInstanceAssociatedRoleBuilder
impl UnwindSafe for AwsRdsDbInstanceAssociatedRoleBuilder
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more