Sélectionner vos préférences de cookies

Nous utilisons des cookies essentiels et des outils similaires qui sont nécessaires au fonctionnement de notre site et à la fourniture de nos services. Nous utilisons des cookies de performance pour collecter des statistiques anonymes afin de comprendre comment les clients utilisent notre site et d’apporter des améliorations. Les cookies essentiels ne peuvent pas être désactivés, mais vous pouvez cliquer sur « Personnaliser » ou « Refuser » pour refuser les cookies de performance.

Si vous êtes d’accord, AWS et les tiers approuvés utiliseront également des cookies pour fournir des fonctionnalités utiles au site, mémoriser vos préférences et afficher du contenu pertinent, y compris des publicités pertinentes. Pour accepter ou refuser tous les cookies non essentiels, cliquez sur « Accepter » ou « Refuser ». Pour effectuer des choix plus détaillés, cliquez sur « Personnaliser ».

AWS::BillingConductor::PricingPlan

Mode de mise au point

Sur cette page

AWS::BillingConductor::PricingPlan - AWS CloudFormation
Cette page n'a pas été traduite dans votre langue. Demande de traduction
Filtrer la vue

Creates a pricing plan that is used for computing AWS charges for billing groups.

Syntax

To declare this entity in your AWS CloudFormation template, use the following syntax:

JSON

{ "Type" : "AWS::BillingConductor::PricingPlan", "Properties" : { "Description" : String, "Name" : String, "PricingRuleArns" : [ String, ... ], "Tags" : [ Tag, ... ] } }

YAML

Type: AWS::BillingConductor::PricingPlan Properties: Description: String Name: String PricingRuleArns: - String Tags: - Tag

Properties

Description

The pricing plan description.

Required: No

Type: String

Maximum: 1024

Update requires: No interruption

Name

The name of a pricing plan.

Required: Yes

Type: String

Pattern: [a-zA-Z0-9_\+=\.\-@]+

Minimum: 1

Maximum: 128

Update requires: No interruption

PricingRuleArns

The PricingRuleArns that are associated with the Pricing Plan.

Required: No

Type: Array of String

Update requires: No interruption

Tags

A map that contains tag keys and tag values that are attached to a pricing plan.

Required: No

Type: Array of Tag

Update requires: No interruption

Return values

Ref

For more information about using the Ref function, see Ref.

Fn::GetAtt

Arn

The Amazon Resource Name (ARN) of the created pricing plan.

CreationTime

The time the pricing plan was created.

LastModifiedTime

The most recent time the pricing plan was modified.

Size

The pricing rules count currently associated with this pricing plan list element.

Examples

Pricing plan with a pricing rule attached

The following example creates a pricing plan with a 10% global mark up pricing rule attached.

JSON

{ "Resources": { "TestPricingRule": { "Type": "AWS::BillingConductor::PricingRule", "Properties": { "Name": "TestPricingRule", "Description": "Test pricing rule created through CloudFormation. Mark everything by 10%.", "Type": "MARKUP", "Scope": "GLOBAL", "ModifierPercentage": 10 } }, "TestPricingPlan": { "Type": "AWS::BillingConductor::PricingPlan", "Properties": { "Name": "TestPricingPlan", "Description": "Test pricing plan created through CloudFormation.", "PricingRuleArns": [ {"Fn::GetAtt": ["TestPricingRule", "Arn"]} ] } } } }

YAML

Resources: TestPricingRule: Type: 'AWS::BillingConductor::PricingRule' Properties: Name: 'TestPricingRule' Description: 'Test pricing rule created through CloudFormation. Mark everything by 10%.' Type: 'MARKUP' Scope: 'GLOBAL' ModifierPercentage: 10 TestPricingPlan: Type: 'AWS::BillingConductor::PricingPlan' Properties: Name: 'TestPricingPlan' Description: 'Test pricing plan created through CloudFormation.' PricingRuleArns: - !GetAtt TestPricingRule.Arn

Rubrique suivante :

Tag

Rubrique précédente :

Tag
ConfidentialitéConditions d'utilisation du sitePréférences de cookies
© 2025, Amazon Web Services, Inc. ou ses affiliés. Tous droits réservés.