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.

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::PagerDutyOAuthClientCredentialsConfig

OAuth client credentials configuration.



2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
# File 'lib/aws-sdk-devopsagent/types.rb', line 2962

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



2962
2963
2964
# File 'lib/aws-sdk-devopsagent/types.rb', line 2962

def unknown
  @unknown
end