Class: AWS::STS
- Inherits:
-
Object
- Object
- AWS::STS
- Includes:
- Core::ServiceInterface
- Defined in:
- lib/aws/sts.rb,
lib/aws/sts/client.rb,
lib/aws/sts/errors.rb,
lib/aws/sts/policy.rb,
lib/aws/sts/request.rb,
lib/aws/sts/session.rb,
lib/aws/sts/federated_session.rb
Overview
This class is a starting point for working with the AWS Security Token Service. The AWS Security Token Service is a web service that enables you to request temporary, limited-privilege credentials for users that you authenticate (federated users), or IAM users.
Defined Under Namespace
Modules: Errors Classes: Client, FederatedSession, Policy, Session
Instance Method Summary collapse
-
#new_federated_session(name, opts = {}) ⇒ FederatedSession
Returns a set of temporary credentials for a federated user with the user name and policy specified in the request.
-
#new_session(opts = {}) ⇒ Session
Returns a set of temporary credentials for an AWS account or IAM User.
Methods included from Core::ServiceInterface
Instance Method Details
#new_federated_session(name, opts = {}) ⇒ FederatedSession
Returns a set of temporary credentials for a federated user with the user name and policy specified in the request. The credentials consist of an Access Key ID, a Secret Access Key, and a security token. The credentials are valid for the specified duration, between one and 36 hours.
The federated user who holds these credentials has only those permissions allowed by intersection of the specified policy and any resource or user policies that apply to the caller of the GetFederationToken API. For more information about how token permissions work, see Controlling Token Permissions in Using AWS Identity and Access Management.
122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 |
# File 'lib/aws/sts.rb', line 122 def new_federated_session(name, opts = {}) opts = opts.merge(:name => name) case when opts[:policy].kind_of?(String) || !opts[:policy] # leave it alone when opts[:policy].respond_to?(:to_json) opts[:policy] = opts[:policy].to_json end get_session(:get_federation_token, opts) do |resp, session_opts| session_opts.merge!( :user_id => resp[:federated_user][:federated_user_id], :user_arn => resp[:federated_user][:arn], :packed_policy_size => resp[:packed_policy_size] ) FederatedSession.new(session_opts) end end |
#new_session(opts = {}) ⇒ Session
Returns a set of temporary credentials for an AWS account or IAM User. The credentials consist of an Access Key ID, a Secret Access Key, and a security token. These credentials are valid for the specified duration only. The session duration for IAM users can be between one and 36 hours, with a default of 12 hours. The session duration for AWS account owners is restricted to one hour.
79 80 81 82 83 |
# File 'lib/aws/sts.rb', line 79 def new_session(opts = {}) get_session(:get_session_token, opts) do |resp, session_opts| Session.new(session_opts) end end |