Interface CfnCollaborationPropsMixin.IDataEncryptionMetadataProperty
The settings for client-side encryption for cryptographic computing.
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.CleanRooms
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public interface CfnCollaborationPropsMixin.IDataEncryptionMetadataProperty
Syntax (vb)
Public Interface CfnCollaborationPropsMixin.IDataEncryptionMetadataProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.CleanRooms;
var dataEncryptionMetadataProperty = new DataEncryptionMetadataProperty {
AllowCleartext = false,
AllowDuplicates = false,
AllowJoinsOnColumnsWithDifferentNames = false,
PreserveNulls = false
};
Synopsis
Properties
| AllowCleartext | Indicates whether encrypted tables can contain cleartext data ( |
| AllowDuplicates | Indicates whether Fingerprint columns can contain duplicate entries ( |
| AllowJoinsOnColumnsWithDifferentNames | Indicates whether Fingerprint columns can be joined on any other Fingerprint column with a different name ( |
| PreserveNulls | Indicates whether NULL values are to be copied as NULL to encrypted tables ( |
Properties
AllowCleartext
Indicates whether encrypted tables can contain cleartext data ( TRUE ) or are to cryptographically process every column ( FALSE ).
object? AllowCleartext { get; }
Property Value
Remarks
AllowDuplicates
Indicates whether Fingerprint columns can contain duplicate entries ( TRUE ) or are to contain only non-repeated values ( FALSE ).
object? AllowDuplicates { get; }
Property Value
Remarks
AllowJoinsOnColumnsWithDifferentNames
Indicates whether Fingerprint columns can be joined on any other Fingerprint column with a different name ( TRUE ) or can only be joined on Fingerprint columns of the same name ( FALSE ).
object? AllowJoinsOnColumnsWithDifferentNames { get; }
Property Value
Remarks
PreserveNulls
Indicates whether NULL values are to be copied as NULL to encrypted tables ( TRUE ) or cryptographically processed ( FALSE ).
object? PreserveNulls { get; }