Class: Aws::DevOpsAgent::Types::PagerDutyAuthorizationConfig

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

Overview

Note:

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

Authorization configuration options for PagerDuty service.

Defined Under Namespace

Classes: OAuthClientCredentials, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#o_auth_client_credentialsTypes::PagerDutyOAuthClientCredentialsConfig

OAuth client credentials configuration.



4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
# File 'lib/aws-sdk-devopsagent/types.rb', line 4218

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

  class OAuthClientCredentials < PagerDutyAuthorizationConfig; end
  class Unknown < PagerDutyAuthorizationConfig; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



4218
4219
4220
# File 'lib/aws-sdk-devopsagent/types.rb', line 4218

def unknown
  @unknown
end