Class: Aws::Bedrock::Types::ModelEnforcement

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

Overview

Model-specific information for the enforced guardrail configuration.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#excluded_modelsArray<String>

Models to exclude from enforcement of the guardrail.

Returns:

  • (Array<String>)


11730
11731
11732
11733
11734
11735
# File 'lib/aws-sdk-bedrock/types.rb', line 11730

class ModelEnforcement < Struct.new(
  :included_models,
  :excluded_models)
  SENSITIVE = []
  include Aws::Structure
end

#included_modelsArray<String>

Models to enforce the guardrail on.

Returns:

  • (Array<String>)


11730
11731
11732
11733
11734
11735
# File 'lib/aws-sdk-bedrock/types.rb', line 11730

class ModelEnforcement < Struct.new(
  :included_models,
  :excluded_models)
  SENSITIVE = []
  include Aws::Structure
end