Class: Aws::ServiceCatalog::Types::AssociateBudgetWithResourceInput

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-servicecatalog/types.rb

Overview

Note:

When making an API call, you may pass AssociateBudgetWithResourceInput data as a hash:

{
  budget_name: "BudgetName", # required
  resource_id: "Id", # required
}

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#budget_nameString

The name of the budget you want to associate.

Returns:

  • (String)


120
121
122
123
124
125
# File 'lib/aws-sdk-servicecatalog/types.rb', line 120

class AssociateBudgetWithResourceInput < Struct.new(
  :budget_name,
  :resource_id)
  SENSITIVE = []
  include Aws::Structure
end

#resource_idString

The resource identifier. Either a portfolio-id or a product-id.

Returns:

  • (String)


120
121
122
123
124
125
# File 'lib/aws-sdk-servicecatalog/types.rb', line 120

class AssociateBudgetWithResourceInput < Struct.new(
  :budget_name,
  :resource_id)
  SENSITIVE = []
  include Aws::Structure
end