Class: Aws::STS::Types::FederatedUser

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-sts/types.rb

Overview

Identifiers for the federated user that is associated with the credentials.

Instance Attribute Summary collapse

Method Summary

Methods included from Aws::Structure

#empty?, included, #initialize, #key?, new, #to_h, #to_s

Instance Attribute Details

#arnString

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 *Using IAM*.

[1]: docs.aws.amazon.com/IAM/latest/UserGuide/reference_identifiers.html

Returns:

  • (String)


701
702
703
704
705
# File 'lib/aws-sdk-sts/types.rb', line 701

class FederatedUser < Struct.new(
  :federated_user_id,
  :arn)
  include Aws::Structure
end

#federated_user_idString

The string that identifies the federated user associated with the credentials, similar to the unique ID of an IAM user.

Returns:

  • (String)


701
702
703
704
705
# File 'lib/aws-sdk-sts/types.rb', line 701

class FederatedUser < Struct.new(
  :federated_user_id,
  :arn)
  include Aws::Structure
end