Class: Aws::EventBridge::Types::UpdateConnectionOAuthRequestParameters
- Inherits:
-
Struct
- Object
- Struct
- Aws::EventBridge::Types::UpdateConnectionOAuthRequestParameters
- Defined in:
- gems/aws-sdk-eventbridge/lib/aws-sdk-eventbridge/types.rb
Overview
When making an API call, you may pass UpdateConnectionOAuthRequestParameters data as a hash:
{
client_parameters: {
client_id: "AuthHeaderParameters",
client_secret: "AuthHeaderParameters",
},
authorization_endpoint: "HttpsEndpoint",
http_method: "GET", # accepts GET, POST, PUT
o_auth_http_parameters: {
header_parameters: [
{
key: "HeaderKey",
value: "HeaderValue",
is_value_secret: false,
},
],
query_string_parameters: [
{
key: "QueryStringKey",
value: "QueryStringValue",
is_value_secret: false,
},
],
body_parameters: [
{
key: "String",
value: "String",
is_value_secret: false,
},
],
},
}
Contains the OAuth request parameters to use for the connection.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#authorization_endpoint ⇒ String
The URL to the authorization endpoint when OAuth is specified as the authorization type.
-
#client_parameters ⇒ Types::UpdateConnectionOAuthClientRequestParameters
A
UpdateConnectionOAuthClientRequestParameters
object that contains the client parameters to use for the connection when OAuth is specified as the authorization type. -
#http_method ⇒ String
The method used to connect to the HTTP endpoint.
-
#o_auth_http_parameters ⇒ Types::ConnectionHttpParameters
The additional HTTP parameters used for the OAuth authorization request.
Instance Attribute Details
#authorization_endpoint ⇒ String
The URL to the authorization endpoint when OAuth is specified as the authorization type.
6218 6219 6220 6221 6222 6223 6224 6225 |
# File 'gems/aws-sdk-eventbridge/lib/aws-sdk-eventbridge/types.rb', line 6218 class UpdateConnectionOAuthRequestParameters < Struct.new( :client_parameters, :authorization_endpoint, :http_method, :o_auth_http_parameters) SENSITIVE = [] include Aws::Structure end |
#client_parameters ⇒ Types::UpdateConnectionOAuthClientRequestParameters
A UpdateConnectionOAuthClientRequestParameters
object that
contains the client parameters to use for the connection when OAuth
is specified as the authorization type.
6218 6219 6220 6221 6222 6223 6224 6225 |
# File 'gems/aws-sdk-eventbridge/lib/aws-sdk-eventbridge/types.rb', line 6218 class UpdateConnectionOAuthRequestParameters < Struct.new( :client_parameters, :authorization_endpoint, :http_method, :o_auth_http_parameters) SENSITIVE = [] include Aws::Structure end |
#http_method ⇒ String
The method used to connect to the HTTP endpoint.
6218 6219 6220 6221 6222 6223 6224 6225 |
# File 'gems/aws-sdk-eventbridge/lib/aws-sdk-eventbridge/types.rb', line 6218 class UpdateConnectionOAuthRequestParameters < Struct.new( :client_parameters, :authorization_endpoint, :http_method, :o_auth_http_parameters) SENSITIVE = [] include Aws::Structure end |
#o_auth_http_parameters ⇒ Types::ConnectionHttpParameters
The additional HTTP parameters used for the OAuth authorization request.
6218 6219 6220 6221 6222 6223 6224 6225 |
# File 'gems/aws-sdk-eventbridge/lib/aws-sdk-eventbridge/types.rb', line 6218 class UpdateConnectionOAuthRequestParameters < Struct.new( :client_parameters, :authorization_endpoint, :http_method, :o_auth_http_parameters) SENSITIVE = [] include Aws::Structure end |