Class: Aws::EMRContainers::Types::Credentials
- Inherits:
-
Struct
- Object
- Struct
- Aws::EMRContainers::Types::Credentials
- Defined in:
- gems/aws-sdk-emrcontainers/lib/aws-sdk-emrcontainers/types.rb
Overview
Note:
Credentials is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of Credentials corresponding to the set member.
The structure containing the session token being returned.
Defined Under Namespace
Constant Summary collapse
- SENSITIVE =
[:token]
Instance Attribute Summary collapse
-
#token ⇒ String
The actual session token being returned.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#token ⇒ String
The actual session token being returned.
499 500 501 502 503 504 505 506 507 508 |
# File 'gems/aws-sdk-emrcontainers/lib/aws-sdk-emrcontainers/types.rb', line 499 class Credentials < Struct.new( :token, :unknown) SENSITIVE = [:token] include Aws::Structure include Aws::Structure::Union class Token < Credentials; end class Unknown < Credentials; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
499 500 501 |
# File 'gems/aws-sdk-emrcontainers/lib/aws-sdk-emrcontainers/types.rb', line 499 def unknown @unknown end |