#[non_exhaustive]pub struct FederatedUser {
pub federated_user_id: String,
pub arn: String,
}
Expand description
Identifiers for the federated user that is associated with the credentials.
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.federated_user_id: String
The string that identifies the federated user associated with the credentials, similar to the unique ID of an IAM user.
arn: 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.
Implementations§
Source§impl FederatedUser
impl FederatedUser
Sourcepub fn federated_user_id(&self) -> &str
pub fn federated_user_id(&self) -> &str
The string that identifies the federated user associated with the credentials, similar to the unique ID of an IAM user.
Sourcepub fn arn(&self) -> &str
pub fn arn(&self) -> &str
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.
Source§impl FederatedUser
impl FederatedUser
Sourcepub fn builder() -> FederatedUserBuilder
pub fn builder() -> FederatedUserBuilder
Creates a new builder-style object to manufacture FederatedUser
.
Trait Implementations§
Source§impl Clone for FederatedUser
impl Clone for FederatedUser
Source§fn clone(&self) -> FederatedUser
fn clone(&self) -> FederatedUser
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more