Interface CfnIntermediateTable.IntermediateTableAnalysisRulePolicyProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnIntermediateTable.IntermediateTableAnalysisRulePolicyProperty.Jsii$Proxy
- Enclosing class:
CfnIntermediateTable
@Stability(Stable)
public static interface CfnIntermediateTable.IntermediateTableAnalysisRulePolicyProperty
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.*;
IntermediateTableAnalysisRulePolicyProperty intermediateTableAnalysisRulePolicyProperty = IntermediateTableAnalysisRulePolicyProperty.builder()
.v1(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())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnIntermediateTable.IntermediateTableAnalysisRulePolicyProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()getV1()Returns union: eitherIResolvableorCfnIntermediateTable.IntermediateTableAnalysisRulePolicyV1PropertyMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getV1
Returns union: eitherIResolvableorCfnIntermediateTable.IntermediateTableAnalysisRulePolicyV1Property- See Also:
-
builder
@Stability(Stable) static CfnIntermediateTable.IntermediateTableAnalysisRulePolicyProperty.Builder builder()
-