Class: Aws::SSO::Types::LogoutRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::SSO::Types::LogoutRequest
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-sso/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[:access_token]
Instance Attribute Summary collapse
-
#access_token ⇒ String
The token issued by the `CreateToken` API call.
Method Summary
Methods included from Aws::Structure
#empty?, included, #initialize, #key?, new, #to_h, #to_s
Instance Attribute Details
#access_token ⇒ String
The token issued by the `CreateToken` API call. For more information, see [CreateToken] in the *IAM Identity Center OIDC API Reference Guide*.
[1]: docs.aws.amazon.com/singlesignon/latest/OIDCAPIReference/API_CreateToken.html
202 203 204 205 206 |
# File 'lib/aws-sdk-sso/types.rb', line 202 class LogoutRequest < Struct.new( :access_token) SENSITIVE = [:access_token] include Aws::Structure end |