Class: Aws::IoT::Types::DeleteBillingGroupRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoT::Types::DeleteBillingGroupRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iot/types.rb
Overview
Note:
When making an API call, you may pass DeleteBillingGroupRequest data as a hash:
{
billing_group_name: "BillingGroupName", # required
expected_version: 1,
}
Instance Attribute Summary collapse
-
#billing_group_name ⇒ String
The name of the billing group.
-
#expected_version ⇒ Integer
The expected version of the billing group.
Instance Attribute Details
#billing_group_name ⇒ String
The name of the billing group.
3125 3126 3127 3128 3129 |
# File 'lib/aws-sdk-iot/types.rb', line 3125 class DeleteBillingGroupRequest < Struct.new( :billing_group_name, :expected_version) include Aws::Structure end |
#expected_version ⇒ Integer
The expected version of the billing group. If the version of the billing group does not match the expected version specified in the request, the ‘DeleteBillingGroup` request is rejected with a `VersionConflictException`.
3125 3126 3127 3128 3129 |
# File 'lib/aws-sdk-iot/types.rb', line 3125 class DeleteBillingGroupRequest < Struct.new( :billing_group_name, :expected_version) include Aws::Structure end |