Class: Aws::BedrockAgentCoreControl::Types::SlackOauth2ProviderConfigInput

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb

Overview

Input configuration for a Slack OAuth2 provider.

Constant Summary collapse

SENSITIVE =
[:client_secret]

Instance Attribute Summary collapse

Instance Attribute Details

#client_idString

The client ID for the Slack OAuth2 provider.

Returns:

  • (String)


4282
4283
4284
4285
4286
4287
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 4282

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

#client_secretString

The client secret for the Slack OAuth2 provider.

Returns:

  • (String)


4282
4283
4284
4285
4286
4287
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 4282

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