#[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 more