Class: Aws::CodeCatalyst::Types::AccessTokenSummary
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeCatalyst::Types::AccessTokenSummary
- Defined in:
- gems/aws-sdk-codecatalyst/lib/aws-sdk-codecatalyst/types.rb
Overview
Information about a specified personal access token (PAT).
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#expires_time ⇒ Time
The date and time when the personal access token will expire, in coordinated universal time (UTC) timestamp format as specified in [RFC 3339][1].
-
#id ⇒ String
The system-generated ID of the personal access token.
-
#name ⇒ String
The friendly name of the personal access token.
Instance Attribute Details
#expires_time ⇒ Time
The date and time when the personal access token will expire, in coordinated universal time (UTC) timestamp format as specified in RFC 3339.
50 51 52 53 54 55 56 |
# File 'gems/aws-sdk-codecatalyst/lib/aws-sdk-codecatalyst/types.rb', line 50 class AccessTokenSummary < Struct.new( :id, :name, :expires_time) SENSITIVE = [] include Aws::Structure end |
#id ⇒ String
The system-generated ID of the personal access token.
50 51 52 53 54 55 56 |
# File 'gems/aws-sdk-codecatalyst/lib/aws-sdk-codecatalyst/types.rb', line 50 class AccessTokenSummary < Struct.new( :id, :name, :expires_time) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The friendly name of the personal access token.
50 51 52 53 54 55 56 |
# File 'gems/aws-sdk-codecatalyst/lib/aws-sdk-codecatalyst/types.rb', line 50 class AccessTokenSummary < Struct.new( :id, :name, :expires_time) SENSITIVE = [] include Aws::Structure end |