Class: Aws::Bedrock::Types::GuardrailTopicConfig

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

Overview

Details about topics for the guardrail to identify and deny.

Constant Summary collapse

SENSITIVE =
[:name, :definition, :examples]

Instance Attribute Summary collapse

Instance Attribute Details

#definitionString

A definition of the topic to deny.

Returns:

  • (String)


3110
3111
3112
3113
3114
3115
3116
3117
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 3110

class GuardrailTopicConfig < Struct.new(
  :name,
  :definition,
  :examples,
  :type)
  SENSITIVE = [:name, :definition, :examples]
  include Aws::Structure
end

#examplesArray<String>

A list of prompts, each of which is an example of a prompt that can be categorized as belonging to the topic.

Returns:

  • (Array<String>)


3110
3111
3112
3113
3114
3115
3116
3117
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 3110

class GuardrailTopicConfig < Struct.new(
  :name,
  :definition,
  :examples,
  :type)
  SENSITIVE = [:name, :definition, :examples]
  include Aws::Structure
end

#nameString

The name of the topic to deny.

Returns:

  • (String)


3110
3111
3112
3113
3114
3115
3116
3117
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 3110

class GuardrailTopicConfig < Struct.new(
  :name,
  :definition,
  :examples,
  :type)
  SENSITIVE = [:name, :definition, :examples]
  include Aws::Structure
end

#typeString

Specifies to deny the topic.

Returns:

  • (String)


3110
3111
3112
3113
3114
3115
3116
3117
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 3110

class GuardrailTopicConfig < Struct.new(
  :name,
  :definition,
  :examples,
  :type)
  SENSITIVE = [:name, :definition, :examples]
  include Aws::Structure
end