interface MatchingRuleStatementProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.LicenseManager.CfnLicenseAssetRuleSetPropsMixin.MatchingRuleStatementProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awslicensemanager#CfnLicenseAssetRuleSetPropsMixin_MatchingRuleStatementProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.licensemanager.CfnLicenseAssetRuleSetPropsMixin.MatchingRuleStatementProperty |
Python | aws_cdk.cfn_property_mixins.aws_licensemanager.CfnLicenseAssetRuleSetPropsMixin.MatchingRuleStatementProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_licensemanager » CfnLicenseAssetRuleSetPropsMixin » 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/cfn-property-mixins';
const matchingRuleStatementProperty: licensemanager.CfnLicenseAssetRuleSetPropsMixin.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
(optional)
Constraint (e.g. Equals, Not_Equals).
keyToMatch?
Type:
string
(optional)
Key to match.
valueToMatch?
Type:
string[]
(optional)
Values to match.

.NET
Go
Java
Python
TypeScript