Class: Aws::CloudWatchEvents::Types::CreateConnectionOAuthClientRequestParameters

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-cloudwatchevents/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

Instance Attribute Details

#client_idString

The client ID to use for OAuth authorization for the connection.

Returns:

  • (String)


828
829
830
831
832
833
# File 'gems/aws-sdk-cloudwatchevents/lib/aws-sdk-cloudwatchevents/types.rb', line 828

class CreateConnectionOAuthClientRequestParameters < Struct.new(
  :client_id,
  :client_secret)
  SENSITIVE = [:client_secret]
  include Aws::Structure
end

#client_secretString

The client secret associated with the client ID to use for OAuth authorization for the connection.

Returns:

  • (String)


828
829
830
831
832
833
# File 'gems/aws-sdk-cloudwatchevents/lib/aws-sdk-cloudwatchevents/types.rb', line 828

class CreateConnectionOAuthClientRequestParameters < Struct.new(
  :client_id,
  :client_secret)
  SENSITIVE = [:client_secret]
  include Aws::Structure
end