Class: Aws::BillingConductor::Types::CreatePricingPlanInput

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-billingconductor/lib/aws-sdk-billingconductor/types.rb

Overview

Constant Summary collapse

SENSITIVE =
[:name, :description]

Instance Attribute Summary collapse

Instance Attribute Details

#client_tokenString

The token that is needed to support idempotency. Idempotency isn't currently supported, but will be implemented in a future update.

A suitable default value is auto-generated. You should normally not need to pass this option.

Returns:

  • (String)


693
694
695
696
697
698
699
700
701
# File 'gems/aws-sdk-billingconductor/lib/aws-sdk-billingconductor/types.rb', line 693

class CreatePricingPlanInput < Struct.new(
  :client_token,
  :name,
  :description,
  :pricing_rule_arns,
  :tags)
  SENSITIVE = [:name, :description]
  include Aws::Structure
end

#descriptionString

The description of the pricing plan.

Returns:

  • (String)


693
694
695
696
697
698
699
700
701
# File 'gems/aws-sdk-billingconductor/lib/aws-sdk-billingconductor/types.rb', line 693

class CreatePricingPlanInput < Struct.new(
  :client_token,
  :name,
  :description,
  :pricing_rule_arns,
  :tags)
  SENSITIVE = [:name, :description]
  include Aws::Structure
end

#nameString

The name of the pricing plan. The names must be unique to each pricing plan.

Returns:

  • (String)


693
694
695
696
697
698
699
700
701
# File 'gems/aws-sdk-billingconductor/lib/aws-sdk-billingconductor/types.rb', line 693

class CreatePricingPlanInput < Struct.new(
  :client_token,
  :name,
  :description,
  :pricing_rule_arns,
  :tags)
  SENSITIVE = [:name, :description]
  include Aws::Structure
end

#pricing_rule_arnsArray<String>

A list of Amazon Resource Names (ARNs) that define the pricing plan parameters.

Returns:

  • (Array<String>)


693
694
695
696
697
698
699
700
701
# File 'gems/aws-sdk-billingconductor/lib/aws-sdk-billingconductor/types.rb', line 693

class CreatePricingPlanInput < Struct.new(
  :client_token,
  :name,
  :description,
  :pricing_rule_arns,
  :tags)
  SENSITIVE = [:name, :description]
  include Aws::Structure
end

#tagsHash<String,String>

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

Returns:

  • (Hash<String,String>)


693
694
695
696
697
698
699
700
701
# File 'gems/aws-sdk-billingconductor/lib/aws-sdk-billingconductor/types.rb', line 693

class CreatePricingPlanInput < Struct.new(
  :client_token,
  :name,
  :description,
  :pricing_rule_arns,
  :tags)
  SENSITIVE = [:name, :description]
  include Aws::Structure
end