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