CfnBillScenarioProps
- class aws_cdk.aws_bcmpricingcalculator.CfnBillScenarioProps(*, cost_category_group_sharing_preference_arn=None, expires_at=None, group_sharing_preference=None, name=None, tags=None)
Bases:
objectProperties for defining a
CfnBillScenario.- Parameters:
cost_category_group_sharing_preference_arn (
Optional[str]) – The ARN of the cost category group sharing preference.expires_at (
Optional[str]) – The timestamp when the bill scenario expires.group_sharing_preference (
Optional[str])name (
Optional[str]) – The name of the bill scenario.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – An array of key-value pairs to apply to this resource.
- See:
- ExampleMetadata:
fixture=_generated
Example:
from aws_cdk import CfnTag # The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_bcmpricingcalculator as bcmpricingcalculator cfn_bill_scenario_props = bcmpricingcalculator.CfnBillScenarioProps( cost_category_group_sharing_preference_arn="costCategoryGroupSharingPreferenceArn", expires_at="expiresAt", group_sharing_preference="groupSharingPreference", name="name", tags=[CfnTag( key="key", value="value" )] )
Attributes
- cost_category_group_sharing_preference_arn
The ARN of the cost category group sharing preference.
- expires_at
The timestamp when the bill scenario expires.
- group_sharing_preference
-
- Type:
see
- name
The name of the bill scenario.
- tags
An array of key-value pairs to apply to this resource.