Class: Aws::CloudWatchOmni::Types::OAuthCodeCredential
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudWatchOmni::Types::OAuthCodeCredential
- Defined in:
- gems/aws-sdk-cloudwatchomni/lib/aws-sdk-cloudwatchomni/types.rb
Overview
Credentials for an OAuth 2.0 authorization-code grant, supplied when completing the authorization of an integration.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#auth_code ⇒ String
The OAuth 2.0 authorization code returned by the external system's authorization endpoint.
Instance Attribute Details
#auth_code ⇒ String
The OAuth 2.0 authorization code returned by the external system's authorization endpoint.
3756 3757 3758 3759 3760 |
# File 'gems/aws-sdk-cloudwatchomni/lib/aws-sdk-cloudwatchomni/types.rb', line 3756 class OAuthCodeCredential < Struct.new( :auth_code) SENSITIVE = [] include Aws::Structure end |