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.
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.
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 |
#unknown ⇒ Object
Returns the value of attribute unknown
4218 4219 4220 |
# File 'lib/aws-sdk-devopsagent/types.rb', line 4218 def unknown @unknown end |