Class: Aws::DynamoDB::Types::ResourceInUseException
- Inherits:
-
Struct
- Object
- Struct
- Aws::DynamoDB::Types::ResourceInUseException
- Defined in:
- gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb
Overview
The operation conflicts with the resource's availability. For example:
You attempted to recreate an existing table.
You tried to delete a table currently in the
CREATING
state.You tried to update a resource that was already being updated.
When appropriate, wait for the ongoing update to complete and attempt the request again.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#message ⇒ String
The resource which is being attempted to be changed is in use.
Instance Attribute Details
#message ⇒ String
The resource which is being attempted to be changed is in use.
7616 7617 7618 7619 7620 |
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 7616 class ResourceInUseException < Struct.new( :message) SENSITIVE = [] include Aws::Structure end |