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.
5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 |
# File 'lib/aws-sdk-devopsagent/types.rb', line 5326 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
5326 5327 5328 |
# File 'lib/aws-sdk-devopsagent/types.rb', line 5326 def unknown @unknown end |