Interface CfnIntermediateTable.IntermediateTableAnalysisRulePolicyV1Property
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnIntermediateTable.IntermediateTableAnalysisRulePolicyV1Property.Jsii$Proxy
- Enclosing class:
CfnIntermediateTable
@Stability(Stable)
public static interface CfnIntermediateTable.IntermediateTableAnalysisRulePolicyV1Property
extends software.amazon.jsii.JsiiSerializable
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.cleanrooms.*;
IntermediateTableAnalysisRulePolicyV1Property intermediateTableAnalysisRulePolicyV1Property = IntermediateTableAnalysisRulePolicyV1Property.builder()
.custom(IntermediateTableAnalysisRuleCustomProperty.builder()
.allowedAnalyses(List.of("allowedAnalyses"))
// the properties below are optional
.additionalAnalyses("additionalAnalyses")
.allowedAnalysisProviders(List.of("allowedAnalysisProviders"))
.allowedResultReceivers(List.of("allowedResultReceivers"))
.differentialPrivacy(DifferentialPrivacyProperty.builder()
.columns(List.of(DifferentialPrivacyColumnProperty.builder()
.name("name")
.build()))
.build())
.disallowedOutputColumns(List.of("disallowedOutputColumns"))
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnIntermediateTable.IntermediateTableAnalysisRulePolicyV1Property -
Method Summary
Modifier and TypeMethodDescriptionbuilder()Returns union: eitherIResolvableorCfnIntermediateTable.IntermediateTableAnalysisRuleCustomPropertyMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCustom
Returns union: eitherIResolvableorCfnIntermediateTable.IntermediateTableAnalysisRuleCustomProperty- See Also:
-
builder
@Stability(Stable) static CfnIntermediateTable.IntermediateTableAnalysisRulePolicyV1Property.Builder builder()
-