Class CfnPricingRule.TieringProperty
The set of tiering configurations for the pricing rule.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.BillingConductor
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnPricingRule.TieringProperty : CfnPricingRule.ITieringProperty
Syntax (vb)
Public Class CfnPricingRule.TieringProperty Implements CfnPricingRule.ITieringProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.BillingConductor;
var tieringProperty = new TieringProperty {
FreeTier = new FreeTierProperty {
Activated = false
}
};
Synopsis
Constructors
TieringProperty() | The set of tiering configurations for the pricing rule. |
Properties
FreeTier | The possible AWS Free Tier configurations. |
Constructors
TieringProperty()
The set of tiering configurations for the pricing rule.
public TieringProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.BillingConductor;
var tieringProperty = new TieringProperty {
FreeTier = new FreeTierProperty {
Activated = false
}
};
Properties
FreeTier
The possible AWS Free Tier configurations.
public object? FreeTier { get; set; }