import { _ContentTypeProfiles, _UnmarshalledContentTypeProfiles } from "./_ContentTypeProfiles"; /** *
The configuration for a field-level encryption content type-profile mapping.
*/ export interface _ContentTypeProfileConfig { /** *The setting in a field-level encryption content type-profile mapping that specifies what to do when an unknown content type is provided for the profile. If true, content is forwarded without being encrypted when the content type is unknown. If false (the default), an error is returned when the content type is unknown.
*/ ForwardWhenContentTypeIsUnknown: boolean; /** *The configuration for a field-level encryption content type-profile.
*/ ContentTypeProfiles?: _ContentTypeProfiles; } export interface _UnmarshalledContentTypeProfileConfig extends _ContentTypeProfileConfig { /** *The configuration for a field-level encryption content type-profile.
*/ ContentTypeProfiles?: _UnmarshalledContentTypeProfiles; }