Class: Aws::BedrockAgent::Types::RedshiftServerlessAuthConfiguration

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-bedrockagent/types.rb

Overview

Specifies configurations for authentication to a Redshift Serverless. Specify the type of authentication to use in the ‘type` field and include the corresponding field. If you specify IAM authentication, you don’t need to include another field.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#typeString

The type of authentication to use.



9252
9253
9254
9255
9256
9257
# File 'lib/aws-sdk-bedrockagent/types.rb', line 9252

class RedshiftServerlessAuthConfiguration < Struct.new(
  :type,
  :username_password_secret_arn)
  SENSITIVE = []
  include Aws::Structure
end

#username_password_secret_arnString

The ARN of an Secrets Manager secret for authentication.



9252
9253
9254
9255
9256
9257
# File 'lib/aws-sdk-bedrockagent/types.rb', line 9252

class RedshiftServerlessAuthConfiguration < Struct.new(
  :type,
  :username_password_secret_arn)
  SENSITIVE = []
  include Aws::Structure
end