Class: Aws::EventBridge::Types::UpdateConnectionOAuthClientRequestParameters
- Inherits:
-
Struct
- Object
- Struct
- Aws::EventBridge::Types::UpdateConnectionOAuthClientRequestParameters
- Defined in:
- gems/aws-sdk-eventbridge/lib/aws-sdk-eventbridge/types.rb
Overview
Note:
When making an API call, you may pass UpdateConnectionOAuthClientRequestParameters data as a hash:
{
client_id: "AuthHeaderParameters",
client_secret: "AuthHeaderParameters",
}
Contains the OAuth authorization parameters to use for the connection.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#client_id ⇒ String
The client ID to use for OAuth authorization.
-
#client_secret ⇒ String
The client secret assciated with the client ID to use for OAuth authorization.
Instance Attribute Details
#client_id ⇒ String
The client ID to use for OAuth authorization.
6152 6153 6154 6155 6156 6157 |
# File 'gems/aws-sdk-eventbridge/lib/aws-sdk-eventbridge/types.rb', line 6152 class UpdateConnectionOAuthClientRequestParameters < Struct.new( :client_id, :client_secret) SENSITIVE = [] include Aws::Structure end |
#client_secret ⇒ String
The client secret assciated with the client ID to use for OAuth authorization.
6152 6153 6154 6155 6156 6157 |
# File 'gems/aws-sdk-eventbridge/lib/aws-sdk-eventbridge/types.rb', line 6152 class UpdateConnectionOAuthClientRequestParameters < Struct.new( :client_id, :client_secret) SENSITIVE = [] include Aws::Structure end |