Class: Aws::CleanRoomsML::Types::CustomEntityConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::CleanRoomsML::Types::CustomEntityConfig
- Defined in:
- gems/aws-sdk-cleanroomsml/lib/aws-sdk-cleanroomsml/types.rb
Overview
The configuration for defining custom patterns to be redacted from logs and error messages. This is for the CUSTOM config under entitiesToRedact. Both CustomEntityConfig and entitiesToRedact need to be present or not present.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#custom_data_identifiers ⇒ Array<String>
Defines data identifiers for the custom entity configuration.
Instance Attribute Details
#custom_data_identifiers ⇒ Array<String>
Defines data identifiers for the custom entity configuration. Provide this only if CUSTOM redaction is configured.
1817 1818 1819 1820 1821 |
# File 'gems/aws-sdk-cleanroomsml/lib/aws-sdk-cleanroomsml/types.rb', line 1817 class CustomEntityConfig < Struct.new( :custom_data_identifiers) SENSITIVE = [] include Aws::Structure end |