Class: Aws::CloudWatchEvents::Types::CreateConnectionOAuthClientRequestParameters
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudWatchEvents::Types::CreateConnectionOAuthClientRequestParameters
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cloudwatchevents/types.rb
Overview
Contains the Basic authorization parameters to use for the connection.
Constant Summary collapse
- SENSITIVE =
[:client_secret]
Instance Attribute Summary collapse
-
#client_id ⇒ String
The client ID to use for OAuth authorization for the connection.
-
#client_secret ⇒ String
The client secret associated with the client ID to use for OAuth authorization for the connection.
Instance Attribute Details
#client_id ⇒ String
The client ID to use for OAuth authorization for the connection.
828 829 830 831 832 833 |
# File 'lib/aws-sdk-cloudwatchevents/types.rb', line 828 class CreateConnectionOAuthClientRequestParameters < Struct.new( :client_id, :client_secret) SENSITIVE = [:client_secret] include Aws::Structure end |
#client_secret ⇒ String
The client secret associated with the client ID to use for OAuth authorization for the connection.
828 829 830 831 832 833 |
# File 'lib/aws-sdk-cloudwatchevents/types.rb', line 828 class CreateConnectionOAuthClientRequestParameters < Struct.new( :client_id, :client_secret) SENSITIVE = [:client_secret] include Aws::Structure end |