Class: Aws::DevOpsAgent::Types::PagerDutyAuthorizationConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::DevOpsAgent::Types::PagerDutyAuthorizationConfig
- 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
Defined Under Namespace
Classes: OAuthClientCredentials, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#o_auth_client_credentials ⇒ Types::PagerDutyOAuthClientCredentialsConfig
OAuth client credentials configuration.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#o_auth_client_credentials ⇒ Types::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 |
#unknown ⇒ Object
Returns the value of attribute unknown
2962 2963 2964 |
# File 'lib/aws-sdk-devopsagent/types.rb', line 2962 def unknown @unknown end |