Interface CfnLicenseAssetRuleSet.InstanceRuleStatementProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnLicenseAssetRuleSet.InstanceRuleStatementProperty.Jsii$Proxy
Enclosing class:
CfnLicenseAssetRuleSet

@Stability(Stable) public static interface CfnLicenseAssetRuleSet.InstanceRuleStatementProperty extends software.amazon.jsii.JsiiSerializable
Instance rule statement.

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.licensemanager.*;
 InstanceRuleStatementProperty instanceRuleStatementProperty = InstanceRuleStatementProperty.builder()
         .andRuleStatement(AndRuleStatementProperty.builder()
                 .matchingRuleStatements(List.of(MatchingRuleStatementProperty.builder()
                         .constraint("constraint")
                         .keyToMatch("keyToMatch")
                         .valueToMatch(List.of("valueToMatch"))
                         .build()))
                 .build())
         .matchingRuleStatement(MatchingRuleStatementProperty.builder()
                 .constraint("constraint")
                 .keyToMatch("keyToMatch")
                 .valueToMatch(List.of("valueToMatch"))
                 .build())
         .orRuleStatement(OrRuleStatementProperty.builder()
                 .matchingRuleStatements(List.of(MatchingRuleStatementProperty.builder()
                         .constraint("constraint")
                         .keyToMatch("keyToMatch")
                         .valueToMatch(List.of("valueToMatch"))
                         .build()))
                 .build())
         .build();
 

See Also: