Class: Aws::DevOpsAgent::Types::NewRelicServiceAuthorizationConfig

Inherits:
Struct
  • Object
show all
Includes:
Structure, Structure::Union
Defined in:
lib/aws-sdk-devopsagent/types.rb

Overview

Note:

NewRelicServiceAuthorizationConfig is a union - when making an API calls you must set exactly one of the members.

Authorization configuration options for New Relic service.

Direct Known Subclasses

ApiKey, Unknown

Defined Under Namespace

Classes: ApiKey, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#api_keyTypes::NewRelicApiKeyConfig

New Relic API Key authentication (apiKey, accountId, region).



4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
# File 'lib/aws-sdk-devopsagent/types.rb', line 4012

class NewRelicServiceAuthorizationConfig < Struct.new(
  :api_key,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class ApiKey < NewRelicServiceAuthorizationConfig; end
  class Unknown < NewRelicServiceAuthorizationConfig; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



4012
4013
4014
# File 'lib/aws-sdk-devopsagent/types.rb', line 4012

def unknown
  @unknown
end