interface CfnLicenseAssetRuleSetMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.LicenseManager.CfnLicenseAssetRuleSetMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awslicensemanager#CfnLicenseAssetRuleSetMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.licensemanager.CfnLicenseAssetRuleSetMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_licensemanager.CfnLicenseAssetRuleSetMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_licensemanager » CfnLicenseAssetRuleSetMixinProps |
Properties for CfnLicenseAssetRuleSetPropsMixin.
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 cfnLicenseAssetRuleSetMixinProps: licensemanager.CfnLicenseAssetRuleSetMixinProps = {
description: 'description',
name: 'name',
rules: [{
ruleStatement: {
instanceRuleStatement: {
andRuleStatement: {
matchingRuleStatements: [{
constraint: 'constraint',
keyToMatch: 'keyToMatch',
valueToMatch: ['valueToMatch'],
}],
},
matchingRuleStatement: {
constraint: 'constraint',
keyToMatch: 'keyToMatch',
valueToMatch: ['valueToMatch'],
},
orRuleStatement: {
matchingRuleStatements: [{
constraint: 'constraint',
keyToMatch: 'keyToMatch',
valueToMatch: ['valueToMatch'],
}],
},
},
licenseConfigurationRuleStatement: {
andRuleStatement: {
matchingRuleStatements: [{
constraint: 'constraint',
keyToMatch: 'keyToMatch',
valueToMatch: ['valueToMatch'],
}],
},
matchingRuleStatement: {
constraint: 'constraint',
keyToMatch: 'keyToMatch',
valueToMatch: ['valueToMatch'],
},
orRuleStatement: {
matchingRuleStatements: [{
constraint: 'constraint',
keyToMatch: 'keyToMatch',
valueToMatch: ['valueToMatch'],
}],
},
},
licenseRuleStatement: {
andRuleStatement: {
matchingRuleStatements: [{
constraint: 'constraint',
keyToMatch: 'keyToMatch',
valueToMatch: ['valueToMatch'],
}],
},
matchingRuleStatement: {
constraint: 'constraint',
keyToMatch: 'keyToMatch',
valueToMatch: ['valueToMatch'],
},
orRuleStatement: {
matchingRuleStatements: [{
constraint: 'constraint',
keyToMatch: 'keyToMatch',
valueToMatch: ['valueToMatch'],
}],
},
},
},
}],
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | License asset ruleset description. |
| name? | string | License asset ruleset name. |
| rules? | IResolvable | (IResolvable | License)[] | License asset rules. |
| tags? | Cfn[] | Tags to add to the license asset ruleset. |
description?
Type:
string
(optional)
License asset ruleset description.
name?
Type:
string
(optional)
License asset ruleset name.
rules?
Type:
IResolvable | (IResolvable | License)[]
(optional)
License asset rules.
tags?
Type:
Cfn[]
(optional)
Tags to add to the license asset ruleset.

.NET
Go
Java
Python
TypeScript