Class: Aws::BCMPricingCalculator::Types::CreateBillEstimateRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::BCMPricingCalculator::Types::CreateBillEstimateRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-bcmpricingcalculator/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#bill_scenario_id ⇒ String
The ID of the Bill Scenario for which you want to create a Bill estimate.
-
#client_token ⇒ String
A unique, case-sensitive identifier that you provide to ensure the idempotency of the request.
-
#name ⇒ String
The name of the Bill estimate that will be created.
-
#tags ⇒ Hash<String,String>
An optional list of tags to associate with the specified BillEstimate.
Instance Attribute Details
#bill_scenario_id ⇒ String
The ID of the Bill Scenario for which you want to create a Bill estimate.
1652 1653 1654 1655 1656 1657 1658 1659 |
# File 'lib/aws-sdk-bcmpricingcalculator/types.rb', line 1652 class CreateBillEstimateRequest < Struct.new( :bill_scenario_id, :name, :client_token, :tags) SENSITIVE = [] include Aws::Structure end |
#client_token ⇒ String
A unique, case-sensitive identifier that you provide to ensure the idempotency of the request.
**A suitable default value is auto-generated.** You should normally not need to pass this option.
1652 1653 1654 1655 1656 1657 1658 1659 |
# File 'lib/aws-sdk-bcmpricingcalculator/types.rb', line 1652 class CreateBillEstimateRequest < Struct.new( :bill_scenario_id, :name, :client_token, :tags) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the Bill estimate that will be created. Names must be unique for an account.
1652 1653 1654 1655 1656 1657 1658 1659 |
# File 'lib/aws-sdk-bcmpricingcalculator/types.rb', line 1652 class CreateBillEstimateRequest < Struct.new( :bill_scenario_id, :name, :client_token, :tags) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Hash<String,String>
An optional list of tags to associate with the specified BillEstimate. You can use resource tags to control access to your BillEstimate using IAM policies. Each tag consists of a key and a value, and each key must be unique for the resource. The following restrictions apply to resource tags:
-
Although the maximum number of array members is 200, you can assign a maximum of 50 user-tags to one resource. The remaining are reserved for Amazon Web Services.
-
The maximum length of a key is 128 characters.
-
The maximum length of a value is 256 characters.
-
Keys and values can only contain alphanumeric characters, spaces, and any of the following: ‘_.:/=+@-`.
-
Keys and values are case sensitive.
-
Keys and values are trimmed for any leading or trailing whitespaces.
-
Don’t use ‘aws:` as a prefix for your keys. This prefix is reserved for Amazon Web Services.
1652 1653 1654 1655 1656 1657 1658 1659 |
# File 'lib/aws-sdk-bcmpricingcalculator/types.rb', line 1652 class CreateBillEstimateRequest < Struct.new( :bill_scenario_id, :name, :client_token, :tags) SENSITIVE = [] include Aws::Structure end |