Class: Aws::ServiceCatalog::Types::DisassociateBudgetFromResourceInput

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 DisassociateBudgetFromResourceInput 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 disassociate.

Returns:

  • (String)


2767
2768
2769
2770
2771
2772
# File 'lib/aws-sdk-servicecatalog/types.rb', line 2767

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

#resource_idString

The resource identifier you want to disassociate from. Either a portfolio-id or a product-id.

Returns:

  • (String)


2767
2768
2769
2770
2771
2772
# File 'lib/aws-sdk-servicecatalog/types.rb', line 2767

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