Class: Aws::CodeCatalyst::Types::AccessTokenSummary

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#expires_timeTime

The date and time when the personal access token will expire, in coordinated universal time (UTC) timestamp format as specified in RFC 3339.

Returns:

  • (Time)


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

#idString

The system-generated ID of the personal access token.

Returns:

  • (String)


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

#nameString

The friendly name of the personal access token.

Returns:

  • (String)


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