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.
1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 |
# File 'lib/aws-sdk-devopsagent/types.rb', line 1186 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
1186 1187 1188 |
# File 'lib/aws-sdk-devopsagent/types.rb', line 1186 def unknown @unknown end |