Class: Aws::DevOpsAgent::Types::DatadogAuthorizationConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::DevOpsAgent::Types::DatadogAuthorizationConfig
- Includes:
- Structure, Structure::Union
- Defined in:
- lib/aws-sdk-devopsagent/types.rb
Overview
Note:
DatadogAuthorizationConfig is a union - when making an API calls you must set exactly one of the members.
Authorization configuration for Datadog MCP server (uses authorization discovery only).
Direct Known Subclasses
Defined Under Namespace
Classes: AuthorizationDiscovery, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#authorization_discovery ⇒ Types::MCPServerAuthorizationDiscoveryConfig
Datadog MCP server authorization discovery configuration.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#authorization_discovery ⇒ Types::MCPServerAuthorizationDiscoveryConfig
Datadog MCP server authorization discovery configuration.
690 691 692 693 694 695 696 697 698 699 |
# File 'lib/aws-sdk-devopsagent/types.rb', line 690 class DatadogAuthorizationConfig < Struct.new( :authorization_discovery, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class AuthorizationDiscovery < DatadogAuthorizationConfig; end class Unknown < DatadogAuthorizationConfig; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
690 691 692 |
# File 'lib/aws-sdk-devopsagent/types.rb', line 690 def unknown @unknown end |