import { _QueryArgProfileConfig, _UnmarshalledQueryArgProfileConfig } from "./_QueryArgProfileConfig"; import { _ContentTypeProfileConfig, _UnmarshalledContentTypeProfileConfig } from "./_ContentTypeProfileConfig"; /** *

A complex data type that includes the profile configurations specified for field-level encryption.

*/ export interface _FieldLevelEncryptionConfig { /** *

A unique number that ensures the request can't be replayed.

*/ CallerReference: string; /** *

An optional comment about the configuration.

*/ Comment?: string; /** *

A complex data type that specifies when to forward content if a profile isn't found and the profile that can be provided as a query argument in a request.

*/ QueryArgProfileConfig?: _QueryArgProfileConfig; /** *

A complex data type that specifies when to forward content if a content type isn't recognized and profiles to use as by default in a request if a query argument doesn't specify a profile to use.

*/ ContentTypeProfileConfig?: _ContentTypeProfileConfig; } export interface _UnmarshalledFieldLevelEncryptionConfig extends _FieldLevelEncryptionConfig { /** *

A complex data type that specifies when to forward content if a profile isn't found and the profile that can be provided as a query argument in a request.

*/ QueryArgProfileConfig?: _UnmarshalledQueryArgProfileConfig; /** *

A complex data type that specifies when to forward content if a content type isn't recognized and profiles to use as by default in a request if a query argument doesn't specify a profile to use.

*/ ContentTypeProfileConfig?: _UnmarshalledContentTypeProfileConfig; }