Class: Aws::DevOpsAgent::Types::DatadogAuthorizationConfig

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

Defined Under Namespace

Classes: AuthorizationDiscovery, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#authorization_discoveryTypes::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

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



1186
1187
1188
# File 'lib/aws-sdk-devopsagent/types.rb', line 1186

def unknown
  @unknown
end