Class: Aws::CodeCatalyst::Types::CreateAccessTokenResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeCatalyst::Types::CreateAccessTokenResponse
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codecatalyst/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[:secret]
Instance Attribute Summary collapse
-
#access_token_id ⇒ String
The system-generated unique ID of the access token.
-
#expires_time ⇒ Time
The date and time the personal access token expires, in coordinated universal time (UTC) timestamp format as specified in [RFC 3339].
-
#name ⇒ String
The friendly name of the personal access token.
-
#secret ⇒ String
The secret value of the personal access token.
Instance Attribute Details
#access_token_id ⇒ String
The system-generated unique ID of the access token.
120 121 122 123 124 125 126 127 |
# File 'lib/aws-sdk-codecatalyst/types.rb', line 120 class CreateAccessTokenResponse < Struct.new( :secret, :name, :expires_time, :access_token_id) SENSITIVE = [:secret] include Aws::Structure end |
#expires_time ⇒ Time
The date and time the personal access token expires, in coordinated universal time (UTC) timestamp format as specified in [RFC 3339]. If not specified, the default is one year from creation.
120 121 122 123 124 125 126 127 |
# File 'lib/aws-sdk-codecatalyst/types.rb', line 120 class CreateAccessTokenResponse < Struct.new( :secret, :name, :expires_time, :access_token_id) SENSITIVE = [:secret] include Aws::Structure end |
#name ⇒ String
The friendly name of the personal access token.
120 121 122 123 124 125 126 127 |
# File 'lib/aws-sdk-codecatalyst/types.rb', line 120 class CreateAccessTokenResponse < Struct.new( :secret, :name, :expires_time, :access_token_id) SENSITIVE = [:secret] include Aws::Structure end |
#secret ⇒ String
The secret value of the personal access token.
120 121 122 123 124 125 126 127 |
# File 'lib/aws-sdk-codecatalyst/types.rb', line 120 class CreateAccessTokenResponse < Struct.new( :secret, :name, :expires_time, :access_token_id) SENSITIVE = [:secret] include Aws::Structure end |