Class: Aws::DevOpsAgent::Types::MCPServerBearerTokenConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::DevOpsAgent::Types::MCPServerBearerTokenConfig
- Defined in:
- gems/aws-sdk-devopsagent/lib/aws-sdk-devopsagent/types.rb
Overview
Bearer token configuration for MCP server (RFC 6750).
Constant Summary collapse
- SENSITIVE =
[:token_value]
Instance Attribute Summary collapse
-
#authorization_header ⇒ String
HTTP header name to send the bearer token in requests to the service.
-
#token_name ⇒ String
User friendly bearer token name specified by end user.
-
#token_value ⇒ String
Bearer token value in alphanumeric for authenticating with the service.
Instance Attribute Details
#authorization_header ⇒ String
HTTP header name to send the bearer token in requests to the service. Defaults to 'Authorization' per RFC 6750.
2660 2661 2662 2663 2664 2665 2666 |
# File 'gems/aws-sdk-devopsagent/lib/aws-sdk-devopsagent/types.rb', line 2660 class MCPServerBearerTokenConfig < Struct.new( :token_name, :token_value, :authorization_header) SENSITIVE = [:token_value] include Aws::Structure end |
#token_name ⇒ String
User friendly bearer token name specified by end user.
2660 2661 2662 2663 2664 2665 2666 |
# File 'gems/aws-sdk-devopsagent/lib/aws-sdk-devopsagent/types.rb', line 2660 class MCPServerBearerTokenConfig < Struct.new( :token_name, :token_value, :authorization_header) SENSITIVE = [:token_value] include Aws::Structure end |
#token_value ⇒ String
Bearer token value in alphanumeric for authenticating with the service.
2660 2661 2662 2663 2664 2665 2666 |
# File 'gems/aws-sdk-devopsagent/lib/aws-sdk-devopsagent/types.rb', line 2660 class MCPServerBearerTokenConfig < Struct.new( :token_name, :token_value, :authorization_header) SENSITIVE = [:token_value] include Aws::Structure end |