Class: Aws::Keyspaces::Types::ResourceNotFoundException

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

Overview

The operation tried to access a keyspace, table, or type that doesn't exist. The resource might not be specified correctly, or its status might not be ACTIVE.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#messageString

The specified resource was not found. Verify the resource identifier and ensure the resource exists and is in an ACTIVE state.

Returns:

  • (String)


1737
1738
1739
1740
1741
1742
# File 'gems/aws-sdk-keyspaces/lib/aws-sdk-keyspaces/types.rb', line 1737

class ResourceNotFoundException < Struct.new(
  :message,
  :resource_arn)
  SENSITIVE = []
  include Aws::Structure
end

#resource_arnString

The unique identifier in the format of Amazon Resource Name (ARN) for the resource couldn't be found.

Returns:

  • (String)


1737
1738
1739
1740
1741
1742
# File 'gems/aws-sdk-keyspaces/lib/aws-sdk-keyspaces/types.rb', line 1737

class ResourceNotFoundException < Struct.new(
  :message,
  :resource_arn)
  SENSITIVE = []
  include Aws::Structure
end