Class: Aws::DevOpsAgent::Types::ServiceNowServiceAuthorizationConfig

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

Overview

Note:

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

Authorization configuration options for ServiceNow service.

Direct Known Subclasses

OAuthClientCredentials, Unknown

Defined Under Namespace

Classes: OAuthClientCredentials, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#o_auth_client_credentialsTypes::ServiceNowOAuthClientCredentialsConfig

OAuth client credentials configuration.



4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
# File 'lib/aws-sdk-devopsagent/types.rb', line 4356

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

  class OAuthClientCredentials < ServiceNowServiceAuthorizationConfig; end
  class Unknown < ServiceNowServiceAuthorizationConfig; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



4356
4357
4358
# File 'lib/aws-sdk-devopsagent/types.rb', line 4356

def unknown
  @unknown
end