Class: Aws::DevOpsAgent::Types::DynatraceServiceAuthorizationConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::DevOpsAgent::Types::DynatraceServiceAuthorizationConfig
- Includes:
- Structure, Structure::Union
- Defined in:
- lib/aws-sdk-devopsagent/types.rb
Overview
Note:
DynatraceServiceAuthorizationConfig is a union - when making an API calls you must set exactly one of the members.
Authorization configuration options for Dynatrace service.
Direct Known Subclasses
Defined Under Namespace
Classes: OAuthClientCredentials, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#o_auth_client_credentials ⇒ Types::DynatraceOAuthClientCredentialsConfig
OAuth client credentials configuration.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#o_auth_client_credentials ⇒ Types::DynatraceOAuthClientCredentialsConfig
OAuth client credentials configuration.
980 981 982 983 984 985 986 987 988 989 |
# File 'lib/aws-sdk-devopsagent/types.rb', line 980 class DynatraceServiceAuthorizationConfig < Struct.new( :o_auth_client_credentials, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class OAuthClientCredentials < DynatraceServiceAuthorizationConfig; end class Unknown < DynatraceServiceAuthorizationConfig; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
980 981 982 |
# File 'lib/aws-sdk-devopsagent/types.rb', line 980 def unknown @unknown end |