interface MatchingRuleStatementProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.LicenseManager.CfnLicenseAssetRuleSet.MatchingRuleStatementProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awslicensemanager#CfnLicenseAssetRuleSet_MatchingRuleStatementProperty |
Java | software.amazon.awscdk.services.licensemanager.CfnLicenseAssetRuleSet.MatchingRuleStatementProperty |
Python | aws_cdk.aws_licensemanager.CfnLicenseAssetRuleSet.MatchingRuleStatementProperty |
TypeScript | aws-cdk-lib » aws_licensemanager » CfnLicenseAssetRuleSet » MatchingRuleStatementProperty |
Matching rule statement.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_licensemanager as licensemanager } from 'aws-cdk-lib';
const matchingRuleStatementProperty: licensemanager.CfnLicenseAssetRuleSet.MatchingRuleStatementProperty = {
constraint: 'constraint',
keyToMatch: 'keyToMatch',
valueToMatch: ['valueToMatch'],
};
Properties
| Name | Type | Description |
|---|---|---|
| constraint | string | Constraint (e.g. Equals, Not_Equals). |
| key | string | Key to match. |
| value | string[] | Values to match. |
constraint
Type:
string
Constraint (e.g. Equals, Not_Equals).
keyToMatch
Type:
string
Key to match.
valueToMatch
Type:
string[]
Values to match.

.NET
Go
Java
Python
TypeScript