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

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
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)


3859
3860
3861
3862
3863
3864
3865
3866
# File 'lib/aws-sdk-bedrock/types.rb', line 3859

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>)


3859
3860
3861
3862
3863
3864
3865
3866
# File 'lib/aws-sdk-bedrock/types.rb', line 3859

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)


3859
3860
3861
3862
3863
3864
3865
3866
# File 'lib/aws-sdk-bedrock/types.rb', line 3859

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

#typeString

Specifies to deny the topic.

Returns:

  • (String)


3859
3860
3861
3862
3863
3864
3865
3866
# File 'lib/aws-sdk-bedrock/types.rb', line 3859

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