class AwsMfa::ProfileConfig

Attributes

mfa_serial[R]
profile[R]
role_arn[R]
source_profile[R]

Public Class Methods

new(profile_config, profile) click to toggle source
# File lib/aws_mfa/profile_config.rb, line 5
def initialize(profile_config, profile)
  @mfa_serial = profile_config["mfa_serial"]
  @profile = profile
  @role_arn = profile_config["role_arn"]
  @source_profile = profile_config["source_profile"]
end