#[non_exhaustive]pub struct FederatedUserBuilder { /* private fields */ }
Expand description
A builder for FederatedUser
.
Implementations§
Source§impl FederatedUserBuilder
impl FederatedUserBuilder
Sourcepub fn federated_user_id(self, input: impl Into<String>) -> Self
pub fn federated_user_id(self, input: impl Into<String>) -> Self
The string that identifies the federated user associated with the credentials, similar to the unique ID of an IAM user.
This field is required.Sourcepub fn set_federated_user_id(self, input: Option<String>) -> Self
pub fn set_federated_user_id(self, input: Option<String>) -> Self
The string that identifies the federated user associated with the credentials, similar to the unique ID of an IAM user.
Sourcepub fn get_federated_user_id(&self) -> &Option<String>
pub fn get_federated_user_id(&self) -> &Option<String>
The string that identifies the federated user associated with the credentials, similar to the unique ID of an IAM user.
Sourcepub fn arn(self, input: impl Into<String>) -> Self
pub fn arn(self, input: impl Into<String>) -> Self
The ARN that specifies the federated user that is associated with the credentials. For more information about ARNs and how to use them in policies, see IAM Identifiers in the IAM User Guide.
This field is required.Sourcepub fn set_arn(self, input: Option<String>) -> Self
pub fn set_arn(self, input: Option<String>) -> Self
The ARN that specifies the federated user that is associated with the credentials. For more information about ARNs and how to use them in policies, see IAM Identifiers in the IAM User Guide.
Sourcepub fn get_arn(&self) -> &Option<String>
pub fn get_arn(&self) -> &Option<String>
The ARN that specifies the federated user that is associated with the credentials. For more information about ARNs and how to use them in policies, see IAM Identifiers in the IAM User Guide.
Sourcepub fn build(self) -> Result<FederatedUser, BuildError>
pub fn build(self) -> Result<FederatedUser, BuildError>
Consumes the builder and constructs a FederatedUser
.
This method will fail if any of the following fields are not set:
Trait Implementations§
Source§impl Clone for FederatedUserBuilder
impl Clone for FederatedUserBuilder
Source§fn clone(&self) -> FederatedUserBuilder
fn clone(&self) -> FederatedUserBuilder
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for FederatedUserBuilder
impl Debug for FederatedUserBuilder
Source§impl Default for FederatedUserBuilder
impl Default for FederatedUserBuilder
Source§fn default() -> FederatedUserBuilder
fn default() -> FederatedUserBuilder
Source§impl PartialEq for FederatedUserBuilder
impl PartialEq for FederatedUserBuilder
impl StructuralPartialEq for FederatedUserBuilder
Auto Trait Implementations§
impl Freeze for FederatedUserBuilder
impl RefUnwindSafe for FederatedUserBuilder
impl Send for FederatedUserBuilder
impl Sync for FederatedUserBuilder
impl Unpin for FederatedUserBuilder
impl UnwindSafe for FederatedUserBuilder
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)